

/* Start:/local/templates/lukoil/components/bitrix/catalog/.default/style.css?17804009143180*/
.grid{}
.grid .bx_content_section{
	margin-bottom: 15px;
}
.grid .bx_sidebar{
	margin-bottom: 15px;
}

/* grid2x1 */
.grid2x1{}
.grid2x1 .bx_content_section{
	float: left;
	width: 66%;
	margin-bottom: 15px;
}
.grid2x1 .bx_sidebar{
	float: right;
	width: 33%;
	margin-bottom: 15px;
	padding-left: 5%;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
@media (max-width:960px){
	.grid2x1 .bx_sidebar{
		padding-left: 4%;
	}
}
@media (max-width:640px) {
	.grid2x1 .bx_content_section,
	.grid2x1 .bx_sidebar{
		width: 100%;
		float: none;
	}
	.grid2x1 .bx_sidebar{
		padding-left: 3%;
	}
}
@media (max-width:479px){
	.grid2x1 .bx_sidebar{
		padding-left: 1%;
	}

}

.catalog-block-header{
	font-size:14px;
	font-weight: bold;
	text-align: left;
	margin:5px 0;
	padding:5px 15px;
	border-bottom: 2px solid #d9dee6;
	color: #000;
}

body.bx-theme-blue .catalog-block-header{border-color:#006cc0;}
body.bx-theme-green .catalog-block-header{border-color:#63aa28;}
body.bx-theme-red .catalog-block-header{border-color:#da3737;}
body.bx-theme-yellow .catalog-block-header{border-color:#f4b236;}


.related-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
}

.related-card{
    display:flex;
    flex-direction:column;
    border:1px solid #e5e5e5;
    background:#fff;
    padding:12px;
    min-height:340px;

    transition:box-shadow .3s ease;
}

.related-card:hover{
    box-shadow:0 6px 20px rgba(0,0,0,.12);
}

.related-card-image{
    height:170px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.related-card-image img{
    max-width:140px;
    max-height:160px;
    width:auto;
    height:auto;
}

.related-no-image{
    width:100%;
    height:120px;
    background:#f5f5f5;
}

.related-card-name{
    line-height:1.4;
    min-height:58px;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.related-card-name a{
    color:#222;
    text-decoration:none !important;
    transition:color .3s ease;
}

.related-card-name a:hover,
.related-card-name a:focus,
.related-card-name a:active{
    color:#e31e24;
    text-decoration:none !important;
}

.related-card-price{
    margin-top:10px;
    color:#e31e24;
    font-size:14px;
    font-weight:700;
}

.related-card-btn{
    margin-top:auto;
    padding-top:12px;
}

.related-card-btn a{
    display:inline-block;
    background:#e31e24;
    color:#fff !important;
    text-decoration:none !important;
    padding:10px 20px;
    border-radius:3px;
    line-height:1;
    transition:background-color .3s ease;
}

.related-card-btn a:hover,
.related-card-btn a:focus,
.related-card-btn a:active{
    background:#c8191f;
    color:#fff !important;
    text-decoration:none !important;
    outline:none;
}

@media(max-width:1200px){
    .related-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media(max-width:900px){
    .related-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

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

@media(max-width:480px){
    .related-grid{
        grid-template-columns:1fr;
    }
}
/* End */


/* Start:/local/templates/lukoil/components/bitrix/catalog.section.list/section-main-list/style.css?17809837011983*/
.cat-grid { margin: 30px 0; }
.cat-grid__top { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
.cat-grid__bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.cat-card {
    position: relative;
    display: block;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.2s;
}
.cat-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.13); }

.cat-card--big { min-height: 320px; }
.cat-card--small { min-height: 200px; }

.cat-card__img {
    position: absolute;
    bottom: 0; right: 0;
    width: 60%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
}

.cat-card__content {
    position: relative;
    z-index: 2;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: inherit;
    box-sizing: border-box;
}

.cat-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    max-width: 50%;
}

.cat-card--small .cat-card__title { font-size: 18px; }

.cat-card__circle {
    margin-top: 20px;
    width: 60px;
    height: 60px;
    transition: transform 0.25s ease;
}

.cat-card__circle svg circle {
    transition: fill 0.25s ease;
}

.cat-card:hover .cat-card__circle {
    transform: scale(1.1);
}

.cat-card:hover .cat-card__circle svg circle {
    fill: #D2233C;
    fill-opacity: 0.08;
}

@media (max-width: 989px) {
    .cat-grid__top { grid-template-columns: 1fr; }
    .cat-grid__bottom { grid-template-columns: 1fr; }
    .cat-card--big { min-height: 200px; }
    .cat-card__title { max-width: 60%; }
}

@media (min-width: 990px) and (max-width: 1199px) {
    .cat-grid__bottom { grid-template-columns: repeat(3, 1fr); }
}
.cat-grid__all { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 989px) { .cat-grid__all { grid-template-columns: 1fr; } }
/* End */
/* /local/templates/lukoil/components/bitrix/catalog/.default/style.css?17804009143180 */
/* /local/templates/lukoil/components/bitrix/catalog.section.list/section-main-list/style.css?17809837011983 */
