:root {
  --height-text-area-send-mail: 250px;
  --width-modal-send-mail: 680px;
  --height-modal-send-mail: 520px;
}
.send-mail {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: none;
  height: var(--height-modal-send-mail);
}
.send-mail .send-mail__modal {
  background-color: #FFFFFF;
  width: var(--width-modal-send-mail);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.send-mail .send-mail__modal__header {
  height: 50px;
  background-color: #F2F4F9;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
}
.send-mail .send-mail__modal__header__title {
  font-family: 'Roboto';
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  padding: 15px 0 16px 18px ;
}
.send-mail .send-mail__modal__header__button--close {
  background-color: transparent;
  border: none;
  margin: 15px 10px 18px 0;
}
.send-mail .send-mail__modal__body {
  max-height: 410px;
  overflow-y: auto;
}
.send-mail .send-mail__modal__body__content .send-mail__modal__body__content__textarea {
  width: calc(100% - 30px);
  height: var(--height-text-area-send-mail);
  padding: 5px;
  margin: 15px;
  margin-bottom: 0;
  border: none;
  resize: none;
}
.send-mail .send-mail__modal__body__content .textarea-short {
  height: calc(250px - 70px);
}
.send-mail .send-mail__modal__body__info__receiver {
  margin: 15px;
  min-height: 45px;
  border-bottom: 1px solid #D9D9D9;
}
.send-mail .send-mail__modal__body__info__receiver__choice {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.send-mail .send-mail__modal__body__info__receiver__choice__list {
  position: relative;
  display: flex;
  width: calc(100% - 35px);
}
.send-mail .send-mail__modal__body__info__receiver__input {
  border: none;
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 400px;
  line-height: 25px;
  width: 100%;
}
.send-mail .send-mail__dropdown_list-email {
  position: absolute;
  left: 0;
  top: 25px;
  width: 300px;
  z-index: 999999;
  background-color: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 0 px 5px 0px 5px;
  flex-direction: column;
  display: none;
}
.send-mail .send-mail__dropdown_list-email.send-mail__dropdown_list-email--show {
  display: flex;
}
.send-mail .send-mail__dropdown_list-email__item__avatar {
  margin-right: 10px;
  margin-left: 10px;
}
.send-mail .send-mail__dropdown_list-email__item__avatar--default {
  height: 30px;
  width: 30px;
  text-align: center;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 20px;
  border-radius: 20px;
  line-height: 30px;
}
.send-mail .send-mail__dropdown_list-email__item__info {
  flex: 1;
}
.send-mail .send-mail__dropdown_list-email__item__info .send-mail__dropdown_list-email__item__info__name {
  font-size: 16px;
  color: black;
  font-weight: 500;
  height: 20px;
}
.send-mail .send-mail__dropdown_list-email__item__info .send-mail__dropdown_list-email__item__info__email {
  font-size: 13px;
  height: 13px;
  padding-top: 0;
}
.send-mail .send-mail__dropdown_list-email__item {
  height: 50px;
  width: 100%;
  padding: 5px ;
  display: flex;
}
.send-mail .send-mail__modal__body__info__title {
  margin: 15px;
  height: 45px;
  border-bottom: 1px solid #D9D9D9;
}
.send-mail .send-mail__modal__body__info__receiver {
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 400px;
  line-height: 25px;
  color: #747775;
}
.send-mail .send-mail__modal__body__info__title__input {
  border: none;
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 400px;
  line-height: 25px;
  width: 100%;
}
.send-mail .send-mail__modal__footer {
  position: fixed;
  z-index: 99999999;
  height: fit-content;
  bottom: 30px ;
  width: var(--width-modal-send-mail);
}
.send-mail .send-mail__modal__footer .send-mail__feedback {
  margin-bottom: 15px;
  min-height: 60px;
  height: 60px;
  background-color: #fbbc04;
  padding: 15px;
  width: 100%;
  box-shadow: 0 2px 5px #00000033;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  justify-content: space-between;
}
.send-mail .send-mail__modal__footer .send-mail__feedback i {
  border-radius: 50%;
  font-size: 20px;
  width: 37px;
  height: 37px;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.send-mail .send-mail__modal__footer .send-mail__feedback span {
  color: #5d6672 !important;
  line-height: 1.6;
  width: calc(100% - 75px);
  display: block;
}
.send-mail .send-mail__modal__footer .send-mail__feedback--warning {
  background-color: #fbbc04;
}
.send-mail .send-mail__modal__footer .send-mail__feedback--error {
  background-color: #ff623d;
}
.send-mail .send-mail__btn-send {
  margin-bottom: 20px;
  margin-right: 20px;
  float: right;
}
.send-mail .send-mail__modal__body__info__receiver__choiced__email {
  display: flex;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  margin-left: 5px;
  padding-left: 2px;
}
.send-mail .send-mail__modal__body__info__receiver__choiced__email .send-mail__modal__body__info__receiver__choiced__email_btn_remove {
  background-color: transparent;
  border: none;
}
