.chatbox {
  border: none;
  width: 322px;
  height: 440px;
  padding: 0;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  font-family: 'Mukta', sans-serif;
  right: 20px;
  bottom: 20px;
  left: auto;
  top: auto;
}

.chatbox::backdrop {
  opacity: .25;
  background: white;
}

.chatbox[open] {
  display: flex;
}

.chatbox::backdrop {
  background-color: rgba(0,0,0, .6);
}

.chatbox__head {
  display: flex;
  justify-content: space-between;
  padding: 11px 14px;
}

.chatbox__close {
  color: inherit;
  background: transparent;
  border: none;
}

.chatbox__close::after {
  content: '';
  font-family: 'icomoon' !important;
}

.chatbox__title {
  color: inherit;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.chatbox__content {
  flex-grow: 1;
  border: none;
}

.chatbox__trigger {
  background: #E27600;
  border: none;
  padding: 1em;
  color: white;
  font-family: 'icomoon' !important;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}

@media (max-width: 650px) {
  .chatbox__trigger,
  .chatbox {
    bottom: 65px;
  }
}

@media (max-width: 376px) {
  .chatbox {
    width: 85.63vw;
  }
}