html,
body {
  overscroll-behavior: contain; /* Отключает автоскролл на iOS */
  position: relative;
}

.chat {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100vw;
  max-height: 100vh;
  /* min-height: 100vh;
  min-height: -webkit-fill-available;
  max-height: 100vh; */
  background: var(--color-grey-800);
  z-index: 99;
  overflow: hidden;
}
.chat_d {
  background: rgba(0, 0, 0, 0.9);
}
.flex {
  display: flex;
}
button,
textarea {
  all: unset;
}
.chat img {
  width: 30px;
}

.chatBody {
  position: absolute;
  /* overflow: auto; */
  right: 0;
  justify-content: end;
  width: 640px;
  /* min-height: 100vh;
  min-height: -webkit-fill-available;
  max-height: 100vh; */
  color: var(--white);
  background-color: var(--color-grey-775);
}
.chatBody_pr {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
.chatList {
  position: relative;
  width: 100%;
  overflow: auto;
  box-sizing: border-box;
}
.chatList::-webkit-scrollbar {
  width: 8px; /* Ширина скроллбара */
}
.chatList::-webkit-scrollbar-thumb {
  background-color: #bfc4ca; /* Цвет бегунка */
  border-radius: 4px; /* Скругление углов бегунка */
}
.chatList_pr {
  position: relative;
  width: 40%;
  /* height: 100vh;
  min-height: -webkit-fill-available; */
  border-right: 1px solid var(--secondary-hover);
  background: var(--color-grey-775);
}
.supplierNotFound {
  padding: 0 12px;
}
.supplierNotFound img {
  width: 88px;
  height: 88px;
}
.supplierNotFound p {
  font-size: 14px;
  font-weight: 500;
  line-height: 143%;
  margin-top: 4px;
}
.emptyChatListText1 {
  font-weight: 700 !important;
}
.emptyChatListText3 {
  color: #ffab51;
  font-size: 12px;
  font-weight: 400;
  line-height: 133%;
}
.emptyChatListText3 span {
  font-weight: 700;
}
.sortBtn_pr {
  /* display: block; */
  padding: 0 12px;
}
.sortBtn_pr button {
  display: -webkit-flex;
  display: flex;
  gap: 4px;
  align-items: center;
}
.sortBtn_pr button p {
  font-size: 12px;
  font-weight: 400;
}
.sortBtn_pr button svg {
  height: 15px;
}
/* chatBodyHeader - start*/
.chatBodyHeader {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 0;
}
.chatBodyHeader_pr {
  position: absolute;
  top: 0;
  width: 100%;
  box-sizing: border-box;
}
.chatBodyHeaderTitle {
  display: -webkit-flex;
  display: flex;
  gap: 16px;
  width: 100%;
  margin-bottom: 4px;
  padding: 16px;
}
.chatBodyHeaderTitle img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-sizing: border-box;
}
.chatBodyHeaderInfo {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.btnBoxForProductHeader {
  display: -webkit-flex;
  display: flex;
  gap: 6px;
  align-items: center;
}
.chatBodyHeaderInfo button {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.chatBodyHeaderInfo button p {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  color: var(--color-grey-300);
  transition: color 0.5s;
}
.chatBodyHeaderInfo button svg {
  height: 16px;
}
@media (min-width: 640px) {
  .chatBodyHeaderInfo button:hover p {
    color: var(--white);
  }
  .chatBodyHeaderInfo button svg path {
    stroke: var(--color-grey-300);
    transition: fill 0.5s;
  }
  .chatBodyHeaderInfo button:hover svg path {
    stroke: var(--white);
  }
}
@media (max-width: 640px) {
  .chatBodyHeaderInfo button svg path {
    stroke: var(--white);
  }
}
.chatBodyProductName {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  width: 80%;
  white-space: nowrap; /* Запрещаем перенос текста */
  overflow: hidden; /* Скрываем часть текста, которая не помещается */
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.chatBodyCattegories {
  display: -webkit-flex;
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--secondary-hover);
}
.chatBodyCattegories button {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 143%;
  padding-bottom: 10px;
  color: var(--grayColor);
  margin-left: 12px;
  border-bottom: 2px solid var(--color-grey-775);
  transition: color 0.5s, border-bottom 0.5s;
  cursor: pointer;
}
@media (min-width: 640px) {
  .chatBodyCattegories button:hover {
    /* border-bottom: 2px solid var(--white); */
    color: var(--white);
  }
}
.textDefault {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60%;
}
.textDefault p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-prizrak);
}
.chatBodyCattegoryActive {
  color: var(--white) !important;
  border-bottom: 2px solid var(--white) !important;
}
.active svg path {
  fill: #dde1e4;
  transition: all 0.5s;
}
.active:hover {
  cursor: pointer;
}
@media (min-width: 640px) {
  .active:hover svg path {
    fill: var(--primary);
  }
}
@media (max-width: 640px) {
  .active svg path {
    fill: var(--primary);
  }
}

.categoryForSpeakers {
  padding: 0 12px;
  gap: 16px;
  flex-wrap: wrap;
}
.categoryChatSpeakersChild {
  position: relative;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--secondary-hover);
  color: var(--white);
  transition: background 0.5s, color 0.5s;
}

@media (min-width: 640px) {
  .categoryChatSpeakersChild:hover {
    background: var(--white);
    color: var(--blackText-100);
  }
}
.catChatActive {
  background: var(--white);
  color: var(--blackText-100);
}
.categoryChatSpeakersChild p {
  font-size: 14px;
  font-weight: 500;
}
.countChatProductCategory {
  color: var(--color-grey-500);
}
/* chatBodyHeader - end*/

/* chatList - start*/
.chatListContent {
  overflow: auto;
  box-sizing: border-box;
}
.chatListContent_pr {
  box-sizing: border-box;
}
/* Стилизация бегунка */
.chatListContent::-webkit-scrollbar {
  width: 8px; /* Ширина скроллбара */
}
.chatListContent::-webkit-scrollbar-thumb {
  background-color: #bfc4ca; /* Цвет бегунка */
  border-radius: 4px; /* Скругление углов бегунка */
}
.chatListBtns {
  position: absolute;
  bottom: 0;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.chatListBtns button {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  cursor: pointer;
}
.findProvider {
  background: var(--secondary-click);
  transition: background 0.5s;
}
.massRequest {
  background: #8c78ff;
  transition: background 0.5s;
}
@media (min-width: 640px) {
  .findProvider:hover {
    background: var(--secondary-hover);
  }
  .massRequest:hover {
    background: #9583ff;
  }
}
.chatListBtns button p {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: var(--white);
}
.chatListBtns button svg {
  height: 16px;
}
.chatHeader {
  display: -webkit-flex;
  display: flex;
  padding: 0 calc(0.5vw + 14.3px);
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.chatHeader p {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
}
.chatListContent {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.speaker {
  position: relative;
  padding: 0;
  padding-left: 16px;
  /* padding-right: 36px; */
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
  cursor: pointer;
  width: 100%;
  /* transition: background-color 0.2s; */
}
/* .speaker:hover {
  background-color: var(--secondary-hover);
} */
.speakerBoxPersonHeader {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-right: 10px;
  box-sizing: border-box;
}
.speakerBoxPersonBottom {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-right: 10px;
  box-sizing: border-box;
}
/* .speakerBoxPersonBottom .svgBtn{
  display: none;
}
.speaker:hover .speakerBoxPersonBottom .svgBtn{
  display: block;
} */
.otherInfo {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grayColor);
}
.otherInfo p {
  font-size: calc(0.125vw + 9.6px);
  font-weight: 400;
}
.otherInfoChild {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 6px;
}
.themeBox {
}
.theme {
  padding: 4px 8px;
  background-color: var(--secondary-click);
  color: var(--color-grey-300);
  border-radius: 4px;
  max-width: min-content;
  white-space: nowrap; /* Запрещаем перенос текста */
  overflow: hidden; /* Скрываем часть текста, которая не помещается */
  text-overflow: ellipsis;
}
.otherInfoChild img {
  width: 12px;
}
.speakerBoxPersonBottom .count {
  margin-right: 30px;
}
.lastMessageTime {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: var(--grayColor);
  margin-right: 30px;
}
.speakerProductInfo {
  display: flex;
  justify-content: start;
  gap: 14px;
}
.speakerNameBox {
  display: flex;
  align-items: center;
  gap: 6px;
}
.speakerNameBox svg {
  width: 12px;
}
.speakerNameBox p {
  color: var(--grayColor);
  font-size: 12px;
  font-weight: 400;
  line-height: 133.333%;
}
.speakerCategory {
  color: var(--color-grey-300);
  font-size: 12px;
  font-weight: 400;
  line-height: 133.333%;
  padding: 4px 6px;
  border-radius: 4px;
  background: var(--secondary-click);
}
.speaker .speakerBoxImg img {
  border-radius: 4px;
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
}
.speaker .speakerDesBoxImg img {
  border-radius: 32px;
}
.speaker .speakerBoxImg_pr img {
  border-radius: 4px;
}
.speaker .speakerBoxPerson {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--secondary-hover);
  padding: 16px 0;
}
.speaker .speakerBoxPerson .speakerName {
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  width: clamp(100px, calc(38.6vw - 140px), 400px);
  max-width: min-content;
  white-space: nowrap; /* Запрещаем перенос текста */
  overflow: hidden; /* Скрываем часть текста, которая не помещается */
  text-overflow: ellipsis;
}
.speaker .speakerBoxPerson .speakerPost {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #8f8f8f;
}
.speaker .speakerBoxPerson .lastMessage {
  max-width: 300px;
  font-size: 14px;
  font-weight: 400;
  color: var(--grayColor);
  white-space: nowrap; /* Запрещаем перенос текста */
  overflow: hidden; /* Скрываем часть текста, которая не помещается */
  text-overflow: ellipsis;
  box-sizing: border-box;
}
/* chatList - end*/

/* ____________________________________________________________________________________ */

/* chatDialogue - start*/
.chatDialogue {
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
.chatDialogue_pr {
  width: 60%;
  /* min-height: 100vh;
  min-height: -webkit-fill-available;
  max-height: 100vh; */
}
.chatDialogue .conversationHeader {
  position: absolute;
  top: 0;
  background-color: var(--color-grey-900);
  border-bottom: 1px solid var(--secondary-click);
  width: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 10px;
  padding-bottom: 10px;
  gap: 16px;
}
.conversationHeader_pr {
  position: absolute;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--secondary-click);
}
.chatDialogue .conversationHeader .conversationImg {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.chatDialogue .conversationHeader .conversationImg img {
  border-radius: 3px;
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
}
.chatDialogue .conversationHeader .conversationDesImg img {
  border-radius: 32px;
}
.chatDialogue .conversationHeader .conversationPerson {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.conversationPerson .second {
  display: flex;
  gap: 8px;
  align-items: center;
}
.conversationPerson .first {
  font-size: 14px;
  font-weight: 600;
  line-height: 143%;
  width: calc(100vw - 100px);
  white-space: nowrap; /* Запрещаем перенос текста */
  overflow: hidden; /* Скрываем часть текста, которая не помещается */
  text-overflow: ellipsis;
  box-sizing: border-box;
}
.conversationPerson .second p {
  color: var(--grayColor);
  font-size: 12px;
  font-weight: 400;
  line-height: 133%;
}
.chatDialogue .conversationHeader .conversationPerson p:nth-child(2) {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
}
.chatDialogue .conversationHeader .conversationPerson p:nth-child(2) {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #8f8f8f;
}

.chatBodyContainer {
  height: 80vh;
}
.chatBodyContainer_pr {
  height: 100vh;
  min-height: -webkit-fill-available;
}
.chatDialogue .messagesContainer {
  display: -webkit-flex;
  display: flex;
  flex-direction: column-reverse;
  justify-content: end;
  padding: 20px 10px;
  overflow: auto;
  background: var(--color-grey-800);
  box-sizing: border-box;
}

.messagesContainer_pr {
}

/* Стилизация бегунка */
.chatDialogue .messagesContainer::-webkit-scrollbar {
  width: 8px; /* Ширина скроллбара */
}
.chatDialogue .messagesContainer::-webkit-scrollbar-thumb {
  background-color: #bfc4ca; /* Цвет бегунка */
  border-radius: 4px; /* Скругление углов бегунка */
}
.chatDialogue .inputContainer {
  position: absolute;
  bottom: 0;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  gap: 16px;
  width: 100%;
  padding: 4px 16px;
  box-sizing: border-box;
  height: min-content;
  /* border-radius: 0 0 8px 0; */
}
.inputContainer .userImgContainer {
  position: relative;
  width: 100px;
}
.inputContainer .userImgContainer img {
  position: relative;
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: center;
  box-shadow: 5px 5px 8px black;
}
.inputContainer .userImgContainer {
  width: 60px;
  height: 60px;
}
.inputContainer .userImgContainer .deleteIcon {
  position: absolute;
  top: -5px;
  right: 2px;
  z-index: 10;
  opacity: 0.6;
}
@media (min-width: 640px) {
  .inputContainer .userImgContainer .deleteIcon:hover {
    color: white;
    opacity: 1;
  }
}

.fileNameContainer {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.fileNameContainer span {
  font-size: 12px;
  transition: color 0.5s;
  cursor: pointer;
}
.fileNameContainer button {
  font-size: 15px;
  transform: rotate(45deg);
  transition: color 0.5s, transform 0.5s;
  cursor: pointer;
  margin-left: 4px;
}
@media (min-width: 640px) {
  .fileNameContainer span:hover {
    color: var(--primary);
  }
  .fileNameContainer button:hover {
    color: var(--red);
    transform: rotate(445deg);
  }
}
.inputContainer.inputContainer_pr {
  justify-content: space-between;
  background-color: var(--secondary-click);
}
.chatDialogue .inputContainer label svg {
  height: 32px;
  padding: 0;
}
.chatDialogue .inputContainer label path {
  height: 32px;
  padding: 0;
}

.chatDialogue .inputContainer button svg path {
  transition: fill 0.5s;
}
.fileInputLabel svg path {
  transition: stroke 0.5s;
}
.fileInputLabel {
  display: -webkit-flex;
  display: flex;
  cursor: pointer;
}
@media (min-width: 640px) {
  .fileInputLabel:hover svg path {
    stroke: var(--primary) !important;
  }
}
.chatDialogue .inputContainer textarea {
  width: 90%;
  box-sizing: border-box;
  resize: none;
  overflow-y: auto;
  word-wrap: break-word;
  height: 44px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.inputContainer .textFileContainer {
  width: 90%;
  padding: 10px;
  box-sizing: border-box;
  resize: none;
  overflow-y: auto;
}
.messagesContainer .textFileContainer {
  margin-left: 44px;
  margin-top: -10px;
}
.inputContainer .textFileContainer .textFileTitle p {
  font-size: 14px !important;
}

.inputContainer_pr textarea {
  width: 90% !important;
}
.chatDialogue .inputContainer textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.btnActive svg path {
  fill: var(--primary) !important;
  cursor: pointer;
}
.btnActive {
  cursor: pointer;
}

/* chatDialogue - end*/

/* message - start*/
.message {
  display: -webkit-flex;
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.message .messageImg img {
  width: 32px;
  height: 32px;
  border-radius: 21px;
}
.message .messageBody {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.message .messageBody .messageHeader {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}
.message .messageBody .messageHeader .messageHeaderName {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--primary);
}
.message .messageBody .messageHeader .messageTime {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  color: #8f8f8f;
}
.chatBody_pr .message .messageContent .messageText {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  width: 50vw;
  word-wrap: break-word;
}
.chatBody .message .messageContent .messageText {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  width: clamp(100px, 50vw, 550px);
  word-wrap: break-word;
}
.message .messageContent .messageImgContent img {
  width: 300px;
  border-radius: 8px;
}
.messageDate {
  font-size: 12px;
  font-weight: 400;
  margin: 0 auto;
  color: var(--grayColor);
  margin-top: 24px;
}
.backBtnToList {
  display: -webkit-flex;
  display: flex;
  cursor: pointer;
}
.backBtnToList_pr {
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.exitChat {
  position: absolute;
  top: 24px;
  right: 20px;
  cursor: pointer;
}
.offerMessage {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 8px;
  padding: 12px;
  margin-left: 44px;
  box-sizing: border-box;
  border-radius: 7px;
  background-color: var(--secondary-click);
  cursor: pointer;
  transition: background-color 0.5s;
}
@media (min-width: 640px) {
  .offerMessage:hover {
    background-color: var(--secondary);
  }
}
.offerMessageLeft {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
}
.offerMessageLeft img {
  border-radius: 5px;
  width: 24px;
  height: 24px;
  object-fit: cover;
  object-position: center;
}
.offerMessageLeft p {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  width: 450;
  white-space: nowrap; /* Запрещаем перенос текста */
  overflow: hidden; /* Скрываем часть текста, которая не помещается */
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.offerMessageRight {
  transform: rotate(180deg);
  height: 20px;
}
.countUnreadMessagesBtn {
  position: relative;
  position: fixed;
  right: 20px;
  bottom: 60px;
  width: 31px;
  height: 31px;
  cursor: pointer;
}

@media (min-width: 640px) {
  .countUnreadMessagesBtn:hover svg circle {
    transition: stroke .5s;
    stroke: var(--secondary);
  }
  .countUnreadMessagesBtn:hover svg path {
    transition: stroke .5s;
    stroke: var(--secondary);
  }
}
@media (max-width: 640px) {
  .countUnreadMessagesBtn svg circle {
    transition: stroke .5s;
    stroke: var(--secondary);
  }
  .countUnreadMessagesBtn svg path {
    transition: stroke .5s;
    stroke: var(--secondary);
  }
}
.countUnreadMessages {
  position: absolute;
  top: -6px;
  right: 9px;
}
.countUnreadMessages.countStyle {
  padding: 1px 4px;
}
/* message - end*/

@media (max-width: 1200px) {
  .message .messageContent .messageImgContent img {
    width: calc(17.86vw + 85.7px);
    border-radius: 8px;
  }
  .speaker .speakerBoxPerson .lastMessage {
    /* width: calc(41.7vw - 240px); */
  }
}
@media (max-width: 960px) {
  .speaker .speakerBoxPerson .speakerName {
    width: 80%;
  }
  .speaker .speakerBoxPerson .lastMessage {
    width: 80%;
  }
  .chatList {
    width: 100%;
  }
  .chatDialogue {
    width: 100%;
  }
  .textDefault {
    display: none;
  }
}
@media (max-width: 900px) {
  .backBtnToList_pr {
    display: -webkit-flex;
    display: flex;
  }
}
@media (min-width: 640px) and (max-width: 960px) {
  .chatHeaderImg {
    margin-right: 40px;
  }
  .exitChat {
    top: 22px;
  }
  .chatBody_pr {
    width: 100vw;
  }
  .chatList_pr {
    width: 100vw;
  }
}
@media (max-width: 640px) {
  .chatDialogue .inputContainer {
    position: fixed;
  }
  .speaker .speakerBoxPerson .speakerName {
    width: calc(122vw - 247px);
  }
  .offerMessageLeft p {
    width: calc(88vw - 114px);
  }
  .chatBodyProductName {
    width: 70%;
  }
  .chatDialogue_pr {
    width: 100vw;
  }
  .speakerBoxPersonBottom .svgBtn {
    display: block;
    padding: 5px;
  }
  .chatBody_pr .message .messageContent .messageText {
    width: calc(100vw - 80px);
  }
  .chatBody .message .messageContent .messageText {
    width: calc(100vw - 80px);
  }

  .speaker .speakerBoxPerson .lastMessage {
    width: 80%;
  }
  .chatHeaderImg {
    margin-right: 40px;
  }
  .exitChat {
    top: 22px;
  }
  .chatDialogue .conversationHeader .conversationImg {
    display: none;
  }
  .chatDialogue .conversationHeader {
    padding: calc(0.5vw + 10.3px);
  }
  .chatBody {
    width: 100vw;
    /* height: 100vh; */
    min-height: -webkit-fill-available;
  }
  .chat {
    width: 100vw;
    /* height: 100vh; */
    min-height: -webkit-fill-available;
    border-radius: 0;
    top: 0;
    right: 0;
  }
}
@media (max-width: 500px) {
  .speaker .speakerBoxPerson .lastMessage {
    max-width: calc(66.6vw - 33.3px);
  }
}
