@charset "utf-8";
/* CSS Document */

/* ---------- GENERAL ---------- */

/*body {
	background: #e9e9e9;
	color: #9a9a9a;
	font: 100%/1.5em "Droid Sans", sans-serif;
	margin: 0;
}

a { text-decoration: none; }

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

h4, h5 {
	line-height: 1.5em;
	margin: 0;
}

hr {
	background: #e9e9e9;
    border: 0;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 1px;
    margin: 0;
    min-height: 1px;
}

img {
    border: 0;
    display: block;
    height: auto;
    max-width: 100%;
}

input {
	border: 0;
	color: inherit;
    font-family: inherit;
    font-size: 100%;
    line-height: normal;
    margin: 0;
}

p { margin: 0; }
*/

a.chat-close { text-decoration: none; }
.clearfix { *zoom: 1; } /* For IE 6/7 */
.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}
.clearfix:after { clear: both; }

/* ---------- LIVE-CHAT ---------- */

#live-chat {
	bottom: 0;
	font-size: 12px;
	right: 24px;
	position: fixed;
	width: 300px;	/* 300px */
	z-index:99999;
}

#live-chat header {
	background: #293239;
	border-radius: 5px 5px 0 0;
	color: #fff;
	cursor: pointer;
	padding: 16px 24px;
}

#live-chat h4:before {
	background: #1a8a34;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 8px;
	margin: 0 8px 0 0;
	width: 8px;
}

#live-chat h4 {
	font-size: 12px;
	color:#fff;
	clear: inherit;
	padding:0px;
	margin:0px;
}

#live-chat h5 {
	font-size: 10px;
}

#live-chat form {
	padding: 24px;
}

#live-chat input[type="text"] {
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 8px;
	outline: none;
	width: 234px;
}

.chat-message-counter {
	background: #e62727;
	border: 1px solid #fff;
	border-radius: 50%;
	display: none;
	font-size: 12px;
	font-weight: bold;
	height: 28px;
	left: 0;
	line-height: 28px;
	margin: -15px 0 0 -15px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 28px;
}

.chat-close {
	background: #1b2126;
	border-radius: 50%;
	color: #fff;
	display: block;
	float: right;
	font-size: 10px;
	height: 16px;
	line-height: 16px;
	margin: 2px 0 0 0;
	text-align: center;
	width: 16px;
}

.chat {
	background: #fff;
}

.chat-history {
	height: 252px;
	padding: 8px 24px;
	overflow-y: scroll;
}

.chat-message {
	margin: 16px 0;
}

.chat-message img {
	border-radius: 50%;
	float: left;
}

.chat-message-content {
	margin-left: 56px;
}

.chat-time {
	float: right;
	font-size: 10px;
}

.chat-feedback {
	font-style: italic;	
	margin: 0 0 0 80px;
}

/* extra css added later, 08.07.2024 */
#ans_widget iframe{height:405px;border:1px solid #ddd;}
#ans_widget2 iframe{}
#ans_widget2 #live-chat{position: static; width: 100%;}
#ans_widget #live-chat{display: none;}
#live-chat-minimized{
	position: fixed;
    z-index: 99999;
    bottom: 16px;
    right: 16px;
    width: 64px;
    height: 64px;
    color: #6558F6;
    cursor: pointer;
    border-radius: 32px;
    /*background-color: #6558F6;*/
	display:block;
}
#live-chat-minimized-x::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    background-color: #6558F6;
    border-radius: 32px;
    animation: ease-out 1.6s infinite svelte-6vvhto-blinking;
    z-index: -1;
}
#live-chat-minimized img{width:64px;}
@media(max-width:480px){
	#live-chat{
		/*position: absolute; 
		width: 100%; height: 100%; */
		right: 0px; top:30px;
		width:95%; height: 100%;
		/*display: flex;*/
		flex-direction: column;
		display:none;
		
	}
	#ans_widget2 #live-chat{display: block;}
	.chat{flex:1;}
	#ans_widget iframe{height:100%;width:100%;}	
	#live-chat-minimized{display:block;}
}
/* extra css ends. */