/* CSS kod pishite v etom faile, chotobi pri ustanovke obnovlenii ne bilo problem  */
/* --------------------------------------- */
/* Here you can put custom css rules for your site */


.category{
    display: flex;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 15px 0px rgba(88, 88, 88, 0.13);
    overflow: hidden;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: stretch;
    max-width: 270px;
}

.category__image{
    width: 100%;
    height: 120px;
    text-align: center;
    display: block;
    padding: 10px 20px;
}
.category__img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform .3s ease-in;
}

.category__bottom{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #08C;
    color: #fff;
    font-size: 13px;
    line-height: 19px;
    padding: 10px 20px;
    text-align: center;
    transition: background-color .3s ease-in;
}
.category__icon {
    width: 15px;
    flex: none;
    margin-right: 10px;
    vertical-align: bottom;
}
.category:hover{
    text-decoration: none;

}
.category:hover .category__img{
    transform: scale(1.03);
}

.category:hover .category__bottom{
    background-color: #00a3f5;
}


.sectionList {
    margin-top: 40px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(210px, auto));
}

.sectionList .category{
    flex: 0 0 210px;
    min-width: 210px;
}


.sideItem{
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #555555;;
}
.sideItem__article{
    display: block;
    color: var(--ui-color-palette-gray-40);
    font-size: 12px;
    line-height: 1;
}

.sideItem__row{
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}
.sideItem__valuePrice{
    font-weight: 700;
}

section.page-top{
    margin-bottom: 0;
}

h1{
    line-height: 1.2;
}