.chat {
  width: 100%;
  overflow:hidden;
  display: flex;
}

.messenger-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chat-header {
  border-bottom: 1px solid #e7e5ed;
  align-items: center;
  background-color: white;
  width: 100%;
  z-index: 999;
  display: flex;
  padding-bottom: 3px;
  justify-content: space-between;
}

.chat-header .chat-input-send-message-info-username {
  margin-right: 10px;
}

.chat-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow:hidden;
  overflow-y:auto;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  overscroll-behavior-y: contain;
}

.chat-messages::-webkit-scrollbar {
  overflow-y: hidden;
  height: 6px;
  padding: 12px;
  width: 6px;
}

.chat-messages:hover {
  scrollbar-color: #ccc transparent;
  scrollbar-width: thin;
}

.chat-messages:hover::-webkit-scrollbar-track {
  background: none;
  border-radius: 0;
}

.chat-messages:hover::-webkit-scrollbar-thumb {
  background: #ccc;
  padding: 12px;
}

#sidebar2 {
  scrollbar-color: #ccc transparent;
  scrollbar-width: thin;
}

#sidebar2::-webkit-scrollbar-track {
  background: none;
  border-radius: 0;
}

#sidebar2::-webkit-scrollbar {
  height: 6px;
  padding: 12px;
  width: 6px;
}

#sidebar2::-webkit-scrollbar-thumb {
  background: #ccc;
  padding: 12px;
}

.chat-room-recording-button-wrapper {
  width: 28px;
  height: 45px;
}

.chat-room-add-video-button-wrapper {
  width: 24px;
  height: 45px;
}

.chat-message {
  height: auto;
  float: left;
  background: #f5f5f8;
  border-radius: 10px;
  margin-top: 10px;
  position: relative;
  box-shadow: 0 1px .5px rgba(11, 20, 26, .13);
}

.sender-message {
  background-color: #ec2a4a;
  float: right;
  color: #fff;
  margin-right: 80px;
  margin-left: 0!important;
}

.sender-image-message-content {
  background-color: transparent;
  color: #000000;
  float: right;
  margin-right: 80px;
  padding: 0 25px 0 0!important;
  margin-top: -6px;
}

.message-sender-img {
  border-radius: 12px;
  float: right;
  margin: -17px -89px 0 0;
}

.message-img {
  float: left;
  border-radius: 12px;
  margin: -17px 0 0 -89px;
}

.message-content-text-sender {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  word-break: break-word;
}

.image-message-text-content {
  padding-top: 7px;
}

.image-message-datetime {
  display: inline-block;
  padding-top: 7px;
  opacity: 0.7;
  font-size: 13px;

}

.right-message {
  text-align: right;
  float: right!important;
  margin-right: 90px!important;
  margin-left: 0!important;
  padding-left: 10px;
}

.message-date-icon-sender {
  display: inline-block;
  background: url("../../assets/icons/clock.svg")no-repeat;
  width: 13px;
  height: 14px;
  margin: 0 5px -2px 0;
  background-size: cover;
}

.message-header-nickname-sender {
  text-decoration: underline!important;
  color: #fff;
  font-weight: 500;
  height: 20px;
  font-size: 14px;

}

.message-header-nickname-sender:hover {
  color: #fff;
}

.message-cloud-arrow-sender {
  float: right;
  width: 19px;
  height: 18px;
  transform: rotate(45deg);
  background-color: #ec2a4a;
  margin: 4px -29px 0 0;
}

.message-cloud-arrow {
  float: left;
  width: 19px;
  height: 18px;
  transform: rotate(45deg);
  background-color: #f5f5f8;
  margin: 4px 0 0 -29px;
}

.message-content-text {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  word-break: break-word;
}

.notify-about-meeting-message-content {
  word-break: normal;
}

.message-content-header {
  height: 30px;
  text-align: left;
}

.message-displayed-info {
  width: 50%;
  float: left;
  clear: left;
  margin: 5px 0 5px 84px;
  height: 30px;
  color: #8d88a0;
  font-size: 13px;
  font-weight: 400;
}

.message-date-icon {
  background: url("../../assets/icons/clock.svg")no-repeat;
  float: left;
  width: 13px;
  height: 14px;
  margin: 2px 7px 0 0;
  background-size: cover;
}

.message-header-nickname {
  float: left;
  height: 20px;
  color: #ec2a4a;
  font-size: 14px;
  font-weight: 500;
}

.message-header-nickname:hover {
  color: #ec2a4a;
}

.chat-header__container {
  display: flex;
  align-items: center;
}

.chat-header-username-and-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.close-sidebar-button-message-show-for-mobile {
  display: none!important;
  visibility: hidden!important;
}

.chat-input-send-button {
  display: flex;
  align-items: center;
}

.chat-input-send-button-text {
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 1200px) {
  .chat-user-username {
    font-size: 17px;
  }
  .chat-list-entry-title {
    font-size: 13px;
  }
}

@media only screen and (min-width: 860px) and (max-width: 1199px) {
  .chat-user-username {
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

@media only screen and (min-width: 931px) and (max-width: 1199px) {

  .chat-message {
    width: 60%;
  }
}

@media only screen and (min-width: 1200px) {

  .chat-message {
    width: 50%;
  }
}

@media only screen and (min-width: 931px) {
  .chat {
    height: calc(100vh - 104px);
  }

  .chat-message {
    margin-left: 85px;
    padding: 16px 24px;
  }

  .message-img, .message-sender-img {
    width: 48px;
    height: 48px;
  }

  .chat-users-panel {
    width: 25%;
    margin-bottom: 0 !important;
  }

  .chat-user-username {
    font-size: 16px;
  }

  .chat-user-image-div {
    line-height: 63px;
    margin: 0 20px;
  }

  .chat-user-image {
    height: 48px;
    width: 48px;
  }

  .chat-bell-image {
    height: unset;
  }

  .chat-user-unread-messages-number {
    display: inline-block;
  }

  .chat-input-send-button {
    height: 45px;
  }

  .chat-input-send-message-info {
    margin-right: 15px;
  }

  .button-icon-send-arrow {
    margin-top: 3px;
    height: 22px!important;
    width: 22px!important;
    background-color: unset;
    position: relative;
  }

  .button-icon-send-arrow:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../../assets/icons/comment-arrow.svg")no-repeat;
    transform: rotate(45deg);
    background-size: cover;
  }

  #sidebar2 {
    display: block!important;
    position: relative;
  }

  .dimmer {
    display: none;
  }

  .chat-header .chat-input-send-message-info-username {
    font-size: 20px;
  }

  .chat-user-entry-title {
    font-size: 13px;
  }
}

@media only screen and (min-width: 901px) {
  .chat-input-div {
    height: 90px;
  }

  .chat-input-div-toggled-error {
    height: 109px;
  }

  .chat-input-div-toggled-audio-file {
    height: 118px;
  }
  .chat-input-send-message-info {
    font-size: 12px;
    margin-top: 5px;
  }

  .chat-input .preview-div {
    height: 172px;
  }

  .mobile-conversation-list-toggle-arrow {
    display: none!important;
  }

  .chat-user-username-box {
    margin-top: 5px;
  }

  .chat-admin-logo {
    position: absolute;
    bottom: 10px;
    left: 3px;
    height: 15px!important;
    width: 45px!important;
    background-repeat: no-repeat;
  }
}

@media only screen and (min-width: 860px) and (max-width: 900px) {
  .chat-input-div {
    height: 76px;
  }

  .chat-input-div-toggled-error {
    height: 95px;
  }

  .chat-input-div-toggled-audio-file {
    height: 110px;
  }

  .chat-input .preview-div {
    height: 186px;
  }

  .chat-user-username-box {
    margin-top: 2px;
  }
}

@media only screen and (min-width: 901px) and (max-width: 1199px) {
  .chat-list-entry-title {
    font-size: 10px;
  }
}

@media only screen and (min-width: 931px) {
  .chat-user-unread-messages {
    left: 60px;
    top: 13px;
  }
}

@media only screen and (min-width: 901px) and (max-width: 950px) {
  .chat {
    height: calc(100vh - 102px);
  }

  .chat-message {
    width: 60%;
    margin-left: 85px;
    padding: 16px 24px;
  }

  .message-img, .message-sender-img {
    width: 40px;
    height: 40px;
  }

  .chat-users-panel {
    width: 28%;
  }

  .chat-user-image-div {
    line-height: 50px;
    margin: 0 15px 0 10px;
  }

  .chat-user-username {
    font-size: 14px;
  }

  .chat-user-image {
    height: 36px;
    width: 36px;
  }

  .chat-bell-image {
    height: unset;
  }

  .chat-input-send-button {
    height: 42px;
    font-size: 14px!important;
  }

  .chat-input-send-message-info {
    margin-right: 10px;
  }

  .button-icon-send-arrow {
    height: 18px!important;
    width: 18px!important;
    margin-top: 3px!important;
    background-color: unset;
    position: relative;
  }

  .button-icon-send-arrow:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../../assets/icons/comment-arrow.svg")no-repeat;
    transform: rotate(45deg);
    background-size: cover;
  }

  #sidebar2 {
    display: block!important;
    position: relative;
  }

  .dimmer {
    display: none;
  }

  .chat-header .chat-input-send-message-info-username {
    font-size: 20px;
  }

  .chat-user-unread-messages-number {
    display: none;
  }
  .chat-user-unread-messages {
    left: 42px;
    top: 7px;
  }
}

@media only screen and (min-width: 901px) and (max-width: 930px) {
  .chat-user-entry-title {
    font-size: 13px;
  }

  .chat-header .chat-input-send-message-info-username {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .chat-input-send-button {
    height: 42px;
    width: 42px;
    font-size: 14px!important;
    display: inline-block;
  }
  .hide-for-mobile-chat {
    display: none;
    visibility: hidden;
  }

  .container-timeline {
    width: 100%!important;
  }
  .chat {
    height: calc(100vh - 102px);
  }

  .chat-message {
    width: 67%;
    font-size: 13px;
    margin-left: 75px;
    padding: 8px 24px 8px;
  }

  .chat-input-div {
    height: 76px;
    /*width: 100%;*/
  }

  .chat-input-div-toggled-error {
    height: 95px;
  }

  .chat-input-div-toggled-audio-file {
    height: 104px;
  }

  .chat-input .preview-div {
    height: 186px;
  }

  .chat-input-send-input, .input-with-button, .audio-recorded {
    font-size: 16px!important;
  }

  .send-file {
    right: -4px!important;
  }

  .message-img, .message-sender-img {
    width: 40px;
    height: 40px;
  }

  .chat-user-image {
    height: 30px;
    width: 30px;
  }

  .chat-bell-image {
    height: unset;
  }

  .chat-user-image-div {
    margin: 0 15px 0 5px;
  }

  .chat-admin-logo {
    position: absolute;
    bottom: 0;
    height: 15px!important;
    width: 35px!important;
    background-repeat: no-repeat;
  }
  .button-icon-send-arrow {
    height: 18px!important;
    width: 18px!important;
    margin-left: -1px!important;
    margin-top: 3px!important;
    margin-right: 0!important;
    background-color: unset;
    position: relative;
  }

  .button-icon-send-arrow:before {
    background: url("../../assets/icons/comment-arrow.svg")no-repeat;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -2px;
    transform: rotate(45deg);
    background-size: cover;
  }

  .show-for-mobile {
    display: inline-block!important;
    visibility: visible!important;
  }

  .chat-input-send-message-info {
    margin-right: 10px;
  }

  .chat-users-panel {
    position: absolute;
    width: 310px;
    padding: 30px;
    height: 100%;
    left: 0;
  }

  #sidebar2 {
    display: none;
    position: relative;
  }

  .dimmer {
    display: none;
  }

  .strong-line {
    margin-bottom: 3px;
  }

  .message-input-sidebar-button {
    margin-right: 5px;
  }

  .chat-header .chat-input-send-message-info-username {
    font-size: 17px;
    line-height: 19px;
  }

  .chat-user-entry-title {
    font-size: 11px;
  }

  .chat-list-entry-title {
    font-size: 10px;
  }

  .close-sidebar-button-message-show-for-mobile {
    display: inline-block!important;
    visibility: visible!important;
  }

  .mobile-conversation-list-toggle-arrow {
    display: inline-block;
    margin: auto 0;
    padding: 20px 10px;
    cursor: pointer;
  }

  .conversation-menu-open {
    display: block!important;
    position: fixed!important;
    height: 100%;
  }

  .conversation-menu-close {
    display: none;
    position: relative;
    height: 0;
  }

  .chat-user-list-offer-title {
    font-size: 11px;
  }

  .chat-user-unread-messages {
    left: 30px;
    top: 5px;
  }
}

.chat-users-panel {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-right: 1px solid #e7e5ed;
  overflow: auto;
  padding-top: 20px;
}

.chat-user {
  width: 97%;
  border-radius: 10px;
  background-color: #fff;
  display: inline-block;
  position: relative;
  border-bottom: 1px solid #f5f5f8;
  height: auto;
  padding-bottom: 2px;
  padding-top: 2px;
}

.chat-user:hover {
  cursor: pointer;
}

.chat-user-active {
  background: #f5f5f8;
}

.chat-user-link:focus {
  outline: none!important;
}


.chat-user-image-div {
  display: block;
  float: left;
  position: relative;
}

.chat-user-image {
  border-radius: 10px;
}

.chat-notificaiton-image {
  background-image: url("/static/assets/icons/bell-solid.svg");
  background-size: 28px 28px;
  background-repeat: no-repeat;
  background-position: center;
}

.chat-user-username {
  display: inline-block;
  height: 22px;
  color: #000000;
  font-weight: 500;
  letter-spacing: -0.027em;
  white-space: nowrap;
  float: left;
  width: 57%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-chat-user-username {
  width: 87%;
  color:#ec2a4a;
}

.chat-user-line {
  background: #e7e5ed;
  margin-top: 6px;
}

.chat-user-unread-messages {
  background-color: #ec2a4a;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  width: 12px;
  height: 12px;
  position: absolute;
}

.chat-notifications-unread-messages {
  background-color: #34207D;
}

.chat-user-unread-message-dot-hide {
  display: none!important;
}

.chat-user-unread-messages-number {
  margin-top: 1px;
}

.chat-input-div {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e7e5ed;
}

.chat-input-div-toggled {
  height: 312px;
}

.chat-input-div-two-lines {
  height: 112px;
}

.chat-input-div-two-lines.chat-input-div-toggled {
  height: 334px;
}

.chat-input-div-three-lines {
  height: 134px;
}

.chat-input-div-toggled.chat-input-div-three-lines {
  height: 356px;
}

.chat-input-div-four-lines {
  height: 156px;
}

.chat-input-div-toggled.chat-input-div-four-lines {
  height: 378px;
}

.chat-input-div-five-lines {
  height: 178px;
}

.chat-input-div-toggled.chat-input-div-five-lines {
  height: 390px;
}

@media (min-width: 1001px) {
    .chat-input-div-toggled {
        height: 307px;
    }

.chat-input-div-two-lines {
  height: 122px;
}

.chat-input-div-two-lines.chat-input-div-toggled {
  height: 329px;
}

.chat-input-div-three-lines {
  height: 144px;
}

.chat-input-div-toggled.chat-input-div-three-lines {
  height: 351px;
}

.chat-input-div-four-lines {
  height: 166px;
}

.chat-input-div-toggled.chat-input-div-four-lines {
  height: 373px;
}

.chat-input-div-five-lines {
  height: 188px;
}

.chat-input-div-toggled.chat-input-div-five-lines {
  height: 395px;
}
}

.chat-input-send-input {
  display: inline-block;
  height: 45px!important;
  min-height: 45px; /* Change from height to min-height */
  max-height: 200px; /* Add a max-height if desired */
  /*border-radius: 27px;*/
  /*border: 2px solid #e7e5ed;*/
  border: None;
  background: transparent;
  padding: 10px 35px 10px 14px;
  width: 100%;
  resize: none;
  line-height: 22px;
  overflow:hidden;
  overflow-y:auto;
  scrollbar-width: none;
  font-size: 16px;
  box-sizing: border-box; /* Add this to include padding in the height calculation */
}

.chat-user-popup-input .chat-input-send-input {
  padding: 10px 95px 10px 14px;
}

.chat-input-send-input::-webkit-scrollbar {
  width: 0;
}

.chat-input-send-input::placeholder  {
  font-weight: 500;
  color: #000!important;
  opacity: 1;
  font-size: 13px;
}

.chat-input-send-input:focus {
  outline: none!important;
}

.chat-input-send-button {
  float: right;
  border-radius: 23px;
  background-color: #75d001;
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 0 15px;
}

.button-icon {
  float: left;
  height: 19px;
  width: 19px;
  margin: 6px 10px 0 0;
  background-size: contain;
}

.chat-input-send-message-info {
  text-align: right;
  height: 22px;
  color: #5d5970;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
}

.chat-input-send-message-info-username {
  color: #ec2a4a;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
}

.no-margin-top {
  margin-top: 0;
}

.show-for-mobile {
  display: none;
  visibility: hidden;
}

.sidebar-button:focus {
  outline: none;
}

.sidebar-button {
  float: left;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50px;
  background-color: rgba(236, 42, 74, 0.08);
  margin-left: 8px;
}

#open-sidebar-button {
  margin-top:0;
}

.sidebar-button-icon {
  background: url("../../assets/sidebar-widget-button.png") no-repeat;
  transform: rotate(90deg);
  height: 10px;
  width: 10px;
  margin-right: 0;
  margin-top: 0;
}

.close-sidebar-button {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #ec2a4a!important;
  border: none;
  position: fixed;
  bottom: 15px;
  left: 260px;
  z-index: 1000000;
}

.close-sidebar-button:focus {
  outline: none;
}

.close-sidebar-button-icon {
  background: url("../../assets/icons/cross-icon.svg") no-repeat;
  height: 100%;
  width: 100%;
  margin: 0;
  background-position-x: center;
  background-position-y: center;
  background-size: auto!important;
}

.dimmer {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  height: 2000px!important;
  display: none;
  top: 0;
}

.block-button {
  cursor: not-allowed;
}

.input-with-button {
    border-radius: 27px;
    border: 2px solid #e7e5ed;
}

.input-with-button, .audio-recorded {
  position: relative;
  height: 45px;
  width: 100%;
}

.input-with-button-resizing {
    height: auto;
}

.audio-recorded {
  padding-left: 10px;
}

.audio-recorded {
  display: inline-block;
}


.send-file {
  height: 45px;
  width: 45px;
  position: absolute;
  right: -18px;
  background-image: url("../../assets/icons/photo-camera-round.svg");background-position: calc(100% - 0.2rem), 100% 0;
  background-size:  36px 36px;
  background-repeat: no-repeat;
}

.record-audio {
  height: 45px;
  width: 24px;
  background-image: url("../../assets/icons/microphone-solid.svg");
  background-position: center;
  background-size:  30px 24px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.record-audio-btn-popup {
  position: absolute;
  top: 0;
  right: 75px;
}

.chat-file-input-popup {
  position: absolute;
  top: 0;
  right: 42px;
  height: 45px!important;
}

.chat-input-video-icon {
  padding: 0!important;
  width: 24px!important;
}

.stop-recording {
  background-image: url("../../assets/icons/stop-solid.svg");
}

.audio-file-wrapper {
  display:none;
  width: 70px;
  padding-top: 8px;
}

.remove-audio-file {
  padding: 0;
  margin: -2px -12px 0 0;
}

.audio-file-link {
  font-weight: bolder;
}

.send-file:hover {
  cursor: pointer;
}

.message-content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
}

.transparent-message {
  background: rgba(0, 0, 0, 0)!important;
}

.chat-user-entry-title {
  display: inline-block;
}

.chat-list-entry-title {
  color: #000000;
  display: block;
  margin-bottom: 5px;
  float: left;
}


@media only screen and  (min-width : 499px) and (max-width: 900px) {
  .chat-input-send-message-info {
    font-size: 12px;
    margin-top: 2px;
  }
}

@media only screen and  (min-width : 520px) {
  .message-cost-with-user {
    display: inline-block;
  }

  .message-cost-without-user {
    display: none;
  }
}
@media only screen and  (max-width : 519px) {
  .message-cost-with-user {
    display: none;
  }

  .message-cost-without-user {
    display: inline-block;
  }
}

@media only screen and  (max-width : 498px) {
  .chat-input-send-message-info {
    font-size: 11px;
    margin-top: 2px;
  }
}

@media only screen and  (max-width : 340px) {
  .chat-input-send-message-info {
    font-size: 10px;
    margin-top: 0;
  }
}

.message-sent-icon {
  margin-left: 4px;
  color: #d5d2e0;
}

.message-sent-icon-displayed {
  color: #007bff;
}

.last-message-padding {
  padding-bottom: 15px
}

#sidebarConversationList {
  display: none;
  position: relative;
  z-index: 2147483645;
  padding-left: 8px;
}

/* SWITCH ICON TURBO*/
.switch-icon-turbo-text {
  font-size: 10px;
  width: 29px;
  font-weight: 500;
}

.switch-icon-turbo {
  margin-right: 2px;
  width: 74px!important;
}

.switch-icon input:checked + .slider-icon-turbo:before {
  transform: translateX(47px)!important;
}

.switch-icon input:checked + .slider-icon-turbo {
  background-color: #74D001!important;
}
/* END SWITCH ICON TURBO*/

.message-send-button-spinner {
  display: none;
  align-items: center;
  margin-right: 10px;
}

.chat-input-grey {
  background: #fafafa;
}


.chat-dropdown {
  position: absolute!important;
  top: 6px;
  right: 0;
  color: black;
  width: 40px;
  text-align: center;
  justify-content: center;
}

.chat-dropdown:hover {
  color: black;
}

.chat-dropdown-content {
  top: 35px;
  right: 5px;
  width: auto!important;
  z-index: 1112000;
}

.fa-ellipsis-v {
  color: black;
}

.fa-ellipsis-v:hover {
  color: black;
}

.you-are-blocked-msg {
  width: 100%;
  background-color: rgba(255, 255,255,0);
  font-size: 14px;
  margin-left: 12%;
  height: 30px;
  line-height: 30px;
}

.hide {
  display: none!important;
}

.message-entry-title {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 160px;
  white-space: nowrap;
  margin-left: 10px;
}

.message-entry-img {
  width: 30px;
  height: 30px;
}

.message-entry-wrapper {
  display: flex;
  width: 100%;
  margin-top: 5px;
  cursor: default;
}

.photo-request-buttons-wrapper {
  display: flex;
  justify-content: left;
  gap: 5px 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.photo-request-message {
  background-color: #E8F8ff;
}

.download-photo-icon {
  float: right;
  cursor: pointer;
}

.download-photo-btn {
  color: black;
}

.download-photo-btn:hover {
  color: black;
}

.confirmed-text {
  cursor: default;
}

.confirmed-text:hover {
  color: #007bff;
}

.photo-request-message-btn {
  border: 1px solid;
  border-radius: 25px;
  padding: 5px 10px;
  color: #007bff!important;
  cursor: pointer;
}

.photo-request-message-btn:hover {
  color: #007bff;
}

.photo-request-max-time {
  color: gray;
  font-size: 13px;
}

.message-image {
  height: 30px;
  width: 30px;
}

.notification-message-img {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.verify-profile-button {
  border: none;
  color: #007bff;
  background-color: transparent;
}

.conversation-send-message-all {
  display: flex;
  align-items: center;
  padding: 0 0 15px 0;
  cursor: pointer;
  color: #343a40;
  font-size: 15px;
  font-weight: 500;
  gap: 10px;
}
.conversation-send-message-all:hover {
  color: #343a40;
}

.chat-tip-button {
    border: none;
    border-radius: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding:0;
}

.chat-tip-icon {
    background-repeat: no-repeat;
    background-image: url('../../icons/tip-icon2.svg');
    background-size: 22px 22px;
    background-position: center;
    width: 28px;
    height: 28px;
    display: inline-block;
}

.chat-message-icon {
  width: 20px;
  height: 10px;
  background-size: 20px 16px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
}

.chat-message-icon-arrow-back {
  background-image: url('../../assets/icons/arrow-back.svg');
}

.chat-message-icon-arrow-forward {
  background-image: url('../../assets/icons/arrow-back.svg');
  transform: rotate(180deg);
}

.sidebar-right-menu-button-wrapper {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#sidebarRightMenu {
  right: 0;
  top: 0;
  padding: 15px;
}

.sidebar-right-menu {
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2147483645;
  background-color: #FFFFFF;
}

.close-right-sidebar-button {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #ec2a4a !important;
  border: none;
  position: fixed;
  bottom: 15px;
  margin-right: 10px;
  right: 0;
  z-index: 1000000;
}

@media only screen and (min-width: 931px) {
    .sidebar-right-menu {
        width: 310px;
    }
}

@media only screen and (min-width: 901px) and (max-width: 950px) {
    .sidebar-right-menu {
        width: 310px;
    }
}

@media only screen and (max-width: 900px) {
    .sidebar-right-menu {
        width: 310px;
    }
}

.current-chat-images {
  display: flex;
  align-items: center;
  margin-left: 7px;
  margin-right: 7px;
  gap: 7px;
}

.chat-user-image.hidden {
  display: none;
}

.last-gallery-element:after {
  content: "";
  background-color: black;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 9px;
  opacity: 0.7;
  top: 0;
  right: 0;
  cursor: pointer;
}

.chat-gallery-backdrop-count {
  position: absolute;
  z-index: 10;
  color: white;
  cursor: pointer;
  opacity: 0.7;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.chat-user-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 950px) {
  .chat-gallery-backdrop-count {
    font-size: 13px;
  }
  .chat-gallery-backdrop-count-smaller-font {
    font-size: 12px;
  }
}

.chat-input-emoji {
  right: 8px;
  top: 8px;
}

.chat-input {
  display: flex;
  flex-direction: column;
  position: relative;
}

.chat-input-with-button-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-right: 10px;
  padding-left: 10px;
}

.chat-input-icons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 45px;
}

.chat-input-icons-wrapper.chat-input-icons-wrapper-mobile {
    height: auto;
}

@media (min-width: 901px) {
  .chat-input-with-button-wrapper {
    padding-right: 20px;
    gap: 20px;
  }
  .audio-recorded {
    padding-left: 20px;
  }

  .chat-input-icons-wrapper {
      padding-left: 20px;
  }
}

.expand-chat-utilities-icon-wrapper {
  display: none;
  width: 24px;
  cursor: pointer;
  height: 45px;
}

.expand-chat-utilities-icon-wrapper .fa-plus {
  font-size: 16px;
}

@media (max-width: 420px) {
  .emoji-picker {
    left: 2px!important;
    position: fixed!important;
    bottom: 84px!important;
    z-index: 1000;
  }

  .emoji-picker-two-lines {
    bottom: 120px!important;
  }

  .emoji-picker-three-lines {
    bottom: 142px!important;
  }

  .emoji-picker-four-lines {
      bottom: 164px!important;
  }

  .emoji-picker-five-lines {
      bottom: 186px!important;
  }

  .expand-chat-utilities-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .chat-input-icons-wrapper {
    display: none;
  }

  .chat-input-icons-wrapper-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-direction: column;
    position: absolute;
    background-color: white;
    z-index: 2;
    left: 10px;
    padding: 8px;
    border-radius: 12px;
    bottom: 70px;
    -webkit-box-shadow: 1px 2px 20px -5px rgba(66, 68, 90, 0.65);
    -moz-box-shadow: 1px 2px 20px -5px rgba(66, 68, 90, 0.65);
    box-shadow: 1px 2px 20px -5px rgba(66, 68, 90, 0.65);
  }
}



@media (min-width: 901px) {
  .chat-flags-mobile-only {
    display: none!important;
  }
}

#sidebarConversationList * .chat-user-username {
  width: 87%;
  display: flex;
  flex-wrap: wrap;
  white-space: unset;
  float: unset;
  height: unset;
  gap: 4px;
  align-items: center;
  justify-content: space-between;
}

.typing-indicator {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
    background-color: transparent;
}

.typing-indicator-text {
    margin-right: 5px;
}

.typing-indicator-dots {
    display: inline-flex;
    align-items: center;
}

.typing-indicator-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #999;
    margin: 0 2px;
    animation: typing-dot 1.4s infinite ease-in-out;
}

.typing-indicator-dots .dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-indicator-dots .dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing-dot {
    0%, 80%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}
