.catalog-section {
    margin-bottom: 48px;
}
@media (max-width: 1650px) {
    .catalog-section {
        margin-bottom: 42px;
    }
}
@media (max-width: 1199px) {
    .catalog-section {
        margin-bottom: 36px;
    }
}
@media (max-width: 767px) {
    .catalog-section {
        margin-bottom: 32px;
    }
}
.catalog-section__wrapper {
    border-radius: 12px;
    /*background-color: #fff;*/
    /*padding: 12px 12px 20px;*/
    margin-bottom: 48px;
}
@media (max-width: 1650px) {
    .catalog-section__wrapper {
        margin-bottom: 42px;
    }
}
@media (max-width: 1199px) {
    .catalog-section__wrapper {
        margin-bottom: 36px;
    }
}
@media (max-width: 767px) {
    .catalog-section__wrapper {
        margin-bottom: 28px;
    }
}
.catalog-section__list {
    width: 100%;
    /*display: flex;*/
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    flex-wrap: wrap;
    align-items: stretch;
}
@media (max-width: 1650px) {
    .catalog-section__list {
        gap: 8px;
    }
}
@media (max-width: 1350px) {
    .catalog-section__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1200px) {
    .catalog-section__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
@media (max-width: 992px) {
    .catalog-section__list {
        /*grid-template-columns: repeat(2, 1fr);*/
        gap: 8px;
    }
}
@media (max-width: 767px) {
    .catalog-section__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 478px) {
    .catalog-section__list {
        grid-template-columns: repeat(1, 1fr);
    }
}
.catalog-section__item {
    /*max-width: 350px;*/
    /*width: 25%;*/
    min-width: 25%;
}
@media (max-width: 1650px) {
    .catalog-section__item {
        /*width: 33.3333%;*/
        min-width: 33.3333%;
        /*max-width: 300px;*/
    }
}
@media (max-width: 835px) {
    .catalog-section__item {
        min-width: 50%;
        /*width: 50%;*/
    }
}
@media (max-width: 575px) {
    .catalog-section__item {
        min-width: 100%;
        width: 100%;
    }
}
.catalog-section__more {
    display: block;
    width: 100%;
    font-family: "Roboto Condensed";
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    color: #175CFF;
    background-color: #fff;
    border: 1px solid #175CFF;
    border-radius: 5px;
    transition: all 0.3s ease;
    padding: 16px 30px;
}
@media (max-width: 1199px) {
    .catalog-section__more {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .catalog-section__more {
        font-size: 11px;
        padding: 8px;
    }
}
.catalog-section__more:hover, .catalog-section__more:active, .catalog-section__more:focus {
    cursor: pointer;
    background-color: #175CFF;
    color: #fff;
    transition: all 0.3s ease;
}
.modal-overlay {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.modalka {
    background-color: #fff;
    max-width: 520px;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    position: relative;
    cursor: pointer;
}

.modal-overlay--visible {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
}

.modal--visible {
    display: block;
}

.modal__head {
    border-bottom: 2px solid #0071bb;
    padding: 34px 35px 35px;
}

.modal__body {
    margin: 0;
    padding: 29px 35px;
}

.modal-text {
    color: black;
    font-size: 14px;
}

.modal-title {
    text-align: center;
    color: black;
    font-size: 24px;
}

.close__modalka {
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
    background-color: transparent;
    transition: background-color 0.2s ease-in-out;
    border-radius: 50%;
}

.close__modalka svg path {
    transition: stroke 0.2s ease-in-out;
}

.close__modalka:hover {
    background-color: #006ac5;
}

.close__modalka:hover svg path {
    stroke: #fff;
}

.form-wr {
    padding: 29px 35px 35px;
    min-height: 40px;
}

div.form-control, .form_body div.form-control, .middle_info .sku_props .form-control {
    background-color: #fff;
    border: 0 solid #d5dadc;
    box-shadow: none;
    border-radius: 0;
    height: auto;
    padding: 0;
}

.bx-section-desc p {
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
}
@media (max-width: 1199px) {
    .bx-section-desc p {
        font-size: 16px;
    }
}

.bx-section-desc h2 {
    line-height: 1.2;
    margin-bottom: 2rem;
    font-size: 24px;
}
@media (max-width: 1199px) {
    .bx-section-desc h2 {
        font-size: 20px;
    }
}

.bx-section-desc li {
    margin: 5px 0;
    font-size: 18px;
}
@media (max-width: 1199px) {
    .bx-section-desc li {
        font-size: 16px;
    }
}

.bx-section-desc li::before {
    content: "";
    color: #0071bb;
}

.bx-section-desc ul {
    margin: 0 0 20px 35px;
}
