.milanChat {
  padding: 5px;
  background-color: #fff;
  /* Chrome, Edge, Safari */
  /* Firefox */
}
.milanChat .chat-wrapper.chatOpen .friend-list {
  width: 260px;
}
.milanChat .messageContent p {
  padding-right: 15px;
  margin-top: 0;
}
.milanChat .messageContent p strong {
  font-size: 13px;
}
.milanChat .requested {
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}
.milanChat .chat-area {
  position: relative;
}
.milanChat .sent_request {
  margin-bottom: 30px;
}
.milanChat .chat-wrapper {
  display: flex;
  gap: 0px;
}
.milanChat .friend-list {
  width: 100%;
}
.milanChat .friendList {
  margin-top: 0;
}
.milanChat .chatBox {
  border-left: 1px solid #ececec;
  height: 300px;
  padding-left: 0;
  overflow-y: auto;
  padding-bottom: 30px;
}
.milanChat .chatBox .profileHead {
  display: flex;
  gap: 15px;
  align-items: center;
  position: absolute;
  width: 100%;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 10px;
  padding-left: 0;
  box-shadow: 0 1px 0 #efefef;
  background-color: #fff;
  left: 5px;
}
.milanChat .chatBox .profileHead .profile-name {
  font-size: 14px;
}
.milanChat .chatBox .profileHead .wrap-icons img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: cover;
     object-fit: cover;
}
.milanChat .friend-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 15px;
}
.milanChat .friend-item img {
  border-radius: 50%;
  margin-right: 10px;
  height: 50px;
  width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.milanChat .messageContent {
  padding: 0 5px;
  margin-top: 75px;
}
.milanChat #chat-message {
  width: 100%;
  border: none;
  font-size: 13px;
  height: 60px;
  border-radius: 30px;
  background: #f1f7fa;
  padding: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 100px;
}
.milanChat .rightMessage {
  padding: 8px;
  font-size: 13px;
  border-radius: 5px;
}
.milanChat .rightMessage.leftMessage {
  text-align: right;
  padding-right: 15px;
}
.milanChat .rightMessage strong {
  margin: 0;
}
.milanChat #chat-form {
  padding-top: 0;
  display: flex;
  position: relative;
}
.milanChat #chat-form button {
  width: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  background: none;
}
.milanChat #chat-form button img {
  width: 38px;
}
.milanChat ::-webkit-scrollbar {
  width: 8px; /* scrollbar width */
}
.milanChat ::-webkit-scrollbar-track {
  background: #fff; /* track color */
}
.milanChat ::-webkit-scrollbar-thumb {
  background-color: #f1f7fa; /* scrollbar handle */
  border-radius: 10px;
  border: 2px solid #fff; /* space around handle */
}
.milanChat * {
  scrollbar-width: thin; /* "auto" or "thin" */
  scrollbar-color: #f1f7fa #fff; /* thumb color | track color */
}

@media (max-width: 767px) {
  .milanChat .friend-list {
    width: 100%;
  }
  .milanChat .chat-wrapper.chatOpen .friend-list {
    position: relative;
    width: 60px;
  }
  .milanChat .chat-wrapper.chatOpen .friend-list .friend-item {
    position: relative;
  }
  .milanChat .chat-wrapper.chatOpen .friend-list .wrap-name .fullname {
    display: none;
  }
  .milanChat .chat-wrapper.chatOpen .friend-list .wrap-name .shortName {
    display: block !important;
    position: absolute;
    right: 10px;
    left: 0px;
    z-index: 999;
    text-align: center;
    color: #fff;
    font-size: 24px;
    justify-content: center;
    align-items: center;
    top: 10px;
  }
  .milanChat .chat-wrapper.chatOpen .friend-list .wrap-name small {
    display: none;
  }
  .milanChat .chat-wrapper.chatOpen .friend-list .img-wrap {
    position: relative;
  }
  .milanChat .chat-wrapper.chatOpen .friend-list .img-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4); /* dark transparent overlay */
    border-radius: 50%; /* match image shape */
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }
}/*# sourceMappingURL=milan.css.map */