.chatbox {
  z-index: 1000;
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 480px) {
  .chatbox {
    right: 0;
    bottom: 0;
  }
}
.chatbox .chatclose,
.chatbox .chat_close_one {
  position: absolute;
  top: 6px;
  right: 6px;
  cursor: pointer;
  background-color: #2f3137;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 99;
}
@media (max-width: 767px) {
  .chatbox .chatclose,
  .chatbox .chat_close_one {
    top: -14px;
    right: 14px;
  }
}
.chatbox .chat_close_two {
  width: 26px;
  height: 26px;
  top: -8px;
  right: -8px;
  z-index: 99;
  background-color: #fff;
}
.chatbox .chat_close_two img {
  filter: brightness(0);
}
@media (max-width: 767px) {
  .chatbox .chat_close_two {
    top: 10px;
    right: 20px;
  }
}
.chatbox .thumbnail {
  display: block;
}
@media (max-width: 767px) {
  .chatbox .thumbnail {
    position: relative;
    right: 20px;
    bottom: 20px;
  }
}
.chatbox .preview {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  cursor: pointer;
}
@media (max-width: 767px) {
  .chatbox .preview {
    width: 100px;
    height: 100px;
  }
}
.chatbox .video_box {
  max-width: 370px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .chatbox .video_box {
    max-width: 100vw;
    border-radius: 0px;
    left: -15px;
    position: relative;
  }
  .chatbox .video_box > div {
    width: calc(100vw - 30px);
    position: relative;
    overflow: hidden;
  }
}
.chatbox .video_box video {
  width: 100%;
  border-radius: 10px;
  max-height: calc(100vh - 60px);
  height: 100%;
}
@media (max-width: 480px) {
  .chatbox .video_box video {
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
    height: calc(100vh - 100px);
  }
}
.chatbox .options {
  position: absolute;
  bottom: 100px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.chatbox .options .option {
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0px 12px 0px 16px;
  border-radius: 44px;
  font-size: 14px;
  color: #fff;
  transition: opacity 0.3s ease 0s;
  margin: 5px;
  justify-content: normal;
  min-width: 280px;
  max-width: 268px;
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  min-height: 50px;
  height: -moz-fit-content;
  height: fit-content;
  gap: 16px;
  cursor: pointer;
}
.chatbox .options .option span {
  color: #fff;
  pointer-events: none;
}
.chatbox .options .option .order {
  background-color: #fff;
  border-radius: 50%;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
  width: 25px;
  height: 25px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.chatbox .options .option a {
  color: #fff;
  text-align: center;
}
.chatbox .options .option.j_c {
  justify-content: center;
}

video {
  z-index: 1;
}

.hidden {
  display: none !important;
}

.back_arrow {
  width: 20px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 99;
  cursor: pointer;
}

video::-webkit-media-controls-fullscreen-button {
  display: none;
}/*# sourceMappingURL=chat.css.map */