div.ghChatWidget {
   position: fixed;
   right: 15px;
   bottom: 15px;
   z-index: 1000000001;
   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
   margin: 0;
   border-radius: 4px;
   padding: 0;
   font: normal 14px/20px Arial;
   overflow: hidden;
   display:  flex;
   flex-direction:  column;
   box-sizing: content-box;
}
div.ghChatWidget div {
    box-sizing: content-box;
    font: normal 14px/20px Arial;
}
div.ghChatWidget a {
    border: 0;
    outline: 0 none;
    color: inherit;
    font: 600 14px/20px Arial;
    cursor: pointer;
    text-decoration: underline;
}
div.ghChatWidget.ghChatWidgetOpen {
   border: 1px solid rgb(73, 74, 75);
   min-height: 585px;
}
div.ghChatWidget .ghChatWidgetToggle {
   background-color: rgba(73, 74, 75, 0.85);
   width: 360px;
   display: table;
   z-index: 101;
   margin: 0;
   border: 0;
   padding: 0;
   position: relative;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
}
.ghChatWidget.ghChatWidgetClosable .ghChatWidgetToggle:hover {
   background-color: rgb(73, 74, 75);
   transition: background-color .3s;
}
.ghChatWidget.ghChatWidgetClosable .ghChatWidgetToggle {
   cursor: pointer;
}
div.ghChatWidget .ghChatWidgetToggleIcon {
   display: none;
   position: absolute;
   border: 7px solid transparent;
   right: 18px;
   border-bottom-color: rgba(255, 255, 255, 0.5);
}
.ghChatWidget.ghChatWidgetClosable .ghChatWidgetToggleIcon {
    display: block;
    top: 26px;
}
.ghChatWidget.ghChatWidgetOpen .ghChatWidgetToggleIcon {
   border-top-color: rgba(255, 255, 255, 0.5);
   border-bottom-color: transparent;
}
.ghChatWidget.ghChatWidgetClosable.ghChatWidgetOpen .ghChatWidgetToggle:hover .ghChatWidgetToggleIcon {
   border-top-color: rgba(255, 255, 255, 1);
}
.ghChatWidget.ghChatWidgetClosable.ghChatWidgetClosed .ghChatWidgetToggle .ghChatWidgetToggleIcon {
    top: 18px;
}
 .ghChatWidget.ghChatWidgetClosable.ghChatWidgetClosed .ghChatWidgetToggle:hover .ghChatWidgetToggleIcon {
   border-bottom-color: rgba(255, 255, 255, 1);
   top: 18px;
}
div.ghChatWidget .ghChatWidgetLogo {
   background-image: url(https://www.kunstloft.de/media/image/79/fa/81/KunstLoft-Windows-IconH9EajNSlzp91h.png);
   background-size: 40px;
   background-repeat: no-repeat;
   background-position: center;
   height: 60px;
   width: 60px;
   display: table-cell;
   margin: 0;
   border: 0;
   padding: 0;
}
div.ghChatWidget .ghChatWidgetInfo {
   display: table-cell;
   vertical-align: middle;
   margin: 0;
   border: 0;
   padding: 0;
}
div.ghChatWidget div.ghChatWidgetTitle {
   color: rgb(255, 255, 255);
   font-weight: bold;
   margin: 0;
   border: 0;
   padding: 0;
}
.ghChatWidget.ghChatWidgetClosable .ghChatWidgetToggle:hover .ghChatWidgetTitle {
   color: rgb(255, 255, 255);
}
div.ghChatWidget .ghChatWidgetStatus {
   margin: 0;
   border: 0;
   padding: 0;
}
div.ghChatWidget .ghChatWidgetStatus div {
   margin: 0;
   border: 0;
   padding: 0;
}
div.ghChatWidget div.ghChatWidgetStatusText {
   color: rgb(162, 162, 162);
   font-weight: bold;
   font-size: 12px;
   position: relative;
   margin: 0;
   border: 0;
   padding: 0;
}
.ghChatWidget.ghChatWidgetOnline .ghChatWidgetStatusText {
   color: rgb(53, 185, 101);
}
div.ghChatWidget div.ghChatWidgetWrapper {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 0;
    overflow: hidden;
	color: #555;
    background-color: #fff;
    margin: 0;
    border: 0;
    padding: 0;
	font: normal 14px/20px Arial;
    display: flex;
    flex: 1 auto;
    flex-direction: column;
}
.ghChatWidget.ghChatWidgetClosed .ghChatWidgetWrapper {
    display: none;
}
div.ghChatWidget .ghChatWidgetFooter {
    color: rgb(255, 255, 255);
    background-color: rgba(73, 74, 75, 0.85);
    flex-shrink: 0;
}
div.ghChatWidget .ghChatWidgetFooter:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(73, 74, 75);
    transition: background-color .3s;
}
div.ghChatWidget .ghChatWidgetFooter a {
    border: 0;
    font: normal 14px/14px Arial;
}
@keyframes ghChatWidgetTypingAnimation {
    50% {
        fill: transparent
    }
}
@media (max-width: 450px), (max-height: 450px) {
div.ghChatWidget {
    -webkit-text-size-adjust: none;
}
div.ghChatWidget .ghChatWidgetToggle {
    min-height: 50px;
}
div.ghChatWidget.ghChatWidgetOpen {
    position: fixed;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    min-height: 350px;
}
div.ghChatWidget .ghChatWidgetToggle {
    width: 100%;
}
div.ghChatWidget {
    box-shadow: none;
    min-height: initial;
}
div.ghChatWidget.ghChatWidgetClosed {
    overflow: initial;
}
.ghChatWidget.ghChatWidgetClosed .ghChatWidgetToggle {
    height: 60px;
    width: 60px;
    background-color: rgba(73, 74, 75, 0.85);
    border-radius: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
    background-image: url(img/chat-icon-small.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 32px;
    cursor: pointer;
    display: block;
}
.ghChatWidget.ghChatWidgetClosed .ghChatWidgetToggle div {
    display: none;
}
div.ghChatWidget .ghChatWidgetMessageFrame {
    padding: 5px 15px 5px 20px;
}
div.ghChatWidget .ghChatWidgetOutgoing {
    padding-left: 50px;
}
div.ghChatWidget .ghChatWidgetMessage:before {
    top: 11px;
    border: 6px solid transparent;
}
div.ghChatWidget .ghChatWidgetIncoming .ghChatWidgetMessage:before {
    border-left-color: rgb(19, 168, 158);
    right: -12px;
}
div.ghChatWidget .ghChatWidgetOutgoing .ghChatWidgetMessage:before {
    left: -12px;
}
}
.ghChatWidget.ghChatWidgetOpen .ghChatWidgetToggle {
    background-color: rgb(73, 74, 75);
}
div.ghChatWidget .ghChatWidgetMessageFrame.ghChatWidgetOutgoing:not(.ghChatWidgetContinued)::before {
    background-image: url(https://www.kunstloft.de/media/image/79/fa/81/KunstLoft-Windows-IconH9EajNSlzp91h.png);
}
div.ghChatWidget .ghChatWidgetLogin {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    flex: 1 auto;
}
div.ghChatWidget .ghChatWidgetLoginContentWrapper {
    overflow: hidden;
    display: flex;
    flex-direction:  column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
div.ghChatWidget .ghChatWidgetLoginContent {
    padding: 10px;
    flex: 1 auto;
    overflow:  auto;
}
div.ghChatWidget .ghChatWidgetLoginInfo {
    margin-bottom: 10px;
}
div.ghChatWidget .ghChatWidgetLoginUserNameLabel {
    display: block;
    margin-bottom: 7px;
}
div.ghChatWidget input.ghChatWidgetLoginUserName {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: unset;
    border: 1px solid #bbb;
    outline: none;
    -webkit-appearance: none;
    background-clip: padding-box;
    padding: 10px;
    color: #395467;
    background: #fff;
    text-align: left;
    font-size: 14px;
    margin-bottom: 15px;
    font-family: inherit;
    resize: none;
    border-radius: 2px;
}
div.ghChatWidget .ghChatWidgetLoginUserName.ghChatWidgetError {
    background: #fff4f4;
}
div.ghChatWidget .ghChatWidgetLoginUserMessageLabel {
    display: block;
    margin-top: 10px;
    margin-bottom: 7px;
}
div.ghChatWidget textarea.ghChatWidgetLoginUserMessage {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: unset;
    min-height: 150px;
    border: 1px solid #bbb;
    outline: none;
    -webkit-appearance: none;
    background-clip: padding-box;
    padding: 10px;
    color: #395467;
    background: #fff;
    text-align: left;
    font-size: 14px;
    font-family: inherit;
    resize: none;
    border-radius: 2px;
}
div.ghChatWidget .ghChatWidgetLoginFooterWrapper {
    height: 64px;
    border-top: 1px solid #dadada;
    background: #f4f4f4;
    -webkit-transform: translateZ(0);
}
div.ghChatWidget .ghChatWidgetLoginFooter {
    padding: 10px;
    text-align: right;
    vertical-align: middle;
}
div.ghChatWidget input.ghChatWidgetLoginButton {
    height: unset;
    line-height: 38px;
    padding: 3px 18px;
    font-size: 14px;
    color: rgb(255, 255, 255);
    background-color: rgb(43, 182, 115);
    border-radius: 4px;
    box-sizing: border-box;
    text-align: center;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
}
div.ghChatWidget .ghChatWidgetChat {
    display: none;
    margin: 0;
    border: 0;
    padding: 0;
    flex: 1 auto;
    max-height: 100%;
}
div.ghChatWidget .ghChatWidgetMessenger {
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex: 1 auto;
}
div.ghChatWidget .ghChatWidgetMessenger {
	position: relative;
}
div.ghChatWidget .ghChatWidgetMessengerContent {
	overflow: auto;
    padding: 0;
	flex: 1;
	max-width: 900px;
}
div.ghChatWidget .ghChatWidgetMessengerInput {
	max-height: 101px;
	min-height: 51px;
	border-top: 1px solid #e4e2e2;
    outline: none;
	box-sizing: border-box;
	display: flex;
	position: relative;
	overflow: hidden;
}
div.ghChatWidget .ghChatWidgetMessengerFile {
	width: 50px;
	align-self: center;
}
div.ghChatWidget .ghChatWidgetMessengerFileLabel {
	display: block;
	height: 24px;
	width: 26px;
	margin: 10px auto;
	border-radius: 15px;
	text-align: center;
}
div.ghChatWidget .ghChatWidgetMessengerFileInput {
    display: none;
}
div.ghChatWidget .ghChatWidgetMessengerInputWrapper {
	padding: 10px;
	overflow: auto;
	flex: 1;
	margin: 5px 0;
	border: 1px solid #e4e2e2;
	background-color: #fff;
	border-radius: 2px;
}
div.ghChatWidget textarea.ghChatWidgetMessengerInputField {
    height: unset;
    margin: 0;
    padding: 0;
    width: 100%;
    border-width: 0;
    outline: none;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    resize: none;
    white-space: pre-wrap;
    overflow: hidden;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: top;
    font-family: inherit;
    font-size: 14px;
}
div.ghChatWidget textarea.ghChatWidgetMessengerInputField::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}
div.ghChatWidget textarea.ghChatWidgetMessengerInputField:-moz-placeholder {
    color: #999;
    opacity: 1;
}
div.ghChatWidget textarea.ghChatWidgetMessengerInputField::-moz-placeholder {
    color: #999;
    opacity: 1;
}
div.ghChatWidget textarea.ghChatWidgetMessengerInputField:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}
div.ghChatWidget textarea.ghChatWidgetMessengerInputField::-ms-input-placeholder {
    color: #999;
    opacity: 1;
}
div.ghChatWidget textarea.ghChatWidgetMessengerInputField::placeholder {
    color: #999;
    opacity: 1;
}
div.ghChatWidget .ghChatWidgetMessengerSend {
	width: 50px;
	align-self: center;
}
div.ghChatWidget .ghChatWidgetMessengerSendButton {
	height: 24px;
	width: 26px;
	margin: 10px auto;
	border-radius: 15px;
	text-align: center;
	-webkit-appearance: none;
}
div.ghChatWidget .ghChatWidgetMessengerSendDisabled .ghChatWidgetMessengerSend .ghChatWidgetMessengerSendButton,
div.ghChatWidget .ghChatWidgetMessengerSendDisabled .ghChatWidgetMessengerFileLabel {
    opacity: 0.5;
}
div.ghChatWidget .ghChatWidgetMessengerSendDisabled .ghChatWidgetMessengerSend .ghChatWidgetMessengerSendButton svg,
div.ghChatWidget .ghChatWidgetMessengerSendDisabled .ghChatWidgetMessengerFileLabel svg {
    cursor: not-allowed;
}
div.ghChatWidget .ghChatWidgetMessengerSendButton svg,
div.ghChatWidget .ghChatWidgetMessengerFileLabel svg {
	height: 24px;
	width: 24px;
	fill-opacity: .4;
	cursor: pointer;
}
div.ghChatWidget .ghChatWidgetMessengerSendButton:hover svg,
div.ghChatWidget .ghChatWidgetMessengerFileLabel:hover svg {
	fill-opacity: .6;
}
div.ghChatWidget .ghChatWidgetMessengerSendDisabled .ghChatWidgetMessengerSend .ghChatWidgetMessengerSendButton:hover svg,
div.ghChatWidget .ghChatWidgetMessengerSendDisabled .ghChatWidgetMessengerFileLabel:hover svg {
	fill-opacity: .4;
}
div.ghChatWidget .ghChatWidgetMessageFrame {
	padding: 15px 20px 5px 20px;
	overflow: hidden;
	position: relative;
}
div.ghChatWidget .ghChatWidgetMessage {
    color: rgb(75, 75, 75);
	background-color: rgb(243, 243, 243);
	border-radius: 4px;
	display: inline-block;
	padding: 10px 10px 8px 10px;
	max-width: 280px;
    position: relative;
    word-wrap: break-word;
}
div.ghChatWidget .ghChatWidgetMessageText {
    margin: 5px 0;
    word-break: break-word;
    text-align: left;
}
div.ghChatWidget .ghChatWidgetMessage:before {
	content: "";
	border: 8px solid transparent;
	position: absolute;
	top: 7px;
}
div.ghChatWidget .ghChatWidgetIncoming .ghChatWidgetMessage {
	background-color: rgb(19, 168, 158);
	color: rgb(153, 234, 192);
}
div.ghChatWidget .ghChatWidgetIncoming .ghChatWidgetMessage:before {
	border-left-color: rgb(19, 168, 158);
	right: -16px;
}
div.ghChatWidget .ghChatWidgetOutgoing .ghChatWidgetMessage:before {
	border-right-color: rgb(243, 243, 243);
	left: -15px;
}
div.ghChatWidget .ghChatWidgetOutgoing:not(.ghChatWidgetContinued):before {
	content: "";
	position: absolute;
	height: 29px;
	width: 29px;
	background-color: rgb(243, 243, 243);
	background-size: contain;
	border-radius: 25px;
	left: 9px;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
div.ghChatWidget .ghChatWidgetUserIcon {
    position: absolute;
    top: 8px;
    left: 9px;
    width: 29px;
    height: 29px;
    border-radius: 25px;
    background-color: rgb(243, 243, 243);
    background-size: contain;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}
div.ghChatWidget .ghChatWidgetName {
	font-weight: bold;
    text-align: left;
}
div.ghChatWidget .ghChatWidgetMessageTimestamp {
	font-size: 12px;
	opacity: .5;
}
div.ghChatWidget .ghChatWidgetOutgoing {
	padding-left: 50px;
}
div.ghChatWidget .ghChatWidgetIncoming {
	text-align: right;
}
div.ghChatWidget .ghChatWidgetContinued {
	padding-top: 0;
}
div.ghChatWidget .ghChatWidgetContinued .ghChatWidgetMessage:before {
	border-color: transparent;
}
div.ghChatWidget .ghChatWidgetMessage .ghChatWidgetUpload {
    width: 32px;
    height: 32px;
}
div.ghChatWidget .ghChatWidgetIncoming .ghChatWidgetMessage .ghChatWidgetUpload {
    fill: rgb(153, 234, 192);
}
div.ghChatWidget .ghChatWidgetOutgoing .ghChatWidgetMessage .ghChatWidgetUpload {
    fill: rgb(75, 75, 75);
}
div.ghChatWidget .ghChatWidgetMessage img {
    max-width: 100%;
    image-rendering: auto;
}
div.ghChatWidget .ghChatWidgetButtons {
    display: flex;
    flex-flow: row wrap;
    gap: 8px 10px;
    margin-top: 8px;
}
div.ghChatWidget .ghChatWidgetButtonLink {
    border-radius: 8px;
    padding: 4px 8px;
    color: rgb(75, 75, 75);
	background-color: rgb(243, 243, 243);
    text-decoration: none;
    font-weight: normal;
    cursor: pointer;
}
div.ghChatWidgetNotification {
    color: rgb(75, 75, 75);
	background-color: rgb(243, 243, 243);
	display: block;
    border-radius: 4px;
    padding: 10px 10px 8px 10px;
    max-width: 280px;
    position: relative;
    word-wrap: break-word;
}
div.ghChatWidgetNotification.ghChatWidgetNotificationError {
    color: rgb(75, 75, 75);
	background-color: rgb(243, 243, 243);
}
@media (max-height:615px) {
    .ghChatWidget.ghChatWidgetOpen{
        min-height:initial;
        top:15px;
    }
}
@media (max-height:615px) and (max-width:450px) {
     .ghChatWidget.ghChatWidgetOpen{
        top:5px;
    }
}
