.inline-block {
  display: inline-block;
  vertical-align: top;
}

.row {
  display: flex;
}

.ui-loading .ui-loader {
  display: none !important;
}
.call-buyer-btn {
  border: #a0a0a0 0.13rem solid;
  border-radius: 0.8rem;
  width: 12%;
  height: fit-content;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: #fff;
}
.call-buyer-btn svg {
  width: 66%;
}
.click-area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.mic_chat {
  width: 3.4375rem;
  height: 3.4375rem;
  text-align: center;
  margin-left: 0.75rem;
  padding: 0.6875rem;
  border-radius: 6.25rem;
  cursor: pointer;
}

.mic_chat svg {
  width: 100%;
  height: auto;
}

.Stop-Recording {
  background: red;
  animation-name: example;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes example {
  25% {
    background-color: rgba(255, 0, 0, 1);
  }
  50% {
    background-color: rgba(255, 0, 0, 0);
  }
  25% {
    background-color: rgba(255, 0, 0, 1);
  }
}

.microphone-message {
  width: calc(100% - 4.1875rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  text-align: right;
}

.microphone-message .display p {
  margin-bottom: 0;
  margin-right: 0.3125rem;
}

.microphone-delete-button {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  background: white;
  border-radius: 6.25rem;
  cursor: pointer;
}

.microphone-delete-button::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  background: #5f5f5f;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  clip-path: polygon(
    10% 0,
    0 10%,
    40% 50%,
    0 90%,
    10% 100%,
    50% 60%,
    90% 100%,
    100% 90%,
    60% 50%,
    100% 10%,
    90% 0,
    50% 40%
  );
}

.none {
  display: none !important;
}

.display audio {
  margin-top: 0.3125rem;
  margin-left: 0.75rem;
}

.col-3 {
  width: 33%;
}

.col-9 {
  width: 67%;
}

.chat_desktop {
  height: 100vh;
  padding-top: 7.375rem;
}
.chat_desktop-row {
  position: relative;
}
.chat_desktop-row,
.chat_desktop .col-3,
.chat_desktop .col-9,
.chat_desktop .chat_list,
.chat_desktop .chat {
  height: 100%;
}

.header_chat {
  background: #00a5d9;
  height: 6.3125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
}

.chat_list {
  height: 88vh;
  border-left: 0.0625rem solid #c4c4c4;
}

.header_chat_list {
  background: #f4f4f4;
  height: 6.3125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
}

.input_chat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #5f5f5f;
  padding: 1.6875rem 5%;
}

.input_chat input {
  background: #ffffff;
  border-radius: 1.875rem;
  width: 100%;
  height: 3.4375rem;
  border: 0;
  padding: 0 2rem 0 4rem;
}

.chat_submit input[type='submit'] {
  background-image: url('../../../static/images/sub_but.svg');
  background-size: contain;
  background-position: 10px;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 1.46625rem;
  height: 1.579375rem;
  font-size: 0;
  position: absolute;
  left: 1.25rem;
  top: 25%;
}

.chat_submit {
  position: relative;
  width: 80%;
  padding: 0;
}

.chat-upload-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-text-wrapper {
  display: flex;
  flex-direction: column;
  height: calc(100% - 6.3125rem);
}

.text_chat {
  height: 100%;
  overflow-y: auto;
  padding: 1rem 0;
}

.logo_company img {
  background: #ffffff;
  border: 0.0625rem solid #373737;
  width: 4.0625rem;
  height: 4.0625rem;
  border-radius: 50%;
  display: inline-flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  object-position: center;
}
.logo_company.img_container_chat img {
  width: 100%;
  height: 100%;
}

.logo_company span {
  display: inline-block;
  vertical-align: middle;
  color: #00a5d9;
  font-size: 1.375rem;
  margin-right: 0.625rem;
}

.card_chat {
  position: relative;
  width: 100%;
  background-color: #fff;
  cursor: pointer;
  overflow: hidden;
}

.cardHasStar {
  position: absolute;
  width: 1.5625rem;
  height: 1.5rem;
  background: #373737;
  top: 0.625rem;
  left: 0.625rem;
  clip-path: polygon(
    50% 0,
    65% 33%,
    100% 38%,
    75% 64%,
    81% 100%,
    50% 83%,
    19% 100%,
    25% 63%,
    0 38%,
    35% 33%
  );
}

.the_card_chat {
  position: relative;
  border-top: 0.0625rem solid #c4c4c4;
  border-bottom: 0.0625rem solid #c4c4c4;
  padding: 1.25rem 2.1875rem;
}

.card_chat:hover .arrow_more_info_chat {
  display: flex;
}

.color_card_chat1:hover {
  background: #eff9ff !important; /*F1FFED !important;*/
}

.color_card_chat2:hover {
  background: #fff9f0 !important;
}

.color_card_chat3:hover {
  background: #eff9ff !important;
}

.color_card_chat1.active {
  background: #f1ffed !important;
}

.color_card_chat2.active {
  background: #fff9f0 !important;
}

.color_card_chat3.active {
  background: #eff9ff !important;
}

.card_chat:hover {
  background: #fff5f7;
}

.card_chat.active {
  background: #fff5f7;
}
.card_chat .arrow_more_info_chat > svg {
  width: 4%;
}
.card_chat.active .arrow_more_info_chat > svg {
  transform: rotate(180deg);
  transition: 0.3s;
}

.card_chat:hover .arrow_more_info_chat {
  display: flex;
}

/*.color_card_chat1:hover {
    background: #F1FFED !important;
}*/

.color_card_chat2:hover {
  background: #fff9f0 !important;
}

.color_card_chat3:hover {
  background: #eff9ff !important;
}

.color_card_chat1.active {
  background: #f1ffed !important;
}

.color_card_chat2.active {
  background: #fff9f0 !important;
}

.color_card_chat3.active {
  background: #eff9ff !important;
}

.card_chat:hover {
  background: #fff5f7;
}

.card_chat.active {
  background: #fff5f7;
}

/*.card_chat.active svg {
    transform: rotate(180deg);
    transition: .3s;
}*/

.arrow_more_info_chat {
  width: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0.25rem;
  cursor: pointer;
  display: flex;
  color: #00a5d9;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
}

.card_chat.active .arrow_more_info_chat {
  display: flex;
}

.img_chat {
  display: inline-block;
  vertical-align: top;
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  position: relative;
  margin-left: 1.25rem;
}

.img_chat img {
  width: 6.25rem;
  height: 6.25rem;
  background: white;
  border: 0.0625rem solid #898989;
  border-radius: 50%;
  object-fit: cover;
}

.text_previw_chat {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 7.8125rem);
}

.last-message {
  height: 1.5rem;
  overflow: hidden;
}

.name_time {
  display: flex;
  justify-content: space-between;
}

.name_time .name {
  font-weight: 700;
  font-size: 1.4375rem;
  line-height: 1.9375rem;
  text-align: right;
  color: #373737;
}

.number_chat {
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  border: 0.125rem solid #00a5d9;
  color: #00a5d9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.875rem;
  position: absolute;
  top: 0;
  right: -0.4375rem;
}

.color_number1 {
  border: 0.125rem solid #69c720;
  color: #69c720;
}

.color_number2 {
  border: 0.125rem solid #ff9900;
  color: #ff9900;
}

.color_number3 {
  border: 0.125rem solid #208cc7;
  color: #208cc7;
}

.button_chat {
  display: flex;
}

.button_chat div {
  margin-right: 0.625rem;
}

.the_lest_chat {
  height: calc(100% - 13.6875rem);
  overflow-y: auto;
  position: relative;
}

.the_lest_chat::-webkit-scrollbar {
  width: 0.3125rem;
}

.the_lest_chat::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.the_lest_chat::-webkit-scrollbar-thumb {
  background: #888;
}

.the_lest_chat::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.the_lest_chat.scroll-off {
  overflow-y: hidden;
}

.search_list {
  height: 7.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 3rem;
  background-color: #fff;
}

.search_list input {
  width: 100%;
  height: 3.125rem;
  background: #ffffff;
  border: 0.0625rem solid #c4c4c4;
  border-radius: 1.875rem;
  padding: 0 2rem;
  background-image: url('../../../static/images/glass_s.svg');
  background-size: 1.5625rem;
  background-position: 0.625rem;
  background-repeat: no-repeat;
}

.info_of_chat {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.three_point svg {
  width: 4.875rem;
}

.img_person_chat {
  border: 0.0625rem solid #ffffff;
  width: 4.5rem;
  height: 4.5rem;
  background: white;
  border-radius: 50%;
}

.name_of_chat {
  margin-right: 0.625rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2.0625rem;
}

.img_person_chat img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  border-radius: 50%;
}

.chat_user,
.chat_user_agency {
  display: flex;
  transition: 1s;
  padding: 0.5rem 2.8125rem;
}

.chat-reply-message-wrap {
  position: relative;
  width: calc(100% + 0.9375rem);
  background: rgba(0, 0, 0, 0.1);
  padding: 0.9375rem 1.25rem;
  margin-right: -0.9375rem;
  border-radius: 1.875rem;
  margin-bottom: 0.3125rem;
  cursor: pointer;
}

.chat-reply-message-wrap.send-wrap {
  width: 100%;
  margin-top: -0.75rem;
  margin-right: 0;
  margin-bottom: 0.9375rem;
  color: #cfcfcf;
}

.remove-reply-message-button {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  top: 0;
  bottom: 0;
  left: 1.25rem;
  margin: auto;
  z-index: 10;
}

.remove-reply-message-button::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #cfcfcf;
  top: 0;
  left: 0;
  clip-path: polygon(
    10% 0,
    0 10%,
    40% 50%,
    0 90%,
    10% 100%,
    50% 60%,
    90% 100%,
    100% 90%,
    60% 50%,
    100% 10%,
    90% 0,
    50% 40%
  );
}

.chat-reply-message-wrap span {
  display: inline-block;
  vertical-align: middle;
}

.reply-message-image-wrap {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.9375rem;
  margin-left: 0.625rem;
  overflow: hidden;
  margin-right: -0.3125rem;
}

.reply-message-image-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.message-animation {
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 1s;
}

.text_chats {
  position: relative;
  background: #f4f4f4;
  border-radius: 0 3.125rem 3.125rem 3.125rem;
  max-width: 44.9375rem;
  min-width: 12rem;
  min-height: 7.5rem;
  margin: 0 auto 0 1rem;
  padding: 1.25rem 2.1875rem;
}

.message-settings {
  position: absolute;
  display: none;
  width: 1.0625rem;
  height: 0.625rem;
  top: 0.8125rem;
  left: 0.8125rem;
}

.text_chats:hover .message-settings {
  display: block;
}

.chat_user .message-settings {
  top: 1.25rem;
  left: 1.1875rem;
}

.message-settings-icon {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.message-settings-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #b9b9b9;
  clip-path: polygon(50% 70%, 90% 0, 100% 10%, 50% 100%, 0 10%, 10% 0);
}

.message-settings-menu {
  position: absolute;
  display: none;
  width: 7.8125rem;
  background: white;
  top: 100%;
  left: 0;
  border-radius: 0.625rem;
  overflow: hidden;
  text-align: center;
  padding: 0.3125rem 0;
  z-index: 10;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.075);
}

.message-settings:hover .message-settings-menu {
  display: block;
}

.message-settings-menu-item {
  display: block;
  font-size: 1rem;
  color: black;
  line-height: 2.2;
  padding: 0 1.25rem;
  cursor: pointer;
}

.message-settings-menu-item:hover {
  background: #f4f4f4;
  color: black;
}

.delete-message-icon {
  position: absolute;
  width: 0.9375rem;
  height: 0.9375rem;
  top: 0.625rem;
  left: 0.625rem;
  cursor: pointer;
}

.delete-message-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #b9b9b9;
  clip-path: polygon(
    10% 0,
    0 10%,
    40% 50%,
    0 90%,
    10% 100%,
    50% 60%,
    90% 100%,
    100% 90%,
    60% 50%,
    100% 10%,
    90% 0,
    50% 40%
  );
}

.time_chat {
  display: flex;
  justify-content: end;
  width: 100%;
  margin: 0;
}

.chat_user .text_chats {
  background: #dff4ff;
  border-radius: 3.125rem 0 3.125rem 3.125rem;
  margin-right: 1rem;
  font-size: 1.375rem;
  line-height: 2.375rem;
  text-align: right;
  color: #373737;
}

.text_chats p {
  width: 100%;
  font-weight: 300;
  font-size: 1.375rem;
  line-height: 2.375rem;
  text-align: right;
  color: #373737;
}

.text_chats p audio {
  width: 25rem;
}

.time_chat {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  text-align: right;
  color: #b9b9b9;
}

.text_chats video {
  width: 100% !important;
}

.img_chats {
  position: relative;
  width: 4.625rem;
  height: 4.625rem;
  background: white;
  border: 0.0625rem solid #b9b9b9;
  border-radius: 50%;
  overflow: hidden;
}

.img_chats img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.more_info_chat {
  width: 100%;
  display: none;
  background-color: #fff;
  padding: 1.25rem 1.875rem 0 1.875rem;
  border-top: 0.0625rem solid #d6d5d5;
  border-bottom: 0.0625rem solid #d6d5d5;
}

.card_chat.active .more_info_chat {
  display: block;
}

.card_car_chat_tools {
  display: flex;
  width: 22.5rem;
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: 0.9rem;
  padding: 0;
  font-size: 1.25rem;
}

.card_car_chat_tools input[type='checkbox'] {
  margin-left: 0.5625rem;
}

.card_car_chat_tools .ploup span {
  margin-left: 0.6rem;
}

.card_car_chat_tools .ploup img {
  width: 2.375rem;
}

.card_car_chat_tools .sell-inputs {
  display: flex;
  width: 12.8rem;
  justify-content: space-between;
}

.card_car_chat {
  position: relative;
  /*width: 33.625rem;*/
  width: 100%;
  background: #fcfcfc;
  border: 0.0625rem solid #c4c4c4;
  border-radius: 1.875rem;
  min-height: 11.75rem;
  align-items: center;
  margin: auto;
  padding: 1rem 3% 1rem 3%;
  margin-bottom: 0.65rem;
  justify-content: space-between;
}

.card_car_chat .col-5,
.card_car_chat .col-7 {
  padding: 0;
}

.card_car_chat .col-5 {
  width: 34%; /*11rem;*/
  margin-left: 3%; /*1.95rem;*/
}

.card_car_chat .col-7 {
  width: 62%; /*15.7rem;*/
  font-size: 1.25rem;
}

.chat-card-more-cars .card_car_chat {
  margin-bottom: 1.5625rem;
}

.img_car_chat {
  position: relative;
}
.adv_num_chat {
  border-bottom: 0.0625rem solid #c4c4c4;
  width: 100%;
  display: flex;
  margin: 0 0 0.7rem 0;
}
.car_license_chat {
  width: 100%;
  display: flex;
  font-size: 1.1rem;
}
.card_car_chat .img_car_chat img {
  width: 200px;
  height: 7rem; /*192px;*/
  max-width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  border: 1px solid #000;
}
.card_car_chat .img_car_chat.private img {
  height: 11rem;
}

.borer-t-b {
  border-top: 0.0625rem solid #c4c4c4;
  border-bottom: 0.0625rem solid #c4c4c4;
  padding: 0.375rem 0;
}

.card_car_chat .name_car {
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.7rem;
  text-align: right;
  color: #373737;
  /*border-bottom: 0.0625rem solid #C4C4C4;*/
  width: 100%;
}
.borer-b-b {
  border-bottom: 0.0625rem solid #c4c4c4;
}
.card_car_chat .name_car.narrow {
  width: 78%;
  border-bottom: 0.0625rem solid #c4c4c4;
}
.card_car_chat .name_car .date_car {
  display: inline-block;
}
.card_car_chat .agency-chat-icon {
  border: #a0a0a0 0.13rem solid;
  border-radius: 0.6rem;
  width: 19%;
  aspect-ratio: 1/1;
  height: fit-content;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}
.card_car_chat .agency-chat-icon svg {
  width: 80%;
  height: auto;
}
.card_car_chat .number_car {
  display: block;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.95rem;
  color: #373737;
  margin-bottom: 0.35rem;
}

.card_car_chat .hand,
.card_car_chat .gear {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
  margin-right: 0.2rem;
  margin-left: 1.7rem;
  font-weight: 300;
}

.card_car_chat .hand img {
  width: 1.5rem;
  height: 1.53125rem;
  margin-left: 0.47rem;
}

.card_car_chat .gear img {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.6rem;
}

.card_car_chat .price_adv {
  display: flex;
  align-items: center;
  margin-top: 0.2rem;
}

.card_car_chat .price_adv span {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  text-align: right;
  color: #373737;
}

.card_car_chat .price_adv p {
  font-weight: 300;
  font-size: 1.4375rem;
  line-height: 2.0625rem;
  text-align: right;
  margin-bottom: 0;
  margin-right: 0.3125rem;
}

.card_car_chat .number_adv {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.4375rem;
  text-align: right;
  color: #000000;
  border-bottom: 0.0625rem solid #c4c4c4;
  margin-bottom: 0.5rem;
  padding: 0 0.3rem;
}

.card_car_chat .car_info,
.card_car_chat .car-card-details {
  display: flex;
  align-items: center;
  margin: 3px 0 5px 0;
  justify-content: space-between;
  padding: 0;
}
.separator {
  height: 40px;
  width: 2px;
  background-color: #ccc;
}
.card_car_chat .info_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
}
.card_car_chat .image_container img {
  max-width: 100%;
  max-height: 100%;
}
.card_car_chat .info_item p {
  font-size: 0.85vw; /*14px;*/
}
.card_car_chat .image_container {
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.icons-container {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.icon-wrapper {
  border: 2px solid #d3d3d3;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18%;
  height: fit-content;
  position: relative;
  aspect-ratio: 1 / 1;
}
.icon-wrapper svg {
  width: 60%;
  height: auto;
}

.icon-wrapper:hover {
  background-color: #00a5d9;
  border-color: #00a5d9;
}
.icon-wrapper:hover svg path {
  stroke: #fff;
}
.icon-wrapper.queue:hover svg path {
  fill: #fff;
}
.icon-wrapper:hover path.hide-hover {
  display: none;
}
.icon-wrapper:hover path.spec-hover {
  fill: #fff;
  stroke: none !important;
}
.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: white;
  border: 2px solid #00a5d9;
  color: #00a5d9;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.agency-car-pop .wrp-adv-name img {
  width: 12% !important;
  margin: 0 0 0 3%;
}
.chat_desktop .car-files-info {
  display: flex;
  flex-wrap: wrap;
}
.black-square {
  border-radius: 0.4rem;
  border: 1.5px solid #000;
  width: 1.4rem;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 5px;
}
.wrp-trans {
  position: absolute;
  left: 50%;
  top: 0;
  width: 16%;
}
.profit .wrp-trans {
  width: 20%;
  left: 40%;
  top: 1rem;
}
.chat_desktop .wrp-adv-name {
  width: 22%;
}
.chat_desktop .wrp-adv-name img {
  width: 12% !important;
  margin: 0 0 0 3%;
}
.profit {
  position: relative;
}
.chat_desktop .car-files-info .wrp-trans .trans_arrow {
  width: 75%;
  left: 35%;
}
.trans_arrow.percent100 {
  transform: rotate(180deg) !important;
  left: 28% !important;
}
.wrp-trans .trans_arrow.percent80 {
  top: 48%;
  left: 30%;
}
.chat_desktop .car-files-info a {
  color: #000;
}
.icon:hover .hide-hover {
  display: none;
}

.icon:hover .spec-hover {
  display: block;
}

.pl-0 {
  padding-left: 0;
}

.flex_chat {
  display: flex;
  align-items: center;
}

.strep_blue {
  width: 75%; /*23.25rem;*/
  height: 1.75rem;
  background: #00a5d9;
  border-radius: 3.125rem 3.125rem 0 0;
  color: #fff;
  text-align: center;
  margin: 1.5rem auto auto auto;
}

.strep_blue::after {
  content: '';
  display: inline-block;
  clip-path: polygon(50% 70%, 90% 0, 100% 10%, 50% 100%, 0 10%, 10% 0);
  width: 0.75rem;
  height: 0.5rem;
  background: white;
  margin-right: 0.1875rem;
  transition: transform 0.5s ease; /* Smooth transition */
}
.strep_blue.rotated::after {
  transform: rotate(180deg); /* Rotate by 180 degrees */
}

.chat_submit input.submit {
  background-image: url(../../../static/images/sub_but.svg);
  background-size: contain;
  background-position: 10px;
  background-repeat: no-repeat;
  background-color: transparent;
  width: 1.46625rem;
  height: 1.579375rem;
  font-size: 0;
  position: absolute;
  left: 1.25rem;
  top: 25%;
}

.chat-popup-container {
  position: absolute;
  width: 100%;
  left: 0;
  background: #00000029;
  height: 100vh;
  top: 0;
  z-index: 999999999999;
  display: none;
}

.chat-status-popup {
  background: white;
  position: absolute;
  left: 0;
  top: 15rem;
  width: 24.375rem;
  border-radius: 0 1.25rem 1.25rem 0;
  height: 18.75rem;
  padding: 1.25rem;
}

.loader {
  border: 0.5rem solid #f3f3f3;
  border-radius: 50%;
  border-top: 0.5rem solid #3498db;
  width: 3.125rem;
  height: 3.125rem;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: absolute;
  left: 48%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.chat-pre-loader {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #dee2e6;
  z-index: 2;
}

.camera_chat {
  position: relative;
  cursor: pointer;
}

.camera_chat svg {
  width: 2.625rem;
}

.camera-chat-popup {
  width: auto;
  position: absolute;
  top: -10.625rem;
  right: -4.0625rem;
  display: none;
}

.camera-chat-popup-wrapper {
  background-color: #f2f2f2;
  border-radius: 0.3125rem;
  box-shadow: 0 0 0.375rem #b2b2b2;
  display: inline-block;
  padding: 0.625rem 1.125rem;
  position: relative;
  vertical-align: top;
  margin: 1.25rem 0.625rem;
}

.camera-chat-popup-wrapper::before {
  background-color: #f2f2f2;
  content: '\00a0';
  display: block;
  height: 1rem;
  width: 1rem;
  position: absolute;
  bottom: -0.46875rem;
  transform: rotate(47deg) skew(5deg);
  -moz-transform: rotate(47deg) skew(5deg);
  -ms-transform: rotate(47deg) skew(5deg);
  -o-transform: rotate(47deg) skew(5deg);
  -webkit-transform: rotate(47deg) skew(5deg);
  box-shadow: 0.125rem 0.125rem 0.125rem 0 rgba(178, 178, 178, 0.4);
  left: 50%;
}

.chat-video-wrapper {
  position: relative;
  width: 30rem;
  background: black;
  padding-top: 56.25%;
  margin-bottom: 0.625rem;
  border-radius: 1.875rem;
  overflow: hidden;
}

.chat-video-wrapper video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* chat popups */

.chat-popup {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  top: 0;
  left: 0;
  z-index: 50;
}

.chat-popup.active {
  display: block;
}

.chat-popup-content-container {
  height: 100%;
  padding: 50px;
}

.chat-popup-close-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.chat-popup-close-icon:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  clip-path: polygon(
    10% 0,
    0 10%,
    40% 50%,
    0 90%,
    10% 100%,
    50% 60%,
    90% 100%,
    100% 90%,
    60% 50%,
    100% 10%,
    90% 0,
    50% 40%
  );
}

.chat-camera-popup video,
.chat-popup .send-content {
  width: 100%;
  height: 100%;
  max-height: calc(100% - 60px);
}

.chat-camera-popup .chat-camera-photo-button {
  width: 50px;
  height: 50px;
  background: #191919;
  margin: 0 auto;
  margin-top: 10px;
  padding: 5px 4px;
  border-radius: 100%;
  text-align: center;
  cursor: pointer;
}

.chat-camera-popup .chat-camera-photo-button svg {
  width: 30px;
}

.chat-popup .send-content img,
.chat-popup .send-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chat-popup-send-button {
  width: 50px;
  height: 50px;
  background-image: url(../../../static/images/sub_but.svg);
  background-size: 25px;
  background-position: 10px center;
  background-repeat: no-repeat;
  background-color: #00a5d9;
  margin: 0 auto;
  margin-top: 20px;
  padding: 5px 4px;
  border-radius: 100%;
  text-align: center;
  cursor: pointer;
}

.chat-popup-load {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  background: url(images/loading-new.gif) center center / 40px no-repeat;
  top: 0;
  left: 0;
}

.chat-popup-load.active {
  display: block;
}

/* chat popups */

.chat-popup {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(0.1875rem);
  top: 0;
  left: 0;
  z-index: 50;
}

.chat-popup.active {
  display: block;
}

.chat-popup-content-container {
  height: 100%;
  padding: 3.125rem;
}

.chat-popup-close-icon {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  top: 0.9375rem;
  right: 0.9375rem;
  cursor: pointer;
}

.chat-popup-close-icon:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  clip-path: polygon(
    10% 0,
    0 10%,
    40% 50%,
    0 90%,
    10% 100%,
    50% 60%,
    90% 100%,
    100% 90%,
    60% 50%,
    100% 10%,
    90% 0,
    50% 40%
  );
}

.chat-camera-popup video,
.chat-popup .send-content {
  width: 100%;
  height: 100%;
  max-height: calc(100% - 3.75rem);
}

.chat-camera-popup .chat-camera-photo-button {
  width: 3.125rem;
  height: 3.125rem;
  background: #191919;
  margin: 0 auto;
  margin-top: 0.625rem;
  padding: 0.3125rem 0.25rem;
  border-radius: 100%;
  text-align: center;
  cursor: pointer;
}

.chat-camera-popup .chat-camera-photo-button svg {
  width: 1.875rem;
}

.chat-popup .send-content img,
.chat-popup .send-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chat-popup-send-button {
  width: 3.125rem;
  height: 3.125rem;
  background-image: url('../../../static/images/sub_but.svg');
  background-size: 1.5625rem;
  background-position: 0.625rem center;
  background-repeat: no-repeat;
  background-color: #00a5d9;
  margin: 0 auto;
  margin-top: 1.25rem;
  padding: 0.3125rem 0.25rem;
  border-radius: 100%;
  text-align: center;
  cursor: pointer;
}

.chat-popup-load {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  background: url('images/loading-new.gif') center center / 2.5rem no-repeat;
  top: 0;
  left: 0;
}

.chat-popup-load.active {
  display: block;
}

/* chat popups */

.chat-load-gif {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  background: url('images/loading-new.gif') center center / 5rem no-repeat;
  top: 0;
  left: 0;
  z-index: 10;
}

.chat-load-gif.active {
  display: block;
}

.controlls-block {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.controlls-block.active {
  display: block;
}

.camera-chat-popup-wrapper {
  left: 0;
  bottom: 0;
  min-width: 12.5rem;
  padding: 1.5625rem 1.25rem;
}
.camera-chat-popup-wrapper::before {
  left: 8%;
}

.camera-chat-popup-wrapper ul {
  padding: 0;
  margin: 0;
}
.camera-chat-popup-wrapper ul li {
  list-style: none;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease 0s;
}
.camera-chat-popup-wrapper ul li:hover {
  color: #ff9900;
}
.camera-chat-popup-wrapper ul li:not(:last-child) {
  margin-bottom: 1.25rem;
}
.camera-chat-popup {
  left: -0.9375rem;
  right: auto;
  top: auto;
  bottom: 2.1875rem;
}

.three-dots-chat-popup-container {
  position: fixed;
  visibility: hidden;
  width: 100%;
  left: 0;
  background: #00000029;
  top: 0;
  z-index: 999999999999;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transition: 1s;
}

.three-dots-chat-popup-container.active {
  visibility: unset;
  opacity: 1;
}

.chat-status-popup {
  padding: 1.875rem 1.875rem 1.875rem 0.9375rem;
  background-color: #fff;
  border-radius: 0 3rem 3rem 0;
  width: 18.75rem;
  height: auto;
  transform: translateX(-100%);
  transition: 1s;
}

.three-dots-chat-popup-container.active .chat-status-popup {
  transform: translateX(0);
}

.chat-status-popup ul {
  padding: 0;
  margin: 0;
}

.chat-status-popup ul li {
  list-style: none;
  font-size: 1.25rem;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  line-height: 1.35;
  color: #373737;
  font-weight: 400;
  cursor: pointer;
}

.chat-status-popup ul li.active-status-item {
  color: #ff9900;
}

.chat-status-popup ul li:not(:last-child) {
  margin-bottom: 1.5625rem;
}

.chat-status-popup ul li svg {
  width: 1.5625rem;
  flex: 0 0 1.5625rem;
  height: auto;
}

.chat-status-popup ul li.active-status-item svg * {
  stroke: #ff9900 !important;
}

.UserHasStar {
  position: absolute;
  width: 1.5625rem;
  height: 1.5rem;
  background: #373737;
  top: 0.625rem;
  left: 0.625rem;
  clip-path: polygon(
    50% 0,
    65% 33%,
    100% 38%,
    75% 64%,
    81% 100%,
    50% 83%,
    19% 100%,
    25% 63%,
    0 38%,
    35% 33%
  );
}

.upload-file {
  width: 2.8125rem;
  flex: 0 0 2.8125rem;
  height: auto;
  margin-right: 0.3125rem;
  cursor: pointer;
}
.upload-file svg {
  width: 100%;
  height: auto;
}

.chat_user {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.chat-popup-send-button {
  background-image: url(../../../static/images/sub_but_white.svg);
}

.start-chat-text {
  position: absolute;
  width: 100%;
  height: 2.8125rem;
  text-align: center;
  font-size: 1.875rem;
  top: 33%;
  bottom: 0;
  right: 0;
}

.text_chat .message-image-wrap {
  width: 30rem;
  height: 0;
  padding-bottom: 100%;
  border-radius: 2.5rem;
  position: relative;
  overflow: hidden;
}
.text_chat .message-image-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
}

.ad_car_icon {
  width: 200px;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  visibility: hidden;
}
.ad_car_icon .img_container_chat {
  /*width: 65px;
            height: 65px;*/
  width: 32%;
  height: auto;
  aspect-ratio: 1 / 1;
  /*left: 20px;*/
  position: relative;
  top: 0.35rem;
  border-radius: 50%;
  overflow: hidden;
  border: 0.08vw solid white;
  cursor: pointer;
}
.img_container_chat img {
  gap: 0px;

  object-fit: cover;
  border-radius: 50;
}

.ad_car_icon div {
  margin-top: 0.1rem; /*3px;*/
  font-size: 0.8vw; /*16px;*/
  font-weight: bold;
  text-align: center;
  color: #fff;
}

@media (max-width: 120rem) {
  .chat_desktop {
    padding-top: 6.1458vw;
  }
}

body .Zebra_DatePicker {
  top: 50% !important;
  transform: unset !important;
}
.agency-car-pop {
  position: absolute;
  background: #fff;
  top: 0;
  width: 100%;
  min-height: 100%;
  height: fit-content;
  z-index: 99;
  padding: 2.6rem 14% 0 13%;
}
.agency-car-pop .inner-div {
  background: #fff;
}
#close-agency-car-pop {
  position: absolute;
  margin-right: -5%;
  margin-top: -1rem;
  cursor: pointer;
}
.images-gallery .images-gallery__slider {
  overflow: visible !important;
}
.images-gallery__slider img {
  border: 1px solid #000;
}
.slick-slider .slick-arrow.slick-prev,
.slick-slider .slick-arrow.slick-next {
  z-index: 1;
}

.slick-slider .slick-arrow.slick-prev::before,
.slick-slider .slick-arrow.slick-next::before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 1rem;
  height: 2rem;
  opacity: 1;
}

.slick-slider .slick-arrow.slick-prev {
  left: -5%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.slick-slider .slick-arrow.slick-prev::before {
  content: '';
  left: calc(50% + 0.3125rem);
  background: url(../../../static/images/sell/left-new-arr.svg) center/contain no-repeat;
}

.slick-slider .slick-arrow.slick-next {
  right: -5%;
}

.slick-slider .slick-arrow.slick-next::before {
  content: '';
  right: calc(50% + 0.3125rem);
  background: url(../../../static/images/sell/right-new-arr.svg) center/contain no-repeat;
}
.development-12-product-title * {
  color: #373737;
  font-size: 1.6vw !important;
}
.slider-container .slider img {
  height: 26rem !important;
  width: 100%;
  object-fit: cover;
  border-radius: 4rem;
}
.new-agra-pop {
  position: absolute;
}
.new-basket-pop {
  width: 20% !important;
}
.wrp-btn.chat a {
  cursor: pointer;
}
/*.phone-pop{
    z-index: 99999;
}*/
