#chatbot\.component{
	background: #202020e9;
	border: solid 2px #dddddd;
	border-radius: 10px;
	padding: 5px;
	transition: .7s;
	display: flex;
	position: fixed;
	right: 10px;
	bottom: 10px;
	width: 350px;
	height: 500px;
	max-width: calc(80vw - 30px);
	max-height: calc(100vh - 30px);
	z-index: 999;
	box-shadow: 0px 0px 16px 5px black;
	font-size: 14px;
}
@media (max-width:600px){
	#chatbot\.component{
		height: calc(100vh - 80px);
		width: calc(100vw - 50px);
		max-width: calc(100vw - 50px);

	}
}

#chatbot\.backscreen{
    background: #0005;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 998;
}

.chatbot\.component\:highlighted{
	animation-name: ChatbotHighlightAnim;
	animation-duration: 4s;
	animation-iteration-count: infinite;
}

.chatbot\.icon{
	filter: invert(1);
	width: 21px;
	margin-top: -2px;
}

#chatbot\.component ::-webkit-scrollbar{
	width: 8px;
}
#chatbot\.component ::-webkit-scrollbar-track{
	background: #333333; 
}
#chatbot\.component ::-webkit-scrollbar-thumb{
	background: #808080; 
}
#chatbot\.component ::-webkit-scrollbar-thumb:hover{
	background: #505050;
}

.chatbot\.component\:minimalized{
	width: 30px !important;
	height: 30px !important;
	border-radius: 50% !important;
	overflow: hidden !important;
	right: 20px !important;
	bottom: 20px !important;
}
#chatbot\.content{
	opacity: 1;
	left: 0;
	transition: .5s;
	width: 100%;
	margin-bottom: 10px;
}
.chatbot\.content\:minimalized{
	opacity: 0 !important;
}
#chatbot\.window{
	height: calc(100% - 20px);
	overflow-y: auto;
}
#chatbot\.button\.expand{
	cursor: pointer;
	position: absolute;
	z-index: 99;
	color: white;
	transition: .3s;
	background: transparent;
	width: 40px;
	margin-left: -5px;
	height: 40px;
	margin-top: -5px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
}
#chatbot\.button\.expand:hover{
	background: #353535;
}

#chatbot\.window\.top-panel{
	color: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#chatbot\.window\.title{
	color: white;
}
#chatbot\.button\.retract{
	cursor: pointer;
	background: transparent;
	color: red;
	border: solid 0px transparent;
	margin-top: -6px;
	margin-right: -4px;
	font-size: 28px;
}

#chatbot\.window a{
	text-decoration: underline;
}
.chatbot\.smalltext{
	font-size: 11px;
}

.chatbot\.message, .chatbot\.message-bot, #chatbot\.message\:questions{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
	width: calc(100% - 5px);
}
.chatbot\.message-bot{
    align-items: flex-start;
}

.chatbot\.message\:in,
.chatbot\.message\:out,
.chatbot\.message\:select,
#chatbot\.message\:wait{
	width: calc(100% - 60px); /* DEVICE CHECK */
	display: inline-block;
	color: white;
	background: #2f2e2e;
	border: solid 1px transparent; /*#dddddd;*/
	border-radius: 6px;
	margin-top: 5px;
    padding: 7px 5px;
}
.chatbot\.message\:in{
	border-top-left-radius: 0px;
    width: auto;
	max-width: 85%;
	background: #d91a22;
}
.chatbot\.message\:out{
	float: right;
	border-top-right-radius: 0px;
    width: auto;
	max-width: 85%;
	background: #0c7b9d;
}

.chatbot\.message\:select{
	cursor: pointer;
	float: right;
	border-color: white;
    padding: 8px 5px;
    text-align: center;
	background: #005373;
}
.chatbot\.message\:select:hover{
	background: #0c7b9d;
}
#chatbot\.message\:wait{
	width: 35px;
	text-align: center;
	background: #d91a22;
}
.chatbot\.message\:error{
	color: #d91a22;
	background: #101010;
	border-color: #d91a22;
}

@keyframes ChatbotHighlightAnim{
	0% { box-shadow: 0px 0px 3px 0px #ffffff88; }
	50% { box-shadow: 0px 0px 10px 3px #ffffffaa; }
	100% { box-shadow: 0px 0px 3px 0px #ffffff88; }
}

#chatbot\.message\:form{
	border: solid 1px #777;
	background: #10101070;
	border-radius: 8px;
	padding: 6px 2px;
	margin-top: 5px;
	margin-bottom: 6px;
}

#chatbot\.message\:form\.element\:container, #chatbot\.message\:form\.element\:container\:checkbox{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#chatbot\.message\:form\.element\:container\:checkbox{
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.chatbot\.message\:form\.element\:caption{
	font-size: 12px;
	color: #c5c5c5;
	padding: 1px 2px;
	user-select: none;
}

#chatbot\.message\:form\.element\:container input,
#chatbot\.message\:form\.element\:container input[type="submit"],
#chatbot\.message\:form\.element\:container textarea{
	background: #404040;
	border: solid 1px #707070;
	border-radius: 3px;
	color: white;
	padding: 5px 7px;
	width: calc(100% - 30px);
	font-family: Verdana;
}
#chatbot\.message\:form\.element\:container textarea{
	resize: vertical;
	min-height: 30px;
}

#chatbot\.message\:form\.element\:container input[type="submit"], #chatbot\.message\:form\.element\:container input[type="button"]{
    padding: 10px 5px;
	margin: 2px 0px;
	transition: .3s;
}
#chatbot\.message\:form\.element\:container input[type="submit"]:hover, #chatbot\.message\:form\.element\:container input[type="button"]:hover{
	background: #707070;
}
#chatbot\.form\:cancel{
	background: #910000 !important;
}
#chatbot\.form\:cancel:hover{
	background: #c00000 !important;
}
.chatbot\.form\.required{
	color: red;
	font-weight: 900;
}

#chatbot\.openning-hours\:window{
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	background: #000000a0;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
}

#chatbot\.openning-hours\:container{
	display: flex;
	width: 400px;
	max-width: 90vw;
	max-height: 90vh;
	background: #202020e0;
	border: solid 1px white;
	border-radius: 6px;
	padding: 5px 10px;
	flex-direction: column;
}

#chatbot\.openning-hours\:top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	border-bottom: solid 1px white;
	margin-bottom: 3px;
	user-select: none;
}
#chatbot\.openning-hours\:close{
	color: red;
	font-size: 22px;
	cursor: pointer;
}
#chatbot\.openning-hours\:caption{
	font-weight: 900;
}
.chatbot\.openning-hours\:content\.line{
	
}

@media (max-width:600px){
	.chatbot\.message\:select{
		padding: 16px 5px;
	}
	#chatbot\.message\:form\.element\:container input[type="submit"], #chatbot\.message\:form\.element\:container input[type="button"]{
		padding: 16px 5px;
	}
}