@keyframes expand {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@keyframes collapse {
    from {
        height: 100%;
    }
    to {
        height: 0;
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center;
}

.tag a {
    text-decoration: unset;
}

.tag_block {
    display: inline-flex;
    height: 40px;
    text-decoration: unset;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    color: #262626;
    word-wrap: break-word;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 12px;
    padding: 10px 14px;
    background: #f7f7f9;
    transition: .3s ease all;
}

.tag_block:hover {
    background: rgba(247, 247, 249, 0.37);
}

.row .tags {
    max-width: 1000px;
    /*display: flex;*/
    /*-ms-flex-wrap: wrap;*/
    flex-wrap: wrap;
    height: 40px;
    overflow: hidden;
    animation-duration: 0.5s;
    animation-timing-function: ease;
}

.tags.collapsed {
    animation-name: collapse;
}

/* Активное состояние: видимый блок */
.tags.expanded {
    animation-name: expand;
}

#openTag svg {
    margin-left: 7px;
}

.tag-title {
    font-weight: 400;
    font-size: 24px;
    color: #000000;
    margin-right: 15px;
}

.section-catalog__wr {
    align-items: flex-start;
}

@media (max-width: 767px) {
    #hero {
        min-height: 407px;
    }
}

@media (max-width: 577px) {
    #hero_background_main_page {
        background-image: url(/local/assets/images/hero_mob_150.png);
        background-position: right center !important;
    }

    #hero_background_main_page:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, .5);

    }
}

@media (min-width: 578px) and (max-width: 768px) {
    #hero_background_main_page {
        background-image: url(/local/assets/images/hero_planshet_150.png);
        background-position: right center !important;
    }
    #hero_background_main_page:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0);

    }


}

@media (min-width: 769px) {
    #hero_background_main_page {
        background-image: url(/local/assets/images/hero.webp);

    }
}

.overflow-auto {
    overflow: auto !important;
    scrollbar-width: none;
}

@media (max-width: 991px) {
    .overflow-auto-scrollbar-hidden {
        overflow: auto !important;
        scrollbar-width: none;
    }
    .overflow-auto-scrollbar-hidden::-webkit-scrollbar,
    .overflow-auto-scrollbar-hidden::-webkit-scrollbar {
        display: none;
    }
}

.form_block.form-callback .btn {
    padding: 0;
    width: 100%;
}

.SmartCaptcha-Shield_visible {
    display: none!important;
}