/* [project]/apps/web/components/FreshChat/freshchat.css [app-client] (css) */
body #fc_frame.fc-widget-normal {
  z-index: 2500;
}

body #fc_frame.fc-widget-normal input, body #fc_frame.fc-widget-normal select, body #fc_frame.fc-widget-normal textarea {
  zoom: 1 !important;
  font-size: 16px !important;
  transform: none !important;
}

body #fc_frame.fc-widget-normal input:not(:focus), body #fc_frame.fc-widget-normal textarea:not(:focus) {
  border-color: inherit !important;
  outline: none !important;
}

body #fc_frame.fc-widget-normal input, body #fc_frame.fc-widget-normal textarea {
  transition: all .2s !important;
}

body #fc_frame.fc-widget-normal input.blurred, body #fc_frame.fc-widget-normal textarea.blurred {
  border-color: inherit !important;
  box-shadow: none !important;
  outline: none !important;
}

#freshchat-messaging-facade {
  z-index: 2222;
  min-width: 70px;
  min-height: 70px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  overflow: hidden;
}

#freshchat-messaging-icon {
  cursor: pointer;
  z-index: 9999;
  background-color: #45a4ec;
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 70 70'%3E%3Cg%3E%3Cpath fill='transparent' d='M35,0H61.3a8.76,8.76,0,0,1,8.76,8.76V35a35,35,0,0,1-35,35h0A35,35,0,0,1,0,35v0A35,35,0,0,1,35,0Z' /%3E%3Cpath fill='%23fff' d='M45.77,22.23H28.26A8.76,8.76,0,0,0,19.5,31V45.89a1.94,1.94,0,0,0,1.95,1.94H45.77a8.76,8.76,0,0,0,8.76-8.76V31A8.76,8.76,0,0,0,45.77,22.23ZM39.45,41H26.8a1.7,1.7,0,1,1,0-3.4H39.45a1.7,1.7,0,0,1,0,3.4Zm7.78-8.33H26.8a1.71,1.71,0,1,1,0-3.41H47.23a1.71,1.71,0,0,1,0,3.41Z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 45px;
  border: 0;
  border-radius: 34px 8px 34px 34px;
  width: 60px;
  height: 60px;
  animation-name: zoom;
  animation-duration: .5s;
  animation-fill-mode: both;
  position: absolute;
  bottom: 6px;
  right: 5px;
  box-shadow: 0 5px 4px #00000042;
}

#freshchat-messaging-icon:focus {
  outline: 0 !important;
}

.freshchat-messaging-icon-loading {
  opacity: .8;
  cursor: auto !important;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' xmlns='http://www.w3.org/2000/svg'%3E%3Cstyle%3E %23a %7B animation:x 2s infinite%7D @keyframes x %7B from %7B fill:transparent;stroke-width:10px;%7D to %7B fill:%23fff;%7D %7D %3C/style%3E%3Ccircle id='a' cx='26' cy='26' r='14' fill='%23fff' /%3E%3C/svg%3E") !important;
}

@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

body.fc-widget-open #freshchat-messaging-facade {
  display: none;
}

