.ccl-integration-fab {
  position: fixed;
  bottom: 16px;
  right: 16px;
  height: 81px;
  width: 81px;
  border-radius: 50%;
  background-color: #387bfe;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  right: 30px;
  bottom: 30px;
  z-index: 50000;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transition: translateY(133px);
  -o-transition: translateY(133px);
  transition: translateY(133px);
}

.ccl-integration-fab.ccl-show {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.ccl-integration-fab .ccl-icon {
  height: 81px;
  width: 81px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  position: absolute;
}

.ccl-integration-fab .ccl-icon.ccl-chat-icon {
  background: url(https://www.clientchatlive.com/wp-content/uploads/2019/02/ic-chat.png)
    no-repeat center;
}

.ccl-integration-fab .ccl-icon.ccl-close-icon {
  background: url(https://www.clientchatlive.com/wp-content/uploads/2019/07/close.png)
    no-repeat center;
  transform: rotate(80deg) scale(0.6);
  opacity: 0;
}

.ccl-app-container.ccl-is-open .ccl-icon.ccl-chat-icon {
  -webkit-transform: rotate(-80deg) scale(0.6);
  -ms-transform: rotate(-80deg) scale(0.6);
  transform: rotate(-80deg) scale(0.6);
  opacity: 0;
  z-index: 0;
}

.ccl-app-container.ccl-is-open .ccl-icon.ccl-close-icon {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
}

.ccl-chat-frame-container {
  -moz-box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 16px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 16px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 16px;
  position: fixed;
  height: 705px;
  width: 376px;
  background: white;
  bottom: 130px;
  right: 30px;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

.ccl-app-container.ccl-is-open .ccl-chat-frame-container {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  pointer-events: all;
  z-index: 9999999999999;
}

.ccl-chat-frame-container iframe {
  width: 100%;
  height: 100%;
  border: 0px;
}

.ccl-button-close {
  cursor: pointer;
  position: absolute;
  padding: 6px;
  top: 18px;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 28px;
  border-radius: 50%;
  color: #505f79;
}
.ccl-button-close:hover {
  background: rgba(9, 30, 66, 0.08);
  color: #0052cc;
}

.ccl-button-close .ccl-icon {
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 576px) {
  html.ccl-overflow-hidden {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
  }

  .ccl-chat-frame-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0 !important;
    height: 100%;
    width: 100%;
    border-radius: 0px;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);

    z-index: unset;
    -moz-box-shadow: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
  }

  .ccl-app-container.ccl-is-open .ccl-chat-frame-container {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
  }
}

@media only screen and (min-width: 576px) {
  .ccl-chat-frame-container {
    max-height: calc(100vh - 150px);
  }
}
