

/* Start:/local/templates/main/components/bitrix/catalog/products/style.css?17271674524635*/
/*=======sections=========*/
.catalogRootSection{
    padding-bottom: 120px;
}
.catalogRootSection__title{
    padding-top: 31px;
    padding-bottom: 23px;
    border-bottom: 1px solid #E6E6E6;
}
.catalogRootSections {
    display: grid;
    gap: 16px;
    padding-top: 48px;
    padding-bottom: 65px;
    border-bottom: 1px solid #E6E6E6;
}
@media (min-width: 770px) {
    .catalogRootSections{grid-template-columns: repeat(3,1fr);}
    .catalogRootSections > a{display: none;}
    .catalogRootSections > a:nth-child(-n + 3){display: flex;}
}
@media (min-width: 1000px) {
    .catalogRootSections{grid-template-columns: repeat(4,1fr);}
    .catalogRootSections > a{display: none;}
    .catalogRootSections > a:nth-child(-n + 4){display: flex;}
}
@media (min-width: 1440px) {
    .catalogRootSections{grid-template-columns: repeat(5,1fr);}
    .catalogRootSections > a{display: none;}
    .catalogRootSections > a:nth-child(-n + 5){display: flex;}
}
@media (max-width: 1000px) {
    .catalogRootSection{padding-bottom: 60px}
}
@media (max-width: 770px) {
    .catalogRootSections{grid-template-columns: repeat(2,1fr);}
    .catalogRootSections > a{display: none;}
    .catalogRootSections > a:nth-child(-n + 5){display: flex;}
}
@media (max-width: 335px) {
    .catalogRootSections{display: flex;flex-wrap: wrap}
}
.catalogRootSections.active > a {display: flex}
.catalogRootSections.active .catalogRootSections__showMore {display: none}

/*=====mainCategoryCard=====*/
.mainCategoryCard{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    position: relative;
    gap: 20px;
}
.mainCategoryCard__title{
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: -0.78px;
    color: #FFFFFF;
    text-transform: uppercase;
}
.mainCategoryCard__description{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.32px;
    color: #FFFFFF;
    padding-top: 20px;
}
.mainCategoryCard__bottom{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.mainCategoryCard__count{
    font-style: normal;
    font-weight: 400;
    font-size: 14.875px;
    line-height: 151%;
    letter-spacing: -0.32px;
    align-items: center;
    color: #ccc !important;
}
.mainCategoryCard__img{
    display: flex;
    position: absolute;
    top: 0;left: 0;
    width: 100%;height: 100%;
    z-index: -1;
    filter: brightness(0.5);
    background-color: #e6e6e6;
}
.mainCategoryCard__img img{width: 100%;object-fit: cover}
@media (max-width: 770px) and (min-width: 335px) {
    .mainCategoryCard{grid-column: span 2}
}

/*======previewCategoryCard=====*/
.previewCategoryCard{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 77px;
    background: #F7F7F7;
}
.previewCategoryCard__title{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    display: flex;
    align-items: center;
    letter-spacing: -0.36px;
    color: #535353;
    padding: 30px 30px 0;
}
.previewCategoryCard__img{
    display: flex;
    max-height: 240px;
    position: relative;
}
.previewCategoryCard__img img{
    width: 100%;
    object-fit: cover;
    pointer-events: none;
}
.previewCategoryCard__tags{
    position: absolute;
    top: 0;left: 0;
    width: 100%;height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-content: flex-start;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 7px;
    padding: 26px;
}
.previewCategoryCard__tags > *{
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: -0.36px;
    color: #FFFFFF;
    padding: 5px 15px;
    width: fit-content;
}
.previewCategoryCard__tags > *.text-black{color: #535353}
@media (max-width: 500px) {
    .previewCategoryCard__tags {padding: 10px;}
    .previewCategoryCard__tags > * {font-size: 10px;padding: 3px 10px;}
}

/*=====catalog=====*/
/*catalogSectionList*/
/*smartFilter*/
/*catalogList*/
.catalog{
    display: grid;
    gap: 2.5rem;
    padding-bottom: 120px;
    grid-template-areas: "catalogSectionList catalogSectionList" "smartFilter catalogList";
}
.catalog > div{flex-grow: 1}
@media (max-width: 1000px) {
    .catalog{
        padding-bottom: 60px;
        grid-template-areas: "catalogSectionList" "smartFilter" "catalogList";
    }
}
/* End */


/* Start:/local/templates/main/components/bitrix/catalog.section.list/sections/style.css?17515164074788*/
/*=======sections=========*/
.catalogRootSection{
    padding-bottom: 120px;
}
.catalogRootSection__title{
    padding-top: 31px;
    padding-bottom: 23px;
    border-bottom: 1px solid #E6E6E6;
}
.catalogRootSections {
    display: grid;
    gap: 16px;
    padding-top: 48px;
    padding-bottom: 65px;
    border-bottom: 1px solid #E6E6E6;
}
.catalogRootSections__showMore{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin-top: 16px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 115%;
    text-align: center;
    text-transform: uppercase;
    color: #123251;
    cursor: pointer;
}
@media (min-width: 770px) {
    .catalogRootSections{grid-template-columns: repeat(3,1fr);}
    .catalogRootSections > a{display: none;}
    .catalogRootSections > a:nth-child(-n + 3){display: flex;}
    .catalogRootSections__showMore{grid-column: span 3;}
}
@media (min-width: 1000px) {
    .catalogRootSections{grid-template-columns: repeat(4,1fr);}
    .catalogRootSections > a{display: none;}
    .catalogRootSections > a:nth-child(-n + 4){display: flex;}
    .catalogRootSections__showMore{grid-column: span 4;}
}
@media (min-width: 1440px) {
    .catalogRootSections{grid-template-columns: repeat(5,1fr);}
    .catalogRootSections > a{display: none;}
    .catalogRootSections > a:nth-child(-n + 5){display: flex;}
    .catalogRootSections__showMore{grid-column: span 5;}
}
@media (max-width: 1000px) {
    .catalogRootSection{padding-bottom: 60px}
}
@media (max-width: 770px) {
    .catalogRootSections{grid-template-columns: repeat(2,1fr);}
    .catalogRootSections > a{display: none;}
    .catalogRootSections > a:nth-child(-n + 5){display: flex;}
    .catalogRootSections__showMore{grid-column: span 2;}
}
@media (max-width: 580px) {
    .catalogRootSections{display: flex;flex-direction: column}
}
.catalogRootSections.active > a {display: flex}
.catalogRootSections.active .catalogRootSections__showMore {display: none}

/*=====mainCategoryCard=====*/
.mainCategoryCard{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    position: relative;
    gap: 20px;
}
.mainCategoryCard__title{
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: -0.78px;
    color: #FFFFFF;
    text-transform: uppercase;
}
.mainCategoryCard__description{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.32px;
    color: #FFFFFF;
    padding-top: 20px;
}
.mainCategoryCard__bottom{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.mainCategoryCard__count{
    font-style: normal;
    font-weight: 400;
    font-size: 14.875px;
    line-height: 151%;
    letter-spacing: -0.32px;
    color: #ccc;
    align-items: center;
}
.mainCategoryCard__img{
    display: flex;
    position: absolute;
    top: 0;left: 0;
    width: 100%;height: 100%;
    z-index: -1;
    filter: brightness(0.5);
}
.mainCategoryCard__img img{width: 100%;object-fit: cover}
@media (max-width: 770px) and (min-width: 335px) {
    .mainCategoryCard{grid-column: 1 / -1; flex: 1 1 auto}
}

/*======previewCategoryCard=====*/
.previewCategoryCard{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 77px;
    background: #F7F7F7;
}
.previewCategoryCard__title{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    display: flex;
    align-items: center;
    letter-spacing: -0.36px;
    color: #535353;
    padding: 30px 30px 0;
}
.previewCategoryCard__img{
    display: flex;
    height: 240px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.previewCategoryCard__img img{
    width: 100%;
    object-fit: cover;
    pointer-events: none;
}
.previewCategoryCard__tags{
    position: absolute;
    top: 0;left: 0;
    width: 100%;height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-content: flex-start;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 7px;
    padding: 26px;
}
.previewCategoryCard__tags > *{
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 180%;
    letter-spacing: -0.36px;
    color: #FFFFFF;
    padding: 5px 15px;
    width: fit-content;
}
.previewCategoryCard__tags > *.text-black{color: #535353}
@media (max-width: 500px) {
    .previewCategoryCard__tags {padding: 10px;}
    .previewCategoryCard__tags > * {font-size: 10px;padding: 3px 10px;}
}

/* End */
/* /local/templates/main/components/bitrix/catalog/products/style.css?17271674524635 */
/* /local/templates/main/components/bitrix/catalog.section.list/sections/style.css?17515164074788 */
