

/* Start:/bitrix/templates/main/components/bitrix/catalog/giveweb_shop/style.css?1666688857697*/
.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%;
	}

}
/* End */


/* Start:/bitrix/templates/main/components/bitrix/catalog/giveweb_shop/bitrix/catalog.section/table/style.css?17511371324434*/
.section_slider{
	position:relative;
}
.section_slider .section_slide_item{
	text-align: left;
    margin: 0 auto;
    display: block;
}
.section_slider .section_slide_item .name{
	padding-left: 17px;
	text-align: center;
    font-size: 20px;
}
.section_slider .section_slide_item .description ul{
    list-style: none;
}
.section_slider .section_slide_item .description ul > li{
    padding-left: 20px;
    position: relative;
    margin: 10px 0;
}
.section_slider .section_slide_item .description p{
	padding-left: 17px;
	position: relative;
	text-align: center;
} 
.section_slider .section_slide_item .description p:before{
    content: '✔';
    top: 0;
    left: 0;
    color: #8EC971;
    margin-right: 5px;
}
.goods_slider_obertka{
	position:relative;
}
.goods_slider_obertka .slider_goods_nav_block{
	position: absolute;
    top: calc(50% - 35px);
    font-size: 70px;
    z-index: 1;
    color: #8BC16D;
    width: 100%;
    height: 0;
}

.section_slider .section_slider .slider_nav_block .slider-arrow, .section_slider .section_slider .slider_nav_block_second .slider-arrow{
    cursor: pointer;
    position: absolute;
    height: 400px;
    background: rgba(0,0,0,0.5);
    text-align: center;
    line-height: 400px;
    width: 100px;
    transition: .4s;
}
.goods_slider_obertka .slider_goods_nav_block .slider-goods-arrow{
	cursor: pointer;
    position: absolute;
    text-align: center;
    transition: .4s;
}
/*
.section_slider .slider_nav_block .slider-arrow, .section_slider .slider_nav_block_second .slider-arrow {
    background: rgba(0,0,0,0.5);
}
*/
.section_slider .slider_nav_block .slider-arrow.fa-chevron-left, .section_slider .slider_nav_block_second .slider-arrow.fa-chevron-left, .goods_slider_obertka .slider_goods_nav_block .slider-goods-arrow.fa-chevron-left {
    left: 0;
}

.section_slider .slider_nav_block .slider-arrow.fa-chevron-right, .section_slider .slider_nav_block_second .slider-arrow.fa-chevron-right, .goods_slider_obertka .slider_goods_nav_block .slider-goods-arrow.fa-chevron-right {
    right: 0;
}

.section_slider .slider_nav_block .slider-arrow:hover, .section_slider .slider_nav_block_second .slider-arrow:hover {
    color: #000;
    background: rgba(255,255,255,0.5);
}

.section_slider .owl-dots {
    z-index: 1;
    width: 100%;
    text-align: center;
    /*position: absolute;
    background: rgba(0,0,0,0.75); */
    bottom: 0;
    border-bottom: 1px dashed #8BC16D;
    border-top: 1px dashed #8BC16D;
}

.section_slider .owl-dot {
    width: 20px;
    height: 20px;
    background-color: #FFF;
    border-radius: 10em;
    display: inline-block;
    margin: 10px;
    transition: background-color .5s ease, transform .5s ease;
    border: 1px solid #8BC16D;
}

.section_slider .owl-dot.active {
    background-color: #8BC16D;
    transform: scale(1.5);
}

.bg-anim .list-group-item{
	background-color: rgba(255,255,255,0.5);
}
.bg-anim {
    position: relative;
    overflow: hidden;
    animation: theme 21s linear infinite;
    
    &:after,
    &:before {
        content: '';
        display: block;
        position: absolute;
        z-index: 0;
        top: -50%;
        left: -50%;
        width: 100%;
        height: 200%;
        background: rgba(0,0,0,0.05);
        animation: background 60s linear infinite;
		border-radius: 100%;
    }

    &:after {
        left: -5%;
    }

    &:before {
        right: 15%;
        animation-delay: -30s;
        animation-direction: reverse;
    }
    
    /* Все остальное содержимое должно быть выше фона */
    & > * {
        position: relative;
        z-index: 1;
    }
}

@keyframes theme {
	0% {
		background-color: rgba(142, 201, 113, 0.5);  /* #8ec971 */
	}

	16% {
		background-color: rgba(255, 193, 7, 0.5);   /* #ffc107 */
	}

	33% {
		background-color: rgba(13, 202, 240, 0.5);  /* #0dcaf0 */
	}

	50% {
		background-color: rgba(229, 57, 53, 0.5);   /* #E53935 */
	}

	66% {
		background-color: rgba(13, 110, 253, 0.5); /* #0d6efd */
	}    

	83% {
		background-color: rgba(108, 117, 125, 0.5); /* #6c757d */
	}

	100% {
		background-color: rgba(142, 201, 113, 0.5); /* #8ec971 */
	}
}

@keyframes background {
    0% {
        transform: rotate(0deg);
    }
    
    100% {
        transform: rotate(360deg);
    }
}

.svg{
	width:auto;
	max-height: 300px;
	max-width: 100%;
}
@media (min-width: 1920px) {
	.svg{
		max-height: 450px;
		max-width: 100%;
	}
}
/* End */


/* Start:/bitrix/templates/main/components/bitrix/breadcrumb/giveweb/style.min.css?1666688857482*/
.bx-breadcrumb{margin:10px 0}.bx-breadcrumb i{color:#b5bdc2;line-height:13px;font-size:12px;vertical-align:middle;margin-right:5px}.bx-breadcrumb .bx-breadcrumb-item{float:left;margin-bottom:10px;white-space:nowrap;line-height:13px;vertical-align:middle;margin-right:10px}.bx-breadcrumb .bx-breadcrumb-item span{font-family:"Open Sans",Arial,"Helvetica Neue",Helvetica,sans-serif;font-size:13px;white-space:normal}.bx-breadcrumb .bx-breadcrumb-item a{border-bottom:0;color:#8EC971;}
/* End */


/* Start:/bitrix/templates/main/components/bitrix/form.result.new/bx_host/style.css?1729944542666*/
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(/bitrix/templates/main/components/bitrix/form.result.new/bx_host/images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/bitrix/templates/main/components/bitrix/form.result.new/bx_host/images/icon_warn.gif);
}
/* End */
/* /bitrix/templates/main/components/bitrix/catalog/giveweb_shop/style.css?1666688857697 */
/* /bitrix/templates/main/components/bitrix/catalog/giveweb_shop/bitrix/catalog.section/table/style.css?17511371324434 */
/* /bitrix/templates/main/components/bitrix/breadcrumb/giveweb/style.min.css?1666688857482 */
/* /bitrix/templates/main/components/bitrix/form.result.new/bx_host/style.css?1729944542666 */
