#nh-chat {
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 10px;
  z-index: 10;
}

#nh-chat #nh-chat-flab {
  background: transparent linear-gradient(32deg, #1b56a5 0%, #468ae2 100%) 0% 0%;
  border-radius: 100%;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
}

#nh-chat #nh-chat-main {
  display: none;
  height: 490px;
  width: 360px;
  background-color: white;
  box-shadow: 2px 2px 4px rgba(99, 99, 99, 0.356);
  margin-bottom: 60px;
  margin-right: 10px;
  border-radius: 15px 15px 0 15px;
  overflow: hidden;
  padding-bottom: 32px;
  animation-name: chat-animation;
  animation-duration: 1s;
}

#nh-chat .nh-chat-main-active {
  display: block !important;
}

#nh-chat-main #nh-chat-main-header {
  width: 100%;
  height: 50px;
  background: transparent linear-gradient(32deg, #1b56a5 0%, #468ae2 100%) 0% 0%
    no-repeat padding-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#nh-chat-main #nh-chat-main-header .nh-chat-main-header-title {
  display: flex;
  align-items: center;
}

#nh-chat-main #nh-chat-main-header .nh-chat-main-header-icon {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  padding: 10px;
}

#nh-chat-main #nh-chat-main-header .nh-chat-main-header-logo {
  height: 16px;
  padding: 10px;
}

#nh-chat-main #nh-chat-main-header .nh-chat-main-header-close {
  height: 20px;
  padding: 10px;
  padding-right: 20px;
  cursor: pointer;
}

#nh-chat-main #nh-chat-main-messages {
  width: calc(100% - 32px);
  height: calc(100% - 234px);
  padding: 16px;
  overflow-y: auto;
  padding-bottom: 200px;
}

@media (max-width: 471px) {
  #nh-chat {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  #nh-chat #nh-chat-main {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

#nh-chat-main #nh-chat-main-messages::-webkit-scrollbar {
  width: 6px;
}

#nh-chat-main #nh-chat-main-messages::-webkit-scrollbar-track {
  background-color: #ccc;
}

#nh-chat-main #nh-chat-main-messages::-webkit-scrollbar-thumb {
  background-color: #1b56a5;
}

#nh-chat-main #nh-chat-main-messages .nh-chat-main-messages-transmitter {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  animation-name: nh-chat-main-messages-transmitter-animation;
  animation-duration: 2s;
  position: relative;
  margin-bottom: 10px;
}

@keyframes nh-chat-main-messages-transmitter-animation {
  from {
    opacity: 0;
    bottom: -100px;
  }
  to {
    opacity: 1;
    bottom: 0px;
  }
}

@keyframes chat-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#nh-chat-main
  #nh-chat-main-messages
  .nh-chat-main-messages-transmitter
  .nh-chat-main-messages-transmitter-icon {
  width: 26px;
  height: 26px;
  border-radius: 100%;
}

#nh-chat-main
  #nh-chat-main-messages
  .nh-chat-main-messages-transmitter
  .nh-chat-main-messages-text {
  margin-left: 10px;
  width: calc(100% - 120px);
  border-radius: 0 10px 10px 10px;
  background-color: #ecf0f4;
  padding: 10px;
  font-size: 14px;
  line-height: 16px;

  color: #333;
}

#nh-chat-main
  #nh-chat-main-messages
  .nh-chat-main-messages-transmitter
  .nh-chat-main-messages-actions {
  margin-left: 40px;
  margin-top: 6px;
  width: calc(100% - 70px);
}

#nh-chat-main
  #nh-chat-main-messages
  .nh-chat-main-messages-transmitter
  .nh-chat-main-messages-actions
  .nh-chat-main-messages-actions-buttons
  ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

#nh-chat-main
  #nh-chat-main-messages
  .nh-chat-main-messages-transmitter
  .nh-chat-main-messages-actions
  .nh-chat-main-messages-actions-buttons
  ul
  li {
  padding: 6px 10px;
  border: 1px solid #1b56a5;
  border-radius: 8px;
  margin: 4px;
  font-size: 14px;
  color: #333;
}

#nh-chat-main
  #nh-chat-main-messages
  .nh-chat-main-messages-transmitter
  .nh-chat-main-messages-actions
  .nh-chat-main-messages-actions-buttons
  ul
  li:hover {
  background-color: #1b56a5;
  color: #fff;
  cursor: pointer;
}

#nh-chat-main
  #nh-chat-main-messages
  .nh-chat-main-messages-transmitter
  .nh-chat-main-messages-actions
  .nh-chat-main-messages-actions-buttons
  ul
  li:active {
  background-color: #1b457c;
}

#nh-chat-main #nh-chat-main-messages .nh-chat-main-messages-receiver {
  width: calc(100% - 100px);
  display: flex;
  flex-wrap: wrap;
  animation-name: nh-chat-main-messages-receiver-animation;
  animation-duration: 1s;
  position: relative;
  margin-bottom: 10px;
  right: -100px;
  justify-content: flex-end;
}

@keyframes nh-chat-main-messages-receiver-animation {
  from {
    opacity: 0;
    bottom: -100px;
  }
  to {
    opacity: 1;
    bottom: 0px;
  }
}

#nh-chat-main
  #nh-chat-main-messages
  .nh-chat-main-messages-receiver
  .nh-chat-main-messages-text {
  border-radius: 10px 10px 0 10px;
  background-color: #468ae2;
  padding: 10px;
  font-size: 14px;
  line-height: 16px;

  color: #ffffff;
}

#nh-chat-main
  #nh-chat-main-messages
  .nh-chat-main-messages-transmitter
  .nh-chat-main-messages-actions
  .nh-chat-main-messages-actions-inputs
  ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

#nh-chat-main
  #nh-chat-main-messages
  .nh-chat-main-messages-transmitter
  .nh-chat-main-messages-actions
  .nh-chat-main-messages-actions-inputs
  ul
  li {
  width: 100%;
  margin: 4px;
}

#nh-chat-main
  #nh-chat-main-messages
  .nh-chat-main-messages-transmitter
  .nh-chat-main-messages-actions
  .nh-chat-main-messages-actions-inputs
  ul
  li
  input {
  width: calc(100% - 20px);
  /* border: none;
  border-bottom: 1px solid black; */
  border: 1px solid #1b56a5;
  border-radius: 8px;
  padding: 10px 10px;
  /* background-color: #ecf0f4; */
}

#nh-chat-main
  #nh-chat-main-messages
  .nh-chat-main-messages-transmitter
  .nh-chat-main-messages-actions
  .nh-chat-main-messages-actions-inputs
  ul
  li
  input::placeholder {
  color: #797979;
}

.nh-chat-main-messages-actions-inputs-send {
  background-color: #1b56a5;
  min-width: 100%;
  width: 100%;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  cursor: pointer;
  border: none;
}

.nh-chat-main-messages-actions-inputs-send img {
  width: 20px;
  height: 20px;
}

.nh-chat-main-messages-actions-inputs-list-birthay {
  display: flex;
  align-items: center;
  width: calc(100% - 20px);
  border: 1px solid #1b56a5;
  border-radius: 8px;
}

.nh-chat-main-messages-actions-inputs-list-birthay input {
  text-align: center;
  border: none !important;
  outline: none;
}

.nh-chat-main-messages-actions-inputs-list-birthay span {
  font-size: 26px;
  padding: 0 10px;
  font-weight: 100;
  height: 35px;
  display: flex;
  align-items: center;
}

.nh-chat-main-messages-actions-inputs-list-select-button {
  position: relative;
  display: flex;
  align-items: center;
}

.nh-chat-main-messages-actions-inputs-list-select-button input {
  cursor: pointer;
}

.nh-chat-main-messages-actions-inputs-list-select-button img {
  width: 12px;
  opacity: 70%;
  pointer-events: none;
  position: absolute;
  right: 10px;
}

.nh-chat-main-messages-actions-inputs-list-select-select {
  position: absolute;
  left: 0;
  top: 37px;
  border: 1px solid #1b56a5;
  background-color: white;
  width: 100%;
  z-index: 3;
  box-sizing: border-box;
  max-height: 160px;
  overflow-y: auto;
  display: none;
}

.nh-chat-main-messages-actions-inputs-list-select-select-active {
  display: block;
}

.nh-chat-main-messages-actions-inputs-list-select-select li {
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  box-sizing: border-box;
  font-size: 14px;
}

.nh-chat-main-messages-actions-inputs-list-select-select li:hover {
  background-color: #1b56a5;
  color: white;
}

#nh-chat-main-messages-actions-inputs-list-selected {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#nh-chat-main-messages-actions-inputs-list-selected li {
  background-color: #1b56a5;
  color: white;
  padding: 5px;
  font-size: 12px;
  border-radius: 6px;
  margin: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* width: unset !important; */
}

#nh-chat-main-messages-actions-inputs-list-selected li img {
  width: 16px;
  height: 16px;
  margin-left: 6px;
  cursor: pointer;
}

.nh-chat-main-messages-actions-doctor {
  margin-top: 6px;
  width: 100%;
}

.nh-chat-bubble-message {
  right: 50px;
  bottom: 50px;
  background: white;
  width: 190px;
  font-size: 12px;
  height: 50px;
  position: fixed;
  display: none;
  justify-content: left;
  align-items: center;
  border-radius: 10px;
  border-bottom-right-radius: 0px;
  text-align: left;
  padding: 20px;
  transition: 0.5s ease-in-out;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  z-index: 10;
}
.nh-chat-bubble-message-close {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  width: 15px;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  background: #fff;
  right: -4px;
  padding: 10px;
  cursor: pointer;
}

.nh-chat-flab-icon {
  width: 25px;
  border-radius: 50%;
  object-fit: cover;

  padding: 4px;
}
