@import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,300i,400,400i,500,600,600i&display=swap");

html,
body {
  margin: 0;
  overflow: hidden;
  height: 100%;
  font-family: "Montserrat";
}

::-webkit-input-placeholder {
  color: rgb(177, 177, 177);
  font-weight: 200;
}
::-moz-placeholder {
  color: rgb(177, 177, 177);
  font-weight: 200;
}
:-ms-input-placeholder {
  color: rgb(177, 177, 177);
  font-weight: 200;
}
::placeholder {
  color: rgb(177, 177, 177);
  font-weight: 200;
}

.text-warining {
  color: rgb(241, 189, 46);
}

input[type="text"],
input[type="number"],
textarea {
  font-size: 10.5pt;
  font-weight: 200;
}

#CV-chat-corner {
  right: 10px;
  position: absolute;
  bottom: 8px;
  z-index: 0;
}

#form-wrapper.ease-out, .ease-out {
  opacity: 0;
  transition: 0.5s ease-out;
}

#CV-chat-button {
  transition: all 0.3s ease-in-out;
}

#CV-chat-button:hover {
  /*transform: scale(1.1);*/
  cursor: pointer;
}

#CV-chat-modal-wrapper {
  padding: 10px;
  height: 98%;
  height: calc(100% - 8px);
  box-sizing: border-box;
}

#CV-chat-modal {
  height: 100%;
  z-index: 1;
  width: 100%;
  border-radius: 5px;
  border-bottom-right-radius: 13px;
  border-bottom-left-radius: 13px;
  background-color: white;
  overflow: hidden;
  position: relative;
  height: 100%;
  margin-top: 0%;
  top: 0;
  left: 0;
  box-shadow: 2px -2px 12px 0px rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: 2px -2px 12px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 2px -2px 12px 0px rgba(0, 0, 0, 0.21);
}

#CV-chat-modal-wrapper.fixed {
  height: 100%;
  padding: 0;
}

#CV-chat-modal-wrapper.fixed #CV-chat-modal {
  border-radius: 0px;
  background-color: white;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

.animated {
  -webkit-animation: 250ms ease 0s 1 normal none running animation-bhegco;
  animation: 250ms ease 0s 1 normal none running animation-bhegco;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

#CV-chat-modal.hide {
  animation: shrinkToBottom 0.5s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

#CV-chat-modal.hide #input-buttons {
  display: none;
}

@-webkit-keyframes growFromBottom {
  0% {
    height: 0px;
    margin-top: 100%;
  }
  100% {
    height: 100%;
    margin-top: 0%;
  }
}

@keyframes growFromBottom {
  0% {
    height: 0px;
    margin-top: 100%;
  }
  100% {
    height: 100%;
    margin-top: 0%;
  }
}

@-webkit-keyframes slideFromLeft {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes slideFromLeft {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@-webkit-keyframes opacity {
  0% {
    top: 0;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes shrinkToBottom {
  0% {
    height: 100%;
    margin-top: 0%;
  }
  100% {
    height: 0px;
    margin-top: 100%;
  }
}

@keyframes shrinkToBottom {
  0% {
    height: 100%;
    margin-top: 0%;
  }
  100% {
    height: 0px;
    margin-top: 100%;
  }
}

@-ms-keyframes checkmark {
  0% {
    stroke-dashoffset: 640;
  }
  10% {
    stroke-dashoffset: 640;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes checkmark {
  0% {
    stroke-dashoffset: 640;
  }
  10% {
    stroke-dashoffset: 640;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes checkmark {
  0% {
    stroke-dashoffset: 640;
  }
  10% {
    stroke-dashoffset: 640;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

#topbar {
  min-height: 75px;
  color: white;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  padding-top: 10px;
  padding-bottom: 5px;
  z-index: 2;
  box-shadow: 0 2px 2px -2px #eee;
  position: absolute;
  width: 100%;
  display: table;
}

#topbar-top {
  padding: 0px 20px 1px 20px;
  font-size: 1.1em;
  font-weight: 500;
}

#topbar-message {
  padding: 0 20px 10px 20px;
  font-size: 0.845em;
  opacity: 0.75;
}

#topbar-left {
  width: 70px;
  padding-left: 10px;
  vertical-align: middle;
  max-height: 80px;
  display: none;
}

#topbar-right {
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  padding-top: 15px;
}

#avatar-image {
  width: 100%;
  height: 100%;
}

.svg-close {
  width: 20px;
}

#title {
  display: inline;
}

#close {
  cursor: pointer;
  padding: 4px;
  display: inline;
  float: right;
}

#close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

@media only screen and (max-device-width: 680px) {
  #CV-chat-modal-wrapper {
    padding: 0;
  }
}

#error {
  display: none;
  background-color: #ea4b57;
  color: white;
  padding: 10px;
  position: absolute;
  width: 100%;
  z-index: 10;
  top: 0;
}

#content-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  margin-top: 90px;
  width: 100%;
}

#messages-wrapper {
  -webkit-box-shadow: inset 0px 0px 13px 0px rgba(255, 255, 255, 1);
  -moz-box-shadow: inset 0px 0px 13px 0px rgba(255, 255, 255, 1);
  box-shadow: inset 0px 0px 13px 0px rgba(255, 255, 255, 1);
  background-color: white;
  padding: 0;
  width: 100%;
  position: relative;
  height: calc(100% - 84px);
}

#messages {
  bottom: 0;
  display: block;
  position: absolute;
  float: left;
  left: 0;
  max-height: 100%;
  right: 0;
  overflow-y: auto;
  padding: 0 10px;
  min-height: 100px;
  padding-bottom: 20px;
  top: 0;
}

.system-message {
  text-align: center;
  color: #cccccc;
  font-size: 0.8em;
}

#messages-spacer,
#input-buttons {
  padding-top: 15px;
  padding-bottom: 15px;
}

#line {
  height: 1.5px;
  border-radius: 2px;
  align-self: center;
  opacity: 0.2;
}

#new-message {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  background-color: white;
  z-index: 2;
  box-shadow: 0 -2px 10px -2px #eee;
  width: 100%;
  height: 51px;
  position: relative;
}

#new-message.disabled,
#new-message :disabled {
  pointer-events: none;
  background-color: rgba(219, 219, 219, 1);
  cursor: not-allowed;
}

#new-message input {
  border: none;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 1px;
  outline: none;
  display: inline-block;
  border-bottom-left-radius: 14px;
}

#new-message::before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  z-index: 500;
  transition: 0.25s ease;
  opacity: 0.8;
  top: -1px;
  left: 0;
}

#new-message.selected::before {
  border-color: inherit;
  height: 2px;
  width: 100%;
  -webkit-box-shadow: 0 -2px 30px -2px #cccbcb;
  -moz-box-shadow: 0 -2px 30px -2px #cccbcb;
  box-shadow: 0 -2px 30px -2px #cccbcb;
}

#new-message input,
#input-buttons {
  padding-top: 15px;
  padding-bottom: 15px;
}

@keyframes slide {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes show {
  0% {
    display: none;
    opacity: 0;
  }

  90% {
    display: none;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

.row {
  margin-bottom: 15px;
  float: left;
  width: 100%;
  display: block;
}

.row:first-child {
  margin-top: auto;
}

.message {
  max-width: 90%;
  position: relative;
}

.bubble {
  padding: 1px;
  display: inline-block;
}

.bubble .content {
  white-space: pre-line;
}

.bubble.audio-bubble,
.bubble.image-bubble,
.bubble.video-bubble {
  max-width: 80%;
  padding: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.bubble.audio-bubble .content,
.bubble.image-bubble .content,
.bubble.video-bubble .content {
  margin: 0;
}

.row:not(.preview) .message.right .bubble.audio-bubble,
.row:not(.preview) .message.right .bubble.image-bubble,
.row:not(.preview) .message.right .bubble.video-bubble {
  margin-left: auto;
  background-color: transparent !important;
}

.bubble.audio-bubble {
  max-width: 100%;
}

.file-icon {
  width: 10px !important;
  margin-right: 5px;
}

.message .buttons {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 5px 5px;
  border-bottom-right-radius: 5px 5px;
}

.bubble button {
  width: 100%;
  border: none;
  padding: 10px;
  background: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-weight: bold;
  background-color: white;
}

.bubble button:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.bubble button:hover {
  color: white;
}

.row.preview .bubble {
  background-color: #eee !important;
}

.message .content {
  font-size: 10pt;
  margin: 10px 15px;
  word-break: break-word;
}
.message img {
  max-width: 100%;
  border-radius: 10px;
}

.message video {
  max-width: 100%;
  border-radius: 10px;
}

.message.left {
  float: left;
}
.message.right {
  float: right;
  text-align: left;
}

.message .meta {
  color: #cccccc;
  font-size: 0.8em;
  margin-bottom: 2px;
}

.message.left .bubble {
  position: relative;
  background: #f5f5f5;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.message.left .bubble.articles-bubble {
  background-color: #fff;
}

.articles-bubble .buttons {
  border-left: none !important;
  border-right: none !important;
}

.message.left .bubble.input-bubble,
#form-overlay {
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  background-color: white;
  padding: 10px;
  border-top: 2px solid;
}

.input-bubble input[type="text"],
.input-bubble input[type="number"],
.input-bubble textarea,
#form-overlay input[type="text"],
#form-overlay input[type="number"],
#form-overlay select,
#form-overlay textarea {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -webkit-box-shadow: inset -9px 19px 24px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset -9px 19px 24px 0px rgba(0, 0, 0, 0.05);
  box-shadow: inset -9px 19px 24px 0px rgba(0, 0, 0, 0.05);
  transition: 0.15s ease;
}

.input-bubble input[type="text"]:focus,
.input-bubble input[type="number"]:focus,
.input-bubble textarea:focus,
#form-overlay input[type="text"]:focus,
#form-overlay input[type="number"]:focus,
#form-overlay select:focus,
#form-overlay textarea:focus {
  outline: none;
  -webkit-box-shadow: inset 0px 19px 18px -20px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 19px 18px -20px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 19px 18px -20px rgba(0, 0, 0, 0.05);
}

.input-bubble input[type="text"],
.input-bubble input[type="number"],
.input-bubble textarea {
    width: calc(100% - 70px);
}

.message.left .bubble.input-bubble::after {
  display: none;
  content: none;
}

.message.right .bubble {
  position: relative;
  color: white;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.message.right .bubble a {
  color: white;
}

.message.right .meta {
  text-align: right;
}

.message.right .bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-top: 10px solid transparent;
  border-left-width: 10px;
  margin-left: -30px;
  margin-bottom: -10px;
}

.message.left .bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-top: 10px solid #f5f5f5;
  border-right-width: 10px;
  margin-left: 0;
  margin-bottom: -10px;
}

#send {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  display: none;
  width: 35px;
  height: 14px;
  font-size: 1em;
}

#send img {
  width: 20px;
}

#emoji {
  border-style: none;
  background: none;
  outline: none;
  transition: all 0.3s ease-in-out;
  font-size: 1em;
  cursor: pointer;
}

#emoji-selector {
  display: none;
  position: absolute;
  background-color: white;
  height: 100px;
  width: 160px;
  border-radius: 5px;
  padding: 5px;
  bottom: 50px;
  right: 10px;
  -webkit-box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.42);
  -moz-box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.42);
  box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.42);
  overflow-y: auto;
}

#emoji-selector div {
  display: inline-block;
  cursor: pointer;
  font-size: 1.1em;
  padding: 1px;
}

#attachment {
  border-style: none;
  background: none;
  outline: none;
  transition: all 0.3s ease-in-out;
  font-size: 1em;
}

#attachment:hover {
  cursor: pointer;
  /* transform: scale(1.1);*/
  background-color: transparent;
}

.message img {
  width: 100%;
}

.message video,
.message audio {
  max-width: 100%;
}

#attachment img {
  width: 16px;
}

button::-moz-focus-inner {
  border: 0;
}

#file-selector {
  display: none;
}

.articles {
  overflow-x: auto;
  white-space: nowrap;
  width: 320px;
  padding-bottom: 20px;
}

.article:only-child {
  display: block;
}

.article {
  display: inline-block;
  white-space: normal;
  margin-right: 5px;
  max-width: 160px;
  border: 3px solid #eee;
  border-radius: 10px;
  width: 148px;
}

.article img {
  width: auto !important;
}

.article .title {
  font-weight: bold;
  height: 40px;
  overflow: hidden;
  margin: 8px;
}

.article .subtitle {
  font-size: 0.85em;
  height: 50px;
  overflow: hidden;
  margin-top: 8px;
  margin-left: 8px;
  margin-right: 8px;
}

.quickreply {
  text-align: center;
  margin: 0px 0px 20px 0px;
  top: -4px;
}

.message.quickreply {
  max-width: 100%;
}

.quickreply button {
  background: none;
  border: 2px solid;
  border-radius: 50000px;
  margin: 5px;
  cursor: pointer;
  padding: 8px 15px;
}

.quickreply button:hover {
  transition: all 0.1s ease-in-out;
  /*transform: scale(1.1);*/
}

.divider {
  text-align: center;
  color: #8b8b8b;
  font-size: 10pt;
  margin-bottom: 5px;
}


#poweredby {
  width: 100%;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 5px;
  font-size: 12px;
  background: white;
  font-size: 12px;
}

#poweredby a {
  color: #666;
  text-decoration: none;
  border-radius: 30px;
}

#poweredby a:hover {
  color: #646464;
  text-decoration: none;
  background-color: #ebebeb;
  padding: 10px;
}

#poweredby img {
  height: 13px;
  position: relative;
  top: 2px;
}

a {
  color: #1da851;
}

#loading-indicator img {
  display: block;
  margin: auto;
  width: 80px;
  padding-top: 100px;
}

#button {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 5px 0px, rgba(0, 0, 0, 0.24) 0px 2px 8px 0px;
}

.button-open {
  background-image: url("logo.svg");
  background-size: 50%;
}

.button-loading {
  background-image: url("loading.svg");
  background-size: 50%;
}

.button-close {
  background-image: url("close.svg");
  background-size: 30%;
}

.button-close.use-minimize-icon {
  background-image: url("minimize.svg");
  background-size: 30%;
}

#topbar-message {
  display: inline-block;
}

#topbar-message-actions {
  padding-bottom: 10px;
}

#actions {
  display: inline;
  float: right;
  padding-right: 12px;
}

.action-button {
  border: none;
  background: none;
  color: white;
  padding: 8px 15px;
  cursor: pointer;
}

.action-button:hover {
  background-color: white;
  color: #365387;
}

#input-buttons {
  display: inline;
  position: absolute;
  right: 20px;
}

#input-buttons button {
  color: rgb(153, 153, 153);
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  transition: 0.25s ease;
}

#input-buttons button:hover {
  color: rgb(85, 85, 85);
}

#text {
  width: calc(100% - 135px);
}

.input-form label {
  display: block;
}

.input-form input {
  max-width: 200px;
  border: none;
  border: 1px solid #ccc;
  padding: 9px;
  color: #333;
}

.input-form button {
  color: white;
  padding: 10px;
  width: 45px;
  border-radius: 0 5px 5px 0 !important;
}

.row:not(:last-child) .input-form,
.row:not(:last-child).quickreply {
  display: none;
}

#form-wrapper {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  background: #0e0e0e40;
  z-index: 20;
  display: none;
  -webkit-animation: growFromBottom 0.5s, opacity 0.3s ease;
  animation: growFromBottom 0.5s, opacity 0.3s ease;
}

#form-wrapper form {
  margin-bottom: 25px;
}

#form-overlay {
  margin: 15px;
  width: calc(100% - 70px);
  height: calc(100% - 75px);
  background-color: white;
  overflow-y: auto;
  -webkit-box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.42);
  -moz-box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.42);
  box-shadow: 0px 0px 15px 4px rgba(0, 0, 0, 0.42);
  border-radius: 5px;
  padding: 20px;
  position: relative;
  z-index: 10;
}

#form-overlay h3 {
  font-weight: 300;
  font-style: italic;
  margin-top: 10px;
}

#form-wrapper label {
  display: block;
}

#form-wrapper input[type="text"],
select {
  padding: 0.65rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid #ebedf2;
  color: #575962;
  background-color: white;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 2px solid rgb(93, 93, 93);
  transition: 0.5s ease;
}

#form-wrapper input[type="text"]:focus,
select:focus {
  border-bottom-color: inherit;
}

#form-wrapper button[type="submit"] {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  margin-left: auto;
  display: block;
  transition: 0.5 ease;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

#form-wrapper button[type="submit"]::before {
  content: "";
  top: 0;
  left: 0;
  opacity: 0.2;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: white;
  transform: translate(-100%, 0);
  transition: 0.25s ease-in-out;
}

#form-wrapper button[type="submit"]:hover::before {
  transform: translate(0, 0);
}

#form-wrapper button[type="submit"]:active {
  box-shadow: none;
}

#form-wrapper button[type="submit"]:focus  {
  outline: none;
  border-bottom: 1px solid darkgray;
}

#form-wrapper input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
}

#form-wrapper input[type="checkbox"] + label {
  display: bock;
  padding-left: 25px;
}

.form-row {
  margin-bottom: 20px;
  position: relative;
}

.form-row label {
  font-size: 11.5pt;
  font-weight: 300;
}

.star-wrapper {
  margin-top: 5px;
}

.star {
  cursor: pointer;
  color: rgb(133, 133, 133);
  display: inline-block;
  width: 20px;
}

.star.highlight {
  color: inherit;
}

#typing-wrapper {
  margin-left: 10px;
  position: absolute;
  width: 100%;
}

#typing-wrapper .bubble {
  padding: 0px;
}

#typing-wrapper .content {
  margin: 5px;
}

.success-message-wrapper {
  max-width: 250px;
  margin: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: green;
  text-align: center;
}

.success-message {
  font-size: 14pt;
}

.check-icon {
  margin: auto;
  font-size: 31pt;
  border: 3px solid green;
  border-radius: 50%;
  padding: 20px;
  margin-bottom: 20px;
  -webkit-animation: bounceIn 0.6s ease-in;
  animation: bounceIn 0.6s ease-in;
  transition: 0.2s ease;
  cursor: pointer;
}

.check-icon:hover {
  transform: scale(1.1);
}

#online-agents {
  position: absolute;
  left: 22px;
  bottom: 0;
  transform: translate(0, 60%);
  height: 35px;
  text-align: left;
  transition: 0.5s ease;

}

.agent,
.agent-dots {
  margin-left: -8px;
  display: inline-block;
  position: relative;
  transition: 0.5s ease;
}

.agent:not(.agent-dots)::after {
  content: '';
  display: block;
  position: absolute;
  background-color: green;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  bottom: 20%;
  left: 2px;
  opacity: 0;
  transition: 0.5s ease;
}

.agent-dots {
  opacity: 1;
  transition: 0.4s ease;
  width: 20px;
  height: 10px;
  background: rgb(230, 230, 230);
  border-radius: 4px;
  margin-left: -7px;
}

.agent-dots::before {
  content: '...';
  display: block;
  font-size: 13pt;
  width: 15px;
  height: 10px;
  border-radius: 50%;
  color: #4d4d4d;
  text-align: center;
  transition: 0.5s ease;
  position: absolute;
  top: -10px;
  left: 2px;
}

.agent-image {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #8e8e8e;
  background-color: white;
  transition: 0.5s ease;
  cursor: pointer;
}

.agent-name {
  position: absolute;
  display: inline-block;
  padding: 5px 10px;
  top: 110%;
  left: 0;
  text-align: center;
  font-size: 8pt;
  line-height: 1;
  color: rgb(151, 151, 151);
  opacity: 0;
  transition: 0.5s ease;
  text-align: center;
  cursor: pointer;
  background: rgba(240,240,240,0.8);
  border-radius: 8px;
  text-shadow: #3f3f3f;
  box-shadow: 1px 2px 3px rgba(0,0,0,0.2);
}

#online-agents .agent:hover .agent-name {
  opacity: 1;
}

#online-agents .agent:not(.agent-dots)::after {
  opacity: 1;
}

#info {
  background-color: #fff3cd;
  position: fixed;
  bottom: 18px;
  right: 10px;
  left: 10px;
  padding: 10px;
  border-bottom-left-radius: 12px;
  z-index: 2;
  border-bottom-right-radius: 12px;
  display: none;
  min-height: 50px;
  font-size: 11pt;
}

#info-buttons {
  margin-top: 10px;
  text-align: center;
}

#info-buttons button {
  background-color: #ffdb67;
  border: none;
  padding: 5px 10px;
  margin-left: 5px;
  padding: 10px;
}

#info-link-button {
  cursor: pointer;
}

#info-link-button-link {
  display: none;
  cursor: pointer;
}

.sender-indicator {
  width: 10px;
  height: 10px;
  display: inline-block;
  position: relative;
  top: 10px;
  margin-right: 2px;
  border-radius: 100%;
  background-color: #f5f5f5;
}

#typing-wrapper .sender-indicator {
  position: absolute;
  top: 0;
}

#CV-chat-modal-wrapper.fixed #topbar {
  border-radius: 0;
}

#CV-chat-modal-wrapper.fixed #close {
  display: none;
}

/*** iPhone and iOS Form Input Zoom Fixes ***/
/* Fix Input Zoom on devices older than iPhone 5: */
@media screen and (device-aspect-ratio: 2/3) {
  select, textarea, input[type="text"], input[type="password"],
  input[type="datetime"], input[type="datetime-local"],
  input[type="date"], input[type="month"], input[type="time"],
  input[type="week"], input[type="number"], input[type="email"],
  input[type="url"]{ font-size: 16px; }
}

/* Fix Input Zoom on iPhone 5, 5C, 5S, iPod Touch 5g */
@media screen and (device-aspect-ratio: 40/71) {
  select, textarea, input[type="text"], input[type="password"],
  input[type="datetime"], input[type="datetime-local"],
  input[type="date"], input[type="month"], input[type="time"],
  input[type="week"], input[type="number"], input[type="email"],
  input[type="url"]{ font-size: 16px; }
}

/* Fix Input Zoom on iPhone 6, iPhone 6s, iPhone 7  */
@media screen and (device-aspect-ratio: 375/667) {
  select, textarea, input[type="text"], input[type="password"],
  input[type="datetime"], input[type="datetime-local"],
  input[type="date"], input[type="month"], input[type="time"],
  input[type="week"], input[type="number"], input[type="email"],
  input[type="url"]{ font-size: 16px; }
}

/* Fix Input Zoom on iPhone 6 Plus, iPhone 6s Plus, iPhone 7 Plus, iPhone 8, iPhone X, XS, XS Max  */
@media screen and (device-aspect-ratio: 9/16) {
  select, textarea, input[type="text"], input[type="password"],
  input[type="datetime"], input[type="datetime-local"],
  input[type="date"], input[type="month"], input[type="time"],
  input[type="week"], input[type="number"], input[type="email"],
  input[type="url"]{ font-size: 16px; }
}

@media screen and (max-device-width: 680px) {
  select, textarea, input[type="text"], input[type="password"],
  input[type="datetime"], input[type="datetime-local"],
  input[type="date"], input[type="month"], input[type="time"],
  input[type="week"], input[type="number"], input[type="email"],
  input[type="url"]{ font-size: 16px; }
}