

/* Start:/local/templates/sport_shop/components/bitrix/news.list/shop_slider/style.css?17756587202688*/
.shop-slider {
    margin-bottom: 4rem;
    position: relative;
}

.shop-slider .items .item {

    position: relative;
}

.shop-slider .items .item .bg {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-slider .items .item .inner {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: center;
    padding: 0 3rem;
}

.shop-slider .items .item .inner  .subtitle {
    font-size: 1.75rem;
    font-family: "Montserrat";
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
}

.shop-slider .items .item .inner  .title {
    font-family: "Montserrat";
    font-size: 3.25rem;
    /*text-shadow: 2px 5px rgba(0, 0, 0, .3);*/
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.shop-slider .items .item .inner .img img {
    width: 100%;
}

.shop-slider .tns-nav {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: .5rem;
}

.shop-slider .tns-nav button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: var(--color-main);
    opacity: .5;
}

.shop-slider .tns-nav button.tns-nav-active {
    opacity: 1;
}

.shop-slider .tns-controls {
    position: absolute;
    top: 40%;
    left: -50px;
    right: -50px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
}

.shop-slider .tns-controls button {
    height: 29px;
    width: 29px;
    border-radius: 50%;
    border: 0;
    background: #F2F2F2;
    color: #F2F2F2;
    position: relative;
    opacity: .8;
}

.shop-slider .tns-controls button:hover {
    opacity: 1;
}

.shop-slider .tns-controls button:before {
    content: "";
    background: url(/local/templates/sport_shop/components/bitrix/news.list/shop_slider/images/icon_arrow_left.svg) center no-repeat;
    display: block;
    height: 13px;
    width: 8px;
    position: absolute;
    left: 10px;
}

.shop-slider .tns-controls button:last-child:before {
    transform: rotate(180deg);
}

@media(max-width: 1240px) {
    .shop-slider .tns-controls {
        left: 10px;
        right: 10px;
    }
}


@media(max-width: 991px) {
    .shop-slider .items .item .inner  .title {
        font-size: 2.5rem;
    }
}

@media(max-width: 767px) {
    .shop-slider .items .item .inner {
        grid-template-columns: 1fr;
        padding: 2rem 0 0;
    }

    .shop-slider .items .item .inner .img img {

        text-align: center;
    }

    .shop-slider .items .item .inner .text {

        text-align: center;
    }
}

@media(max-width: 575px) {

    .shop-slider .items .item .inner  .title {
        font-size: 2rem;
    }
}
/* End */


/* Start:/local/templates/.default/components/bitrix/catalog.item/.default/style.css?17756587194391*/
.product-item-container {
	display: flex;
	align-items: stretch;
}

.product-item {
	border: 1px solid #EAEAEA;
	margin-left: -1px;
	padding: 1rem;
	width: 100%;
}

.product-item .product-item-image-wrapper {
	position: relative;
	display: block;
	height: 270px;
	width: 100%;
	overflow: hidden;
	margin-bottom: 1rem;
}

.product-item .product-item-image-wrapper img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all .3s;
}

.product-item:hover .product-item-image-wrapper img {
	left: -5%;
	top: -5%;
	width: 110%;
	height: 110%;
}

.product-item .product-item-title {
	text-align: center;
	margin-bottom: 2rem;
}

.product-item .product-item-title a {
	font-size: 1rem;
	font-weight: 400;
	color: var(--color-black);
}

.product-item .product-bottom-part {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.product-item .product-bottom-part .product-item-price-current {
	font-size: 1.125rem;
	font-family: "Montserrat";
	font-weight: 700;
}

.product-item .product-bottom-part .btn {
	border-radius: 0 5px;
	color: #fff;
	border-color: var(--color-secondary);
	transition: all .3s;
	text-indent: -9999px;
	overflow: hidden;
	background: url(/local/templates/.default/components/bitrix/catalog.item/.default/images/icon_cart_white.svg) center no-repeat var(--color-secondary);
}

.product-item .product-bottom-part .btn:hover {
	background-color: var(--color-black);
	border-color: var(--color-black);
}



/*Image Slider*/
.product-item-image-slider-slide-container {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	transition: opacity 300ms ease;
}

.product-item-image-slide {
	position: relative;
	display: none;
	height: 100%;
	background-color: #fff;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: .6s ease-in-out left;
}

@media all and (transform-3d), (-webkit-transform-3d) {
	.product-item-image-slide {
		transition: transform .6s ease-in-out;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-perspective: 1000px;
		perspective: 1000px;
	}

	.product-item-image-slide.next,
	.product-item-image-slide.active.right {
		left: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	.product-item-image-slide.prev,
	.product-item-image-slide.active.left {
		left: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	.product-item-image-slide.next.left,
	.product-item-image-slide.prev.right,
	.product-item-image-slide.active {
		left: 0;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.product-item-image-slider-slide-container > .active,
.product-item-image-slider-slide-container > .next,
.product-item-image-slider-slide-container > .prev { display: block; }

.product-item-image-slider-slide-container > .active { left: 0; }

.product-item-image-slider-slide-container > .next,
.product-item-image-slider-slide-container > .prev {
	position: absolute;
	top: 0;
	width: 100%;
}

.product-item-image-slider-slide-container > .next { left: 100%; }

.product-item-image-slider-slide-container > .prev { left: -100%; }

.product-item-image-slider-slide-container > .next.left,
.product-item-image-slider-slide-container > .prev.right { left: 0; }

.product-item-image-slider-progress-bar-container {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
}

.product-item-image-slider-progress-bar {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background-color: #f42c2c;
	opacity: .8;
}

.product-item-image-slider-control-container {
	position: absolute;
	right: 0;
	bottom: 10px;
	left: 0;
	z-index: 15;
	padding: 0;
	text-align: center;
	opacity: 0;
	transition: opacity 300ms ease;
}

.product-item-container.hover .product-item-image-slider-control-container,
.product-item-line-card:hover .product-item-image-slider-control-container { opacity: 1; }

.product-item-image-slider-control,
.product-item-image-slider-control.active {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(128, 128, 128, .8);
	opacity: .6;
	cursor: pointer;
	transition: all 300ms ease;
}

.product-item-image-slider-control:hover,
.product-item-image-slider-control.active:hover { cursor: pointer; }


/* End */


/* Start:/local/templates/.default/components/bitrix/catalog.top/hit/section/style.css?1775658719380*/
.catalog-top .items-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

@media(max-width: 1199px) {
	.catalog-top .items-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

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

@media(max-width: 575px) {
	.catalog-top .items-grid {
		grid-template-columns: 1fr;
	}
}
/* End */


/* Start:/local/templates/.default/components/bitrix/catalog.top/hit/section/themes/blue/style.min.css?1775658719702*/
.bx-blue .product-item-image-slider-progress-bar{background-color:#0083d1}.bx-blue .product-item-image-slider-control:hover{background-color:rgba(0,131,209,.8)}.bx-blue .product-item-image-slider-control.active,.bx-blue .product-item-image-slider-control:hover{background-color:#0083d1}.bx-blue .product-item-scu-item-text-block:hover,.bx-blue .product-item-scu-item-color-block:hover,.bx-blue .product-item-scu-item-text-container.selected .product-item-scu-item-text-block,.bx-blue .product-item-scu-item-color-container.selected .product-item-scu-item-color-block{outline-color:#006cc0}.bx-blue .product-item-amount-field:focus{border-color:#006cc0}.bx-blue .catalog-top-header{border-color:#006cc0}
/* End */


/* Start:/local/templates/sport_shop/components/bitrix/catalog.section.list/top/style.css?17756587202625*/
.top-sections {
    margin-bottom: 4rem;
}

.top-sections .h1 {
    text-align: center;
}

.top-sections .grid {
    display: grid;
    grid-gap: 2rem 1rem;
    grid-template-columns: repeat(3, 1fr);
}

.top-sections .grid .item {
    position: relative;
}

.top-sections .grid .item .section-image {
    position: relative;
    height: 370px;
    display: block;
    max-width: 290px;
}

.top-sections .grid .item .section-image img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    object-fit: contain;
    z-index: 100;
}
.top-sections .grid .item .section-title {
    
    font-weight: 700;
    font-size: 1.25rem;
}

.top-sections .grid .item .section-title a {
    color: var(--color-black);
    text-transform: uppercase;
    border-bottom: 5px solid var(--color-main);
    transition: all .3s;
    line-height: 1.5;
}

.top-sections .grid .item:hover .section-title a {
    text-decoration: none;
    color: var(--color-main);
}

.top-sections .grid .item:nth-child(1) .section-image {
    margin-left: auto;
}

.top-sections .grid .item:nth-child(1) .section-title {
    position: absolute;
    left: 0;
    top: 20%;
    z-index: 100;
}

.top-sections .grid .item:nth-child(2) {
    transform: translateY(-2rem);
}

.top-sections .grid .item:nth-child(2) .section-title {
    text-align: center;
}
.top-sections .grid .item:nth-child(2) .section-image {
    margin: 0 auto;
}


.top-sections .grid .item:nth-child(3) .section-title {
    position: absolute;
    left: 0;
    top: 20%;
    z-index: 100;
}

.top-sections .grid .item:nth-child(3) .section-image {
    margin-right: auto;
}

.top-sections .controls {
    text-align: center;
    margin-top: 1rem;
}


@media(max-width: 767px) {
    .top-sections .grid .item .section-image {
        position: relative;
        height: 270px;
    }

    .top-sections .grid .item .section-title {
        font-size: 1rem;
    }
}

@media(max-width: 575px) {
    .top-sections .grid .item .section-image {
        position: relative;
        height: 270px;
        margin: 0 auto
    }

    .top-sections .grid .item .section-title {
        text-align: center;
    }

    .top-sections .grid .item .section-title:nth-child(1),
    .top-sections .grid .item .section-title:nth-child(2),
    .top-sections .grid .item .section-title:nth-child(3){
        position: relative;
        top: auto;
        left: auto;
    }

    .top-sections .grid .item:nth-child(2) {
        transform: none;
    }

    .top-sections .grid {
        grid-template-columns: 1fr;
    }

    .top-sections .controls {
        margin-top: 3rem;
    }
}
/* End */
/* /local/templates/sport_shop/components/bitrix/news.list/shop_slider/style.css?17756587202688 */
/* /local/templates/.default/components/bitrix/catalog.item/.default/style.css?17756587194391 */
/* /local/templates/.default/components/bitrix/catalog.top/hit/section/style.css?1775658719380 */
/* /local/templates/.default/components/bitrix/catalog.top/hit/section/themes/blue/style.min.css?1775658719702 */
/* /local/templates/sport_shop/components/bitrix/catalog.section.list/top/style.css?17756587202625 */
