:root {
  --font-size-14: 14px;
  --line-height-140: 140%;
  --grid-minmax: minmax(0, 1fr);
  --black-color: #222;
  --blue-color: #2A9BC5;
  --dark-blue-color: #12799f;
  --green-color: #04C3AA;
  --gray-color: #F8FAFC;
  --gray-color-2: #E0E2E7;
  --dark-gray-color: #6F727A;
  --dark-gray-color-2: #818181;
  --light-blue-color: #ECFAFF;
  --checked-icon: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.80682 4.73977L5.36837 7.98305L10.464 1.42041' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  --arrow-bottom-icon: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 9L12 16L19 9' stroke='%23222222' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  --close-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 6L6 18' stroke='%23222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 6L18 18' stroke='%23222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  ;
}

html.lock {
  overflow: hidden;
}

.new-title {
  color: var(--black-color);
  font-size: 36px;
  font-weight: 700;
  line-height: var(--line-height-140);
  /* 50.4px */
  /*text-transform: uppercase;*/
  margin-bottom: 32px;
}

.custom-btn {
  background-color: var(--blue-color);
  width: 100%;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 122%;
  border-radius: 0;
  color: white;
  transition: background-color .3s ease, color .3s ease;
  cursor: pointer;
  border: 1px solid var(--blue-color);
}

.custom-btn.custom-btn_transparent {
  background-color: transparent;
  color: var(--blue-color);
}

@media (any-hover: hover) {
  .custom-btn:hover {
    background-color: transparent;
    color: var(--blue-color);
  }

  .custom-btn.custom-btn_transparent:hover {
    background-color: var(--blue-color);
    color: #fff;
  }
}

.custom-icon:before,
.custom-icon:after {
  transition: background-color .3s ease;
  display: inline-flex;
  width: 18px;
  height: 18px;
  -webkit-mask: url("#") center / 100% no-repeat;
  mask: url("#") center / 100% no-repeat;
  background-color: #fff;
}

.custom-icon:before {
  content: '';
}

.custom-icon:after {
  content: unset;
}

.custom-img {
  aspect-ratio: 1;
}

.custom-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*------------------------------------------СПОЙЛЕРЫ/АККОРДЕОНЫ*/
details {
  display: block;
  width: 100%;
  font-size: 18px;
  /*overflow: hidden;*/
}

details:focus {
  border: unset;
  outline: unset;
}

details>div,
details ul {
  display: flex;
  flex-direction: column;
}

details>div {
  gap: 15px;
  padding-top: 15px;
}

details ul {
  gap: 10px;
  padding-top: 10px;
}

details ul a {
  display: inline;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

summary::marker {
  display: none;
}

summary::after {
  content: "";
  background: var(--arrow-bottom-icon) center/100% no-repeat;
  width: 14px;
  height: 14px;
  transition: transform 0.5s ease;
}

details>summary h3 {
  position: relative;
  color: #111111;
  font-size: inherit;
  font-weight: 400;
  transition: all 0.3s ease;
}

details[open]>summary h3:active {
  font-weight: 600;
}

details[open]>summary::after {
  transform: rotate(180deg);
}

details[open] summary~* {
  animation: sweep 0.3s ease;
}

@keyframes sweep {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*------------------------------------------ОБЩИЙ СТИЛЬ ФОРМ*/

.form {}

.form-input,
.form-label {
  display: flex;
  align-items: center;
}

.form-input,
.form-input:before,
.form-input:after,
.form-input *,
.form-input *:before,
.form-input *:after,
.form-label,
.form-label:before,
.form-label:after,
.form-label *,
.form-label *:before,
.form-label *:after,
.form-alert,
.form-alert * {
  transition: all .3s ease;
}

.form-label,
.form-input_text {
  position: relative;
  /*padding: 19px 20px;*/
  /*border: 1px solid #D6D6DD;*/
  background: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  gap: 8px;
}

.form-input:checked+.form-label {
  /*border: 1px solid rgba(39, 193, 72, 0.50);*/
}

.form-input {
  position: relative;
}

.form-input.form-input_hide {
  display: none;
}

.form-input.form-input_text {
  padding: 6px 10px;
  width: 100%;
  justify-content: space-between;
  border: 1px solid var(--gray-color-2);
}

.form-input.form-input_text:focus {
  border-color: var(--blue-color);
}

.form-input.form-input_name {
  margin-bottom: 12px;
}

.form-input.form-input_checkbox {}

.form-label.form-label_checkbox:before {
  content: '';
  border-radius: 3px;
}

.form-label.form-label_checkbox:before,
.form-label.form-label_radio .dot {
  background-color: #fff;
  border: 1px solid #D9D9D9;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-label.form-label_radio .dot {
  border-radius: 100%;
  border: 2px solid #E8E8E8;
  display: flex;
}

.form-label.form-label_radio .dot:before {
  content: '';
  border-radius: 100%;
  width: 12px;
  height: 12px;
  margin: auto;
  transform: scale(0);
  background-color: var(--blue-color);
}

/*.form-file.form-input_file{*/
/*  border: 1px dashed #D6D6D6;*/
/*  cursor: pointer;*/
/*}*/
/*.form-file_remove{*/
/*  margin: auto 0 auto 8px;*/
/*  opacity: 0;*/
/*  visibility: hidden;*/
/*  display: flex;*/
/*  background-color: unset;*/
/*}*/
/*.form-file_remove.custom-icon:before{*/
/*  background-color: black;*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  -webkit-mask-image: url("../images/close.svg");*/
/*  mask-image: url("../images/close.svg");*/
/*}*/
/*.form-file.custom-icon:before{*/
/*  content: unset;*/
/*}*/
/*.form-file.form-input_file:before{*/
/*  all: unset;*/
/*  content: attr(data-placeholder);*/
/*}*/
/*.form-file.custom-icon:after{*/
/*  content: '';*/
/*  background-color: #000;*/
/*  -webkit-mask-image: url("../images/form-file.svg");*/
/*  mask-image: url("../images/form-file.svg");*/
/*  transition: background-color .3s ease;*/
/*  position: absolute;*/
/*  right: 24px;*/
/*}*/
/*.form-file.custom-icon:hover:after{*/
/*  background-color: #27c148;*/
/*}*/
.form-input_text::placeholder,
.form-file.form-input_file:before {
  color: var(--dark-gray-color);
  font-weight: 400;
}

.form-input_checkbox:checked+.form-label.form-label_checkbox:before {
  background: var(--checked-icon) center / 70% no-repeat var(--blue-color);
  border-color: var(--blue-color);
}

.form-input_radio:checked+.form-label.form-label_radio .dot {
  /*border-color: var(--blue-color);*/
  background-color: #fff;
}

.form-input_radio:checked+.form-label.form-label_radio .dot:before {
  transform: scale(1);
}

.form-input:disabled+.form-label.form-label_checkbox {
  color: var(--dark-gray-color);
}

/*.form-submit{*/
/*  flex-grow: 1 !important;*/
/*}*/
/*.form-item{*/
/*  position: relative;*/
/*}*/
/*.form-file__name {*/
/*  text-overflow: ellipsis;*/
/*  white-space: nowrap;*/
/*  max-width: inherit;*/
/*  overflow-x: hidden;*/
/*}*/
/*.form-alert,*/
/*.form-file__wrapper{*/
/*  position: absolute;*/
/*  bottom: -27px;*/
/*  left: 0;*/
/*  font-size: 14px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  width: 100%;*/
/*  opacity: 0;*/
/*  visibility: hidden;*/
/*}*/
/*.form-alert,*/
/*.form-file__wrapper._error .form-file__name{*/
/*  color: #FE6566;*/
/*}*/
/*.form-file__wrapper._file-added .form-file__name{*/
/*  color: #7A7A7A;*/
/*}*/

/*!*._need-valid .form-input_text,*!*/
/*!*._need-valid .form-input_text[aria-invalid=true],*!*/
/*._need-valid.form-input_text[aria-describedby],*/
/*._need-valid.form-input_text:invalid{*/
/*  border-color: #FE6566;*/
/*  color: #FE6566;*/
/*}*/
/*!*._need-valid .form-input_text ~ .form-alert,*!*/
/*!*._need-valid .form-input_text[aria-invalid=true] ~ .form-alert,*!*/
/*._need-valid.form-input_text[aria-describedby] ~ .form-alert,*/
/*._need-valid.form-input_text:invalid ~ .form-alert,*/
/*._need-valid.form-input#file:invalid ~ .form-alert,*/
/*  !*.form-file__wrapper._error,*!*/
/*.form-file__wrapper._file-added,*/
/*.form-file__wrapper._file-added .form-file_remove{*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*}*/
/*.form-submit.quiz-submit{*/
/*  display: none !important;*/
/*}*/

/*------------------------------------------POPUP*/
.popup {
  position: fixed;
  inset: 0;
  z-index: 9999999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 10px;
}

.popup_active {
  opacity: 1;
  visibility: visible;
}

.popup-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  color: black;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: default;
  margin: auto;
}

.popup-wrapper_active {
  opacity: 1;
  visibility: visible;
}

/*---------------------------КРУЖОК ЗАГРУЗКИ*/
.popup-wrapper::before,
.popup-wrapper::after,
.popup::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.popup-wrapper::before {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 6;
  inset: 0;
  border-radius: 12px;
}

.popup-wrapper::after,
.popup::after {
  position: absolute;
  z-index: 6;
  width: 50px;
  height: 50px;
  border: 5px solid green;
  border-bottom-color: white;
  border-radius: 50%;
  inset: 0;
  margin: auto;
}

._loading::before,
._loading::after {
  opacity: 1;
  visibility: visible;
}

._loading::after {
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  100% {
    transform: rotate(360deg);
  }
}

/*.tabs-grid.items {*/
/*    grid-template-columns: repeat(4, minmax(0, 1fr));*/
/*    grid-auto-rows: unset;*/
/*}*/
.popup__close {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 30px;
  right: 30px;
  z-index: 5;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.popup__close::before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--close-icon) center / 100% no-repeat;
}

.slider.sld3 .slider_item .slider_item_content .slider_item_content_text p {
  color: #3e799c;
  font-size: 20px;
  margin: 6px 0 6px;
  display: block;
  line-height: 22px;
}

.forname p {
  height: 48px;
  vertical-align: middle;
  display: table-cell;
}

.contentcatalog .catalog_item .slider_item_content p {
  color: #3e799c;
  font-size: 18.15px;
  margin-bottom: 8px;
}

.set-products .contentcatalog .catalog_item .slider_item_content p a {
  font-weight: 300;
  font-size: 18px;
  color: #3e799c;
  letter-spacing: -1px;
}

.set-products .contentcatalog .catalog_item .slider_item_content p {
  height: auto;
  font-weight: 300;
  font-size: 18px;
  color: #3e799c;
  margin: 0px;
}

.h1styles {
  font-size: 16px;
}

@media (max-width: 1023px) {
  .popup-wrapper::before {
    border-radius: 0;
  }

  .popup-wrapper__bullets {
    max-width: 200px;
  }
}

@media (max-width: 1023px) and (max-height: 1023px) {
  .popup {
    padding: 0;
  }

  .popup-wrapper {
    position: absolute;
    height: 100%;
    border-radius: 0;
  }
}

@media (max-width: 992px) and (min-height: 1023px) {
  .popup-wrapper {
    max-width: 700px;
    height: unset;
  }
}

@media (max-width: 767px) {
  .new-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

@media (max-width: 486px) {
  .popup__close {
    top: 16px;
    right: 16px;
  }

  .new-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}