/* // MODAL \\ */

#modal_text {
    font-size: 26px;
    font-weight: 600;
    color: var(--main-blue);
  }
  
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    /* display: none; */
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .modal__dialog {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }
  
  .calculation_modal .modal__dialog {
    max-width: fit-content;
  }
  
  .modal__content {
    position: relative;
    width: 100%;
    padding: 48px;
    background-color: #EBF7FF;
    border-radius: 12px;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .calculation_modal .modal__content {
    padding: 24px;
  }
  
  
  
  .modal__content-wrapper {
    margin-top: 32px;
    display: flex;
    gap: 36px;
  }
  
  .modal-first_block label {
    font-size: 14px;
    font-weight: 500;
    color: #0a1e3299;
  }
  
  .modal-first_block button {
    margin-top: 32px;
    width: 100%;
  }
  
  .modal-first_inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .modal-first_block {
    width: 100%;
  }
  
  .modal .modal__fixed {
    background-color: #eff2f6;
    padding: 32px;
    border-radius: 12px;
    height: max-content;
  }
  
  .modal__close {
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: 30px;
    color: #000;
    opacity: 0.5;
    font-weight: 700;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }
  
  .modal.hide {
    display: none !important;
  }
  
  .modal.show {
    opacity: 1;
    display: flex;
    align-items: center;
  }
  
  .modal_title {
    color: #00305F;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
  }
  
  .modal_subtitle {
    max-height: 320px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 400;
    color: #00305F;
    text-align: center;
  }
  
  .tg-link {
    text-decoration: underline;
    color: #00305F;
  }

  .form_response .form_wrapper {
    display: none;
    flex-direction: column;
    gap: 47px;
    justify-content: center;
    align-items: center;
  }
  
  .form_response .modal__dialog {
    max-width: 520px;
  }



.catalog_detail-info {
  padding-block: 12px;
}
.info__title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  line-height: 100%;

}
.catalog_detail-info__text {
  padding-block: 24px;
  margin-top: 24px;
  border-block: 1px solid #E6E8EC;
}
.catalog_info-block {
  display: flex;
  align-items: start;
  gap: 22px;
  font-size: 16px;
  font-weight: 500;
  color: #777e90;
}
.catalog_info-block + .catalog_info-block {
  margin-top: 24px;
}
.catalog_info-block span {
  font-size: inherit;
  font-weight: inherit;
  color: #2160FF;
}
.catalog_detail-info_bottom {
  margin-top: 24px;
}
.catalog_detail-info_bottom .price_title {
  font-size: 16px;
  font-weight: 700;
  color: #777E90;
  margin-bottom: 4px;
}

.catalog_detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-block: 120px;
  border-bottom: 1px solid #D9D9D9;
}
.catalog_detail-slider {
  overflow: hidden;
}
.catalog_detail-slider #sync1 .owl-item {
  border-radius: 16px;
  overflow: hidden;
  max-height: 560px;
}
.catalog_detail-img {
  background-size: cover;
  background-position: 50% 50%;
  height: 560px;
  width: 100%;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  border-radius: 16px;
}
.catalog_detail-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalog_detail-info__text .unh-innerButton a {
  background-color: #2070ff;
  border-radius: 100px;
  line-height: 90%;
  margin-top:24px;
}
.catalog_items-img {
  position: relative;
}
.mui-style-1iwdadu {
    padding: 2px 4px;
    color: rgb(255, 255, 255);
    background-color: rgb(102, 193, 9);
    border-radius: 4px;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
}

@media (max-width: 992px) {
  .catalog_detail-img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .catalog_detail-wrapper {
    grid-template-columns: 100%;
  }
}

@media (max-width: 576px) {
  .catalog_detail-wrapper {
    padding-block: 60px;
  }
}