body {}

.header__avatar img {
  width: 75px;
  height: 46px;
}

.main-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}

.submit-button {
  border-radius: 12px;
  text-align: center;
  text-transform: none;
  background-color: #2C4BA0;
  color: #fff;
  transition: all 0.3s ease-out;
  border: none;
  font-size: 18px;
  font-weight: 700;
  padding: 15px;
  width: 100%;
  outline: 0;
  cursor: pointer;
  border: 1px solid #171a17;
}

form .form__title {

  font-weight: 700;
  margin: 20px 0 20px 0;
  text-align: center;
  font-size: 32px;
  /* color: #2C4BA0; */
}

.form__title {
  font-size: 24px;
  color: #000000;
  font-weight: 700;

  padding-bottom: 20px;
}

.form-button {}

.main-form input {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid grey;
  font-size: 16px;
  width: 100%;
}

.main-form input::placeholder {

  color: rgba(156, 163, 175, 0.769);
  font-weight: 400;
}

.input_wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.input-wrapper {
  color: black
}

.iti__selected-dial-code {
  color: black;
}

.main-form {
  max-width: 570px;
  margin: 25px auto;
  /* background: #000000bd; */
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 20px;
  color: white;
  /* border: 2px solid #2C4BA0; */
}

.chat-content-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 20px;
}

.form-input-main {
  margin: 0 !important;
}

.text b {
  color: #0db14b;
}

.lds-roller,
.lds-roller div,
.lds-roller div:after {
  box-sizing: border-box;
  color: #1435d7;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7.2px;
  height: 7.2px;
  border-radius: 50%;
  background: currentColor;
  margin: -3.6px 0 0 -3.6px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 62.62742px;
  left: 62.62742px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 67.71281px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 70.90963px;
  left: 48.28221px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 70.90963px;
  left: 31.71779px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 67.71281px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 62.62742px;
  left: 17.37258px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12.28719px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Стили для модального окна */
.error-modal {
  display: none;
  /* По умолчанию скрыто */
  position: fixed;
  place-items: center;
  z-index: 2199;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  /* Полупрозрачный фон */
}

.error-modal-content {
  background-color: white;
  margin: 15% auto;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  text-align: center;
  font-size: 110%;
  display: grid;
  place-items: center;
  color: #1435d7;
  max-width: 500px;
  min-height: 400px;
  max-height: 65%;
  position: relative;
}

/* Закрыть кнопка */
.error-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 25px;
  top: 25px;
}

.error-close:hover,
.error-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* preloader */
.preloader {
  display: grid !important;
  place-items: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: white;
  opacity: 1;
  transition: opacity 2s linear;
  border-radius: 20px;
}

.preloader-visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 2s linear;
}

.preloader-hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 2s, opacity 2s linear;
}

.error-border {
  border: dashed 1px #ce0909 !important;
}

p.error-msg {
  margin: 0;
  color: #ce0909;
  padding: 5px 0 0;
  font-size: 14px;
}

.iti__block {
  scale: 1.55;
}

.unavailable {
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 25px;
  max-width: fit-content;
  margin: 0 auto;
}

.unavailable-container {
  margin-top: 25px;
  width: 100%;
  display: grid;
  place-items: center;
  align-items: center;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid red;
  background-color: #ff00003d;
}

.unavailable-container p {
  font-size: 12px;
}

.hidden-container {
  display: grid;
  place-items: center;
  background-color: #2C4BA0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 228;
  left: 0;
  top: 0;
  overflow: hidden;
}

.all-hidden,
.all-hidden div,
.all-hidden div:after {
  box-sizing: border-box;
  color: white;
  background-color: #2C4BA0;
}

.all-hidden {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.all-hidden div {
  animation: all-hidden 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.all-hidden div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7.2px;
  height: 7.2px;
  border-radius: 50%;
  background: currentColor;
  margin: -3.6px 0 0 -3.6px;
}

.all-hidden div:nth-child(1) {
  animation-delay: -0.036s;
}

.all-hidden div:nth-child(1):after {
  top: 62.62742px;
  left: 62.62742px;
}

.all-hidden div:nth-child(2) {
  animation-delay: -0.072s;
}

.all-hidden div:nth-child(2):after {
  top: 67.71281px;
  left: 56px;
}

.all-hidden div:nth-child(3) {
  animation-delay: -0.108s;
}

.all-hidden div:nth-child(3):after {
  top: 70.90963px;
  left: 48.28221px;
}

.all-hidden div:nth-child(4) {
  animation-delay: -0.144s;
}

.all-hidden div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.all-hidden div:nth-child(5) {
  animation-delay: -0.18s;
}

.all-hidden div:nth-child(5):after {
  top: 70.90963px;
  left: 31.71779px;
}

.all-hidden div:nth-child(6) {
  animation-delay: -0.216s;
}

.all-hidden div:nth-child(6):after {
  top: 67.71281px;
  left: 24px;
}

.all-hidden div:nth-child(7) {
  animation-delay: -0.252s;
}

.all-hidden div:nth-child(7):after {
  top: 62.62742px;
  left: 17.37258px;
}

.all-hidden div:nth-child(8) {
  animation-delay: -0.288s;
}

.all-hidden div:nth-child(8):after {
  top: 56px;
  left: 12.28719px;
}

@keyframes all-hidden {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.chat-content-item.manager {
  width: 100%;
}

p.error {
  margin: 0;
}