@charset "UTF-8";
/*$joma-grey: rgb(88, 89, 91);*/
/* mobile-first media queries */
/* desktop-first media queries */
/* Definitionen für Modul Chat */
#chatButton.disabled {
  display: none;
}

#chatButton .context_icon_headline:after {
  background-image: url(/images/icons/icon_context_chat_white.png);
}

#chatButton.chatActive .context_icon_headline:after {
  background-image: url(/images/icons/icon_context_chat_yellow.png);
  /* -webkit-animation:spin2 1s linear infinite;
   -moz-animation:spin2 1s linear infinite;
   animation:spin2 1s linear infinite;*/
}

/*
@-moz-keyframes spin2 {
	0% { -moz-transform: scale(1.2,1.2); }
	70% { -moz-transform: scale(1.0,1.0); }
	100% { -moz-transform: scale(1.2,1.2); }
}
@-webkit-keyframes spin2 {
	0% { -webkit-transform: scale(1.2,1.2); }
	70% { -webkit-transform: scale(1.0,1.0); }
	100% { -webkit-transform: scale(1.2,1.2); }
}
@keyframes spin2 {
	0% { -webkit-transform: scale(1.2,1.2); transform:scale(1.2,1.2); }
	70% { -webkit-transform: scale(1.0,1.0); transform:scale(1.0,1.0); }
	100% { -webkit-transform: scale(1.2,1.2); transform:scale(1.2,1.2); }
}*/
#chatButton.context_icon.aktive > .context_icon_headline {
  /*width: 400px;*/
}

#chatForm.context_popup {
  /*width: 550px;*/
}

#chatFormTitle {
  background: url(/images/icons/icon_context_chat_green.png) no-repeat left center;
  -webkit-background-size: auto 28px;
  background-size: auto 28px;
}

#chatButton.chatActive #chatFormTitle {
  background: url(/images/icons/icon_context_chat_yellow.png) no-repeat left center;
  -webkit-background-size: auto 28px;
  background-size: auto 28px;
}

#chatFormName {
  margin-bottom: 10px;
}

#chatFormInputs.disabled {
  display: none;
}

#chatFormError {
  display: none;
  margin-bottom: 20px;
}

#chatForm .icheckbox_joma.error,
#chatForm .feld.error {
  border: 1px solid red;
}

#chatForm textarea,
#chatPopup textarea {
  resize: vertical;
}

#chatForm input:focus,
#chatForm textarea:focus,
#chatPopup input:focus,
#chatPopup textarea:focus {
  outline: none;
}

#chatFormBottom {
  padding-top: 20px;
}

#chatFormBottom .icheckbox_joma,
#chatFormEinverstaendnis {
  float: left;
  margin: 0 10px 10px 0;
}

#chatFormBottom label {
  width: 250px;
  /*float: left;*/
  font-size: 12px;
}

#chatFormButton,
#chatFormMessageButton {
  /*float: right;*/
  width: 150px;
}

#chatFormMessages.disabled {
  display: none;
}

#chatForm #chatFormMessages_inner {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
}

ul#chatMessages {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul#chatMessages li {
  margin: 0 0 10px 0;
  display: block;
  padding: 10px;
  background: none;
  page-break-inside: avoid;
}

ul#chatMessages li.newMessage {
  opacity: 0.5;
}

ul#chatMessages li a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
}

.chatMessageClient {
  background-color: #e9f2ee !important;
  text-align: right;
}

ul#chatMessages li * {
  display: block;
  page-break-before: avoid;
}

ul#chatMessages li.chatMessageAdmin {
  padding-left: 0;
}

ul#chatMessages li.chatMessageAdmin.newMessage {
  padding-right: 70px;
  position: relative;
}

ul#chatMessages li.chatMessageClient.newMessage {
  padding-left: 70px;
  position: relative;
}

ul#chatMessages li.newMessage:after {
  content: "";
  display: block;
  background: url(/images/icons/icon_waiting.png) no-repeat center transparent;
  position: absolute;
  top: 35px;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
}

ul#chatMessages li.chatMessageAdmin.newMessage:after {
  right: 10px;
}

ul#chatMessages li.chatMessageClient.newMessage:after {
  left: 35px;
}

.chatMessageDateTime {
  color: #5c6166;
  font-size: 75%;
  line-height: 110%;
}

.chatMessageHeadline {
  text-transform: uppercase;
  color: #277953;
  font-family: "PoppinsSemibold", sans-serif;
  font-size: 75%;
  line-height: 110%;
}

.chatMessageWaiting .chatMessageHeadline {
  font-size: 100%;
}

.chatMessageWaiting .chatMessageText {
  color: #277953;
  font-size: 90%;
}

.chatMessageNonImage {
  padding-left: 60px;
}

.chatMessageImage {
  float: left;
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}

.chatMessageImage img {
  display: block;
  width: 100%;
}

.chatMessageWaiting img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#chatFormMessagesBottom {
  /*background-color: rgb(212, 228, 221);*/
  /*padding: 10px 10px 10px 0;*/
  margin-bottom: 10px;
}

.chatFormMessageOuter {
  /*margin-right: 160px;*/
  margin-bottom: 20px;
}

#chatFormMessageText {
  /*height: 40px;*/
  min-height: 80px;
  width: 100%;
  padding: 10px;
}

#chatFormButtonEndeBox:after {
  content: "";
  clear: both;
  display: block;
}

#chatFormButtonEndeBox a {
  float: right;
  display: block;
  padding-left: 25px;
  background: url(/images/icons/double_arrow_right_gruen.png) left center no-repeat transparent;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
}

/*	PopUp	*/
#bodyChat {
  background: url(/images/mail/logo.jpg) no-repeat 99% 10px #f4f8f6;
  -webkit-background-size: auto 30px;
  background-size: auto 30px;
  height: 100%;
  width: 100%;
}

#chatPopup {
  height: 100%;
  width: 100%;
  position: relative;
}

#chatPopup h1 {
  text-align: center;
  font-size: 30px;
  line-height: 50px;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
}

#chatPopup #chatFormMessages_inner {
  overflow-y: auto;
  position: absolute;
  top: 50px;
  bottom: 110px;
  left: 20px;
  right: 20px;
}

#chatPopup #chatFormMessagesBottom {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
}

#chatPopup #chatFormButtonEndeBox {
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
}

#chatPopup .chatButton {
  display: block;
  padding-left: 25px;
  background: url(/images/icons/double_arrow_right_gruen.png) left center no-repeat transparent;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  position: absolute;
}

#chatPopup #chatPrintButton {
  bottom: 10px;
  left: 20px;
}

#chatPopup #chatCloseButton {
  bottom: 10px;
  right: 20px;
}

.chatTitle {
  display: flex;
  padding-bottom: 10px;
  align-items: center;
}

.chatTitle_icon {
  margin-right: 20px;
}

/* iCheck plugin skin
----------------------------------- */
.icheckbox_joma,
.iradio_joma {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 20px;
  height: 22px;
  background: url(/images/bg/Formular_CheckRadio_skinleiste.png) no-repeat;
  border: none;
  cursor: pointer;
}

.icheckbox_joma {
  background-position: 0 0;
}

.icheckbox_joma.hover {
  background-position: -22px 0;
}

.icheckbox_joma.checked {
  background-position: -44px 0;
}

.icheckbox_joma.disabled {
  background-position: -66px 0;
  cursor: default;
}

.icheckbox_joma.checked.disabled {
  background-position: -88px 0;
}

.iradio_joma {
  background-position: -110px 0;
}

.iradio_joma.hover {
  background-position: -132px 0;
}

.iradio_joma.checked {
  background-position: -154px 0;
}

.iradio_joma.disabled {
  background-position: -176px 0;
  cursor: default;
}

.iradio_joma.checked.disabled {
  background-position: -198px 0;
}

/* Retina support */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5) {
  .icheckbox_joma,
.iradio_joma {
    background-image: url(/images/bg/Formular_CheckRadio_skinleiste_retina.png);
    -webkit-background-size: 220px 22px;
    background-size: 220px 22px;
  }
}
@media print {
  .chatButton {
    display: none !important;
  }

  #chatPopup #chatFormMessages_inner {
    padding-top: 50px;
    position: static;
    bottom: auto;
    left: 0;
    right: 0;
  }
}

/*# sourceMappingURL=chat.css.map */
