html {
    min-width: 360px;
}

.hidden {
    display: none !important;
}
.is-relative {
    position: relative;
}
.text-center {
    text-align: center;
}
.text_5 {
    font-size: 12px;
}
.text-7 {
    font-size: 0.75em;
}
.is-block {
    display: block;
}
.is-absolute {
    position: absolute;
}
.is-animated {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.text_gray2 {
    color: rgba(0,0,0,0.4);
}
.text-gray3 {
    color: #a2a2a2;
}
.text_orange {
    color: #f59131;
}
.text_green {
    color: #31c54a;
}
.text_red {
    color: #f54747;
}
.text_pink {
    color: #eb1680;
}
.text_yellow {
    color: #ffcc00;
}
.text_white {
    color: #ffffff;
}
.text_black {
    color: #24749c;
}

.text-uppercase {
    text-transform: uppercase;
}
.text-nowrap {
    white-space: nowrap;
}
.float-right{
	float: right;
}
.text_bold {
    font-weight: 700;
}

.cross {
    display:inline-block; /* запрещает перенос текста на следующую строку */
    text-decoration:none;
    position:relative;
}

.del-cross {
    display:block;
    position:relative;
    overflow:hidden; /* запрещает обтекать другие блоки */
}

.cross:before,
.div-cross:before {
    content:'';
    position:absolute;
    display:block;
    width:auto;
    height:auto;
    left:0;
    top:0;
    right:0;
    bottom:0;
    background: rgba(0,0,0,0) url('../images/cross.svg') no-repeat;
    background-size:100% 100%; /* растягивает фон на всю ширину и высоту блока */
}

/*HEADER ШАПКА*/
#header{
	color: #ffffff;
}
#header .logo_box {
    text-align: center;
    width: 15%;
    display: inline-block;
}
#header .logo {
    margin-top: 14px;
}
#header .signinout_block {
    margin: 0 auto;
    display: block;
    text-align: center;
    padding: 10px;
}
#header .callback_block {
    text-align: center;
}
#header .push-down-15 {
	margin-bottom: 5px;
}
#header .topmost-line {
    padding: 20px 0 0;
}
.navbar .menu-category-box{
	margin-top: -10px;
	z-index: 100;
}

/*CART INFORMER*/
#cart_informer {
    position: relative;
}
.cart_informer_wrapper {
    display: inline-block;
    float: right;
    width: 260px;
    height: 40px;
    margin-top: 7px;
    margin-right: 5px;
}

.cart.visible-desktop {
    border: 1px solid #d2cec9;
    cursor: pointer;
    transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -webkit-transform: skew(-20deg);
}
.cart.visible-desktop:hover {
    border: 1px solid transparent;
}
.cart.visible-desktop p{
	 transform: skew(20deg);
    -moz-transform: skew(20deg);
    -webkit-transform: skew(20deg);
}

#cart_informer.cart-container:hover .open-panel,
#cart_informer.cart-container.opened-via-js .open-panel 
{ visibility: visible; opacity: 1; -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); }
#cart_informer.cart-container:hover .cart,
#cart_informer.cart-container.opened-via-js .cart 
{ background-color: #70bde7; box-shadow: 0 0 10px rgba(0, 0, 0, 0.33); }
#cart_informer.cart-container:hover .cart:after,
#cart_informer.cart-container.opened-via-js .cart:after 
{ opacity: 1; visibility: visible; }
#cart_informer.cart-container:hover .cart, #cart_informer.cart-container.opened-via-js .cart {
    background-color: #70bde7;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.33);
}
#cart_informer .cart {
    padding-top: 15px;
    min-height: 25px;
    color: #fffaff;
    line-height: 1;
    text-align: center;
    position: relative;
    z-index: 1103;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-size: 11px;
}
#cart_informer .cart p {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    padding: 0 8px 0 0;
}
#cart_informer .cart p {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    padding: 0 8px 0 5px;
    color: #fffaff;
}
#cart_informer .items {
    border-right: 1px solid #e0e0e0;
}
#cart_informer a {
    text-decoration: none;
}

#cart_informer .open-panel {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    z-index: 1100;
    right: 7px;
    left: -76%;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.33);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
#cart_informer .cart-container:hover .open-panel, #cart_informer .cart-container.opened-via-js .open-panel {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
#cart_informer .item-in-cart {
    padding: 10px;
    border-bottom: 1px dotted #c3c2c4;
}
#cart_informer .item-in-cart .image {
    width: 15%;
    float: left;
}
#cart_informer .item-in-cart .image img {
    border: 1px solid #e0e0e0;
}
#cart_informer .item-in-cart .desc {
    width: 55%;
    margin-left: 5%;
    float: left;
    padding-top: 5px;
}
#cart_informer  .item-in-cart strong {
    display: block;
    color: #34353e;
}
#cart_informer .item-in-cart .desc .qty {
    font-size: 11px;
}
#cart_informer .item-in-cart .desc .qty a {
    color: inherit;
    text-decoration: none !important;
}
#cart_informer .item-in-cart .price {
    padding-top: 5px;
    width: 25%;
    float: left;
    text-align: right;
    white-space: nowrap;
}
#cart_informer .item-in-cart.summary {
    border-bottom: none;
    padding-bottom: 15px;
}
#cart_informer .item-in-cart.summary .desc {
    width: auto;
}
#cart_informer .item-in-cart.summary .price {
    float: right;
    width: auto;
}
#cart_informer .proceed {
    clear: both;
    padding: 15px;
    background-color: #f3f3f3;
    min-height: 38px;
}

@media (min-width: 1024px) {
    .header__informer + .header__informer {
        /*border-right: 1px solid #bb987b;*/
    }
}

@media (min-width: 1024px) {
    .header__informer {
        min-width: 4rem;
        color: #ffffff;
        /*background-color: #e3b895;*/
    }
}

@media (min-width: 1024px) {
    .header__menu-control, .header__informer, .header__search-control {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }
    .header__menu-control, .header__informer, .header__search-control {
        padding-top: 0.5rem;
    }
    .col--right {
        float: right;
    }
}

@media (min-width: 1024px) {
    .col-md-auto {
        width: auto;
    }
}

.col--small {
    padding-left: 0.5rem;
    /*padding-right: 0.5rem;*/
}
.header__informer-inner {
    width: 100%;
}
.icon--button {
    width: 40px;
    height: 40px;
    padding: 2px;
    cursor: pointer;
}
.icon svg {
    width: auto;
    height: 40px;
    fill: #fffaff;
}
svg {
    vertical-align: top;
}
.header__informer {
    display: inline-block;
    margin: 0 10px;
    float: left;
}
.header__informer-counter {
    bottom: 50%;
    left: 50%;
    z-index: 1;
    width: 1rem;
    height: 1rem;
    /*margin-left: 0.25rem;*/
    line-height: 1rem;
    text-align: center;
    color: #656565;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: -3px 3px 5px rgba(113,54,5,0.6);
}

.header__informer-inner {
	width: 100%;
}

.header__informer-counter {
	bottom: 70%;
    left: 75%;
	z-index: 1;
	width: 1rem;
	height: 1rem;
	/*margin-left: 0.25rem;*/
	line-height: 1rem;
	text-align: center;
	color: #656565;
	background-color: #ffffff;
	border-radius: 50%;
	box-shadow: -3px 3px 5px rgba(113,54,5,0.6);
}

.header__informer-title {
	margin-top: 3rem;
	padding: 0.5rem 1rem 0.25rem;
	opacity: 0;
	visibility: hidden;
	background-color: #ffffff;
	border-bottom: 3px solid #808080;
	box-shadow: 0 3px 5px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.3);
}

.header__informer-title::before,
.header__informer-title::after {
	content: '';
	position: absolute;
	display: block;
	background-color: #ffffff;
}

.header__informer-title::before {
	bottom: 100%;
	right: 4.8rem;
	width: 0.75rem;
	height: 0.75rem;
	margin-bottom: -0.5rem;
	
	box-shadow: 0 0 3px rgba(0,0,0,0.3);
	
	-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
}

.header__informer-title::after {
	width: 100%;
	height: 0.75rem;
	top: 0;
	left: 0;
	z-index: 2;
}

.header__informer:hover .header__informer-title {
	margin-top: 0.5rem;
	opacity: 1;
	visibility: visible;
}

/*Slided*/
.fullwidthbanner-container {
    margin: -63px 0 30px;
}

/*AUTOCOMPLETE SEARCH ПОИСК*/
@media (min-width: 768px){
.autocomplete-suggestions {
    left: 1rem;
    right: 1rem;
    margin-top: 1.5rem;
}}
@media (min-width: 992px){
.autocomplete-suggestions {
    width: 140%;
    left: -20%;
}}
@media (min-width: 768px){
.search_container {
    -webkit-transition: none;
    transition: none;
}}
.search_container {
    bottom: 100%;
    right: 0;
    padding-top: 1.2rem;
    padding-bottom: 1rem;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
}
@media (min-width: 992px){
.search_container {
    position: relative;
    margin-left: -50px;
}
}
.navbar .navbar-form{
	padding: 0;
}
.navbar .navbar-form button[type="submit"] {
    top: 16px;
    z-index: 10;
 }
.navbar .navbar-form input[type="text"] {
	width: 300px;
}
.autocomplete-suggestions {
    top: 100%;
    left: 0;
    right: 0;
    max-height: 360px;
    padding: 1rem;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 5px 5px rgba(0,0,0,0.3), 0 15px 15px rgba(0,0,0,0.15);
    box-shadow: 0px 5px 5px rgba(0,0,0,0.3), 0 15px 15px rgba(0,0,0,0.15);
    border-radius: 0 0 4px 4px;
    overflow-y: auto;
}
.autocomplete-suggestion {
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}
.autocomplete-suggestion {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.autocomplete-image, .autocomplete-text {
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.autocomplete-image {
    margin-right: 1rem;
    width: 60px;
    height: 40px;
    line-height: 40px;
    opacity: 0.75;
}

.autocomplete-text {
    line-height: 1;
    color: #808080;
}
.navbar .navbar-form input[type="text"] {
    letter-spacing: 1.5px;
}

/*product block*/
.popup-products .picture {
    max-height: 200px;
}

/*Product Page Variants block*/
#variants_block{
    margin-left: 0;
    float: none;
	display: block;
    font-size: 18px;
}
@media(min-width: 980px){
	#variants_block{
		display: inline-block;
    	float: right;
	}
}
#product_main_block{
	display: inline-block;
}

#product_main_block .breadcrumb{
	font-size: 12px;
}

.shadow_box {
    position: relative;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.15);
    box-shadow: 0 0 4px rgba(0,0,0,0.15);
    border-radius: 5px;
}
.shadow_box_item {
    padding: 1.5rem 1.3rem;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: #ececec;
    background-color: #ffffff;
}
#variants_block .product_stock {
    width: 45%;
    margin: 0 -1px;
}
#variants_block .compare_link{
	width: 30%;
	float: right;
}
.inline_block_middle {
    float: none;
    display: inline-block;
    vertical-align: middle;
}
.old_price {
    position: relative;
    display: table;
}
/*.old_price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    width: 100%;
    height: 2px;
    background-color: #ea0072;
}*/
.price {
    white-space: nowrap;
}

.discount_price {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
    padding: 0.5rem 1rem;
    line-height: 1;
    border-radius: 4px;
    font-size: 12px;
}
.discount_price_title {
    position: absolute;
    bottom: 100%;
    left: 50%;
    z-index: 1;
    display: block;
    width: 14rem;
    padding: 1rem;
    margin-left: -7rem;
    margin-bottom: 3rem;
    color: #ffffff;
    font-size: 12px;
    white-space: normal;
    background-color: rgba(0,0,0,0.65);
    border-radius: 2px;
    opacity: 0;
    visibility: hidden;
}
#variants_block .final_price {
    font-size: 30px;
    line-height: 2.7rem;
    width: 50%;
    display: inline-block;
}
#variants_block .currency {
    font-size: 60%;
}
.checkbox_label {
    cursor: pointer;
    position: relative;
    display: block;
    padding-left: 3rem;
    line-height: 2rem;
}
#variants_block .oneclick_link {
    display: inline-block;
    margin: 10px 5px 0;
}
.link, .user_content a {
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
    border-bottom: 1px solid;
    -webkit-transition: border-color 0.3s ease, color 0.3s ease;
    transition: border-color 0.3s ease, color 0.3s ease;
}

#variants_block .numbered {
    display: inline-block;
    width: 100px;
    position: relative;
}
span.clickable.add-one.icon-plus-sign-alt {
    position: absolute;
    left: 45px;
}
span.clickable.remove-one.icon-minus-sign-alt {
    position: absolute;
    bottom: 10px;
    left: 45px;
}

.checkbox_label {
    cursor: pointer;
    position: relative;
    display: block;
    padding-left: 3rem;
    line-height: 2rem;
}
.checkbox_label::before {
    cursor: pointer;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 2rem;
    height: 2rem;
    background-color: #f5f6f8;
    -webkit-box-shadow: inset 0 1px 3px rgba(77,77,77,0.5);
    box-shadow: inset 0 1px 3px rgba(77,77,77,0.5);
    border-radius: 4px;
}
input.hidden:checked+.checkbox_label::before {
    background: #70bde7 url(../images/icon_check.svg) no-repeat center/80% auto;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*cheap-button*/
.product-cheap__close, .product-trickyprice__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    cursor: pointer;
}
.callback_cheap_trigger_button{
	height: 40px;
}
.callback_cheap_trigger_button a{
	margin-right: 40px;
}
#product-cheap-form .submit-button{
	height: 40px;
}
.trigger_container .form_group .form_input input[type="text"]{
	width: 315px;
}

/*.product-cheap {
    display: none;
}*/
@media (min-width: 768px) {
    .product-trickyprice__form {
        position: absolute;
        top: -16rem;
        right: 0;
        width: 150%;
        -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.15), 0 5px 25px rgba(0,0,0,0.25);
        box-shadow: 0 0 4px rgba(0,0,0,0.15), 0 5px 25px rgba(0,0,0,0.25);
    }

    .product-cheap.trigger_container{
        padding: 10px;
        width: 350px;
    }
    .product-cheap.trigger_container .modal-body{
        padding: 15px;
    }
    .product-cheap.trigger_container input[type="text"]{
    width: 90%;
}
    .skew-btn.outlined {
        color: #24749c!important;
        padding: 3px 14px 0;
    }
    .skew-btn.outlined:before {
        background-color: transparent;
        border: 2px solid #70bde7;
    }

    .sale-info {
        padding: 10px;
        overflow: hidden;
        width: 100%;
    }
    .sale-info__label {
        background-color: white;
        /* padding: 10px 43px; */
        border: 0;
        color: #00ccff;
        margin: 0 auto;
        font-size: 16px;
        /* width: 95%; */
    }
    .sale-info__detail {
        width: 150px;
        position: absolute;
        left: 5px;
        z-index: 12;
        border: 1px dotted #808080;
        background-color: #fff;
        padding: 10px;
        font-size: 12px;
    }
}

@media (min-width: 768px){
	.sale-info__title {
	    position: relative;
	    display: table;
	    margin: 0 auto 1rem;
	    padding: 0 0.4rem;
	    line-height: 1.6rem;
	    font-size: 10px;
	    color: #ffffff;
	    text-align: center;
	    text-transform: uppercase;
	    background-color: #70bde7;
	}

	.sale-info__price {
	    display: block;
	    margin: 0;
	    text-align: center;
	    color: inherit;
	    font-size: 24px;
    	font-weight: 700;
	}

	.sale-info__description {
	    margin: 1rem 0;
	    padding: 0.5rem 0;
	    font-size: 12px;
	    text-align: center;
	    border-top: 1px solid #e5e5e5;
	    border-bottom: 1px solid #e5e5e5;
	}

}
.sale-info__annotation {
    text-align: center;
}

button.button_second {
    font-size: 16px;
    color: #ffffff;
    background-color: #70bde7;
    padding: 8px;
    border: none;
    box-shadow: 2px 1px 4px 1px lightgrey;
}
.trigger_content input {
    width: 90%;
}

#variants_block .compare_block{
	display: inline-block;
	width: 30%;
	float: right;
	font-size: 12px;
}
@media(min-width: 980px){
	#variants_block .compare_block{
		width: 55%;
	}
}
.discount_price_shop:before {
    background-color: #f184ca;
}
.discount_price_user:before {
    background-color: #31c54a;
}
.discount_price_coupon:before {
    background-color: #70bde7;
}

.search_wrapper{
	width: 300px;
}


/*stickers*/
.flex-center-vertically {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.row.blocks-spacer-last {
    display: block;
    margin: 10px;
}
@media(min-width: 980px){
	.row.blocks-spacer-last {
    	height: 120px;
    }
}
.sticker_block {
    width: 100%;
    height: 140px;
    padding: 14px;
}
@media(min-width: 980px){
	.sticker_block {
    	width: 29.5%;
    	height: 100px;
    	margin: 1%;
    }
}
.sticker-items :first-child{
	margin-left: 0;
}
.sticker-items :last-child{
	margin-right: 0;
}
.sticker_block .inner{
    border: 1px solid #ffffe07a;
    height: 100px;
    text-align: center;
    padding-top: 5px;
}
.sticker_block .inner p{
	color: inherit;
}
.sticker_block .skew_title_mini > span  {
    z-index: 1;
    padding: 5px 15px;
    position: relative;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
    color: inherit;
    font-weight: normal;
    display: inline-block;
    font-family: 'Roboto Condensed';
}

/*subsribe form block*/
div#mc_embed_signup {
    text-align: center;
    margin-top: 1.4rem;
    width: 100%;
    display: inline-block;
}

/*Mobile view max 767px*/
@media(max-width: 767px){

	#header .logo_box, .phone_box{
		display: inline-block;
		width: 50%;
		float: left;
		padding: 10px;
		padding-top: 30px;
	}
	#header .topmost-line{
		padding: 0;
	}
	#header .topmenu{
		padding-top: 15px;
	}
	#header .logo {
	    margin-top: 0;
	}
	.navbar .menu-category-box {
	    margin-top: -5px;
	    margin-left: 5px;
	}
	button.btn.btn-navbar {
	    float: right;
	    margin: 11px 10px 0 0;
	    display: inline-block;
	}
	.navbar .nav > li .dropdown-menu.megamenu.container {
    	margin-left: 35px;
	}
	.nav-collapse.collapse{
		z-index: 12;
	}
	.search_wrapper{
		display: none;
	}
	.menu-category-box{
		position: absolute;
	}
	.register_box {
	    margin-bottom: 12px;
	}
	.header__informer{
		margin-right: 0;
        margin-top: 10px;
	}
	/*#wishlist_informer_box {
	    margin-left: 50px;
	}*/
	.cart_informer_wrapper {
    	width: 50%;
    	float: left;
    	margin-left: 5px;
    }

    #cart .table-items .image ,
	#cart th, #cart thead,
	#cart td.coupon_block,
	#cart td.price
    {
    	display: none;
    }
}	

/*slider*/
.slick-slider {
    position: relative;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    display: block;
    width: 4rem;
    height: 4rem;
    margin-top: -2rem;
    border: 2px solid rgba(0,0,0,0.5);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 0;
}
.slick-arrow::before, .slick-arrow::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    margin-left: -5px;
    width: 10px;
    height: 2px;
    background-color: rgba(0,0,0,0.5);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.slick-next::before {
    margin-top: -1px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 100% 0 0;
    transform-origin: 100% 0 0;
}
.slick-next::after {
    margin-top: -2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 100% 100% 0;
    transform-origin: 100% 100% 0;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.product_image .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.product_gallery_item:first-child {
    display: block;
}
.product_gallery_video {
    width: 100%;
    padding-bottom: 66.666%;
}
.product_gallery_video iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.product_image .slick-slide {
    float: none;
}
.slick-initialized .slick-slide {
    display: block;
}

.slick-dots {
    width: 100%;
    margin-top: 1rem;
    line-height: 1;
    text-align: center;
}
.product_gallery_dots ul li {
    cursor: pointer;
}
.slick-dots li {
    display: inline-block;
    vertical-align: top;
    margin: 0 2px;
}

.product_gallery_control {
    display: block;
    width: 6rem;
    height: 4rem;
    padding: 0.5rem;
    line-height: 2rem;
    text-align: center;
    background-color: #fff;
    border: 2px solid #ccc;
    opacity: 0.75;
}
@media (min-width: 768px) {
    .product_gallery_control {
        width: 7rem;
        height: 5rem;
        line-height: 3rem;
    }
    .product_gallery_dots .slick-active .product_gallery_control {
        border: 2px solid #356dd3;
    }
}


/*products page*/
/*filter*/
.sidebar-filters .ui-slider-range.ui-widget-header.ui-corner-all{
	background: #24749c;
}

.large_vk_block{
	overflow: hidden;
}
@media(min-width: 980px){
	.large_vk_block{
		width: 389px;
		margin-left: -90px;
	}
}
@media(max-width: 650px){
	.large_vk_block{
		width: 100%;
	}
}
/* @media (max-width: 420px){
	body {
	    padding-left: 5px;
	    padding-right: 5px;
	}
} */
@media (max-width: 767px){
	.popup-products .product:hover, .popup-products .product:hover .product-cover {
	    -webkit-transform: none;
	    -moz-transform: none;
	    -ms-transform: none;
	    -o-transform: none;
	    transform: none;
	    -webkit-box-shadow: none;
	    -moz-box-shadow: none;
	    box-shadow: none;
	    background: #ffffff;
	}
}

.product-preview .thumbs {
    margin-top: 30px;
    z-index: 100000;
    position: relative;
}

/*color rewrite*/
@media (min-width: 979px){
    .navbar .nav > li > a{
        color: #fffaff;
    }
    .darker-row a {
        color: #fffaff;
    }
}


/*responsive rewrite Tablet*/
@media (max-width: 979px) and (min-width: 768px){
	#header .logo_box{
		width: 30%;
	}
	#header .phone_box{
		width: 45%;
		float: right;
	}
	#header .register_box{
		width: 45%;
	}
	.menu-category-box{
		position: absolute;
	    right: 10px;
	    top: 10px;
	    width: 100%;
	}
	.menu-category-box button{
		width: 50px;
	}
	.menu-category-box .nav-collapse{
	    width: 100%;
	}
	.search_wrapper {
	    width: 300px;
	    margin-left: 45px;
	}
	.header__informer {
		margin: 10px 0;
	}
	.cart_informer_wrapper{
		width: 180px;
		float: left;
		margin-left: 10px;
	}
	.large_vk_block {
	    display: none;
	}
	.sticker-items .sticker_block{
		margin-left: 0;
	}
	.sticker_block .inner {
    	height: 90%;
	}
	.popup-products .price-box .striked {
    	font-size: 14px;
 	}
}

#cart .discount {
    text-align: center;
}

.foot-dark {
    padding: 10px 10px 0 20px;
}
.foot-light {
    padding: 40px 10px 0 20px;
}
.supportDesktop .row.blocks-spacer-last {
    margin-bottom: 20px;
}
.header__informer-title {
    z-index: 99;
}
.selected-payment-text {
    clear: both;
}

#product_main_block .product-preview .picture {
    height: initial;
}