

/* Start:/local/components/simpleit/catalog.section.root/templates/classic/style.css?17884973572477*/
.catalog-page {
    padding: 50px 0;
}

.catalog-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.catalog-section {
    display: flex;
    border: 1px solid #ececec;
    padding: 28px 15px;
    transition: all 0.2s linear;
    margin-bottom: -1px;
    margin-right: -1px;
}

.catalog-section:hover {
    border-color: #fff;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 10%);
    transform: translateY(-1px);
    background-color: #fff;
    z-index: 1;
}

.catalog-section__title {
    text-decoration: none;
}

.catalog-section__subsection {
    text-decoration: none;
    color: #777;
    font-size: var(--fs-normal);
    line-height: 1.384em;
    margin-bottom: 5px;
    display: block;

    transition: color .2s;
}

.catalog-section__subsection:hover {
    color: var(--main-color);
}

.catalog-section__opener {
    font-size: 0.667em;
    line-height: 1.384em;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 5px;
}

.catalog-section__opener:hover {
    color: var(--main-color);
}

.catalog-section__preview {
    width: 70px;
    margin-right: 10px;
}

.catalog-section__preview-link {
    display: block;
    width: 70px;
}

.catalog-section__preview-image {
    width: 100%;
}

.catalog-section__title {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: var(--fs-big);
    line-height: 1.5625em;
    margin-bottom: 10px;
}

.catalog-section__title:hover {
    color: var(--main-color);
}

.catalog-section__counter {
    color: #999;
    border: 1px solid rgba(153, 153, 153, 0.35);
    padding: 1px 4px;
    font-size: var(--fs-small);
    line-height: 1.273em;
    font-weight: normal;
    display: inline-block;
    margin-left: 5px;
}

.catalog-section__subsections {
    display: flex;
    flex-direction: column;
}

.catalog-section__subsections--visible,
.catalog-section__subsections--hidden {
    display: flex;
    flex-direction: column;
}

.catalog-section__subsections--hidden {
    height: 0;

    overflow: hidden;
    transition: all 0.3s linear;
}

.catalog-section__subsection-counter {
    color: #333;
}

.catalog-sections__to-calatog-button {
    width: fit-content;
    padding: 10px 20px;
    margin: 30px auto 0;
    text-decoration: none;
}

@media (max-width: 992px) {
    .catalog-sections {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .catalog-sections {
        grid-template-columns: 1fr;
    }
}

/* End */
/* /local/components/simpleit/catalog.section.root/templates/classic/style.css?17884973572477 */
