.ad_ch_box_container {
  direction: rtl;
  background: white;
  border: 1px solid #e9e9e9;
  font-size: 12px;
  border-radius: 0;
}

.col_contacts {
  overflow-y: auto;
  height: 99vh;
  direction: ltr;
}

.box_contact {
  cursor: pointer;
  position: relative;
  margin: 5px;
  border-radius: 7px;
  transition: all 250ms ease;
  direction: rtl;
}

.box_contact:hover {
  background: #e6ebf5;
}

.box_contact a {
  text-align: right;
  transition: all 250ms ease;

}

.right_items_context_wrapper {
  position: absolute;
  left: 20px;
  top: 23px;
  display: none;
}

.box_contact:hover .right_items_context_wrapper,
.box_contact_selected .right_items_context_wrapper {
  display: block;
}

.box_contact a:hover {
  text-decoration: none;
}

.box_contact img {
  margin: 7px;
  border-radius: 50%;
  border: 3px solid #eaeaea;
  width: 50px;
  height: 50px;
}

.box_contact h4 {
  font-size: 15px;
  color: #3e3e3e;
  padding-right: 5px;
  padding-top: 10px;
}

.box_contact h5 {

  font-size: 11px;
  color: #3e3e3e;
  padding-right: 10px;
}

.box_contact_selected {
  background: #1363DF;
  border-left: 1px solid #1363DF;
}

.box_contact_selected:hover {
  background: #1363DF;
}

.box_contact_selected h4 {
  color: #fff;
}

.box_contact_selected h5 {
  color: #fff;
}


/* .box_contact_selected:before {
    position: absolute;
    top: 40%;
    left: -11px;
    content: '';
    width: 0;
    height: 0;
    margin: -4px 0 0;
    border-right: solid 11px #e6ebf5;
    border-bottom: solid 11px transparent;
    border-top: solid 11px transparent;
    z-index: 2;
  } */

.chat_not_extended {}

.box_contact_unread {
  position: absolute;
  left: 12px;
  top: 40%;
  background: #ff0047;
  width: 19px;
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: white;
  padding-top: 3px;
  font-size: 10px;
}


ng-scrollbar.scroll-event {
  --scrollbar-size: 3px;
  --scrollbar-thumb-color: gray;
  --scrollbar-hover-size: 12px;
  --scrollbar-track-color: rgba(0, 0, 0, 0.05);
  --scrollbar-border-radius: 10px;
  height: 100%;
  direction: rtl;
}

.btn_chat_start {
  cursor: pointer;
  position: fixed;
  bottom: 17px;
  right: 26px;
  display: flex;
  z-index: 2;
}

.btn_chat_start img {
  width: 58px;
}

.left-stuff {
  background-color: #f1f3f4;
  width: 300px;
  height: 400px;
  position: fixed;
  bottom: 91px;
  right: 16px;
  border-bottom: 0;
  border-top: 0;
  border-radius: 10px;
  z-index: 99;
}

.chatbox {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 60dvh;
}

@media only screen and (min-height: 700px) {

  .chatbox {
    height: 66dvh;
  }
}

.top-bar {
  width: 100%;
  background: #f1f4ff;
}

.chat_not_extended .top-bar {
  border-radius: 0px;

}

.ch_back_wrapper {
  display: flex;

}

.ch_back_wrapper i {

  font-size: 20px;
  color: gray;
}

.ch_avatar {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  margin-top: 13px;
}


.ch_avatar img {
  cursor: pointer;
  height: 43px;
  border-radius: 30px;
  box-shadow: 0 2px 4px rgb(15 34 58 / 12%);
}

.ch_avatar_name {
  position: absolute;
  top: 15px;
  text-transform: uppercase;
  color: #201e1e;
  font-size: 15px;
  font-weight: 500;
  right: 67px;
  text-align: right;
}

.ch_middle {
  background: #fff;
  width: 100%;
  border-radius: 0px 14px 15px 0px;
  /* height: 84%; */
  flex-grow: 1;
  overflow: hidden;
  padding-bottom: 40px;
}

.voldemort {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  width: 100%;
  padding-bottom: 5px;
}

.incoming {

  padding: 0px 9px;
  margin-top: 0px;
  max-width: 100%;
  text-align: right;
}

.bubble {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  color: #F9FBFF;
  font-size: 0.7em;
  padding: 10px 10px 10px 12px;
  border-radius: 20px;
}

.incoming .bubble {
  background: #f1f4ff;
  color: var(--main_color);
}

.incoming .bubble:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-right-color: #fff;
  border-left: 0;
  border-top: 0;
  margin-top: -3.5px;
  margin-left: -7px;
}

.outgoing {
  padding: 0px 9px;
  margin-top: 0px;
  text-align: right;
}

.outgoing a {
  color: #fff;
}

.outgoing a::selection {
  color: rgb(43, 43, 43);
  background: rgb(255, 255, 255);
}


.incoming a {
  color: #1363df;
}

.ch_item_right {

  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: start;
  align-self: flex-start;
  width: 100%;
}

.ch_item_left {

  width: 100%;
}

.ch_item_right .ch_row {
  padding-right: 7px;
}

.ch_item_left .ch_row {
  padding-left: 20px;
}


.ch_row_inner_container {
  max-width: 70%;
  display: flex;
}

.lower {
  margin-top: 45px;
}

.outgoing .bubble {

  background: #f1f4ff;
  color: var(--main_color);
}

.outgoing .bubble:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-left-color: rgb(60 126 229);
  border-right: 0;
  border-bottom: 0;
  margin-top: -3.5px;
  margin-right: -7px;

}

.typing {
  /* position: absolute;
  bottom: 10%;
  left: 8px; */
}

.ch_av_name {
  display: flex;
  cursor: pointer;
}

.ch_av_name>div {
  font-size: 14px;
  font-weight: 700;
  color: var(--main_color);
}

.bubble {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  color: #133b8c;
  font-size: 13px;
  padding: 7px 10px 7px 12px;
  border-radius: 5px;
  min-width: 100px;
}

.typing .bubble {

  background: none;
  padding: 0px 13px 0px 13px;
  box-shadow: 0 0px 0px rgb(15 34 58 / 12%);
  margin: 0;
}

.bubble_main {

  word-break: break-all;
}

.bubble_answer {
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 6px;
}

.bubble_answer h5 {
  font-size: 11px;
  color: #4942a4;
  margin: 0;
}

.bubble_answer_outgoing {
  background: rgba(175, 170, 255, 0.5);
  border-left: 4px solid #6760d1;

}

.bubble_answer_incomming {
  background: rgba(209, 209, 209, 0.5);
  border-left: 4px solid #b3b3b3;
}

.img_chat_status {
  width: 10px;
  position: relative;
  top: -4px;
}

.msg_info {
  width: 14px;
  font-size: 9px;
  position: absolute;
  right: -3px;
  bottom: 0;
}


/* .ellipsis {
  width: 5px;
  height: 5px;
  display: inline-block;
  background: #b7b7b7;
  border-radius: 50%;
  animation: bounce 1.3s linear infinite;
} */

.one {
  animation-delay: 0.6s;
}

.two {
  animation-delay: 0.5s;
}

.three {
  animation-delay: 0.8s;
}

.bottom-bar {
  background: #fff;
}


@keyframes bounce {
  30% {
    transform: translateY(-2px);
  }

  60% {
    transform: translateY(0px);
  }

  80% {
    transform: translateY(2px);
  }

  100% {
    transform: translateY(0px);
    opacity: 0.5;
  }
}


.txt_message {
  padding: 8px;
  width: 100%;
  border: 0;
  background: #fff;
  color: #495057;
  font-size: 13px;
  height: 42px;
  font-size: 12px;
  direction: rtl;
  text-align: right;
  overflow: hidden;
  overflow-wrap: break-word;
  resize: none;
  outline: none;
  border-radius: 6px;
  border: 2px solid var(--main_color);
}

.txt_message_messanger {
  border: 1px solid #ddd;
}

.chat_bottom_cn {
  display: flex;
}

.chat_inpt_cn {}

.chat_btns_cn {}

.ch_item {}



.btn_send_msg {
  border: 0;
  color: #7269ef;
  /* right: 17px; */
  background: #ffffff;
  padding: 0px;
  font-size: 22px;
}

.btn_send_msg:hover {
  color: #399286;
}

.btn_ch_attach {
  background: none;
  border: 0;
  color: var(--main_color);
}

.btn_ch_attach:hover,
.btn_ch_attach:active {
  color: black;
}

.ch_img_thumb {
  max-width: 250px;
  border-radius: 5px;
  cursor: pointer;
  max-height: 289px;
}

.bubble_uploading_cn {
  position: absolute;
  bottom: 5%;
  width: 77%;
  right: 10%;
  font-size: 12px;
}

.row_header_search {
  background: #fcfcfc;
  border-bottom: 1px solid #eee;
  direction: rtl;
}

.ad_ch_contact_search_box {
  padding: 5px;
  position: relative;
  border-radius: 0 15px 0 0;
}

.txt_search_int {
  width: 96%;
  margin: 7px;
  padding: 8px;
  border: 1px solid #eee;
  border-radius: 15px;
}

.ad_ch_contact_search_box i {
  position: absolute;
  left: 20px;
  top: 38%;
  font-size: 17px;
  color: gray;
}

.chat_file_box {
  background: white;
  padding: 9px 0 4px 0;
  border-radius: 15px;
  direction: rtl;
  min-width: 226px;
  min-height: 52px;
  color: #2f2f2f;
  margin-bottom: 5px;
  word-break: break-all;
}

.img_chat_file {
  width: 45px;
  max-width: 100%;
}

.chat_file_box a {

  text-align: right;
  direction: ltr;
}

.ch_info_btn {}

.ch_info_btn i {
  font-size: 19px;
  color: var(--main_color);
}

.ch_info_btn i:hover {
  color: #6f38c5;

}

.ch_info_container {}

.ch_fr_box {
  padding: 15px 0;

}

.img_friend_pic {
  margin: 10px;
  max-width: 93px;
  border-radius: 150px;
}

.ch_fr_name {
  font-size: 15px;
}

.btn_ch_block_user {
  font-size: 13px;
  color: #fd3e3e !important;
  border: 1px solid #fd3e3e;
  padding: 3px 3px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  cursor: pointer;
  max-width: 202px;
  margin: 0 auto;
  text-align: right;
}

.btn_ch_block_user i {}

.btn_ch_block_user:hover {
  color: #fff !important;
  background-color: #fd3e3e;
}


.btn_unblock_user {}

.blocked_msg_container {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: center;
  margin: 10px;
}

.blocked_msg {
  background: #dfdfdf;
  padding: 4px 10px;
  border-radius: 10px;
}

.message_inner_container {
  position: relative;
  width: auto;
  display: flex;
  align-items: end;
}

.btn_context_icon {
  position: absolute;
  left: -17px;
  z-index: 1;
  top: 14px;
  color: #9d9d9d;
  font-size: 12px;
  width: 23px;
  height: 28px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ch_item:hover .btn_context_icon {
  color: #9d9d9d;

}

.inner_outgoing .btn_context_icon {}

.inner_incoming .btn_context_icon {
  left: auto;
  right: -13px;
}

.btn_context_icon:hover {}

.btn_context_icon i {}

.ch_modal_box {
  min-width: 100%;
  display: flex;
  direction: rtl;
}

.ch_modal_items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ch_modal_items li {
  text-align: right;
}

.ch_modal_items li button {}

.ch_row {
  display: flex;
  padding-top: 5px;
  width: 100%;
}

.ch_item_left .ch_row {
  justify-content: end;
}

.ch_row_selection {
  background-color: rgb(0 143 235 / 30%);
  cursor: pointer;
}

.voldemort_selection .ch_row {
  cursor: pointer;

}

.ch_top_navbar_ul {
  list-style: none;
  margin: 0;
  padding: 0;
  direction: ltr;
  display: flex;
  justify-content: start;
  height: 100%;
}

.ch_top_navbar_ul li {

  display: flex;
  align-items: center;
}

.ch_info_del_many {}

.ch_info_del_many i {

  font-size: 18px !important;
  color: #ff0a0a !important;
}

.bottom_bar_container {

  display: flex;
  flex-direction: row;
  align-items: center;
}

.ch_emoji_icon_cn {
  width: 30px;

}

.ch_attach_icon_cn {
  width: 37px;
  font-size: 18px;
}

.ch_text_input_cn {
  flex-grow: 0.87;
  padding: 16px 9px 9px 9px;
}

.ch_send_icon_cn {

  width: 33px;
}

.ch_send_icon_cn .btn_app_submit {
  height: 41px;
  width: 41px;
}

.ch_send_icon_cn img {}

.ch_mic_icon_cn {

  width: 33px;
}

.ch_emoji_btn {
  font-size: 21px;
  color: #797c8c;
  cursor: pointer;
}

.ch_stop_record i {
  color: red !important;
}

emoji-mart {
  position: absolute;
  bottom: 57px;
  right: 5px;
  z-index: 99;
}

.reply_bottom_container {
  padding: 4px;
  background: #eeeeee;
  margin: 14px;
  margin-bottom: 0px;
  text-align: right;
  border-radius: 5px;
  border-left: 5px solid #7269ef;
  padding-right: 8px;
}

.reply_bottom_container h4 {
  font-size: 13px;
  color: #7269ef;
}

.reply_bottom_container .reply_bottom_text {
  font-size: 13px;
  color: #686464;
}

.close_reply_btn {

  font-size: 25px;
  margin-top: 12px;
  display: flex;
  cursor: pointer;
}

.close_reply_btn i {
  color: #8e8c8c;
}

.empt_chatSelection {

  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  background: #dddddd;
  border-radius: 15px 0 0 15px;
}

.empty_chat_selection_message {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  color: #74767a;
  font-size: 13px;
  padding: 10px 10px 10px 12px;
  border-radius: 20px;
  min-width: 100px;
  background: rgb(255 255 255 / 90%);
}

.ch_img_thumb_reply {
  max-width: 55px;
  border-radius: 6px;
}



.ch_contact_container {
  width: 256px;
  height: auto;
  direction: rtl;
}

.ch_contact_item_cn {

  display: flex;
  align-items: center;
  justify-content: start;
  cursor: pointer;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  border-radius: 5px;
  padding: 6px;
  margin-bottom: 5px;
  position: relative;
}

.ch_contact_item_cn:hover {
  background: #e6ebf5;
}

.selected_contact {
  background: rgb(220 218 255 / 90%);
}

.selected_contact:hover {
  background: rgb(220 218 255 / 90%) !important;
}

.ch_contact_item_img {
  margin-left: 7px;
}

.ch_contact_item_img img {

  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #eee;
}

.ch_contact_item_img i {}

.ch_contact_item_name {

  position: relative;
  text-align: right;
  font-size: 13px;
  width: 150px;
}

.ch_contact_item_title {
  font-size: 9px;
  margin-top: 4px;
  color: gray;
}

.ch_contact_item_action {
  position: absolute;
  left: 0;
}

.start_newChat_btn_container {
  position: fixed;
  right: 19%;
  bottom: 5%;
}

.start_newChat_btn_container i {
  font-size: 27px;
}

.forwarded_ch_container {
  font-size: 9px;
  color: gray;
  padding: 5px 3px;
  border-radius: 12px;
  font-style: italic;
}

.forwarded_ch_container i {
  font-size: 12px;

}

.outgoing .forwarded_ch_container {
  color: #cecece;
}

.forwarded_ch_container .ch_top_user {
  width: 15px;
  background: white;
  border-radius: 10px;
}

.system_messages {
  text-align: center;
  color: gray;
}

.example-radio-group {
  display: flex;
  flex-direction: column;
  margin: 15px 0;
  align-items: flex-start;
}

.example-radio-button {
  margin: 5px;
}

.viewport_chat {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid hsl(0, 100%, 5%);
}

.chat_box_container {
  overflow-y: auto;
  height: 100%;
}

.voldemort-app {
  height: 52dvh;
}

.chat_box_container::-webkit-scrollbar {
  width: 5px;
}

.chat_box_container::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

.chat_box_container::-webkit-scrollbar-thumb {
  background-color: #adccfb;
  outline: 1px solid #bed7ff;
}

.chat_date_container {

  width: 100%;
  display: flex;
  justify-content: center;
}

.chat_date_container span {
  background: #f9f9f9;
  padding: 2px 7px;
  border-radius: 11px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  color: gray;
}

.chat_hour_container {

  display: flex;
  justify-content: start;
}

.chat_hour_container span {
  padding: 2px 0px 0;
  border-radius: 11px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  color: #9e9e9e;
}

.outgoing .chat_hour_container span {
  color: #7b7b7b;
}


.msg_detail_item_cn {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 12px 0px;
  margin-bottom: 5px;
  position: relative;
  border-bottom: 1px solid #eee;
  flex-direction: column;
  align-items: start;
}

.msg_detail_item_status {
  width: 15px;
  margin-left: 5px;
}

.msg_detail_item_name {
  position: relative;
}

.msg_detail_item_date {
  margin-top: 9px;
  font-size: 10px;
}

.msg_detail_title {
  margin: 9px 9px 4px 0;
  display: flex;
  justify-content: space-between;

}

.msg_detail_item_symbol {
  height: 9px;
  margin-left: 9px;
}

.detail_group_msg_box {
  padding: 10px 0;
  background: #efefef;
  margin-top: 10px;
}

.close_left_panel_cn {
  position: absolute;
  left: 15px;
  top: 12px;
}

.close_left_panel_cn a {
  font-size: 21px;
  cursor: pointer;
}

.close_left_panel_cn a i {
  color: gray;
}

.btn_user_profile {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  font-size: 25px;
  margin-right: 18px;
  cursor: pointer;
}

.btn_user_profile i {
  color: #5a5a5a;
}

.ch_profile_container {
  width: 100%;
  padding: 11px;
  direction: rtl;
  text-align: right;
}

.ed_pic_cn {

  position: relative;
  width: 120px;
  border-radius: 50%;
  margin: 20px auto;
  overflow: hidden;
}

.ch_profile_user_pic {
  width: 100%;
  border-radius: 50%;
  width: 119px;
  height: 119px;
}

.ed_pic_change_cn {

  width: 122px;
  background: rgba(0, 0, 0, 0.5);
  height: 30px;
  position: absolute;
  bottom: 0;
}

.btn_ed_cam {

  font-size: 20px;
  cursor: pointer;
}

.btn_ed_cam i {
  color: #b2b2b2;

}

#fileUserPic {
  position: absolute;
}

.chat_sign_out {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  font-size: 14px;
  width: 100%;
}

.chat_sign_out i {
  font-size: 19px;
  color: gray;
  margin-left: 6px;
}

.chat_sign_out span {}

.upload_percentage {}

.file_up_progress {
  border-top: 1px solid #fff;
}

.se_box_wrapper {

  height: 38px;
  background: #efefef;
  margin: 0px 10px 5px 10px;
  display: flex;
  align-items: center;
  padding-right: 7px;
}

.txt_ch_search {

  margin-right: 5px;
  border: 0px;
  border-bottom: 1px solid #d2cbcb;
}

.ul_search_items {

  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding-right: 10px;
}

.ul_search_items li {
  font-size: 19px;
  margin-left: 12px;
}

.ul_search_items li a {
  cursor: pointer;

}

.ul_search_items li a.se_disable {
  color: #bdbdbd;
}

.btn_next_search {}

.close_search {

  flex-grow: 1;
  padding-left: 18px;
  justify-content: flex-end;
  display: flex;
}

.close_search button {
  display: flex;
  width: 23px;
  height: 22px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

.close_search a i {}

.btn_download {
  position: absolute !important;
  left: 0;
  bottom: 8px;
}

.btn_download img {

  width: 26px;
}

.chat_video_player {
  width: 100%;
  max-height: 76vh;
}

.chat_video_modal {}

.chat_video_modal .modal-body {
  padding: 0 !important;
}

.chat_video_modal .modal-content {
  background-color: #000 !important;
}

.tchat_status {
  width: 7px;
  height: 7px;
  background: gray;
  display: block;
  float: right;
  margin-left: 5px;
  position: relative;
  top: 4px;
  border-radius: 5px;
}

.tonline {
  background: #00e346;
}

.toffline {
  background: #e30000;
}

.ch_avatar_online {
  text-align: right;
  font-size: 11px;
  color: var(--main_color);
}

.ngx-file-drop__content {

  display: block !important;
  height: 100% !important;
}

.ngx-file-drop__drop-zone {
  height: auto !important;
  margin: 0 !important;
  border: 0px dotted #0782d0 !important;
  border-radius: 0px !important;
  z-index: 99;
  position: relative;
  min-height: 100%;
}

.ngx-file-drop__drop-zone--over {}

.btn_download {

  background: #6ebaff !important;
  width: 30px !important;
  min-width: 22px !important;
  line-height: 29px !important;
  padding: 0 3px !important;
  border-radius: 20px !important;
  position: relative;
  left: 5px;
  box-shadow: 0 2px 4px rgb(15 34 58 / 12%);
}

.modal-open .modal {
  background: rgb(0 19 42 / 50%);
}

.modal_close_wrapper {}

.btn_close_modal {
  cursor: pointer;
  position: absolute;
  right: 0;
  background: black;
  width: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.btn_close_modal i {
  font-size: 27px;
  color: white;

}

.call_video_wrapper {}

.call_video_wrapper video {
  height: 1px;
}

.call_video_wrapper video::-webkit-media-controls-fullscreen-button {}

.call_video_wrapper video::-webkit-media-controls-play-button {
  display: none;
}

.call_video_wrapper video::-webkit-media-controls-timeline {
  display: none;
}

.call_video_wrapper video::-webkit-media-controls-current-time-display {
  display: none;
}

.call_video_wrapper video::-webkit-media-controls-time-remaining-display {
  display: none;
}

.call_video_wrapper video::-webkit-media-controls-mute-button {
  display: none;
}

.call_video_wrapper video::-webkit-media-controls-toggle-closed-captions-button {
  display: none;
}

.call_video_wrapper video::-webkit-media-controls-volume-slider {
  display: none;
}


.call_video_wrapper audio {
  height: 1px;
}

.active_media_wrapper {}

.active_media_wrapper video {
  height: 100%;
  width: 99.5%;
  position: absolute;
  left: 2px;
  top: 0px;
  border-radius: 9px;
}

.call_all_box {}

.call_wrapper {
  min-width: 300px !important;
  min-height: 300px !important;
  position: absolute !important;
  z-index: 999 !important;
  background: #3c7ee5;
  cursor: move;
  left: 3% !important;
  bottom: 6%;
  border: 2px solid #0a3270;
  border-radius: 10px;
  background: radial-gradient(circle, rgba(1, 17, 162, 1) 0%, rgba(3, 13, 102, 1) 100%);
}


.inciming-call-animation {
  background: #fff;
  width: 135px;
  height: 135px;
  position: relative;
  margin: 0 auto;
  border-radius: 100%;
  /* border: solid 0px #fff; */
  animation: play 2s ease infinite;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0;

}

.inciming-call-animation .user-img {
  width: 135px;
  height: 135px;
  border-radius: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}

.call_ringing_row {
  margin: 1rem 0;
}

.call_ringing_row img {

  margin: 13px;
  width: 135px;
  height: 109px;
  border-radius: 100%;
}

.inciming-call-animation img {}

.chat_box_ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 4rem;
}

.chat_box_ul li {}

.chat_box_ul li a {
  width: 100%;
  display: flex;
  height: 45px;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  border-bottom: 1px solid #fbfbfbee;
}

.chat_box_ul li a:hover {}

.chat_box_ul li a i {
  margin-left: 13px;
  font-size: 19px;
  display: inline-flex;
  width: 27px;
  color: #4c4c4c;
  justify-content: center;
}

.chat_box_ul li a i.icon-red {
  color: red;
}

.chat_box_ul li a:hover {
  background: #f9f9f9;
}


@keyframes play {

  0% {
    transform: scale(1);
  }

  15% {
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.4);
  }

  25% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.2);
  }

  25% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0.2);
  }

}

.call_user_row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
}

.call_user_img {

  margin-bottom: 13px;
}

.call_user_img img {
  border-radius: 100%;
  width: 100px;
  height: 100px;
}

.call_user_name {

  font-size: 18px;
  color: white;
  text-align: center;
}

.call_close {

  position: absolute;
  left: 7px;
  top: 5px;
}

.call_close i {
  font-size: 23px;
  color: white;
  cursor: pointer;
}

.call_action {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  align-items: center;
}

.btn_call i {
  font-size: 20px;
  position: relative;
  top: 3px;
  right: -9px;
  color: green;
}

.btn_call {
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 35px;
  display: inline-block;
  border-radius: 100px;
  transition: all .2s;
  /* position: absolute; */
  width: auto;
  position: relative;
  height: 56px;
  margin: 0 auto;
}

.btn_call:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn_call {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn_call-white {
  background-color: #fff;
  color: #777;
}

.btn_call::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s;
}

.btn_call-white::after {
  background-color: #fff;
}

.btn_call:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn_call-animated {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards;
}

.call_red i {
  color: red;
}

.hangup_wrapper {
  position: absolute;
  bottom: 0;
  width: 150px;
  left: 0;
  bottom: 8px;
}

.hangup_wrapper .btn_call {
  padding: 10px 19px;
  height: auto;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}


/* #start of loading  */
.msg_loading_wrapper {}


@keyframes ldio {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.ldio div {
  box-sizing: border-box !important
}

.ldio>div {

  position: absolute;
  width: 70px;
  height: 70px;
  top: 15px;
  left: 111%;
  border-radius: 50%;
  border: 6px solid #000;
  border-color: #3c7ee5 transparent #3c7ee5 transparent;
  animation: ldio 1s linear infinite;
}

.ldio>div:nth-child(2) {
  border-color: transparent
}

.ldio>div:nth-child(2) div {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
}

.ldio>div:nth-child(2) div:before,
.ldio>div:nth-child(2) div:after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  top: -6px;
  left: 26px;
  background: #3c7ee5;
  border-radius: 50%;
  box-shadow: 0 64px 0 0 #3c7ee5;
}

.ldio>div:nth-child(2) div:after {
  left: -6px;
  top: 26px;
  box-shadow: 64px 0 0 0 #3c7ee5;
}

.loadingio-spinner-dual-ring {
  width: 100%;
  height: 41px;
  display: inline-block;
  overflow: hidden;
}

.ldio {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(0.41);
  backface-visibility: hidden;
  transform-origin: 0 0;
  /* see note above */
}

.ldio div {
  box-sizing: content-box;
}

/* #end of loading  */
.msg_gotobottom_cn {
  position: fixed;
  bottom: 88px;
  left: 20px;
}

.btn_go_to_bot {
  background: white;
  width: 28px;
  display: flex;
  height: 28px;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  cursor: pointer;
}

.btn_go_to_bot i {
  color: #3c7ee5;
  font-size: 17px;
}

.mat-dialog-content {
  overflow-x: hidden;
  margin: 0 4px !important;
  width: 100%;
  padding: 0 35px;
  margin: 0 0 !important;
  direction: rtl;
}



.mt-dig-header {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: center;
}

.ch_modal_it {
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-top: 2rem;
}

.ch_modal_it li {}

.ad_chat_header {
  display: flex;
  margin-bottom: 4px;
}

.ad_chat_hd_img {}

.ad_chat_hd_img img {

  width: 25px;
  border-radius: 50px;
  height: 25px;
}

.ad_chat_name {

  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 6px;
}

.ad_chat_name h4 {

  font-size: 13px;
  margin-left: 3rem;
  margin-bottom: 0;
}

.dialog_search_wrapper {}

.dialog_search_wrapper .txt_search_int {
  width: 100%;
  margin: 0px;
  padding: 6px;
  border-radius: 11px;
  font-size: 12px;
}

.dialog_search_wrapper .ad_ch_contact_search_box i {
  left: 17px;
  top: 36%;
  font-size: 13px;
}

.ch_middle_main {}

.chatbox_messagnger {

  height: 95dvh !important;
}

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


  .empt_chatSelection~.voldemort {
    height: 100vh;
  }

  .box_right_contacts {

    max-height: 92vh;
  }
}

@media only screen and (max-width: 500px) {

  .mat-dialog-content {
    min-width: 100%;
    padding: 0px 6px !important;
  }

  .ch_avatar {
    border-radius: 50%;
    width: 54px;
    height: 56px;
    margin-top: 7px;
    display: flex;
  }

  .ch_avatar_name {
    position: absolute;
    top: 13px;
    text-transform: uppercase;
    color: #201e1e;
    font-size: 1em;
    font-weight: 500;
    right: 67px;
  }

  .ch_avatar img {
    margin-right: 13px;
    position: relative;
    top: 3px;
  }

  .chat_video_player {
    height: 75vh;
  }

  .start_newChat_btn_container {
    position: fixed;
    right: 81%;

  }

  .ch_middle {
    flex-grow: 0.95;
  }

  .chatbox {}

  .ad_ch_box_container {
    /* min-height: 100vh; */
  }

  .voldemort {}

  .ch_row_inner_container {
    max-width: 94%;
  }

  .bottom-bar {
    position: absolute;
    bottom: -36px !important;
    width: 100.5%;
    z-index: 99;
    border-radius: 0 0 15px 15px;
  }

  .right_items_context_wrapper {
    display: block;
  }

}