@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");
@import url("https://fonts.googleapis.com/css?family=Quicksand&display=swap");

h1,
h2,
h3,
h4,
h5,
h6,
body,
p,
ul,
li {
    font-family: "Poppins", sans-serif;
}

body {
    padding: 0px;
    margin: 0px;
    width: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.header {
    flex: 0 0 auto;
    background-color: #f0f0f0;
}

.chat-body {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    flex-direction: column;
    width: 98%;
    height: 100%;
    padding: 10px 25px 0px 10px;
    flex: 1 1 auto;
    overflow-y: auto;
    /* background-color: aqua; */
}

.chat-body img {
    border-radius: 100px;
    width: 50px;
    height: 50px;
    margin-left: 15px;
}

.chat-msg-wrapper {
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: left;
    padding: 5px 10px 5px 10px;
}

.receiver-chat-msg-wrapper {
    display: flex;
    flex-direction: row;
    width: 80%;
    justify-content: end;

    /* padding: 5px 10px 5px 10px; */
}

/* .chat-msg-container{
  display: flex;
  flex-direction: column;
} */

.reciever-chat-msg {
    background: rgba(102, 209, 209, .1);
    border-radius: 12px 12px 0px 12px;
    margin-right: 10px;
    padding: 2px 10px 2px 10px;
    word-break: break-all;
}

.reciever-chat-msg p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #25272B;
}

.reciever-chat-msg span {
    font-size: 11px;
}

.reciver-time-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgba(37, 39, 43, 0.54);
    margin-right: 10px;
}

.receiver-chat-msg-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-msg {
    background-color: rgba(101, 113, 255, .1);
    border-radius: 0px 12px 12px 12px;
    margin-left: 10px;
    padding: 2px 10px 2px 10px;
    word-break: break-all;

}

.chat-msg p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #25272B;
}

.time-text {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgba(37, 39, 43, 0.54);
    margin-left: 10px;

}


.chat-btm-container {
    display: flex;
    position: absolute;
    bottom: 10px;
    width: 100%;
    /*background: transparent;*/
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 0px 10px;
    flex: 0 0 auto;

}

.uploadfiles-btn {
    border-radius: 100px;
    border: 0.5px solid #202020;
    padding: 10px;
    background-color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    opacity: 0.6;
    justify-content: center;
    display: flex;
    align-items: center;
}

.form-control {
    width: 90%;

}

.msg-input {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #25272B;
    padding: 10px;
    background: #FFFFFF;
    border: 0.5px solid #DCDCDC;
    border-radius: 100px;
    width: 99% !important;
}


.send-btn {
    border-radius: 100px;
    padding: 10px;
    background-color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border: 0.5px solid #202020;
    opacity: 0.6;
    justify-content: center;
    display: flex;
    align-items: center;
}

.header {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 0px 0px 0px 15px;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(6, 36, 104, 0.1);
}

.header img {
    border-radius: 100px;
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.header-content p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: #25272B;

}

.messenger-designation {
    color: rgba(37, 39, 43, 0.54) !important;
    font-size: 13px;
}

.chat-body .new {
    transform: scale(0);
    transform-origin: 0 0;
    animation: bounce 500ms linear both;
}

textarea {
    font: inherit;
    height: 2rem;
    width: 100%;
    padding: .8rem 1rem
  }
  
  .menu {
    background-color: #f3f3f3;
  }
  .container {
    height: auto !important;
  }
  .menu-item {
    cursor: default;
    padding: 1rem;
  }
  
  .menu-item.selected {
    background-color: slateGray;
    color: white;
  }
  
  .menu-item:hover:not(.selected) {
    background-color: #fafafa;
  }
  .hidden-user {
    display: none;
  }