/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 /* action btn */
 .floating-chat-btn-wrapper {
	display: flex;
	justify-content: end;
	padding-bottom: 0rem;
	position: sticky;
	bottom: 43px;
	margin-right: 25px;
	margin-bottom: -2rem;
	z-index: 110;
	pointer-events: none;
}
  #primary {
    position: relative;
  }
  .msg-action-btn {
    z-index: 10;
    width: 71px;
    height: 71px;
    background-color: var(--color-white-universal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 8px 3px #00000040;
    cursor: pointer;
    border: 1px solid var(--color-gray);
    pointer-events: visible;
  }
  .footer-msg-ico {
    width: 33px;
    height: 33px;
  }
  
  .chat-and-messaging-wrapper {
    /* display: none; */
    transform: scale(0);
    height: 90vh;
    max-height: 584px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    justify-content: end;
    /* max-width: 200px; */
    /* left: 20px; */
    pointer-events: none;
    background: aliceblue;
    transition: all 0.3s ease-in-out;
    transform-origin: bottom;
    color: black;
  }
  .search-ico {
    cursor: pointer;
  }
  .show-chat-list {
    /* transition: all 0.3s ease-in-out; */
    transform: scale(1);
    /* overflow: auto; */
  }
  .hide-chat-list {
    transform: scale(1);
  }
  .chat-list-wrapper {
    position: relative;
    /* bottom: 0; */
    right: 0;
    z-index: 200;
    height: 0;
    max-width: 241px;
    padding: 1rem;
    pointer-events: fill;
  }
  .chat-list-contain {
    height: 90vh;
    overflow: auto;
  }
  .msg-close-btn {
    margin: auto;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    height: 38px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
  }
  .online-chat-wrapper {
    margin-top: 2rem;
  }
  .online-chat-heading {
    display: flex;
    text-transform: uppercase;
    justify-content: space-between;
    align-items: center;
  }
  .chat-heading {
    font-size: 18px;
  }
  .chat-description {
    margin-top: 10px;
    width: 100%;
    font-size: 12px;
    font-family: var(--font-noto);
    color: var(--color-black-400);
    line-height: 16.4px;
  }
  .chat-user-list {
    overflow-y: auto;
    max-height: 213px;
  }
  .live-msg-text{
    text-align: center;
    text-transform: capitalize;
    margin: 5px;
  }
  .chat-user-list-card {
    display: flex;
    align-items: center;
    margin: 11px auto;
    position: relative;
    cursor: pointer;
  }
  .user-list-avatar {
    position: relative;
  }
  .chat-username {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin-left: 10px;
  }
  .chat-avatar {
    border-radius: 50%;
    width: 39px;
    height: 39px;
  }
  .chat-avatar-small {
    border-radius: 50%;
    width: 26.34px;
    height: 26.34px;
  }
  .online-ico {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-active-indicator);
    border-radius: 50%;
    bottom: 4px;
    border: 2px solid var(--color-white-universal);
    right: 0;
  }
  .messages-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  .messages-heading {
    display: flex;
  }
  .message-heading-title {
    text-transform: capitalize;
    font-size: 18px;
  }
  .messages-notification {
    background: red;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 400;
  }
  .footer-edit-ico {
    margin-right: 10px;
    cursor: pointer;
  }
  .footer-search-ico {
    cursor: pointer;
  }
  .message-people-list-wrapper {
    height: 387px;
    overflow-y: auto;
  }
  .messages-container {
    margin-top: 1.5rem;
  }
  .message-people-list-wrapper {
    height: 387px;
    overflow-y: auto;
  }
  .unread-message .sub-content-msg{
    font-weight: bold;
  }
  .message-list-user {
    display: flex;
    margin: 11px 0;
    align-items: center;
    cursor: pointer;
  }
  .message-meta-container {
    margin-left: 10px;
  }
  .unread-message .unread-message-indicator{
    background-color: var(--color-new-blue-700);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: auto;
  }
  .message-user-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    text-transform: capitalize;
  }
  .sub-content-msg {
    font-size: 12px;
    font-weight: 400;
    color: #424242;
    overflow-wrap: anywhere;
  }
  /* popup msg */
  .popup-new-chat-box,
  .popup-new-conversation {
    display: none;
    box-shadow: 0px 4px 8px 3px #00000040;
    width: 297px;
    height: 381px;
    position: fixed;
    bottom: 0;
    background: white;
    z-index: 10;
    right: 40px;
    color:black;
  }
  .new-chat-top-wrapper {
    border-bottom: 1px solid #d2d0d0;
  }
  .chat-msg-contain-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 11px 9px 11px;
  }
  .chat-box-title {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
  }
  .chat-close-ico {
    font-size: 24px;
    cursor: pointer;
  }
  .chat-top-bottom-content {
    display: flex;
    align-items: center;
    padding: 0 11px;
    padding-bottom: 11px;
  }
  .chat-search-userlist {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: #060606;
  }
  .chat-search-input-user {
    border: none;
    outline: gray;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #060606;
  }
  .new-chat-user-list-container {
    padding: 10px 11px;
    overflow: auto;
    max-height: 293px;
  }
  .top-avatar-chat {
    display: flex;
    align-items: center;
  }
  .chat-controls {
    bottom: 0;
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-right: 15px;
    margin-bottom: 10px;
  }
  .chat-message-input {
    flex: 2;
    border: 1px solid var(--color-gray-50);
    flex: 2;
    margin: 0 4px;
    outline: none;
    border-radius: 10px;
    padding: 10px;
  }
  .chat-input-more,
  .chat-input-send {
    cursor: pointer;
  }
  .chat-first-time .chat-user-list-card {
    flex-direction: column;
  }
  .chat-user-list-card {
    display: flex;
    align-items: center;
    margin: 11px auto;
    position: relative;
    cursor: pointer;
  }
  .first-chat-info {
    text-align: center;
    font-weight: 500;
    font-style: italic;
    font-size: 14px;
    text-transform: capitalize;
    line-height: 21px;
    color: #424242;
  }
  /* user chat css */
  
  .new-chat-user-list-container.conversation {
    padding: 10px 11px;
    overflow: auto;
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 291px;
  }
  .chat-conversation-container {
    flex-grow: 3;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  .conversation-container {
    scrollbar-width: thin;
    scrollbar-color: var(--color-scroll-bar) #fff;
  }
  
  /* Works on Chrome, Edge, and Safari */
  
  .conversation-container::-webkit-scrollbar {
    width: 5px;
  }
  
  .conversation-container::-webkit-scrollbar-track {
    background-color: #fff;
  }
  
  .conversation-container::-webkit-scrollbar-thumb {
    background-color: var(--color-scroll-bar);
    border-radius: 20px;
    border: 1px solid #fff;
  }
  
  .chat-conversation-container.chat-first-time {
    justify-content: start;
  }
  .conversation-container {
    display: grid;
    gap: 9px;
    margin-bottom: 9px;
    overflow-y: scroll;
  }
  .chat-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .sender {
    background: #f0f2f5;
    padding: 7px 5px 5px 10px;
    border-radius: 9px;
    width: 194px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    overflow-wrap: anywhere;
  }
  .receiver {
    background: #bfc6fa;
    border-radius: 9px;
    width: 194px;
    margin-left: auto;
    padding: 7px 5px 5px 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    overflow-wrap: anywhere;
  }
  .chat-date {
    text-transform: capitalize;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 21px;
    text-align: center;
    color: #424242;
  }
  .tooltip-send-msg {
    display: none;
    width: 139px;
    position: absolute;
    outline: 1px solid var(--color-white-100);
    z-index: 2;
    background-color: var(--color-white-universal);
    top: -99px;
    list-style-position: inside;
  }
  .tooltip-send-msg-list {
    list-style: none;
  }
  .tooltip-send-msg-list li {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    padding: 6px 17px;
    text-transform: capitalize;
    cursor: pointer;
  }
  .tooltip-send-msg-list li:first-child {
    padding-top: 14px;
  }
  .tooltip-send-msg-arrow-down {
    border: solid var(--color-white-100);
    position: relative;
    border-width: 0 1px 1px 0px;
    display: inline-block;
    left: 9px;
    z-index: 3;
    padding: 6px;
    -webkit-transform: rotate(44deg);
    border-left: 1px solid var(--color-white-universal);
    background-color: var(--color-white-universal);
    bottom: -10px;
  }
  .upload-msg-btn {
    background: none;
    border: none;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 19px;
    text-transform: capitalize;
    cursor: pointer;
  }
  #msg-emoji {
    top: -195px;
    width: auto;
  }
  #msg-emoji .tooltip-send-msg-container {
    width: 214px;
    height: 163px;
    overflow: auto;
  }
  .tooltip-send-msg-container::-webkit-scrollbar {
    width: 5px;
  }
  
  .tooltip-send-msg-container::-webkit-scrollbar-track {
    background-color: #fff;
  }
  
  .tooltip-send-msg-container::-webkit-scrollbar-thumb {
    background-color: var(--color-scroll-bar);
    border-radius: 20px;
    border: 1px solid #fff;
  }
  
  #msg-emoji .emoji-content {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, 36px);
    padding: 11px 9px;
    gap: 1px;
  }
  #msg-emoji .emoji-content li {
    cursor: pointer;
    font-size: 23px;
    transition: all 0.15s ease-in-out;
  }
  #msg-emoji .emoji-content li:hover {
    transform: scale(1.3);
  }
  