/* Общие */
.d-none { display: none; }
.d-flex { display: flex; }
.d-inline-block { display: inline-block; }

.page-d2 {
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
  border-radius: 16px 16px 0px 16px;
  background: #fff;
  color: #3a5072;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin-bottom: 30px;
  padding: 50px;
}
.H-1_Bold_28_120 {
  font-family: 'Exo 2';
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  color: var(--grey-color-4c);
}
.H-2_Bold_20_120 {
  font-family: 'Exo 2';
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  color: var(--grey-color-333);
}
.H-3_Bold_16_120 {
  font-family: 'Exo 2';
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0em;
  color: var(--grey-color-4c)
}
.section-banner-top {
  width: 100%;
  height: 280px;
  margin-bottom: 40px;
}
.banner-top-block-left {
  display: inline-block;
  width: 49%;
}
.banner-top-block-right {
  position: absolute;
  /* height: 280px; */
  top: 0;
  right: 0;
}
.banner-top-block-right img {
  border-top-right-radius: 15px;
}

/* Кнопки */
.btn-d2,
.btn-orange-d2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 10px;
  border-radius: 5px;
  border: .7px solid var(--grey-color-light);
  cursor: pointer;
  height: 44px;
}

.btn-orange-d2 {
  background: linear-gradient(83.15deg, #F67A01 3.74%, #EB5701 103.11%);
  color: #FFFFFF;
}

.btn-orange-d2-inline {
  background: #FFFFFF;
  color: var(--orange-color);
  border-color: var(--orange-color);
}

.btn-orange-d2:hover {
  background: #f4f4f4;
}
.btn-orange-d2:hover {
  background: #F67A01;

}
.btn-orange-d2-inline:hover {
  background: var(--orange-color);
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* спойлерры */
.spollers-container-d2 {
  font-family: 'Exo 2';
  color: var(--grey-color-4c);
}
.spollers-item-d2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 24px;
  gap: 12px;
  border: 1px solid var(--grey-color-4c);
  border-radius: 16px;

  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}
.spollers-item-d2.active {
  border-color: #EA5400;
}
.spollers-item-d2 .expanded  {
  position: absolute;
  top: 25px;
  right: 35px;
  background-image: url(https://smsactivate.s3.eu-central-1.amazonaws.com/assets/img/icons/form/arrow-drop-down.svg);
  background-repeat: no-repeat;
  opacity: 1;
  width: 14px;
  height: 14px;
}
.spollers-item-d2.active .expanded  {
  top: 22px;
  background-image: url(https://smsactivate.s3.eu-central-1.amazonaws.com/assets/img/icons/form/arrow-drop-down-orange.svg);
  transform: rotate(-180deg);
  -ms-transform: rotate(-1800deg); /* IE 9 */
  -webkit-transform: rotate(-180deg);
}
.spollers-item-d2 .title {
  width: 100%;
}
.spollers-item-d2 .body {
  cursor: default
}
.spollers-item-d2.H-3_Bold_16_120 {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  color: var(--grey-color-4c)
}
.spollers-item-d2.H-3_Bold_16_120.active {
  color: #EA5400;
}
.spollers-item-d2:not(.active),
.spollers-item-d2 .title,
.spollers-item-d2 .expanded {
  cursor: pointer;
}

.v-sa-input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  padding: 12px;
  margin: 4px 0;
  transition: 0.2s ease;
  color: #333333;
}
.v-sa-input:focus {
  border-color: #3A5072;
}
.v-sa-input__container {
  position: relative;
  display: flex;
  align-items: center;
}
.v-sa-input__suffix {
  position: absolute;
  right: 12px;
}
.v-sa-input--error,
.v-sa-input--error:focus {
  background-color: #d62a050d;
  border-color: #d62a05;
}

.v-sa-input::placeholder {
  color: #979797;
}

.v-sa-input__wrapper label {
  display: flex;
  align-items: center;
  margin: 0;
  color: #333333;
  cursor: pointer;
}

.v-sa-input__wrapper .v-sa-input__error {
  color: #d62a05;
}

.v-sa-popover__container--hover  {
  position: relative;
}
.v-sa-popover__container--hover:hover .v-sa-popover__content, 
.v-sa-popover__container--open .v-sa-popover__content{
  z-index: 1;
  opacity: 1;
}
.v-sa-popover__content {
  z-index: -1;
  transition: 0.2s ease;
  opacity: 0;
}

