/*Inter*/
@font-face{
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Light.otf');
    font-weight: 300;
    font-style: normal;
}
@font-face{
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Regular.otf');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Medium.otf');
    font-weight: 500;
    font-style: normal;
}
@font-face{
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-SemiBold.otf');
    font-weight: 600;
    font-style: normal;
}
@font-face{
    font-family: 'Inter';
    src: url('../fonts/inter/Inter-Bold.otf');
    font-weight: 700;
    font-style: normal;
}

/*Raleway*/
@font-face{
    font-family: 'Raleway';
    src: url('../fonts/raleway/Raleway-Light.ttf');
    font-weight: 300;
    font-style: normal;
}
@font-face{
    font-family: 'Raleway';
    src: url('../fonts/raleway/Raleway-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: 'Raleway';
    src: url('../fonts/raleway/Raleway-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}
@font-face{
    font-family: 'Raleway';
    src: url('../fonts/raleway/Raleway-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
}
@font-face{
    font-family: 'Raleway';
    src: url('../fonts/raleway/Raleway-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

/*Montserrat*/
@font-face{
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Light.ttf');
    font-weight: 300;
    font-style: normal;
}
@font-face{
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}
@font-face{
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-SemiBold.ttf');
    font-weight: 600;
    font-style: normal;
}
@font-face{
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

/*NunitoSans*/
@font-face{
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans_10pt-Light.ttf');
    font-weight: 300;
    font-style: normal;
}
@font-face{
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans_10pt-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face{
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans_10pt-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}
/*@font-face{*/
/*    font-family: 'NunitoSans';*/
/*    src: url('../fonts/NunitoSans/NunitoSans_10pt-SemiBold.ttf');*/
/*    font-weight: 600;*/
/*    font-style: normal;*/
/*}*/
@font-face{
    font-family: 'NunitoSans';
    src: url('../fonts/NunitoSans/NunitoSans_10pt-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}



:root {
    --custom-black: #1C1B1B;
    --custom-gray: #6A6A6A;


    --name-font-size: 18px;
    --catalog-name-font-size: 12px;
    --mobile-catalog-name-font-size: 11px;

    --common-font-size: 12px;
    --common-big-font-size: 14px;
    --filter-font-size: 14px;
    --tabs-font-size: 13px;

    --primary-font-family: "Montserrat";
    --secondary-font-family: "NunitoSans";

}

/* bonus */
.m0 {
	margin: 0;
}
.mb200 {
	margin-bottom: 200px !important;
}
.flex {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.flex-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-vertical-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.flex-horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}
.flex > .auto,
.flex-auto > * {
  flex: 1 1 auto;
}

.flex5 > div {
	flex: 1 1 20%;
	margin: 0 10px 10px;
}
.flex4 > div {
	flex: 1 1 25%;
	margin: 0 10px 20px;
}
.flex3 > div {
	flex: 1 1 33%;
	margin: 0 10px 20px;
}
.flex2 > div {
	flex: 1 1 50%;
	margin: 0 10px 20px;
}

.transition {
	-webkit-transition: all 100ms ease-out;
	-moz-transition: all 100ms ease-out;
	-o-transition: all 100ms ease-out;
	transition: all 100ms ease-out;
}
.clear:after {
	content: '';
    display: block;
    clear: both;
}

.btn {
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    align-items: center;
    max-width: 100%;
    border: 1px solid;
    border-radius: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
	text-decoration: none;
	white-space: normal;
}
.btn-link {
    padding: 15px;
}
.btn-link:hover {
    color: inherit;
    background: inherit;
    text-decoration: inherit;
}
.btn-primary {
	color: #fff;
    background-color: #3d88cd;
    border-color: #3d88cd;
}
.btn-primary:hover,
.btn-link.btn-primary:hover,
.btn-link.btn-primary:focus {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}

.btn-white {
    border: 2px solid rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}
.btn-white:hover,
.btn-link.btn-white:hover,
.btn-link.btn-white:focus {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
}
.btn-black {
    border: 1px solid #000000;
    background-color: #ffffff;
    color: #000000;
}
.btn-black:hover,
.btn-link.btn-black:hover,
.btn-link.btn-black:focus {
    background-color: rgba(0, 0, 0, 0.1);
    color: #000000;
}
.btn-xs, .btn-group-xs > .btn {
	width: inherit;
    line-height: inherit;
    font-size: inherit;
}
.btn.btn-loading:after {
	transition: 0.3s;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 3px solid #ffffff;
    border-right-color: transparent !important;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
    content: '';
}
.btn.btn-black.btn-loading:hover:after {
    border-color: #000000;
}
@keyframes spinner-border {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.text-danger {
    font-size: 12px;
}
html {
	overflow-x: hidden;
}
body {
    font-family: var(--primary-font-family);
	font-weight: normal;
	font-size: var(--common-font-size);
	color: var(--custom-black);
	line-height: 20px;
	width: 100%;
	background: #ffffff;
	overflow-x: clip;
	padding-top: 70px;
}
*:focus{
	outline: none !important;
}
h1, h2, h3, h4, h5, h6 {
	color: black;
	line-height: 1;
	font-family: 'Gotham Pro', sans-serif;
}
/* default font size */
.fa {
	font-size: 14px;
}
/* Override the bootstrap defaults */
h1 {
	font-size: 33px;
}
h2 {
	font-size: 27px;
}
h3 {
	font-size: 21px;
}
h4 {
	font-size: 15px;
}
h5 {
	font-size: 12px;
}
h6 {
	font-size: 10.2px;
}
a {
	color: black;
	cursor: pointer;
}
a:focus,
a:active,
a:hover {
	text-decoration: none;
	color: black;
}
legend {
	font-size: 18px;
	padding: 7px 0px
}
label {
	font-size: 14px;
	font-weight: normal;
}
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
	font-size: 12px;
}
.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
	font-size: 12px;
}
.input-group .input-group-addon {
	font-size: 12px;
	height: 30px;
}
img{
	max-width: 100%;
	height: auto;
}
/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
	display: inline;
}
.flip{
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	display: inline-block;
}
.nav-tabs {
	margin-bottom: 15px;
}
div.required .control-label:before {
	content: '* ';
	color: #F00;
	font-weight: bold;
}
/* tooltip */
.tooltip.top .tooltip-arrow {
  border-top-color: #408ed4;
}
.tooltip.top-left .tooltip-arrow {
  border-top-color: #408ed4;
}
.tooltip.top-right .tooltip-arrow {
  border-top-color: #408ed4;
}
.tooltip.right .tooltip-arrow {
  border-right-color: #408ed4;
}
.tooltip.left .tooltip-arrow {
  border-left-color: #408ed4;
}
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #408ed4;
}
.tooltip.bottom-left .tooltip-arrow {
  border-bottom-color: #408ed4;
}
.tooltip.bottom-right .tooltip-arrow {
  border-bottom-color: #408ed4;
}
.tooltip-inner{
	background: #408ed4;
}
.alert{
    padding-top: 0;
	text-align: center;
	font-size: 12px;
	margin: 0;
	border-radius: 0;
	border: none;
}
#button-voucher,
#button-coupon{
	height: 34px;
	margin-left: 10px;
	border-radius: 0;
}
#button-search + h2{
	display: none;
}
#button-search{
	margin: 15px 0;
}
#modal-agree{
	z-index: 1000000;
}
/* newsletter popup */
.b-close,
.b-close span {
	display: block;
	width: 100%;
    height: 100%;
}
.newletter-popup{
	background: #fff;
	top: 50% !important;
	margin-top: -179px;
	position: fixed !important;
	padding: 50px 20px;
	text-align: center;
	display: none;
	width: 600px;
}
#boxes .newletter-title h2{
	margin: 0;
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 163%;
    text-align: center;
}
#boxes .box-content label{
	font-weight: 400;
}
#boxes  #frm_subscribe .required{
	color: #f00;
	padding-right: 5px;
}
#boxes  #frm_subscribe a{
	cursor: pointer;
	width: 290px;
    max-width: 100%;
}
#boxes  #frm_subscribe #subscribe_pemail{
	background: #F8F8F8;
    border: none;
    height: 50px;
    margin: 30px 0 20px;
    padding: 0 15px;
    width: 360px;
    max-width: 100%;
}
#boxes .box-content .subscribe-bottom{
	margin-top: 20px;
}
#boxes .box-content .subscribe-bottom  label{
	margin: 0;
}
#boxes .box-content .subscribe-bottom #newsletter_popup_dont_show_again{
	display: inline-block;
	margin: 0;
}
#boxes  #frm_subscribe #notification{
	color: #f00;
}
#boxes  #frm_subscribe #notification .success{
	color: #67D7BB;
}
#popup2{
    background: url(/catalog/view/theme/subu/image/icon/icon-close.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center right;
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 1 !important;
	cursor: pointer;
}
/* newsllter */
body:not(.common-home) .newletter-subscribe-container{
	margin-top: 50px;
}
body:not(.common-home) .product-tabs-container-slider ~ .newletter-subscribe-container {
	margin-top: 0;
}
.newletter-subscribe-container{
	background: #f5f5f2;
	background: -moz-linear-gradient(left,  #f5f5f2 50%, #f5f5f2 50%, #f9f9f7 50%);
	background: -webkit-linear-gradient(left,  #f5f5f2 50%,#f5f5f2 50%,#f9f9f7 50%);
	background: linear-gradient(to right,  #f5f5f2 50%,#f5f5f2 50%,#f9f9f7 50%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f2', endColorstr='#f9f9f7',GradientType=1 );
	padding: 60px 0;
	min-height: 300px;
}
#dialog-normal .newletter-title h3{
	color: #454648;
    font-family: Oswald;
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
}
#dialog-normal .newleter-content label{
	font-size: 12px;
	color: #999999;
}
#dialog-normal .newletter-title label{
	font-family: Raleway;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 163%;
    color: #333333;
    opacity: 0.7;
	margin-top: 20px;
	max-width: 420px;
}
#dialog-normal .newletter-title{
	vertical-align: middle;
    position: relative;
    display: inline-block;
    padding-left: 40px;
    min-height: 60px;
    width: 50%;
}
#dialog-normal #notification-normal .newletter-title {
	width: 100%;
}
#dialog-normal .newleter-content{
    float: right;
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
#frm_subscribe-normal {
    padding-left: 80px;
}

#subscribe_email-normal{
	background: transparent !important;
    border: none !important;
    width: 100%;
    max-width: 370px;
    display: block;
    color: #333333;
    font-family: Raleway;
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 50px;
    outline: none !important;
    padding: 10px 0;
    margin-top: 20px;
}
#subscribe_email-normal::-webkit-input-placeholder{
  color: #bababa;
}
#subscribe_email-normal::-moz-placeholder{
  color: #bababa;
}
#subscribe_email-normal:-ms-input-placeholder{
  color: #bababa;
}
#subscribe_email-normal:-moz-placeholder {
  color: #bababa;
}
#subscribe-normal .btn:hover{
	background: #444 !important;
	color: #fff !important;
	border-color: #444 !important;
}
#subscribe-normal .btn{
	border-radius: 0;
	border-color: #fff;
    background: #fff !important;
    padding: 0 45px;
    height: 50px;
    color: #333333 !important;
    position: relative;
    z-index: 1;
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    width: 280px;
    justify-content: center;
    text-transform: none;
	-webkit-box-shadow: 0 7px 40px 0px rgba(50, 50, 50, 0.15);
    -moz-box-shadow: 0 7px 40px 0px rgba(50, 50, 50, 0.15);
    box-shadow: 0 7px 40px 0px rgba(50, 50, 50, 0.15);
}
#subscribe-normal .btn:hover{
	background: #70e114;
}
/*#notification-normal{
	position: absolute;
	bottom: -25px;
}*/
#notification-normal div{
	/* color: #FFF; */
}
#notification-normal div.warning {
	text-align: left;
    color: #FD5F55;
    font-size: 12px;
    /*position: absolute;*/
    margin-top: 1px;
    margin-bottom: 5px;
}
/* search category */
.search-type-wrap {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 40px;
    display: none;
}
.search-type-wrap span {
    display: inline-block;
    cursor: pointer;
    padding: 0 32px;
}
.search-type-wrap span:first-child {
    border-right: 1px solid #B5B5B5;
}
#search-by-category.active {
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 1001;
    background: #1C1B1B80;
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
#search-by-category .search-container {
    width: 100%;
    height: 70px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: start;
}
#search-by-category .search-container .search-inner-icon {
    padding: 0 6px 2px 50px;
}
.detail .product-name {
    text-align: start;
}
#search-by-category .search-container .categories-container{
    display: none;
}
#search-by-category .search-type {
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #B5B5B5;
}
#search-by-category .search-type.active {
    color: #333333
}
#search-by-category .search-container #text-search,
#search-by-category .search-container #text-search + input {
    width: 100%;
    box-shadow: none;
    color: var(--custom-black);
    border: none;
    background: transparent !important;
    font-family: var(--primary-font-family);
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 2.4px;
    text-align: left;
    padding-right: 50px;
    text-transform: uppercase;
}
#search-by-category #sp-btn-search{
    background: none;
    padding-bottom: 40px;
}
#search-by-category .search-container .categories-container .hover-cate p{
    margin:0;
    color: #7b7b7b;
    padding:0 25px 0 20px;
    cursor: pointer;
    overflow: hidden;
    text-transform: capitalize;
    font-size: 14px;
	border-right: 1px solid #e1e1e1;
	font-weight: 700;
}
#search-by-category .search-container .categories-container .hover-cate p i{
    position: absolute;
    right: 20px;
	line-height: 20px;
	color: #7b7b7b;
}
#search-by-category .search-container .categories-container .hover-cate .cate-items{
    z-index: 9999 !important;
    position: absolute;
    display: none;
    background: #FFF;
    max-height: 300px;
    overflow: auto;
    margin-top: 0px;
    border: 1px solid #ddd!important;
    padding: 5px;
    width:100%;
    cursor: pointer;
	top: 100%;
}
.cate-items li {
    text-transform: uppercase;
    color:#333;
    font-size: 10px;
    list-style: none;
}
.cate-items li:hover{
    color:#408ed4
}
.cate-items li.f1 {
    padding-left: 5px;
}
.cate-items li.f2 {
    padding-left: 15px;
}

.close-search {
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
    width: 15px;
    height: 15px;
    margin: auto;
    padding: 0;
    border: none;
    background-color: transparent;
    background-image: url('/catalog/view/theme/subu/image/icon/icon-close.svg');
    background-repeat: no-repeat;
    background-size: contain;
}
#search-by-category {
    display: none;
}
.ajax-result-item .product-info .detail .price-box .old-price{
	text-decoration: line-through;
	color: #acacac;
	font-weight: 400;
}
.ajax-result-item .product-info .detail .price-box p{
	display: inline-block;
}
.ajax-result-item .product-info .detail .price-box{
	font-weight: 700;
	margin: 0 0 10px 0;
}
.ajax-result-item .product-info .detail .product-name a {
	color: var(--custom-black);
    font-size: 14px;
    width: 100%;
    font-family: var(--secondary-font-family);
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    text-transform: lowercase;
}
.ajax-result-item .product-info .detail .product-name a:hover {
    font-weight: 600;
}
.ajax-result-item .product-info .detail .product-name {
    font-weight: normal;
    font-size: 12px;
    line-height: 100%;
    text-align: left;
    color: var(--custom-black);
    height: initial;
    margin-bottom: 1px;
}
#search-by-category .search-body {
    display: flex;
    width: 100%;
    height: auto;
    max-height: 65%;
    background-color: white;
}
#search-by-category .search-body.empty {
    height: 150px;
    justify-content: center;
    align-items: center;
}
.search-body.empty .empty-search-result {
    font-family: var(--secondary-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
}
.search-body .search-ajax {
    width: 20%;
    max-width: 20%;
    margin-right: auto;
    background-color: white;
}
.search-body .search-ajax-previews {
    width: 80%;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.ajax-previews-header {
    text-align: center;
    font-family: var(--primary-font-family);
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}
.ajax-previews-body {
    display: flex;
    column-gap: 5%;
    justify-content: center;
}
.ajax-previews-footer {
    display: flex;
    justify-content: center;
}
.ajax-previews-product .product-main-image {
    width: 300px;
    aspect-ratio: 1;
    margin-bottom: 20px;
}
.ajax-previews-product .images-container {
    display: flex;
    justify-content: center;
}
.ajax-previews-body .product-title {
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 5px;
}
.ajax-previews-body .price-container {
    position: relative;
}

.ajax-previews-body .product-price-special,
.ajax-previews-body .product-price,
.ajax-previews-body .product-price-old
{
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 2.4px;
    text-align: center;
    color: var(--custom-gray);
}
.ajax-previews-body .product-price-special {
    color: red;
}
.ajax-previews-body .product-price-old {
    position: absolute;
    left: 0;
    text-decoration: line-through;
}

.ajax-previews-product {
    width: 20%;
    max-height: 400px;
}

@media (max-width: 1440px) {
    #search-by-category .search-body {
        max-height: 55%;
    }

    .search-body .search-ajax {
        width: 30%;
        max-width: 30%;
    }
    .search-body .search-ajax-previews {
        width: 70%;
        max-width: 70%;
    }

    .ajax-previews-product {
        width: 25%;
    }

    .ajax-previews-body .product-price-old {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
    }
    .ajax-previews-body .product-price-special {
        padding-top: 20px;
    }
    #search-by-category #btn-search-category {
        margin-top: 10px;
    }
}


#search-by-category .search-ajax li{
    list-style: none;
    width: 100%;
}
.ajax-loader-container {
    display: none !important;
}
#search-by-category .search-ajax .ajax-result-container.rh .ajax-result-list > li:first-child:before {
    content: 'Возможно вы ищете';
    text-align: left;
    display: block !important;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    margin-bottom: 15px;
}
#search-by-category .search-ajax .ajax-result-container .ajax-result-list > li:first-child:before {
    content: 'Популярные запросы';
    text-align: center;
    display: block !important;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    margin-bottom: 15px;
}
html[lang="ua"] #search-by-category .search-ajax .ajax-result-container .ajax-result-list > li:first-child:before {
	content: 'Пропозиція';
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-family: var(--primary-font-family);
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
}
#search-by-category .search-ajax .ajax-result-container {
  text-align: center;
  display: block !important;
}
#search-by-category .search-ajax .ajax-result-container .ajax-result-msg{
  padding: 20px;
  margin: 0;
  color: #646464;
}
#search-by-category .search-ajax .ajax-result-container .ajax-result-list {
    display: block;
    overflow: auto;
    padding: 10px;
    padding-left: 35px;
}
#btn-search-category,
#btn-search-category + button {
    padding: 0 45px;
    height: 50px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    font-size: var(--common-font-size);
    line-height: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    width: 280px;
    justify-content: center;
    -webkit-box-shadow: 0 7px 40px 0px rgba(50, 50, 50, 0.15);
    -moz-box-shadow: 0 7px 40px 0px rgba(50, 50, 50, 0.15);
    box-shadow: 0 7px 40px 0px rgba(50, 50, 50, 0.15);
    letter-spacing: 2.4px;
    text-transform: uppercase;
    background-color: var(--custom-black);
    border: none;
}
#btn-search-category i{
    text-align: center;
    font-size: 14px;
    color: #fff;
    line-height: 37px;
}
@media (max-width: 991px) {
    #search-by-category .search-body {
        flex-direction: column;
        height: auto;
        max-height: 70%;
    }

    #search-by-category .search-body > * {
        width: 100%;
        max-width: unset;
    }
    .ajax-previews-product {
        width: 40%;
    }
    .ajax-previews-product .product-main-image {
        max-width: 80%;
    }
    #search-by-category .ajax-result-list .ajax-result-item:nth-child(n+5) {
        display: none;
    }

    #search-by-category #btn-search-category {
        margin-bottom: 10px;
        margin-top: 0;
        width: 240px;
        height: 45px;
    }

    #search-by-category .close-search {
        top: 20px;
        right: 15px;
    }
    .ajax-previews-body .product-title {
        font-size: 11px;
        letter-spacing: 2px;
        line-height: 15px;
    }
    .ajax-previews-body .price-container p {
        font-size: 11px;
        line-height: 15px;
    }
    .ajax-previews-body .product-price-special {
        padding-top: 15px;
    }
    #search-by-category .search-container .search-inner-icon {
        padding: 0 6px 2px 15px;
    }
    #search-by-category .search-container #text-search {
        font-size: 14px;
        padding-right: 40px;
        margin-top: 5px;
    }
    .search-body .search-ajax-previews {
        row-gap: 5px;
    }
    .ajax-previews-header
    {
        text-align: left;
        padding-left: 20px;
    }

    .ajax-result-item .product-info .detail .product-name {
        margin-top: 5px;
        text-align: left;
    }
    #search-by-category .search-ajax .ajax-result-container .ajax-result-list {
        padding-left: 20px;
    }

    html[lang="ua"] #search-by-category .search-ajax .ajax-result-container .ajax-result-list > li:first-child:before {
        margin-bottom: 0;
    }

    #search-by-category .search-ajax li.ajax-result-item {
        padding-left: 0;
    }

    #search-by-category .search-container {
        height: 50px;
    }
}
/* blog */
#blog_home{
	margin-bottom: 60px;
}
#blog_home .owl-carousel .owl-item {
    padding: 0 15px;
}
#blog_home .aritcles-content .author-name{
	color: #408ed4;
	text-transform: capitalize;
}
#blog_home .aritcles-content .articles-date{
	color: #959595;
	font-size: 14px;
	margin: 20px 0;
}
#blog_home .aritcles-content .articles-intro{
	line-height: 24px;
	margin-bottom: 30px;
	display: none;
}
#blog_home .aritcles-content .readmore a:hover{
	color: #408ed4;
}
#blog_home .aritcles-content .readmore a{
	color: #a4a4a4;
	font-size: 14px;
	text-transform: capitalize
}
#blog_home .aritcles-content .articles-name{
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
}
#blog_home .link-all i{
	font-size: 10px;
	margin-left: 3px;
}
#blog_home .link-all:hover i,
#blog_home .link-all:hover{
	color: #408ed4;
}
#blog_home .link-all{
	float: right;
	margin-top: -40px;
	font-size: 12px;
	color: #969696;
	text-transform: capitalize;
}
#blog_home .articles-inner .articles-image{
	float: left;
	width: 33.333333%;
}
#blog_home .articles-inner{
	margin-top: 30px;
	float: left;
	width: 100%;
}
#blog_home .articles-inner .articles-image img{
	border-radius: 5px;
}
#blog_home .aritcles-content{
	padding: 0 0 0 25px;
	float: left;
	width: 66.666667%;
}
#top{
	border-bottom: 1px solid #F4F4F4;
	position: fixed;
    top: 0;
    left: 0;
    z-index: 1049;
    width: 100%;
}

.section-content {
    margin-top: 60px;
    margin-bottom: 60px;
}
.section-content .section-title {
    margin-bottom: 10px;
}
.section-content .section-title h3 {
    margin: 0;
    font-size: 32px;
    line-height: 118.4%;
}
@media (max-width: 991px) {
    .section-content {
        margin: 30px auto;
        padding: 0 30px;
    }
    .section-content .section-title {
        margin-bottom: 15px;
    }
    .section-content .section-title h3 {
        font-size: 35px;
    }
}
@media (max-width: 767px) {
    .section-content {
        padding: 0 20px;
    }
    .section-content .section-title h3 {
        font-size: 30px;
    }
}

/* Header banner */
#header-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    font-size: 10px;
}
#header-banner p {
    font-size: 3em;
    font-size: 1.8em;
    letter-spacing: normal;
    color: inherit;
    line-height: 1;
    margin: .75em 0;
}
#header-banner p a {
    color: #ffffff;
    text-decoration: underline;
}
#header-banner p a:hover {
    text-decoration: none;
}
@media (max-width: 767px) {
    #header-banner p {
        font-size: 1.5em;
    }
}
@media (max-width: 575px) {
    #header-banner p {
        line-height: 1.25;
    }
}
#top > .container {
	justify-content: flex-start;
    flex-direction:row;
	align-items: center;
	position: relative;
    padding-left: 2vw;
    padding-right: 2vw;
    transform: translate(0, 0);
    width: auto !important;
    background-color: #ffffff;
    height: 70px;
}
#top > .container > * {
    display: flex;
    flex-shrink: 0;
}
#top > .container > .divider {
    display: flex;
    flex: 1;
}

#ma-mobilemenu {
    display: none;
}

#top > .container:before {
    display: none;
}
#top > .container:after {
    display: none;
}
#top > .container > ul > li{
	display: inline-block;
}
#top > .container > ul{
	margin: 0;
}
#top > .container > ul.top-links {
	padding: 15px 0;
}
#top > .container > ul:first-child > li{
	padding: 0;
}
#top > .container > ul:last-child .text-ex{
	padding: 12px 0px;
	margin-right: 5px;
	font-size: 13px;
}
#top > .container > ul:last-child  .btn-link{
	padding: 0 12px;
    margin: 0;
	border: none;
	box-shadow: none;
	color: #333333;
	font-size: 13px;
	line-height: 20px;
	opacity: 0.5;
}
#top > .container > ul:last-child  .btn-link.item-selected {
	opacity: 1;
	text-decoration: underline;
}
#top > .container > ul:last-child > li{
	position: relative;
}

#top > .container > ul:last-child > li:last-child::after{
	left: auto;
	right: 0;
}
#top > .container > ul:last-child .dropdown-menu > ul,
#top > .container > ul:last-child .dropdown-menu{
	border-radius: 0;
	border: none;
	right: 0;
	left: auto;
	padding: 0;
	margin: 0;
	text-align: center;
}
#top > .container > ul:last-child .dropdown-menu a,
#top > .container > ul:last-child .dropdown-menu button{
	padding: 5px 0;
	display: block;
}
#top > .container > ul:last-child .dropdown-menu a:hover,
#top > .container > ul:last-child .dropdown-menu button:hover,
#top > .container > ul:last-child .dropdown-menu .item-selected{
	color: #408ed4;
	text-decoration: none;
}
#top .menu-top span {
    color: black;
    font-weight: 600;
    font-size: var(--common-font-size);
    padding-right: 38px;
    text-transform: none;
}
#top .menu-top .popup span:hover {
    color: #4584c0 !important;
}
#top .menu-top .itemMenuName span {
    font-family: Raleway;
    font-weight: 600;
}
#top .menu-top .itemSubMenu span {
    font-size: 15px;
    font-weight: normal;
}
#top .menu-top .header-brands a {
    font-weight: 500;
    color: black;
}
#top #ma-mobilemenu .itemMenuName span {
    font-weight: normal;
}
#top .menu-top #pt_menu_link14 .parentMenu span,
#top .menu-top #pt_menu_link14 .block1 span {
    color: #F32B2B;
}

.top-icons {
    width: 100px;
    display: inline-flex !important;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}
#top > .container > #logo-mobile {
    display: none;
}
@media (max-width: 991px) {
    #top > .container {
        justify-content: space-between;
    }
    #top > .container > .divider {
        display: none;
    }
    #top > .container > #logo-top {
        display: none;
    }
    #top > .container > #logo-mobile {
        margin-left: 45px;
        display: flex;
    }
}
.top-icons > a, .top-icons > div {
	margin-left: 0;
}
.language-selector-container .dropdown.bootstrap-select.bs3 {
    width: auto;
}
.language-selector-container .btn.dropdown-toggle {
	outline: none !important;
	margin: 0;
    padding: 0;
    padding-right: 20px;
    font-family: 'Raleway';
    font-size: 18px;
    line-height: 1.25;
}
.language-selector-container .btn.dropdown-toggle .filter-option {
    padding: 0;
}
.language-selector-container .bs-caret .caret {
    right: 6px;
}

#form-language > .btn-group {
	display: flex;
    align-items: center;
}

.logo-top, .logo-top-mobile {
    padding-right: 38px;
    text-align: center;
    display: block;
}
.logo-top img, .logo-top-mobile img {
    display: inline;
    height: 30px;
    width: 107px;
}

.logo-top-mobile {
    display: none;
}
.logo-phone a {
	color: #333333;
}
#logo{
	padding: 35px 0;
}
#logo a{
	display: inline-block;
}
#cart{
	display: inline-block;
}
#cart-total{
	font-weight: 700;
	color: #282828;
	padding-left: 15px;
	font-size: 16px;
	text-transform: capitalize;
	float: left;
	margin-top: 5px;
}
#cart-total .total-price{
	font-weight: 400;
	font-size: 14px;
	display: block;
	text-align: left;
}
#cart > button{
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	width: auto;
	float: right;
}
#cart > button > i{
	font-size: 0px;
	color: #232323;
	background: #408ed4 url('../image/bg-btn-cart.png') center no-repeat;
	width: 49px;
	height: 49px;
	border-radius: 100%;
	display: inline-block;
	float: left;
}
#cart .dropdown-menu .text-empty{
	margin: 0;
	padding: 10px 0;
}
#cart .dropdown-menu,
#top-wishlist .dropdown-menu {
	border: none;
	border-radius: 5px;
	min-width: 300px;
	margin: 0;
	padding: 10px;
	top: 100%;
}
#cart-total .item-cart{
	position: absolute;
	display: block;
	width: 24px;
	height: 24px;
	background: #408ed4;
	border: 2px solid #fff;
	color: #fff;
	top: -8px;
	left: 32px;
	border-radius: 100%;
	text-align: center;
	font-size: 12px;
	line-height: 20px;
	font-weight: 400 !important;
}
#cart .dropdown-menu {
    padding: 25px 20px 0 20px;
}
#cart .cart-empty{
	padding-bottom: 25px;
}
#cart .dropdown-menu > li:first-child .table > tbody > tr > td{
	padding-top: 20px;
}
#cart .table > tbody > tr > td{
	border: none;
	padding: 0;
}
#cart .cart-close button{
	background: none;
	color: #000000;
	border: none;
	font-size: 14px;
}
#cart .cart-quantity{
	color: #bfbfbf;
	font-size: 12px;
	margin: 8px 0 !important;
}
#cart .cart-name:hover{
	color: #408ed4;
}
#cart .cart-name{
	color: #408ed4;
	text-transform: capitalize;
	font-size: 14px;
	line-height: 18px;
	font-weight: 700;
}
#cart .cart-price{
	font-size: 14px;
	color: #e12e2e;
	font-weight: 900;
}
#cart .cart-button{
	background: #408ed4;
	margin: 0 -20px !important;
	padding: 40px 20px;
	border-radius: 0 0 5px 5px
}
#cart p.cart-button a:last-child{
	margin: 0;
}
#cart p.cart-button a{
	border: none;
	background: #fff;
	color: #434343;
	height: 40px;
	line-height: 40px;
	text-align: center;
	padding: 0 20px;
	display: inline-block;
	text-transform: uppercase;
	font-size: 12px;
	margin-right: 15px;
	border-radius: 5px;
	font-weight: 900;
}
#cart p.cart-button a:hover{
	color: #fff;
	background: #373737;
}
#cart p.cart-button a:hover i{
	color: #fff;
}
#cart p.cart-button a i{
	padding-left: 5px;
	font-size: 10px;
	color: #434343;
	display: none;
}
#cart .dropdown-menu .info-item{
	padding-left: 10px;
}
#cart .dropdown-menu .has-scroll{
	max-height: 300px;
	overflow: auto
}
#cart .dropdown-menu tr td strong{
	color: #000;
}
#cart .dropdown-menu tr td:first-child{
	font-size: 12px;
	color: #232323;
	text-transform: uppercase;
	font-weight: 700;
}
#cart .dropdown-menu tr td:last-child{
	font-size: 14px;
	color: #e12e2e;
	font-weight: 900;
}
.cart-container {
    padding: 40px 15px 0 0;
}
.unvisible{
	display: none;
}
.common-home .main-menu{
	margin-bottom: 30px;
}
.main-menu{
	background: #408ed4;
}
.fix-header{
	top: 0;
	position: fixed !important;
	background: rgba(64, 142, 212, .95);
	width: 100%;
	left: 0;
	z-index: 9998;
}
.fix-header.fix-header-act{
	background: rgba(64, 142, 212, 1);
}
/* cms block */
.col-img{
	text-align: center;
}
.banner-sidebar{
	margin-bottom: 50px;
}
.tag-static{
	/* margin-top: 30px; */
}
.tag-static li a:first-child{
	padding: 0;
	font-weight: 700;
	border: none;
}
.tag-static li a:last-child{
	border: none;
}
.tag-static li a{
	padding: 0 10px;
	border-right: 1px solid #cccccc;
	line-height: 24px;
	text-transform: capitalize;
}
.tag-static ul{
	padding: 0;
	margin: 0;
}
.tag-static li{
	display: inline-block;
}
.social-footer .list-unstyled{
	margin: 25px 0 0;
}
.social-footer .list-unstyled li:last-child i{
	margin: 0;
}
.social-footer .list-unstyled li i:hover{
	background: #434343 !important
}
.social-footer .list-unstyled li i{
	color: #fff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #448ccb;
	border-radius: 3px;
	margin-right: 10px;
	margin-bottom: 10px;
}
.social-footer .list-unstyled li i.fa-twitter{
	background: #00bff3;
}
.social-footer .list-unstyled li i.fa-rss{
	background: #e3c210;
}
.social-footer .list-unstyled li i.fa-google-plus{
	background: #ed1c24;
}
.social-footer .list-unstyled li i.fa-linkedin{
	background: #7da7d9;
}
.social-footer .list-unstyled li{
	display: inline-block;
	text-align: center;
}
.about-static  .short-aboutus{
	margin: 25px 0 20px;
	line-height: 24px;
}
.info-contactus li span{
	font-weight: 700;
	text-transform: capitalize;
}
.info-contactus li{
	line-height: 24px;
}
.cmsblock .col-img  img{
	border-radius: 5px;
}
.cmsblock .col-img:hover img{
	opacity: .8;
}
.banner-2 .col-img {
	margin-bottom: 60px;
}
.banner-1{
	margin-bottom: 60px;
}
.static-policy{
	float: left;
	width: 100%;
	background: #f3f3f3;
	padding: 23px 0;
	border-radius: 3px;
	border: 1px solid #ebebeb;
	margin-bottom: 55px;
}
.static-policy .col-img{

}
.static-policy .text-content{
	padding: 0px 0 0 55px;
}
.static-policy .text-content p{
	text-transform: capitalize;
	margin: 0;
	font-size: 14px;
	line-height: 1;
	color: #959595
}
.static-policy .text-content h2{
	color: #333333;
	font-size: 16px;
	line-height: 34px;
	margin: 0;
	font-weight: 700;
	text-transform: capitalize;
}
.static-policy .col:not(:last-child)::after{
	content: "";
	background: rgba(0,0,0,0.1);
	background: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.1)), color-stop(100%, rgba(0,0,0,0)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
	width: 1px;
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 0;
}
.static-policy .col:not(:last-child)::before{
	content: "";
	background: rgba(0,0,0,0);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0.1)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
	width: 1px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 50%;
}
.static-policy .col-img{
	position: relative;
}
.static-policy .col:hover .text-content h2{
	color: #408ed4;
}
.static-policy .col:hover .col-img .hover{
	opacity: 1;
}
.static-policy .col-img .hover{
	opacity: 0;
}
.static-policy .col-img img{
	position: absolute;
	left: 0;
	top: 0;
}
/* owl carousel */
.owl-carousel .owl-item{
	padding: 15px;
}
.featured-cat-thumb .owl-pagination{
	margin-top: 75px;
}
.owl-pagination{
	text-align: center;
}
.owl-pagination .owl-page{
	display: inline-block;
	line-height: 1;
}
.owl-pagination .owl-page:hover span,
.owl-pagination .owl-page.active span{
	background: #408ed4;
}
.owl-pagination .owl-page.active span{
	width: 30px;
	border-radius: 5px
}
.owl-pagination .owl-page span{
	width: 8px;
	height: 8px;
	background: #d7d7d7;
	border-radius: 100%;
	display: inline-block;
	margin: 0 8px;
}
.owl-buttons{
	position: absolute;
	top: 0;
	right: 0;
	margin-top: -37px;
	/*background: #fff;*/
	width: 50px;
	text-align: right;
}
.owl-buttons > div.owl-prev{
	margin-right: 12px;
}
.owl-buttons > div{
	display: inline-block;
}
.owl-buttons > div i:hover{
	color: #408ed4
}
.owl-buttons > div i{
	font-size: 24px;
	color: #a8a8a8;
	line-height: 20px;
}
.owl-style2:hover .owl-buttons > div{
	transform: scale(1);
}
.owl-style2 .owl-buttons{
	position: static;
	width: auto;
	margin: 0;

}
.owl-style2 .owl-buttons > div:hover i{
	color: #408ed4;
}
.owl-style2 .owl-buttons > div i{
	font-size: 14px;
	color: #7e7e7e;
	line-height: 28px;
}
.owl-style2 .owl-buttons > div:hover{
	border-color: #408ed4;
}
.owl-style2 .owl-buttons > div{
	position: absolute;
	border: 1px solid #ebebeb;
	width: 30px;
	height: 30px;
	background: #fff;
	text-align: center;
	border-radius: 100%;
	top: 50%;
	margin-top: -15px;
	transform: scale(0);
}
.owl-style2 .owl-buttons > div.owl-next{
	right: 0;
}
.owl-style2 .owl-buttons > div.owl-prev{
	left: 0;
}

@media (min-width: 991px) {
    #content.page-manufacturer,
    #content.page-product-selection
    {
        min-width: 40vw;
        max-width: 990px;
    }
}
.page-products-list {
    text-align: center;
}

.dropdown-menu > li > a ,
.product-name,
.toolbar .filter-option,
.page-products-list .mobile-sort-list,
.page-products-list .filter-mobile-button
{
	font-weight: 600;
	font-size: var(--common-font-size);
	color: var(--custom-gray);
    text-transform: uppercase;
}
.page-manufacturer .mobile-sort-list, .toolbar .filter-mobile-button
.page-product-selection .mobile-sort-list, .toolbar .filter-mobile-button
{
    text-align: center;
}
.product-name {
    line-height: 20px;
    width: 100%;
}

.page-manufacturer .panel-default,
.page-product-selection .panel-default
{
    text-align: start;
}

.page-products-list .filter-mobile-buttons {
    text-align: center;
}

.page-manufacturer #column-left,
.page-product-selection #column-left
{
    width: 300px;
}
.product-name a {
	color: #000000;
}

.price {
    white-space: nowrap;
	font-weight: 600;
	line-height: 20px;
    letter-spacing: 2.4px;
    color: var(--custom-gray);
}
.price-old {
	text-decoration: line-through;
	margin-right: 20px;
    float: left;
}
.custom-products .product-layout .sale-label {
    z-index: 2;
    padding: 2px 5px 0 5px;
    font-size: 14px;
    position: absolute;
    left: 0px;
    top: -170px;
    margin-top: -3px;
}
@media(max-width: 991px) {
    .custom-products .product-layout .sale-label {
        font-size: 12px;
    }
    .price {
        letter-spacing: 0.5px;
    }
    .price-old {
        margin-right: 0;
    }
    .price-new {
        margin-left: -25px;
    }
    .custom-products .product-layout .sale-label {
        top: -120px;
    }

}

.price-new {
    color: #dc2626;
}
.sale-label {
    display: inline-block;
    padding: 7px 10px 5px;
    background-color: #dc2626;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}
.novelty-label {
    background-color: green;
}
.ratings .rating-box div[class^="rating"]{
	background-repeat: no-repeat;
	background-position: center left;
	font-size: 0;
	height: 11px;
	margin: 13px 0;
}
.ratings .rating-box .rating0{
	background-image: url("../image/rating0.png")
}
.ratings .rating-box .rating1{
	background-image: url("../image/rating1.png")
}
.ratings .rating-box .rating2{
	background-image: url("../image/rating2.png")
}
.ratings .rating-box .rating3{
	background-image: url("../image/rating3.png")
}
.ratings .rating-box .rating4{
	background-image: url("../image/rating4.png")
}
.ratings .rating-box .rating5{
	background-image: url("../image/rating5.png")
}
.image > a{
	display: block;
}
.image > a,
.image{
	position: relative;
}
.img-r{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
}
.product-layout:hover .img-r{
	opacity: 1;
	z-index: 0;
}
.actions-link2 .btn-wishlist,
.actions-link2 .btn-compare{
	display: none;
}
.actions-link{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
    z-index: -1;
    text-align: right;
}
.product-thumb:hover .actions-link{
	z-index: 2;
}
.btn-compare span,
.btn-wishlist span{
	display: none;
}
/*.btn-wishlist,
.btn-compare,
.btn-quickview{
	display: inline-block;
	width: 36px;
	height: 36px;
	color: #fff;
	font-size: 16px;
	text-align: center;
	line-height: 36px;
	border-radius: 100%;
	background: #555555
}
.btn-wishlist:hover,
.btn-compare:hover,
.btn-quickview:hover{
	background: #408ed4;
	color: #fff;
}*/
.product-thumb .quickviewbutton {
	display: none;
	position: absolute;
    font-size: 3em;
    z-index: 2;
    right: 0;
    bottom: 0;
}
.product-thumb .actions-link{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    text-align: right;
}
.product-thumb:hover .quickviewbutton {
    transition: transform .2s ease-in-out;
	display: block;
    position: absolute;
}
.product-thumb .quickviewbutton:hover {
    transform: rotate(90deg);

}
@media (max-width: 991px) {
    .product-thumb .actions-link{
        z-index: 1;
    }
    .product-thumb .quickviewbutton {
        display: block;

    }
}


/*top icons*/
.top-wishlist-link {
	position: relative;
}
.top-wishlist-link img {
    margin: 0 2px;
    height: 16px;
}
.top-wishlist-link:hover img {
    margin: 0;
	height: 20px;
}

.top-search-link {
	position: relative;
}
.top-search-link img {
    margin: 0 2px;
    height: 17px;
}
.top-search-link:hover img {
    margin: 0;
	height: 21px;
}

.section-newsletter-subscribe-container {
    display: none
}
.top-acc-link {
	position: relative;
}
.top-acc-link img {
    margin: 0 2px;
    height: 20px;
}
.top-acc-link:hover img {
    margin: 0;
	height: 21px;
}

.top-cart-link,
.top-acc-link {
	position: relative;
	line-height: 40px;
    display: inline-block;
}
.top-cart-link img {
    margin: 0 2px;
    height: 20px;
}
.top-cart-link:hover img {
    margin: 0;
	height: 24px;
}

.top-phone-link {
	position: relative;
}
.top-phone-link img {
    margin: 0 2px;
    height: 17px;
}
.top-phone-link:hover img,
.top-phone-link.active img {
    margin: 0;
	height: 21px;
}
#top-phone {
	position: relative;
}
#top-phone-popup {
	transition: 0.3s all;
	position: absolute;
	right: -6px;
	top: 35px;
	z-index: 3001;
	display: none;
	padding: 15px;
    background-color: #ffffff;
	box-shadow: 0 0 5px #333333;
	border-radius: 3px;
}
#top-phone-popup:after {
	content: '';
	display: block;
	position: absolute;
	top: -6px;
	right: 10px;
	width: 0;
	height: 0;
	transform: rotate(45deg);
	background-color: #ffffff;
	box-shadow: -2px -2px 2px 0 rgba(51, 51, 51, 0.4);
	border: 6px solid;
	border-color: transparent transparent #ffffff #ffffff;
}
#top-phone-popup.hover,
#top-phone-popup.active {
	display: block;
}

.btn-quickview span{
	font-size: 0;
}
.qv-button-container{
	display: inline-block;
}
.btn-quickview{
	border: none;
	padding: 0;
}
.label-product{
	display: none;
	position: absolute;
	width: 36px;
	height: 36px;
	background: #408ed4;
	border-radius: 100%;
	z-index: 1;
	color: #fff;
	text-transform: capitalize;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	line-height: 36px;
	top: 0px;
	right: 0px;
}
.label-product span::before{
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 18px 0 0 18px;
	border-color: transparent transparent transparent #408ed4;
	left: 0;
	bottom: 0
}
.label-product.l-sale{
	background: #e12e2e;
}
.label-product.l-sale span::before{
	border-color: transparent transparent transparent #e12e2e;
}
.label-product span{
	position: relative;
	width: 36px;
	height: 36px;
	display: block;
}
.layout1 .product-inner{
	padding-top: 10px;
}
.layout1{
	padding: 10px 20px;
	box-sizing: border-box;
	background: #fff;
}
.btn-cart span{
	display: none;
}
.btn-cart{
	width: 40px;
	height: 40px;
	background: #f3f3f3;
	border-radius: 100%;
	font-size: 18px;
	display: inline-block;
	text-align: center;
	line-height: 40px;
	color: #c2c2c2
}
.btn-cart:hover{
	background: #408ed4;
	color: #fff;
}
.layout1 .product-intro{
	position: absolute;
	bottom: 0px;
	right: 0px;
}
.layout1 .product-inner{
	position: relative;
}
.tags-product{
	display: none;
}
.layout2{
	width: 100%;
	float: left
}
.layout2 .product-inner{
	width: 70%;
	float: left;
	padding-left: 10px;
}
.layout2 .image{
	width: 30%;
	float: left;
}
.module-title h2{
	color: #333333;
	font-size: 18px;
	text-transform: capitalize;
	font-weight: 900;
	margin: 0;
	position: relative;
	/*background: #fff;*/
	display: inline-block;
	padding-right: 20px;
}
.module-title{
	position: relative;
	margin: 0 0 15px 0;
}
/*.module-title::before{
	content: "";
	position: absolute;
	background: #ebebeb;
	height: 1px;
	top: 50%;
	left: 0;
	right: 0px;
}*/
/* tabs products */
.product-tabs-container-slider{
	padding-bottom: 100px;
}
.product-tabs-container-slider .owl-buttons{
	right: 15px;
	margin-top: -28px;
}
/* countdown product */
.occountdown_module .triangle-lable::before{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 5px 0;
	border-color: transparent #871c1c transparent transparent;
	top: 98px;
	left: -6px;
}
.occountdown_module .triangle-lable::after{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 5px 5px;
	border-color: transparent transparent #871c1c transparent;
	left: 98px;
	top: -6px;
}
.occountdown_module::before{
	content: "";
	position: absolute;
	z-index: 2;
	top: -6px;
	left: -6px;
	width: 0;
    height: 0;
    border-right: 55px solid transparent;
    border-top: 55px solid #e12e2e;
    border-left: 55px solid #e12e2e;
    border-bottom: 55px solid transparent;
    border-top-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 00px;
    border-bottom-right-radius: 0px;
	display: block;
}
.occountdown_module .label-module{
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	display: inline-block;
	position: absolute;
	z-index: 3;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	top: 25px;
	left: -5px;
}
.occountdown_module{
	border: 2px solid #408ed4;
	border-radius: 5px;
	padding: 15px;
	position: relative;
	background: #fff;
	margin-bottom: 60px;
}
.occountdown_module .layout2 .product-inner{
	width: 60%;
	padding-left: 40px;
}
.occountdown_module .layout2 .image{
	width: 40%;
}
.occountdown_module .module-title{
	display: none;
}
.occountdown_module .label-product{
	line-height: 40px;
	width: 40px;
	height: 40px;
}
.occountdown_module .label-product span{
	width: 40px;
	height: 40px;
}
.occountdown_module .ratings .rating-box div[class^="rating"]{
	margin: 25px 0;
}
.occountdown_module .price{
	margin: 0 0 20px 0;
}
.occountdown_module .product-name{
	font-size: 16px;
}
.product-des{
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 15px;
}
.text-hurryup{
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 700;
	margin: 0 0 15px 0;
}
.box-timer .countdown-section:last-child .countdown-amount::before{
	display: none;
}
.box-timer .countdown-section .countdown-amount::before{
	content: ":";
	position: absolute;
	color: #2d75b5;
	font-size: 18px;
	font-weight: 700;
	right: -13px;
}
.box-timer .countdown-section .countdown-amount{
	display: block;
	background: #2d75b5;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	height: 43px;
	line-height: 43px;
	padding: 0 15px;
	border-radius: 3px;
	min-width: 60px;
	margin-bottom: 5px;
	position: relative;
}
.box-timer .countdown-section:last-child{
	margin: 0;
}
.box-timer .countdown-section{
	display: inline-block;
	text-align: center;
	font-size: 14px;
	color: #868686;
	text-transform: capitalize;
	margin-right: 20px;
}
/* featured-categorytab */
.featured-categorytab .modules-title{
	display: none;
}
.featured-category .owl-item.last{
	border-right: 1px solid #ebebeb;
	border-radius: 0px 5px 5px 0;
}
.featured-category .owl-item.first{
	border-left: 1px solid #ebebeb;
	border-radius: 5px 0 0 5px;
}
.featured-category .owl-item .tabs-featured span{
	display: block;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	margin-top: 10px;
}
.featured-category .owl-item{
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	text-align: center;
}
.featured-category .owl-item.current-item .imagehover,
.featured-category .owl-item:hover .imagehover{
	-webkit-filter: brightness(0) invert(1); /* Safari 6.0 - 9.0 */
	filter: brightness(0) invert(1);
}
.featured-category .owl-item.current-item ,
.featured-category .owl-item:hover{
	background: #408ed4;
	border-color: #408ed4;
	border-radius: 5px;
	color: #fff;
	cursor: pointer
}
.featured-category .owl-item.current-item  .tabs-featured::after,
.featured-category .owl-item.current-item  .tabs-featured::before,
.featured-category .owl-item:hover .tabs-featured::after,
.featured-category .owl-item:hover .tabs-featured::before{
	display: none;
}
.featured-category .owl-item.active.last .tabs-featured::after,
.featured-category .owl-item.active.last .tabs-featured::before{
	display: none;
}
.featured-category .owl-item.active .tabs-featured{
	position: relative;
}
.featured-category .owl-item.active .tabs-featured::after{
	content: "";
	background: #fff;
	background: -moz-linear-gradient(top, #ededed 0%, #f6f6f6 53%, #ffffff 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #ededed), color-stop(53%, #f6f6f6), color-stop(100%, #ffffff));
	background: -webkit-linear-gradient(top, #ededed 0%, #f6f6f6 53%, #ffffff 100%);
	background: -o-linear-gradient(top, #ededed 0%, #f6f6f6 53%, #ffffff 100%);
	background: -ms-linear-gradient(top, #ededed 0%, #f6f6f6 53%, #ffffff 100%);
	background: linear-gradient(to bottom, #ededed 0%, #f6f6f6 53%, #ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff', GradientType=0 );
	width: 1px;
	position: absolute;
	right: 0;
	top: 50%;
	bottom: 0;
}
.featured-category .owl-item.active .tabs-featured::before{
	content: "";
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffffff), color-stop(47%, #f6f6f6), color-stop(100%, #ededed));
	background: -webkit-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
	background: -o-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
	background: -ms-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
	background: linear-gradient(to bottom, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0 );
	width: 1px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 50%;
}
.featured-category.owl-carousel .owl-item{
	padding: 27px 0;
}
.text_empty{
	padding: 15px;
}
.featured-category .owl-wrapper-outer{
	padding-bottom: 10px;
}
.featured-category .current-item{
	position: relative;
}
.featured-category .current-item::before{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 10px 0 10px;
	border-color: #408ed4 transparent transparent transparent;
	bottom: -7px;
	left: 50%;
	margin-left: -10px;
}
.featured-categorytab{
	margin-bottom: 45px;
}
/* featured-product-module */
.bestproductslider,
.mostviewed-product-slider,
.featured-product-module{
	margin-bottom: 50px;
}
/* banner-ourbrands */
.banner-ourbrands{
	margin-bottom: 50px;
}
.banner-ourbrands .owl-carousel .owl-item:hover img{
	opacity: .9;
}
.banner-ourbrands .owl-carousel .owl-item{
	padding: 0;
}
.banner-ourbrands .module-title{
	display: none;
}
.banner-ourbrands .owl-item.active{
	position: relative;
}
.banner-ourbrands .owl-item.active::after{
	content: "";
	background: rgba(40,40,40,0.76);
	background: -moz-linear-gradient(top, rgba(40,40,40,0.76) 0%, rgba(40,40,40,0.31) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(40,40,40,0.76)), color-stop(100%, rgba(40,40,40,0.31)));
	background: -webkit-linear-gradient(top, rgba(40,40,40,0.76) 0%, rgba(40,40,40,0.31) 100%);
	background: -o-linear-gradient(top, rgba(40,40,40,0.76) 0%, rgba(40,40,40,0.31) 100%);
	background: -ms-linear-gradient(top, rgba(40,40,40,0.76) 0%, rgba(40,40,40,0.31) 100%);
	background: linear-gradient(to bottom, rgba(40,40,40,0.76) 0%, rgba(40,40,40,0.31) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#282828', endColorstr='#282828', GradientType=0 );
	width: 1px;
	position: absolute;
	right: 0;
	top: 50%;
	bottom: 0;
}
.banner-ourbrands .owl-item.active::before{
	content: "";
	background: rgba(40,40,40,0.31);
	background: -moz-linear-gradient(top, rgba(40,40,40,0.31) 0%, rgba(40,40,40,0.76) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(40,40,40,0.31)), color-stop(100%, rgba(40,40,40,0.76)));
	background: -webkit-linear-gradient(top, rgba(40,40,40,0.31) 0%, rgba(40,40,40,0.76) 100%);
	background: -o-linear-gradient(top, rgba(40,40,40,0.31) 0%, rgba(40,40,40,0.76) 100%);
	background: -ms-linear-gradient(top, rgba(40,40,40,0.31) 0%, rgba(40,40,40,0.76) 100%);
	background: linear-gradient(to bottom, rgba(40,40,40,0.31) 0%, rgba(40,40,40,0.76) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#282828', endColorstr='#282828', GradientType=0 );
	width: 1px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 50%;
}
/* testimonial */
.testimonial-container .block-content .thumb li:hover img,
.testimonial-container .block-content .thumb li.active img{
	opacity: 1;
}
.testimonial-container .block-content .thumb li img{
	opacity: .2
}
.testimonial-container .block-content .thumb .active .testimonial-author{
	opacity: 1;
	visibility: visible;
}
.testimonial-container .block-content .thumb .testimonial-author{
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	color: #2d75b5;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
}
.testimonial-container .block-content .testimonial-content{
	font-size: 14px;
	line-height: 30px;
	text-align: center;
}
.testimonial-container .block-content .thumb{
	margin: 10px 0 0;
	padding: 0;
	text-align: center;
}
.testimonial-container .block-content .thumb li{
	display: inline-block;
	position: relative;
	padding-bottom: 50px;
}
.testimonial-container .owl-pagination{
	display: none;
}
.testimonial-container{
    margin-bottom: 60px;
}
/* footer */
#back-top:hover{
	background: #fff;
}
#back-top{
	position: fixed;
    bottom: 30px;
    left: 20px;
    border: 1px solid #454648;
    width: 50px;
    height: 50px;
    background: #454648;
    text-align: center;
    cursor: pointer;
    z-index: 10;
}
#back-top i{
	font-size: 20px;
	line-height: 50px;
	color: #fff;
}
#back-top:hover i{
	color: #454648;
}
html.modal-open {
    overflow: hidden;
}
body.modal-open #back-top {
    display: none !important;
}

footer {
    width: 100%;
    overflow-y: auto;
    background-color: white;
    border-top: 1px solid #cdcdcd;
    padding: 0 20px 0 20px;
}
footer .section-content {
    padding: 80px 0 80px 0;
    margin: auto;
    width: 100%;
    max-width: 1410px;
}
footer .footer-column-logo {
    max-width: 305px;
    min-width: 170px;
}
footer .footer-column-logo img {
    width: 160px;
}
footer .footer-columns-wrapper {
    display: flex;
    justify-content: space-between;
}
footer .footer-column {
    margin-left: 20px;
    margin-right: 20px;
}
footer .footer-column:last-child {
    margin-right: 20px;
}
footer .footer-column .footer-column-title h4 {
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 2.6px;
    text-align: left;
    color: var(--custom-black);
    margin: 0 0 10px 0;
    text-transform: uppercase;
}
footer .footer-column .footer-column-content {
    font-family: NunitoSans;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 1px;
    text-align: left;
    color: var(--custom-gray);
    display: block;
}
footer .footer-column .footer-column-subscribe {
    max-width: 280px;
}
footer .footer-column .footer-column-subscribe .newsletter-subscribe-form input {
    font-family: NunitoSans;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    text-align: left;
    color: var(--custom-gray);
    border: 1px solid #DDDDDD;
    padding: 13px 15px 13px 15px;
    margin: 0 0 10px 0;
    border-radius: 0;
}
footer .footer-column .footer-column-subscribe .newsletter-subscribe-form #footer-notification-normal div.warning {
    color: #FD5F55;
    position: unset;
    font-family: NunitoSans;
    font-size: 12px;
    padding-bottom: 5px;
}
footer .footer-column .footer-column-subscribe .newsletter-subscribe-form #footer-notification-normal div.success {
    color: #3c763d;
    position: unset;
    font-family: NunitoSans;
    font-size: 12px;
    padding-bottom: 5px;
}
footer .footer-column .footer-column-subscribe .newsletter-subscribe-form #footer-subscribe-button-subscribe {
    color: white;
    background-color: var(--custom-black);
    border: 0px;
    text-align: center;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 2.4px;
    line-height: 30px;
}
footer .footer-column .footer-column-content a {
    font-family: NunitoSans;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 1px;
    text-align: left;
    color: var(--custom-gray);
    display: block;
    margin-bottom: 5px;
}
footer .footer-column .footer-column-content a.footer-contact-link {
    margin-bottom: 0;
}
footer .footer-column .footer-column-social {
	margin-bottom: 20px;
}
footer .footer-column .footer-column-social a {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 20px;
}
footer .footer-column .footer-column-social a:last-child {
    margin-right: 0;
}
footer .footer-column .footer-column-info {
    font-family: NunitoSans;
    font-size: 11px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 335px;
    color: var(--custom-gray);
}
footer .footer-column .footer-column-info a {
    font-family: NunitoSans;
    font-size: 11px;
    font-weight: 400;
    line-height: 18px;
    color: var(--custom-gray);
}
footer .footer-column .footer-column-instagram {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 250px;
}
footer .footer-column .footer-column-instagram a {
    display: block;
    width: 33.33333%;
    padding: 3px;
}
footer .footer-column .footer-column-instagram a.instagram-icon {
    padding: 15px;
}
footer .footer-column .footer-column-instagram a img {
    width: 100%;
    height: auto;
}
@media (max-width: 1440px) {
    footer .container {
        width: 100%;
        max-width: 1170px;
    }
}
@media (max-width: 1199px) {
    footer .container {
        width: 100%;
        max-width: 980px;
    }
    footer .footer-column {
        margin-left: 15px;
        margin-right: 15px;
    }
}
@media(max-width: 991px) {
    footer .container {
        width: 100%;
        max-width: 750px;
    }
    footer .footer-columns-wrapper {
        flex-wrap: wrap;
        margin-left: -15px;
        margin-right: -15px;
    }
    footer .footer-column {
        width: 100%;
        margin: 0;
        padding: 5px 15px 0 15px;
    }
    footer .footer-column-logo {
        padding-bottom: 40px;
    }
    footer .footer-column .footer-column-title h4 {
        border-top: 1px solid #cdcdcd;
        padding: 10px 5px 5px 0;
    }
    footer .footer-column .footer-column-title h4 {
        margin: 0;
    }
    footer .footer-column .footer-column-title h4.footer-column-title-instagram-link {
        border: none;
    }
    footer .footer-column .footer-column-content {
        display: none;
    }
    footer .footer-column .footer-column-info {
        max-width: 700px;
    }
    .footer-column-title {
        position: relative;
    }
    .footer-column-title.mob-slider::after {
        content: '';
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        width: 8px;
        height: 8px;
        border-right: 1px solid black;
        border-bottom: 1px solid black;
        transition: transform 0.3s ease; /* Анимация для плавного поворота */
    }
    .footer-column-title.mob-slider.active::after {
        transform: translateY(-50%) rotate(225deg); /* 45 + 180 = 225 градусов */
    }
    footer .footer-column .footer-column-subscribe {
        max-width: 100%;
    }
    footer .footer-column:last-child {
        margin-right: 0;
    }
}
@media(max-width: 500px) {
    footer .footer-column {
        width: 100%;
    }
    footer .footer-column {
        text-align: left;
    }
    footer .footer-column .footer-column-instagram {
        margin: 0 auto;
    }
}

/* breadcrumbs */
.breadcrumbs .breadcrumb{
	padding:0;
	margin: 0;
	background: none;
}
.breadcrumbs .breadcrumb  a:hover,
.breadcrumbs .breadcrumb li:last-child a{
	color: #408ed4;
}
.breadcrumb > li + li::before,
.breadcrumbs .breadcrumb a{
	color: #7b7b7b
}
.common-home .breadcrumbs{
	display: none;
}
.breadcrumbs{
	background: #f8f8f8;
	padding: 21px 0;
	margin-bottom: 30px;
}
.breadcrumb .back:before {
	content: '';
	display: block;
	position: absolute;
    width: 15px;
    height: 15px;
    top: auto;
    left: 10px;
    bottom: auto;
    background-image: url(/catalog/view/theme/subu/image/icon/chevron-left.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s left;
}
/* category */
.category-info .img-thumbnail{
	border: none;
	border-radius: 0;
	padding: 0;
}
@media(min-width: 992px){
	.custom-products .two-items:nth-child(2n+1),
	.custom-products .three-items:nth-child(3n+1),
	.custom-products .four-items:nth-child(4n+1){
		clear: both;
	}
}
.toolbar {
	width: 100%;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    box-sizing: border-box;
    margin-bottom: 50px;
    height: 56px;
    float: right;
    letter-spacing: 2.4px;
}
.toolbar .dropdown {
    width: 190px;
}
.toolbar .sorts-wrap-desktop {
    height: 100%;
}

.toolbar .sorts-wrap-desktop .dropdown {
    background-color: transparent;
    align-content: center;
    height: 100%;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    align-items: center;
    font-size: 20px;
    text-align: center;
    text-align-last:center;
}
.toolbar .sorts-wrap.sorts-wrap-desktop .dropdown.bootstrap-select.bs3 {
    width: 280px;
}
.toolbar ul.inner {
    box-shadow: 4px 4px 13px -4px rgba(0,0,0,0.75);
}
.toolbar ul.inner span{
    padding: 5px 0;
    text-align: center;
}

.toolbar .dropdown-menu {
    padding: 10px 0 7px 0 !important;
}
.toolbar .dropdown-menu li{
    background-color: white;
    height: 40px;
    padding-bottom: 3px;
}
.toolbar .dropdown-menu li a {
    -webkit-tap-highlight-color: transparent;
}
.toolbar3 .btn-group{
	background: #fff;
}
.toolbar3{
	padding: 0;
}
.toolbar1{
	padding: 0;
}
.toolbar2,
.toolbar1{
	padding-left: 0;
	background: #fff;
}

.toolbar .dropdown {
    margin-left: auto;
}

.toolbar .filter-option-inner-inner {
    text-align: center;
}

#input-sort,
#input-limit{
	border: 1px solid #e1e1e1;
	border-radius: 3px;
	box-shadow: none;
	height: 30px;
	font-size: 12px;
}
#list-view:hover,
#list-view.selected,
#grid-view:hover,
#grid-view.selected{
	color: #fff !important;
	border-color: #408ed4;
	background: #408ed4;
}
#list-view{
	margin-right: 10px;
}
#list-view,
#grid-view{
	border: 1px solid #e1e1e1;
	border-radius: 3px;
	color: #ccc;
	padding: 0 7px;
	background: none;
	line-height: 28px;
}
#list-view i,
#grid-view i{
	line-height: 28px;
}
.pagination{
	margin: 0;
	background: #fff;
}
.pagination > li.active > span, .pagination > .active > a,
.pagination > .active > a:focus, .pagination > .active > a:hover,
.pagination > .active > span, .pagination > .active > span:focus,
.pagination > .active > span:hover, .pagination > li > a:focus,
.pagination > li > a:hover, .pagination > li > span:focus,
.pagination > li > span:hover {
    background-color: #408ed4 !important;
    color: #FFF !important;
}
.pagination > li > a, .pagination > li > span{
	border: none;
	border-radius: 100% !important;
	background: #ececec !important;
	color: #878787 !important;
	font-size: 14px;
	padding: 0 5px;
	margin: 0 5px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
}
.custom-products .product-list .layout1 .product-intro .btn-cart i{
	display: none;
}
.custom-products .product-list .layout1 .product-intro .btn-cart{
	width: auto;
	height: auto;
}
.custom-products .product-list .layout1 .product-intro .btn-cart span{
	display: block;
}
.custom-products .product-list .layout1 .product-intro{
	position: static;
}
.custom-products .product-list .product-name{
	font-size: 18px;
}
.custom-products .product-list:last-child .product-thumb{
	border: none;
}
.custom-products .product-list .product-thumb:hover{
	box-shadow: none;
}
.custom-products .product-list .product-thumb{
	float: left;
	width: 100%;
	padding: 15px;
	border-bottom: 1px solid #ebebeb;
}
.custom-products .product-layout {
	/*width: 330px;*/
    height: 400px!important;
    padding-left: 10px;
    padding-right: 10px;
}
.custom-products .product-layout:hover {
    cursor: pointer;
}
.product-card .product-images-mobile {
    display: none;
}
@media (max-width: 991px) {
    .product-card .product-images-mobile {
        display: flex;
        position: relative;
    }
    .product-images-mobile .swiper-wrapper .swiper-slide-active::after {
        position: absolute;
        content: "+";
        box-shadow: 0px 1px 5px 0px #36363626;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        top: 2px;
        right: 2px;
        pointer-events: none;
        font-size: 3em;
        font-weight: 200;
        padding-top: 7px;
        padding-left: 7px;
        color: var(--custom-gray);
    }
    .product-card .product-images-pc {
        display: none;
    }
}
.custom-products .product-layout .product-images-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: initial !important;
    height: 200px;
    z-index: 1;
}
.custom-products .product-layout .product-images-container img {
    max-height: 200px;
}

#content.stretched .custom-products .product-layout .product-images-container {
    height: 240px;
}
#content.stretched .custom-products .product-layout .product-images-container img {
    max-height: 280px;
}
@media (max-width: 991px) {
    .custom-products .product-layout .product-side-images {
        /*width: 30%;*/
        display: none;
    }
    /*.custom-products .product-layout .product-main-image {*/
    /*    width: auto !important;*/
    /*    padding-right: 0px !important;*/
    /*}*/
}
.custom-products .product-layout .product-side-images {
    width: 30%;
}
.custom-products .product-layout .product-side-images img:first-child {
    margin-bottom: 20px;
}

.toolbar4{
	margin: 0;
	margin-top: 30px;
	clear: both;
	float: left;
	width: 100%;
	border-top: 1px solid #ebebeb;
	padding-top: 20px;
}
.toolbar4  .col-sm-6{
	padding: 0;
}
.toolbar4  .text-right{
	margin-top: 0px;
	font-size: 13px;
	color: #6a6a6a;
	background: #fff;
	width: auto;
	float: right;
}
/* product detail */
.zoomContainer {
    top: 0px !important;
    left: 15px !important;
    right: 0px;
    bottom: 0px;
    width: 100% !important;
}
.zoomContainer .zoomLens {
    width: 100px !important;
    height: 100px !important;
}
.zoomContainer .zoomWindowContainer .zoomWindow {
    margin-left: 15px;
    border-color: #408ed4 !important;
}

/* Product page */
.product-images {
    display: flex;
    /*height: 70vh;*/
    margin-bottom: 30px;
}
.product-images .swiper-slide img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0 0 30px;
}
.product-images .product-images-thumbs {
    width: 20%;
    margin-right: 20px;
}
.product-card .row{
    margin-top: 25px;
}
.product-images .product-images-thumbs,
.product-images-slides
{
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.product-images-slides
{
    margin-left: 0;
    max-width: 80%;
}
.product-images .product-images-thumbs > * {
    flex-direction: column;
}

.product-images-thumbs a{
    display: block;
    max-width: 70px;
    max-height: 70px;
    width: 70px;
    margin-bottom: 20px;
}
.product-images .product-images-thumbs .swiper-slide {
    display: block;
    max-height: 100px;
    margin: 0 auto;
}
.product-images .product-images-thumbs .product-images-thumbs-transition {
    position: absolute;
    z-index: 2;
    display: none;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #ffffff);
}
.product-images .product-images-thumbs #thumbs-transition-top {
    left: 0;
    top: 0;
    background: linear-gradient(to top, transparent, #ffffff);
}
.product-images .product-images-thumbs #thumbs-transition-bottom {
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, #ffffff);
}
.product-images .product-images-slides .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-images .product-images-pagination {
    display: none;
    position: relative;
    left: 0;
    bottom: 0;
}
.product-images .swiper-pagination .swiper-pagination-bullet {
    background-color: transparent;
    border: 1px solid var(--custom-gray);
    border-radius: 50%;
}
.product-images .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--custom-black);
}

.product-model-ul {
    padding: 0;
    margin-bottom: 30px;
	font-weight: 300;
    line-height: 1.25;
	color: rgba(0, 0, 0, 0.5);
}

.image-additional-container{
	padding: 0 15px;
	margin-top: 20px;
}
.image-additional-container .active2.thumbnail,
.image-additional-container .thumbnail:hover{
	border: 1px solid #3d73b9
}
.image-additional-container .thumbnail{
	margin: 0;
	/* border: 1px solid #edecec; */
}
.image-additional2.owl-carousel .owl-item ,
.image-additional.owl-carousel .owl-item {
    padding: 0 10px;
}
.product-main-info .flex > div {
    width: 100%;
}
.product-main-info .product-name {
    font-family: var(--primary-font-family);
    letter-spacing: 3.5px;
    color: var(--custom-black);
    font-size: var(--name-font-size);
    font-weight: 600;
    line-height: 1.25;
    height: initial;
    margin-bottom: 10px;
}
.product-main-info .product-name + p{
	margin: 10px 0 0;
}
.product-main-info .product-name + p a{
	text-transform: capitalize;
}
.product-main-info .ratings{
	margin: 25px 0;
	display: none;
}
.product-main-info .list-unstyled{
	clear: both;
}
.product-main-info .product-price {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #DDDDDD;
}
@media (max-width: 991px) {
    .product-main-info .product-price li:nth-child(2) {
        display: flex;
        gap: 50px;
    }
    .product-main-info .product-name
    {
        text-align: center;
    }
}
.product-maintence-text img {
    margin: 15px 0;
}
.product-maintence-text ul {
    padding-left: 20px;
}
.product-main-info .product-price .sale-label {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 20px;
    line-height: 146%;
}
.product-main-info .product-price .price {
    font-size: 16px;
    line-height: 30px;
}
.product-main-info .product-price .price-old {
    font-size: 18px;
    line-height: 30px;
}
.product-main-info .product-price .price-new {
    font-size: 18px;
    line-height: 30px;
}
.product-main-info .short-des{
	margin: 25px 0 30px;
	color: #6b6b6b;
	line-height: 24px;
}
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
    opacity: 1;
}

.fade-out {
    animation: fadeOut 0.5s ease-in-out;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.product-additional-image {
    display: none;
}

#input-quantity2, #minus2, #plus2,
#input-quantity, #minus, #plus {
    display: inline-block;
    height: 34px;
    border: none;
    box-shadow: none;
    font-weight: 700;
    text-align: center;
    width: 25px;
    font-size: 14px;
    border-radius: 0px;
	border: none;
	background: none;
	padding: 0;
	color: #6f6f6f;
}
#input-quantity2,
#input-quantity {
    width: 40px;
}
label[for='input-quantity']{
	float: left;
	line-height: 34px;
	margin-right: 30px;
}
#button-cart2 i,
#button-cart i{
	font-size: 0;
}
button.btn-compare span,
button.btn-wishlist span{
	display: none;
}
button.btn-compare:hover i,
button.btn-wishlist:hover i{
	color: #fff;
}
button.btn-compare i,
button.btn-wishlist i{
	font-size: 16px;
}
button.btn-compare,
button.btn-wishlist {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
	margin-bottom: 30px;
	padding: 0;
	margin-right: 8px;
	float: left;
	margin-top: 30px;
}
button.btn-compare:hover,
button.btn-wishlist:hover {
    border-color: transparent;
    background-position: -34px 2px;
    background-color: #408ed4;
}
#product2,
#product{
	clear: both;
}
#product2.has-option,
#product.has-option{
	max-height: 300px;
	overflow: auto;
	border: 1px solid #e1e1e1;
	padding: 20px;
}
.product-sizes-box {
	margin: 40px 0 20px;
}
.product-sizes-box + .text-danger {
	position: absolute;
    margin-top: -15px;
}
.quantity-box{
	height: 34px;
	border-radius: 20px;
	width: 100px;
	border: 1px solid #ebebeb;
	float: left;
}
.product-option-radio {
    margin-bottom: 30px;
}
.product-option-radio .option-name {
    margin-bottom: 0;
    font-size: var(--common-big-font-size);
}
.product-option-radio:not(#product-colors) .option-name::after {
    content: ":";
}
.product-option-radio .option-values {
    display: flex;
    flex-wrap: wrap;
}
.product-option-radio .option-values .option-value {
    transition: all 0.3s;
    font-family: var(--secondary-font-family);
    display: block;
    max-width: 100px;
    height: 38px;
    margin-right: 15px;
    margin-top: 15px;
    padding: 7px 11px 7px 11px;
    border: 1px solid lightgrey;
    background: transparent;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--custom-gray);
}
.product-option-radio .option-values .option-value:hover,
.product-option-radio .option-values .option-value.active
{
    color: var(--custom-black);
    border: 1px solid var(--custom-black);
}
#product-colors a {
	transition: padding 0.3s;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-content: stretch;
    height: 104px;
    width: 80px;
    margin: 9px 18px 9px 0px;
    overflow: hidden;
}
#product-colors a img {
    border: 1px solid lightgrey;
}
#product-colors a.active img{
    border: 1px solid var(--custom-black);
}
#product-colors a .option-value-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    align-content: stretch;
	width: 78px;
	height: 78px;
    max-width: 78px;
    max-height: 78px;
}
#product-colors a .option-value-inner-name {
    text-align: center;
}
#product-colors a.active .option-value-inner {
	border: none;
}
#product-colors a .option-value-inner div {
    width: 100%;
}
#product-colors div.multicolor {
    background-image: url('/catalog/view/theme/subu/image/icon/multicolor-circle.png');
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: center;
}

.product-size-chart-button {
    margin-bottom: 30px;
}
.product-size-chart-button a {
    display: inline-block;
    line-height: 35px;
}
.product-size-chart-button a:before {
    position: relative;
    display: block;
    float: left;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    padding: 0;
    background-image: url('/catalog/view/theme/subu/image/icon/icon-clothes-hanger.svg');
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
}
.product-main-info #button-cart {
    background-color: transparent;
    padding: 0;
    line-height: 45px;
    width: 100%;
    height: 45px;
    font-size: var(--common-big-font-size);
    text-transform: uppercase;
    border: 1px solid lightgrey;
    color: var(--custom-gray);
    letter-spacing: 2.4px;
}
.product-main-info #button-cart:hover ,
.product-main-info #button-cart:active
{
    border-color: var(--custom-black);
    color: var(--custom-black);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.product-main-info #button-cart span:first-child:after,
#quickViewContainer #button-cart span:first-child:after
{
    content: "\2022";
    margin: 0 10px;
}
#button-cart {
    padding: 15px 50px;
    margin-bottom: 10px;
}
#button-cart + .ajax-errors-container {
    /* margin-top: -20px; */
    margin-bottom: 15px;
}
.product-additional-info .product-description,
.product-additional-info .product-specifications {
    padding-top: 0;
}
.product-additional-info .product-additional-info-text {
    display: none;
    margin-bottom: 5px;
}
.product-additional-info .product-additional-info-name {
    text-transform: uppercase;
    font-family: var(--secondary-font-family);
    font-size: var(--tabs-font-size);
    font-weight: 400;
    letter-spacing: 1.6px;
    padding-bottom: 7px;
    position: relative;
}
.product-additional-info .product-additional-info-name::after {
    position: absolute;
    top: 30%;
    right: 0;
    content: "";
    display: block;
    height: 6px;
    width: 10px;
    background: url("/catalog/view/theme/subu/image/sort-icon.svg") no-repeat;
    transition: .3s transform ease-in-out;
}

.product-additional-info .product-additional-info-name.open::after {
    transform: rotate(180deg);
}

.product-additional-info-text a{
    text-decoration: underline;
    text-underline-offset: 2px;
}
@media (max-width: 991px) {
    .product-additional-info .product-additional-info-name::after {
        top: 30%;
    }
}
.product-additional-info .product-additional-info-name:hover {
    cursor: pointer;
}
.product-additional-info .additional-info-item {
    text-align: justify;
    border-bottom: 1px solid lightgrey;
    margin-bottom: 7px;
}
.product-additional-info .product-description h3,
.product-additional-info .product-specifications h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
}
.product-additional-info .product-description p,
.product-additional-info .product-specifications p {
    line-height: 1.4;
}
.product-additional-info .product-specifications p {
    margin-bottom: 5px;
}
.product-additional-info .product-specifications .specifications-group + .specifications-group {
    margin-top: 20px;
}
@media (max-width: 991px) {
    .product-images {
        height: auto;
    }
    .product-images .product-images-thumbs {
        height: 0;
        width: 0;
        margin-right: 0;
    }
    .product-images-slides .swiper-wrapper {
        height: auto;
    }
    .product-images .product-images-pagination {
        display: block;
    }
    .product-images-slides .swiper-slide {
        display: block;
    }
    .product-images-slides .swiper-slide img {
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 424px) {
    .product-main-info #button-cart {
        width: 100%;
    }
}

.bootstrap-datetimepicker-widget a[data-action]{
	padding: 0 !important;
}
.bootstrap-datetimepicker-widget td span:hover{
	background: none !important;
}
.bootstrap-datetimepicker-widget td span{
	height: 40px !important;
	line-height: 40px !important;
	margin: 0px !important;
}
.alert {
	background: transparent !important;
}
.alert.alert-success{
	text-align: center;
	font-size: 14px;
	margin: 0;
}
.account-login .well ,
.account-reset .well
{
	background: none;
	box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.account-login .well .content.account_socnetauth2_bline_content {
    display: none;
}

.account-login .well h2,
.account-reset .well h2
{
    font-size: 20px;
    text-transform: uppercase;
    font-family: var(--primary-font-family);
}
.account-login .well * {
    font-family: var(--primary-font-family);
}
.account-login .well .login-form,
.account-reset .well .login-form
{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.account-login .well .login-form .form-group,
.account-reset .well .login-form .form-group
{
    width: 100%;
}
.account-login .well .login-form input:-webkit-autofill,
.account-reset .well .login-form input:-webkit-autofill
{
    -webkit-background-clip: text;
}
.account-login .row,
.account-reset .row
{
    margin-top: 50px;
}
.account-login .btn-primary,
.account-reset .btn-primary
{
    border: none;
    background-color: var(--custom-black);
    text-transform: uppercase;
    font-size: var(--common-font-size);
    letter-spacing: 2.4px;
    height: 42px;
    width: 100%;
}
.use-button {
    margin-bottom: 10px;
}
.account-login a[href="/socnetauth2/facebook.php?first=1"] ,
.account-reset a[href="/socnetauth2/facebook.php?first=1"]
{
    display: none;
}

.account-reset .pull-left a.button-back {
    display: block;
    text-align: center;
    font-size: 12px;
    padding: 0 10px;
    height: 42px;
    line-height: 42px;
    border: 1px solid lightgrey;
    text-transform: uppercase;
    color: var(--custom-gray);
    font-weight: 600;
    letter-spacing: 2.4px;
    width: 90px;
}
.account-reset .pull-left a.button-back:hover,
.account-reset .pull-left a.button-back:active
{
    color: var(--custom-black);
    border: 1px solid var(--custom-black);
    background-color: white;
}
.account-reset #content > .form-horizontal .control-label {
    text-align: center;
    height: 47px;
    padding-left: 15px;
    margin: 0;
    padding-top: 2px;
}


.information-contact form .required{
	margin-bottom: 20px;
}
.bootstrap-datetimepicker-widget a[data-action] {
    border: none;
	height: auto;
}
.custom-products .per-sale,
.custom-products .price-tax,
.custom-products .product-grid .product-des{
	display: none;
}
/* random-products */
.random-products{
	margin-bottom: 50px;
}
.related-product  .product-des{
	display: none;
}
#form-language button[name="en-gb"] {
	display: none;
}

.main-slider,
.main-slider > .container {
	width: 100% !important;
	/*height: 700px;*/
	padding: 0;
}
.timeloading {
	display: none;
}
.common-home #content {
	background: #fff;
}
.main-line1 {
	margin-top: 100px;
}
.main-line1 p {
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 120%;
	margin-top: 30px;
	text-align: center;
	color: #454648;
}
.main-line1 p + div {
	text-align: center;
	margin-top: 25px;
}
.main-line1 p + div a {
	font-family: Raleway;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	align-items: center;
	margin: 0 40px;
}
.main-line1 p + div a:after {
	content: url("/catalog/view/theme/subu/image/icon/arrow-right.png");
	margin-left: 10px;
}

.section-style {
    display: flex;
    justify-content: space-between;
}
.style-item {
    display: block;
    position: relative;
    width: 100%;
    max-width: 450px;
    margin-right: 50px;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: 0.3s background-size;
}
.style-item:last-child {
    margin-right: 0;
    margin-bottom: 0;
}
.style-item:hover {
    background-size: 120%;
}
.style-item .style-item-background img {
    opacity: 0;
}
.style-item .style-item-title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(-45deg,
          rgba(0, 0, 0, 0.25) 0%,
          rgba(0, 0, 0, 0.25) 35%,
          rgba(0, 0, 0, 0.25) 35%,
          rgba(0, 0, 0, 0.10) 55%,
          rgba(0, 0, 0, 0.10) 55%,
          rgba(0, 0, 0, 0.10) 100%);
    background-position: 100% 0%;
    background-size:600%;
    transition: all 0.5s;
}
.style-item:hover .style-item-title {
    background-position: 0% 0%;
}
.style-item .style-item-title h3 {
    font-weight: 900;
    font-size: 45px;
    line-height: 118.4%;
    color: #ffffff;
}
@media(max-width: 1439px) {
    .style-item .style-item-title h3 {
        font-size: 40px;
    }
}
@media(max-width: 1199px) {
    .style-item .style-item-title h3 {
        font-size: 35px;
    }
}
@media(max-width: 991px) {
    .style-item .style-item-title h3 {
        font-size: 30px;
    }
}
@media(max-width: 767px) {
    .section-style {
        flex-direction: column;
        align-items: center;
    }
    .style-item {
        max-width: 320px;
        margin-right: 0;
        margin-bottom: 50px;
    }
}
@media(max-width: 380px) {
    .style-item {
        margin-bottom: 30px;
    }
}

.section-choose-yourself {
    display: flex;
    height: 75vh;
}
.section-choose-yourself .choose-yourself-content,
.section-choose-yourself .choose-yourself-product {
    width: 50%;
}
.section-choose-yourself .choose-yourself-content:before{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.35);
    content: '';
}
.section-choose-yourself .choose-yourself-content {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section-choose-yourself .choose-yourself-content-inner {
    position: relative;
    width: 705px;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    z-index: 1;
}
.section-choose-yourself .choose-yourself-content .title-small {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
}
.section-choose-yourself .choose-yourself-content .title-big {
    margin-bottom: 40px;
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
}
.section-choose-yourself .choose-yourself-content .btn {
    padding: 15px 50px;
}
.section-choose-yourself .choose-yourself-content .btn.btn-icon {
    padding-left: 30px;
    padding-right: 95px;
}
.section-choose-yourself .choose-yourself-content .btn.btn-icon:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    display: block;
    width: 50px;
    height: 50px;
    margin: auto;
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
}
.section-choose-yourself .choose-yourself-content .btn.btn-icon.btn-sneaker:after {
    background-image: url('/catalog/view/theme/subu/image/icon/icon-sneaker-white.svg');
}
.section-choose-yourself .choose-yourself-product {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px;
}
@media (max-width: 1439px) {
    .section-choose-yourself .choose-yourself-content-inner {
        width: 585px;
    }
}
@media (max-width: 1199px) {
    .section-choose-yourself .choose-yourself-content-inner {
        width: 485px;
    }
    .section-choose-yourself .choose-yourself-content .title-small {
        font-size: 25px;
    }
    .section-choose-yourself .choose-yourself-content .title-big {
        font-size: 60px;
    }
    .section-choose-yourself .choose-yourself-content .btn {
        font-size: 20px;
    }
    .section-choose-yourself .choose-yourself-content .btn.btn-icon {
        padding-right: 85px;
    }
    .section-choose-yourself .choose-yourself-content .btn.btn-icon:after {
        width: 40px;
        height: 40px;
    }
    .section-choose-yourself .choose-yourself-product {
        padding: 50px;
    }
}
@media (max-width: 991px) {
    .section-choose-yourself {
        height: auto;
    }
    .section-choose-yourself .choose-yourself-content {
        width: 100%;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .section-choose-yourself .choose-yourself-product {
        display: none;
    }
    .section-choose-yourself .choose-yourself-content-inner {
        width: 750px;
        margin: 0 auto;
        padding: 30px;
    }
    .section-choose-yourself .choose-yourself-content .title-small {
        margin-bottom: 20px;
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .section-choose-yourself .choose-yourself-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-choose-yourself .choose-yourself-content-inner {
        width: 100%;
        padding: 0;
        text-align: center;
    }
}

.section-swiper-carousel .swiper-carousel-container {
    margin: 0 -20px;
    padding: 20px 20px 0;
}
.section-swiper-carousel .swiper-carousel-wrapper {
    margin-bottom: 20px;
}
.section-swiper-carousel.products .swiper-carousel-wrapper {
    margin-bottom: 50px;
}
.section-swiper-carousel .swiper-carousel-container .swiper-slide {
    display: flex;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    align-items: center;
    background: #FFFFFF;
}
.section-swiper-carousel .swiper-carousel-container .swiper-slide .product-price {
    margin-top: 5px;
}
.section-swiper-carousel .swiper-carousel-container.slides-hoverable .swiper-slide {
    transition: 0.3s box-shadow;
}
.section-swiper-carousel.manufacturers {
    margin-top: 30px;
    margin-bottom: -20px;
}
.section-swiper-carousel.manufacturers .swiper-slide {
    width: calc((100% - 150px) / 4);
    padding: 3.5vw;
}
.section-swiper-carousel.products .swiper-slide {
    flex-direction: column;
    align-items: stretch;
    width: calc((100% - 200px - 180px) / 4);
    height: auto;
    padding: 0 30px;
}
.section-swiper-carousel.carousel-title-disabled .swiper-slide {
    width: calc((100% - 135px) / 4);
}
.section-swiper-carousel.products .swiper-carousel-title {
    display: none;
}
.section-swiper-carousel.carousel-title-disabled .swiper-carousel-title {
    font-family: var(--primary-font-family);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3.6px;
    text-align: center;
    display: block;
    font-size: var(--name-font-size);
}
.section-swiper-carousel.products .swiper-slide.carousel-title,
.section-swiper-carousel.products .swiper-slide.carousel-title:hover {
    width: 200px;
    padding: 0;
    box-shadow: none;
}
.section-swiper-carousel.products .swiper-slide.carousel-title .carousel-title-text {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    transform: rotate(-90deg);
    font-size: 70px;
    letter-spacing: 3px;
    font-weight: bold;
    line-height: 1.2;
    color: #000000;
}
.section-swiper-carousel.products .swiper-slide > div{
    flex: 0 1 auto;
    width: 100%;
}
.section-swiper-carousel .swiper-carousel-container .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}
.section-swiper-carousel.products .product-image {
    margin-bottom: 20px;
}
.section-swiper-carousel.products .product-image img {
    width: 240px;
    object-fit: cover;
    height: 240px;
    margin: 0 auto 20px;
}
.section-swiper-carousel.products .swiper-slide .product-title {
    flex: 1 1 auto;
}
.section-swiper-carousel.products .swiper-slide .product-title h4 {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}
.section-swiper-carousel.products .product-sizes {
    margin: 20px 0;
}
.section-swiper-carousel.products .product-sizes .product-sizes-text {
    margin: 0;
    color: #b5b5b5;
}
.section-swiper-carousel.products .product-sizes .product-sizes-wrapper span {
    font-weight: 500;
}
.section-swiper-carousel.products .product-price .sale-label {
    position: absolute;
    top: 30px;
    left: 0;
}
.section-swiper-carousel.products .swiper-slide .action-buttons {
    position: absolute;
    top: 20px;
    left: 20px;
    display: none;
    flex: none;
    width: auto
}
.section-swiper-carousel.products .swiper-slide.wishlist-added .action-buttons,
.section-swiper-carousel.products .swiper-slide:hover .action-buttons {
    display: block;
}
.section-swiper-carousel.products .action-buttons button {
    width: 20px;
    height: 20px;
    margin: 0;
    border-radius: 0;
    background: none;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 95%;
}
.section-swiper-carousel.products .action-buttons .btn-wishlist {
    background-image: url('/catalog/view/theme/subu/image/icon/icon-wishlist-new.svg');
}
.section-swiper-carousel.products .swiper-slide.wishlist-added .action-buttons .btn-wishlist,
.section-swiper-carousel.products .action-buttons .btn-wishlist:hover {
    background-image: url('/catalog/view/theme/subu/image/icon/icon-wishlist.svg');
}
.section-swiper-carousel.products .action-buttons .btn-wishlist:hover {
    background-size: 100%;
}
.section-swiper-carousel .swiper-carousel-container .scrollbar {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    margin: 3px 0;
    border-radius: 0;
    background: #afafaf;
}
.section-swiper-carousel .swiper-carousel-container .scrollbar-drag {
    position: absolute;
    height: 12px;
    margin: -3px 0;
    border-radius: 0;
    background: #afafaf;
}
.section-swiper-carousel.news .swiper-slide {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
}
.section-swiper-carousel.news .slide-post-image {
    flex-grow: 0;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section-swiper-carousel.news .slide-post-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 30px;
}
.section-swiper-carousel.news .slide-post-header {
    flex-grow: 0;
    margin-bottom: 10px;
}
.section-swiper-carousel.news .slide-post-header span {
    font-size: 14px;
    font-weight: 100;
}
.section-swiper-carousel.news .slide-post-header h4 {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}
.section-swiper-carousel.news .slide-post-excerpt {
    flex-grow: 1;
    margin-bottom: 10px;
}
.section-swiper-carousel.news .slide-post-excerpt p {
    margin: 0;
    font-size: 14px;
    font-weight: 100;
}
.section-swiper-carousel.news .slide-post-footer {
    flex-grow: 0;
}
.section-swiper-carousel.news .slide-post-footer a {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}
.section-swiper-carousel.news .slide-post-footer a:after {
    transition: all 0.1s;
    position: relative;
    margin-left: 10px;
    padding: 0 5px;
    background-image: url('/catalog/view/theme/subu/image/icon/arrow-right.svg');
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    content: '';
}
.section-swiper-carousel.news .slide-post-footer a:hover:after {
    margin-left: 20px;
}
@media(max-width: 1439px) {
    .section-swiper-carousel.products .swiper-slide.carousel-title {
        width: 200px;
    }
    .section-swiper-carousel.products .swiper-slide {
        width: calc((100% - 200px - 135px) / 3);
    }
    .section-swiper-carousel.carousel-title-disabled .swiper-slide {
        width: calc((100% - 135px) / 4);
    }
    .section-swiper-carousel .swiper-carousel-container.manufacturers .swiper-slide {
        padding: 60px;
    }
}
@media(max-width: 1199px) {
    .section-swiper-carousel.manufacturers .swiper-slide,
    .section-swiper-carousel.carousel-title-disabled .swiper-slide {
        width: calc((100% - 105px) / 4);
    }
    .section-swiper-carousel.products .swiper-slide {
        width: calc((100% - 150px - 105px) / 3);
        padding: 10px 20px;
    }
    .section-swiper-carousel.products .swiper-slide.carousel-title {
        width: 150px;
    }
    .section-swiper-carousel.products .swiper-slide.carousel-title .carousel-title-text {
        bottom: 0px;
        font-size: 75px;
        line-height: 1;
    }
    .section-swiper-carousel.products .product-image {
        margin-bottom: 10px;
    }
    .section-swiper-carousel.products .product-sizes {
        margin: 10px 0;
    }
}
@media(max-width: 991px) {
    .section-swiper-carousel.products .swiper-carousel-wrapper {
        margin-bottom: 20px;
    }
    .section-swiper-carousel.products .swiper-carousel-title {
        display: block;
    }
    .section-swiper-carousel.products .swiper-slide,
    .section-swiper-carousel.carousel-title-disabled .swiper-slide {
        width: calc((100% - 70px) / 3);
    }
    .section-swiper-carousel.products .swiper-slide.carousel-title {
        display: none;
    }
    .section-swiper-carousel .swiper-carousel-container.manufacturers .swiper-slide {
        padding: 40px;
    }
}
@media(max-width: 767px) {
    .section-swiper-carousel.manufacturers .swiper-slide {
        width: calc((100% - 70px) / 3);
    }
    .section-swiper-carousel.products .swiper-slide {
        width: calc((100% - 35px) / 2)
    }
    .section-swiper-carousel.carousel-title-disabled .swiper-slide {
        width: calc((100% - 35px) / 2);
    }
    .section-swiper-carousel.products .product-price .sale-label {
        padding: 5px 7px 3px;
        font-size: 14px;
    }
    .section-swiper-carousel.news .slide-post-content {
        padding: 20px;
    }
}
@media(max-width: 550px) {
    .section-swiper-carousel.manufacturers .swiper-slide {
        width: calc((100% - 35px) / 2);
    }
}
@media(max-width: 424px) {
    .section-swiper-carousel.manufacturers .swiper-slide,
    .section-swiper-carousel.products .swiper-slide,
    .section-swiper-carousel.news .swiper-slide {
        width: 70%;
    }
    .section-swiper-carousel.manufacturers .swiper-slide {
        padding: 40px;
    }
    .section-swiper-carousel.products .swiper-slide .product-title h4 {
        font-size: 14px;
    }
    .section-swiper-carousel.products .product-sizes .product-sizes-text,
    .section-swiper-carousel.products .product-sizes .product-sizes-wrapper span {
        font-size: 12px;
    }
}

.section-newsletter-subscribe {
    display: flex;
}
.section-newsletter-subscribe .newsletter-subscribe-text {
    flex-shrink: 1;
}
.section-newsletter-subscribe .newsletter-subscribe-title {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 40px;
    color: #000000;
}
.section-newsletter-subscribe .newsletter-subscribe-description {
    font-size: 20px;
    line-height: 1.25;
    color: #000000;
}
.section-newsletter-subscribe .newsletter-subscribe-form {
    flex-shrink: 0;
    width: 35%;
    padding-left: 40px;
    padding-right: 40px;
}
.section-newsletter-subscribe .newsletter-subscribe-form #subscribe-email {
    margin-top: 10px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #afafaf;
    font-size: 20px;
    line-height: 1.3;
}
.section-newsletter-subscribe .newsletter-subscribe-form #subscribe-button-subscribe,
.section-newsletter-subscribe .newsletter-subscribe-form #subscribe-button-unsubscribe {
    padding: 15px 50px;
    margin-top: 40px;
}
.section-newsletter-subscribe .newsletter-subscribe-form .subscribe-message {
    margin-bottom: -20px;
    color: #000000;
}
@media(max-width: 1199px) {
    .section-newsletter-subscribe .newsletter-subscribe-form {
        padding-right: 0;
    }
}
@media(max-width: 991px) {
    .section-newsletter-subscribe .newsletter-subscribe-title {
        margin-top: 0;
        font-size: 35px;
    }
    .section-newsletter-subscribe .newsletter-subscribe-description {
        font-size: inherit;
    }
    .section-newsletter-subscribe .newsletter-subscribe-form {
        width: 40%;
    }
    .section-newsletter-subscribe .newsletter-subscribe-form #subscribe-email {
        margin-top: 40px;
        font-size: 16px;
    }
    .section-newsletter-subscribe .newsletter-subscribe-form #subscribe-button-subscribe {
        margin-top: 30px;
        font-size: 16px;
    }
}
@media(max-width: 767px) {
    .section-newsletter-subscribe {
        flex-direction: column;
    }
    .section-newsletter-subscribe .newsletter-subscribe-title {
        text-align: center;
        font-size: 30px;
    }
    .section-newsletter-subscribe .newsletter-subscribe-description {
        text-align: justify;
    }
    .section-newsletter-subscribe .newsletter-subscribe-form {
        width: 100%;
        padding: 0;
    }
    .section-newsletter-subscribe .newsletter-subscribe-form #subscribe-form {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .section-newsletter-subscribe .newsletter-subscribe-form #subscribe-email {
        margin-top: 30px;
    }
}

.oc-banner7-container .flexslider .slides#oc-inivoslider22 {
	zoom: 1;
	width: 650px;
	float: right;
	overflow: initial !important;
    margin-top: 135px;
	border: 25px solid #fff;
}
.oc-banner7-container .flexslider .slides#oc-inivoslider22 .nivo-caption {
	position: absolute;
    left: inherit;
    right: 0;
}
.oc-banner7-container .flexslider .slides#oc-inivoslider22 p.like-h2 {
	font-family: Oswald;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    padding: 0;
    border: none;
    margin-bottom: 24px;
}
.oc-banner7-container .flexslider .slides#oc-inivoslider22 p.like-h2 + p {
	padding: 0;
	border: none;
	display: block;
	max-width: 450px;
}
.flexslider22:before {
	content: '';
	display: block;
	position: absolute;
	width: 3000px;
    height: 400px;
    background: #F4F4F4;
    top: 300px;
    left: 0;
    margin-left: -2100px;
}
.flexslider22 .text-content {
	margin-top: 90px;
}
.flexslider22 .banner7-readmore a {
    margin-top: 30px;
}
.flexslider22 .nivo-directionNav {
	display: none;
}

.slider-mix-arrows {
	position: absolute;
    bottom: -90px;
}
.slider-mix-arrows div {
	position: relative;
	width: 110px;
	margin-left: 20px;
}
.slider-mix-arrows div:after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #333333;
}
.slider-mix-arrows div span {
	position: absolute;
	font-family: Oswald;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 96%;
	top: -7px;
    left: -20px;
}
.slider-mix-arrows div span + span {
	left: initial;
	right: -20px;
	color: #2B2B2B;
	opacity: 0.4;
}
.slider-mix-arrows .arrow {
	display: inline-block;
	width: 36px;
	height: 36px;
	background: url("/catalog/view/theme/subu/image/icon/slider-arrow.png");
	cursor: pointer;
}
.slider-mix-arrows .arrow:hover {
	background: url("/catalog/view/theme/subu/image/icon/slider-arrow-hover.png");
}
.slider-mix-arrows .arrow.right {
	-moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.slider-mix-arrows > span {
	position: absolute;
	right: -100px;
    top: -20px;
}
.slider-mix-arrows > span + span {
	right: -160px;
    top: -20px;
}

.main-women {
	position: relative;
	margin-top: 400px;
	height: 477px;
	justify-content: center;
}
.main-women:before {
	content: '';
	height: 100%;
	width: 2000px;
	left: 50%;
    margin-left: -670px;
	top: 0;
	position: absolute;
	display: block;
	background: linear-gradient(270deg, #F1F1F1 0%, #FBFBFB 100%);
	border-radius: 40px 0px 0px 40px;
	z-index: 1;
}
.main-women:after {
	content: url("/catalog/view/theme/subu/image/sn1.png");
	right: 0;
	top: -300px;
	position: absolute;
	z-index: 2;
}
.main-women > * {
	z-index: 3;
}
.main-women .title {
	font-family: Oswald;
    font-style: normal;
    font-weight: 500;
    font-size: 72px;
    line-height: 120%;
    color: #454648;
	margin-left: 216px;
    margin-bottom: 45px;
}
.main-women .title + div {
	margin-left: 200px;
}
.main-women .title + div a {
	font-family: Raleway;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	margin: 0 20px;
}
.main-women .title + div a:after {
    content: url(/catalog/view/theme/subu/image/icon/arrow-right.png);
    margin-left: 10px;
}


.main-men {
	position: relative;
	margin-top: 270px;
	margin-bottom: 350px;
	height: 477px;
	justify-content: center;
}
.main-men:before {
	content: '';
	height: 100%;
	width: 2000px;
	right: 50%;
    margin-right: -670px;
	top: 0;
	position: absolute;
	display: block;
	background: linear-gradient(90deg, #F1F1F1 0%, #FBFBFB 100%);
	border-radius: 0px 40px 40px 0px;
	z-index: 1;
}
.main-men:after {
	content: url("/catalog/view/theme/subu/image/sn2.png");
	left: 0;
	top: -360px;
	position: absolute;
	z-index: 2;
}
.main-men > * {
	z-index: 3;
}
.main-men .title {
	font-family: Oswald;
    font-style: normal;
    font-weight: 500;
    font-size: 72px;
    line-height: 120%;
    color: #454648;
	margin-right: 216px;
    margin-bottom: 45px;
}
.main-men .title + div {
	margin-right: 220px;
}
.main-men .title + div a {
	font-family: Raleway;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	margin: 0 20px;
}
.main-men .title + div a:after {
    content: url(/catalog/view/theme/subu/image/icon/arrow-right.png);
    margin-left: 10px;
}

.btn-compare, .btn-quickview {
	display: none;
}

.card-sizes {
	margin-bottom: 10px;
}
.card-sizes > div {
    height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-sizes p {
	font-weight: 400;
	font-size: 14px;
	line-height: 163%;
	color: #6b6b6b;
	margin-bottom: 5px;
}
.card-sizes span {
	font-weight: 500;
	font-size: 16px;
	line-height: 163%;
	margin-right: 5px;
}

.product-tabs-container-slider .tabs li {
	padding: 0 !important;
    background: transparent !important;
	margin: 0 32px;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	display: flex;
	align-items: center;
}

.product-tabs-container-slider .module-title {
	display: inline-block;
}
.product-tabs-container-slider .module-title h2 {
	font-weight: 500;
	font-size: 40px;
	line-height: 120%;
}
.product-tabs-container-slider .tabs {
     margin-top: 10px;
}

.fa-angle-right:before {
	content: '';
	display: inline-block;
    width: 36px;
    height: 36px;
    background: url(/catalog/view/theme/subu/image/icon/slider-arrow.png);
    cursor: pointer;
	-moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.fa-angle-left:before {
    content: "";
	display: inline-block;
    width: 36px;
    height: 36px;
    background: url(/catalog/view/theme/subu/image/icon/slider-arrow.png);
    cursor: pointer;
}
.fa-angle-right:hover:before,
.fa-angle-left:hover:before {
    background: url(/catalog/view/theme/subu/image/icon/slider-arrow-hover.png);
}
.owl-buttons {
	width: 100px;
}
.product-tabs-container-slider .owl-buttons {
    margin-top: -45px;
}

.main-line0 .sub-col > div {
	position: absolute;
	display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
	align-items: center;
	left: 25px;
    top: 450px;
    z-index: 1;
}
.main-line0 .sub-col > div a {
	margin: 7px 0;
}

#oc-inivoslider .nivo-main-image {
	min-height: 700px;
	width: auto !important;
}
#oc-inivoslider .banner7-content.slider-1 .text-content {
	padding-left: 20px;
}

.breadcrumb {
	padding: 8px 15px;
    margin-bottom: 20px;
    margin-top: 20px;
    list-style: none;
    background-color: transparent;
    border-radius: 4px;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 114.84%;
    color: black;
}
.breadcrumb > li + li:before {
	position: relative;
    content: '';
    background-image: url("/catalog/view/theme/subu/image/icon/arrow-right.svg");
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    margin-left: 4px;
    margin-right: 7px;
}

.top-all-brands {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: #fff;
    font-family: Oswald;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.05em;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #333 !important;
    padding: 10px;
}
.top-all-brands:hover {
    text-decoration: none;
}

.page-manufacturer .breadcrumb.pc {
    display: block !important;
}
.page-products-list .category-info,
.page-product-selection .category-info {
    display: none;
}
.manufacturer-container {
    margin-bottom: 30px;
}

.search-page-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.manufacturer-name {
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    font-size: 48px;
    line-height: 54px;
    font-family: var(--primary-font-family);
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
}

.manufacturer-name-no-image {
    color: var(--custom-black);
    font-size: 20px;
    font-family: var(--primary-font-family);
    font-weight: 600;
}

.manufacturer-image {
    text-align: center;
    background-position: center 60%;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    height: 400px;
    line-height: 400px;
}

.manufacturer-no-image {
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 5vh;
    margin-bottom: calc(5vh - 30px);
}
#manufacturer-show-more-button {
    color: #6b6b6b;
}

.centered-catalog {
    margin: 0 2vw;
}
.centered-catalog > * {
    display: inline-block;
    vertical-align: top;
}


.product-selection-container {
    display: flex;
    flex-direction: column;
    min-height: 500px;
    margin-bottom: 30px;
    padding: 0 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.product-selection-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 auto;
}
.product-selection-footer {
    flex: 0 0 auto;
}
.product-selection-header h1 {
    margin: 50px 0;
    color: #ffffff;
    font-size: 60px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}
.product-selection-footer p {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
}
.product-selection-footer .product-selection-link-wrapper {
    margin: 20px 0;
    text-align: center;
}
.product-selection-footer a {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: underline;
    transition: 0.3s all;
}
.product-selection-footer a:hover {
    text-decoration: none;
}
@media (max-width: 1439px) {
    .product-selection-header h1 {
        font-size: 50px;
    }
}
@media (max-width: 991px) {
    .product-selection-container {
        min-height: 350px;
    }
    .product-selection-header h1 {
        font-size: 50px;
    }
    .product-selection-footer p, 
    .product-selection-footer .product-selection-link-wrapper {
        margin: 0 0 10px;
    }
}
@media (max-width: 767px) {
    .manufacturer-image img {
        display: block;
        max-width: 70%;
        margin: 0 auto;
    }
    .product-selection-container {
        margin-top: 15px;
        padding: 0 15px;
    }
    .product-selection-header h1 {
        font-size: 45px;
    }
    .product-selection p {
        font-size: 13px;
        line-height: 1.25;
    }
}
@media (max-width: 575px) {
    .product-selection-header h1 {
        font-size: 40px;
    }
}
@media (max-width: 425px) {
    .product-selection-header h1 {
        font-size: 40px;
    }
}
@media (max-width: 375px) {
    .product-selection-header h1 {
        font-size: 35px;
    }
    .product-selection-footer p {
        font-size: 12px;
        line-height: 1.25;
    }
}

.category-info {
    margin: 15px 0;
    padding: 0 15px;
}
.category-info h1 {
	margin-top: 0;
    font-size: 30px;
}
.product-total {
    white-space: nowrap;
    display: inline;
    font-family: var(--secondary-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    text-wrap: wrap;
}
.search-page-header {
    margin: 50px 0;
}
.product-total-container {
    position: relative;
    display: none;
    justify-content: flex-end;
    margin: 15px 0;
    padding-left: 80px;
}
.product-total-container .product-total {
    display: none;
    margin-right: 0;
    text-align: center;
}
.product-total-container .back {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 20px;
    color: black;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.25;
}
.product-total-container .back:before {
	content: '';
	display: block;
	position: absolute;
    width: 15px;
    height: 15px;
    top: auto;
    left: 0;
    bottom: auto;
    background-image: url('catalog/view/theme/subu/image/icon/chevron-left.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s left;
}

.custom-category {
    /*overflow: hidden;*/
}

.custom-category .toolbar {
	padding: 0;
	float:none;
	border:none;
}
#content.stretched .custom-category .toolbar {
    padding-top: 10px;
}
.filters-wrap {
    margin-right: 15px;
    margin-bottom: -8px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.filter-bage {
    border: 1px solid rgba(0, 0, 0, 0.8);
    background-color: #fff;
    padding: 7px 10px;
    margin-right: 10px;
    margin-bottom: 8px;
    border-radius: 0;
}
.filter-bage i {
    padding-left: 2px;
}
.sorts-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.sorts-wrap-mobile {
    display: none;
    flex-direction: row;
    margin-top: 10px;
    margin-bottom: 10px;
}
.sorts-wrap .sort-select-wrapper {
    margin: 0;
    padding: 0;
    position: relative;
}
.sorts-wrap .bootstrap-select > .dropdown-toggle {
    letter-spacing: 2.4px;
    text-align: center;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.54);
    background: transparent;
    outline: none;
    padding: 0 28px 0 8px;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-weight: normal;
    text-indent: 1px;
    text-overflow: '';
    line-height: 34px;
}
.sorts-wrap .bootstrap-select > .dropdown-toggle .filter-option {
    padding-right: 0;
}
.sorts-wrap .bootstrap-select > .dropdown-toggle:after {
    display: none;
}
.sorts-wrap .bootstrap-select > .dropdown-toggle:active,
.sorts-wrap .bootstrap-select > .dropdown-toggle:focus {
    outline: none !important;
    color: rgba(0, 0, 0, 0.54);
}
.sorts-wrap .bootstrap-select .dropdown-menu {
    left: 0 !important;
    min-width: 100% !important;
    margin: 0;
    padding: 0;
    border-top: none;
}
.sorts-wrap .dropdown-menu .inner {
    overflow-y: initial !important;
    padding: 0;
}
.sorts-wrap .dropdown-menu .dropdown-item {
    padding: 4px 8px;
}
.sorts-wrap .dropdown-menu .selected {
    display: none;
}
.sorts-wrap-mobile .bootstrap-select {
    width: auto !important;
}
.sorts-wrap-mobile .bootstrap-select > .dropdown-toggle {
    padding-right: 25px;
    border: none !important;
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    font-family: inherit;
    line-height: 16px;
}
.sorts-wrap-mobile .bootstrap-select > .dropdown-toggle:active,
.sorts-wrap-mobile .bootstrap-select > .dropdown-toggle:focus {
    box-shadow: none;
    color: #000000;
}
.sorts-wrap-mobile .bootstrap-select > .dropdown-toggle .bs-caret {
    display: none;
}
.sorts-wrap-mobile .bootstrap-select > .dropdown-toggle:after {
    transition: 0.3s;
    content: '';
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    top: auto;
    right: 5px;
    bottom: auto;
    margin: auto 0;
    background-image: url('catalog/view/theme/subu/image/icon/chevron-left.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
}
.sorts-wrap-mobile .bootstrap-select.open .dropdown-toggle:after {
    transform: rotate(90deg);
}
.sorts-wrap-mobile .bootstrap-select > .dropdown-menu {
    right: 0;
    left: auto !important;
}
.sorts-wrap-mobile .bootstrap-select .dropdown-menu > li > a{
    padding: 5px 10px;
}
:not(.sorts-wrap-mobile) .filters-toggle-button-container {
    display: none;
}
.sorts-wrap-mobile .filters-toggle-button-container {
    padding-left: 25px;
}
.sorts-wrap-mobile .filters-toggle-button-container span {
    padding-top: 3px;
}
.sorts-wrap-mobile .filters-toggle-button-container:before {
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url('/catalog/view/theme/subu/image/icon/icon-filters.svg');
}
@media (max-width: 767px) {
    .product-total-container {
        display: flex;
    }
    .product-total-container .product-total {
        display: block;
    }
}

/* ocfilter */
#ocfilter {
	background: transparent !important;
	border: none;
}
#ocfilter .filter-name-mobile {
    display: none;
}
#ocfilter.desktop-filter-container {
	overflow-y: auto;
}
#ocfilter.desktop-filter-container::-webkit-scrollbar {
  display: none;
}
#ocfilter.desktop-filter-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#ocfilter .category-info {
    padding-left: 15px;
}
.filters-toggle-button-container {
    position: relative;
    color: black !important;
    background: transparent !important;
	border: none !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 30px;
    cursor: pointer;
}
.filters-toggle-button-container:before {
    position: absolute;
    width: 15px;
    height: 15px;
    top: auto;
    left: 10px;
    bottom: auto;
    background-image: url('/catalog/view/theme/subu/image/icon/chevron-left.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s left;
    content: '';
}
.filters-toggle-button-container:hover:before {
    left: 0;
}
#content .filters-toggle-button-container {
    padding-left: 30px;
}
#content .filters-toggle-button-container:before {
    left: 0;
    background-image: url('/catalog/view/theme/subu/image/icon/chevron-right.svg');
}
#content .filters-toggle-button-container:hover:before {
    left: 10px;
}
.filters-toggle-button-container span {
    padding-top: 5px;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
}
@media (max-width: 991px) {
    #ocfilter .filters-toggle-button-container {
        display: none;
    }
    .sorts-wrap-mobile {
        display: flex;
    }
    .sorts-wrap-desktop {
        display: none;
    }
}

#ocfilter .list-group-item:last-child {
	padding-top: 0;
}
#ocfilter .list-group-item {
	position: relative;
	background: transparent !important;
	cursor: pointer;
	padding: 10px 0;
	margin: 0 15px;
}
#ocfilter .list-group-item .ocf-option-name{
    text-transform: uppercase;
}

.dot-checkbox {
    /*-webkit-appearance: none;*/
    appearance: none;
    background: var(--custom-gray);
    opacity: 0;
    pointer-events: none;
    border-radius: 100%;
    width: 6px;
    height: 6px;
    transition: opacity .2s;
    display: block;
    position: absolute;
    inset-block-start: calc(.5em + 1.5px);
}
/*#ocfilter .list-group-item .ocf-option-name:before {*/
/*	content: '';*/
/*    background-image: url('/image/catalog/arena/arrow-down.svg');*/
/*    background-repeat: no-repeat;*/
/*    background-size: 13px;*/
/*    width: 13px;*/
/*    height: 13px;*/
/*	position: absolute;*/
/*    right: 10px;*/
/*    margin-top: 5px;*/
/*}*/
#ocfilter .list-group-item.active .ocf-option-name:before {
	transform: rotate(180deg);
    margin-top: 2px;
}
#ocfilter .ocfilter-option .ocf-option-name {
    font-weight: 600;
    font-size: var(--common-font-size);
    line-height: 18px;
    color: black;
    margin-bottom: 0;
    /*border-bottom: 1px solid rgba(0, 0, 0, 0.5);*/
    padding: 5px 25px 5px 15px;
    overflow: hidden;
    text-overflow: ellipsis;
}
#ocfilter .ocfilter-option label {
    font-weight: 400;
    font-size: var(--common-big-font-size);
    line-height: 18px;
    color: var(--custom-gray);
    text-decoration: none;
    padding-bottom: 5px;
    margin: 0;
}
#ocfilter .ocfilter-option label:hover {
    color: var(--custom-black);
}
.ocfilter-option .ocf-option-values {
    overflow: visible;
	display: none;
    max-width: 100%;
    margin: 10px 20px 0 10px;
}
.ocfilter-option label input[type="checkbox"] {
	position: relative;
    margin: 0 10px 0 0;
    cursor: pointer;
}
.ocfilter-option label input[type="checkbox"] {
    -webkit-appearance: initial;
    appearance: initial;
}

.ocfilter-option label input[type="checkbox"]:checked {
    visibility: visible;
    background-image: none;
}

.ocfilter-option label input[type="checkbox"]:checked:after,
.ocfilter-category-option a.category-active:after
{
    content:"•";
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 3em;
    line-height: 20px;
    transform: translate(-10%, -25%);
    color: var(--custom-black);
}
#ocfilter .ocfilter-category-option a:not(.category-active) {
    color: var(--custom-gray);
}
#ocfilter .ocfilter-category-option .ocf-option-values label {
    margin-left: 15px;
}
#ocfilter .ocfilter-category-option .ocf-option-values label.category-active-label {
    margin-left: 30px;
}
.ocfilter-category-option .category-active {
    color: var(--custom-black);
    position: relative;
}
.ocfilter-category-option a.category-active:after {
    left: -15px;
    top: 0;
}
#ocfilter .list-group {
	display: flex;
    flex-direction: column-reverse;
	display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

/* Size filter */
#option-11 .ocf-option-values {
    width: 100%;
}
#ocfilter .ocfilter-option label.ocf-selected{
    margin-left: 15px;
    color: var(--custom-black);
}

/* Color filter */
#option-10018 .ocf-option-values {
    width: 100%;
}
#ocfilter #option-10018 .ocf-option-values {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-left: 15px;
}
#ocfilter #option-10018 .ocf-option-values label {
    transition: padding 0.3s;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    margin-right: 8px;
    margin-bottom: 8px;
    margin-left: 0;
    padding: 0;
    border: 1px solid var(--custom-black);
}
#ocfilter #option-10018 .ocf-option-values label:hover {
	padding: 3px;
}
#ocfilter #option-10018 .ocf-option-values label.ocf-selected {
    padding: 0;
}
#ocfilter #option-10018 .ocf-option-values label .color {
    border: none;
    width: 100%;
    height: 100%;
}
#ocfilter #option-10018 .ocf-option-values label.ocf-selected .color {

	border: 1px solid #cccccc;
}
#ocfilter #option-10018 .ocf-option-values label .color.multicolor {
    background-color: transparent !important;
    background-image: url('/catalog/view/theme/subu/image/icon/multicolor-square-2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

#ocfilter #option-10018 .ocf-option-values input {
    display: none;
}

.ocfilter-option-popover,
#ocfilter-button .disabled {
	display: none !important;
}
#ocfilter-button {
    display: none !important;
}
#ocfilter.panel {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}
#ocfilter-button + .popover {
	display: none !important;
}
#ocfilter-button {
	margin-top: 20px;
	padding: 0 15px;
}
#ocfilter-button > button {
	width: 100%;
}
#ocfilter .selected-options {
	padding: 15px 15px 0;
	margin-top: 0;
}
#ocfilter .selected-options .ocfilter-option {
    padding: 0;
	background: transparent;
    font-size: 14px;
}
#ocfilter .selected-options .ocfilter-option a {
    color: #7d7d7d;
    text-decoration: none;
}
#ocfilter .selected-options .selected-options-clear {
    text-decoration: underline;
    display: block;
    padding-top: 5px;
    padding-left: 0;
    color: #7d7d7d;
    font-size: 14px;
}
#ocfilter .list-group-item.selected-options:before,
#ocfilter .list-group-item.selected-options:after {
	display: none;
}
#ocfilter .selected-options .ocfilter-option + button {
	border-radius: 0;
    margin-top: 15px;
}

.ocfilter-price-block #price-from,
.ocfilter-price-block #price-to {
    display: none;
}
.ocfilter-price-block .form-inline {
    display: none;
}
.ocfilter-price-block .form-inline {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 15px;
    max-width: 260px;
}
.ocfilter-price-block #scale-price {
    margin: 0 10px 20px 15px;
    height: 2px;
    background: #b3b3b3;
    box-shadow: none;
    border: none;
}
.ocfilter-price-block #scale-price .noUi-connect {
    background: var(--custom-black);
}
.ocfilter-price-block #scale-price .noUi-background {
    background: #b3b3b3;
}
.ocfilter-price-block #scale-price .noUi-handle {
    background: var(--custom-black);
    width: 10px;
    height: 10px;
    cursor: pointer;
    box-shadow: none;
    border: none;
    border-radius: 100%;
    left: -7px;
    top: -4px;
}
.ocfilter-price-block .form-group {
    position: relative;
}

.ocfilter-price-block .form-group:after {
    position: absolute;
    height: 10px;
    content:"₴";
    top: 6px;
    right: 1px;
}

.ocfilter-price-block #scale-price .noUi-handle:before {
    display: none;
}
.ocfilter-price-block #scale-price .noUi-handle:after {
    display: none;
}
.ocfilter-price-block #scale-price .noUi-pips {
    display: none;
}
.ocfilter-price-block .form-inline > button {
    background: var(--custom-black);
    border-radius: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-left: 5px;
    font-size: 14px;
    font-weight: bold;
    padding: 0;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus  {
    text-decoration: none;
    /*color: white;*/
    background-color: white;
}
.ocfilter-price-block .form-inline > div {
    width: 37%;
    border: 1px solid #E0E0E0;
    box-sizing: border-box;
    border-radius: 0;
    color: black;
}
.ocfilter-price-block .form-inline > span {
    width: 10px;
	text-align: center;
    color: black;
}
.ocfilter-price-block .form-inline > div input {
	width: 100%;
	border: none;
    border-radius: 0;
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    box-shadow: none !important;
    outline: none !important;
}
@media (max-width: 767px){
    .ocfilter-price-block .form-group {
        margin-bottom: 0;
    }
}

/*product-thumb-hover*/
.product-thumb-hover {
	display: none;
	position: absolute;
    top: 50%;
	transform: translate(0, -50%);
    left: -20px;
    width: calc(100% + 40px);
    z-index: 2;
}
.product-main-info .title-product-option,
.product-thumb-hover .product-caption .title-product-option {
	font-family: Raleway;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	text-transform: uppercase;
	color: #B5B5B5;
	margin-top: 20px;
	margin-bottom: 10px;
}
.product-optio-block1 {
	margin-top: 20px;
}
.product-optio-block1 p {
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	align-items: center;
	color: #B5B5B5;
	margin-bottom: 5px;
}
.product-optio-block1 p + div {
	font-weight: 500;
	font-size: 13px;
	line-height: 21px;
	align-items: center;
}
.product-optio-block1 div {
	margin: 0;
}
.product-optio-block2 div,
.product-optio-block3 div {
	position: relative;
	font-weight: 500;
	font-size: 12px;
	line-height: 21px;
	align-items: center;
	padding-top: 10px;
	margin: 0;
}
.product-optio-block2 div:before,
.product-optio-block3 div:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background: #D5D5D5;
}
.product-optio-block2 div.active:before,
.product-optio-block3 div.active:before {
	background: #454648;
}
.product-optio-block2 div:nth-child(2) {
	text-align: center;
}
.product-optio-block2 div:last-child {
	text-align: right;
}
.product-optio-block3 {
	margin-bottom: 10px;
}
.product-optio-block3 div:last-child {
	text-align: right;
}

/* Stock availability styles */
#stock-availability {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}
#stock-availability .title {
    display: block;
    overflow: auto;
    margin-bottom: 10px;
    font-size: 20px;
}
#stock-availability .title .title-text {
    display: block;
    float: left;
    line-height: normal;
}
#stock-availability .title:after {
    position: relative;
    display: block;
    float: left;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    padding: 0;
    background-image: url('/catalog/view/theme/subu/image/icon/chevron-down.svg');
    background-size: 70%;
    background-position: center center;
    background-repeat: no-repeat;
    content: '';
}
#stock-availability .title.opened:after {
    background-image: url('/catalog/view/theme/subu/image/icon/chevron-up.svg');
}
#stock-availability .available-stores {
    display: none;
    color: #B5B5B5;
}
#stock-availability .available-stores li {
    border-bottom: 1px solid #DEDEDE;
    padding: 12px 0;
	margin-bottom: 0;
    color: #000000;
}
#stock-availability .available-stores li.unavailable {
    text-align: center;
    color: #a94442;
}
#stock-availability .available-stores li:first-child {
	border-top: 1px solid #DEDEDE;
}
#stock-availability .available-stores li .store-title {
    display: inline-block;
    margin-bottom: 5px;
}
#stock-availability .available-stores li .highlight {
    font-weight: 600;
}
#stock-availability .available-stores li .small {
    font-weight: normal;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
}

/*img-disc*/
.img-disc {
	position: absolute;
	right: -126px;
    top: 130px;
}
.img-disc > div {
	cursor: pointer;
	width: 11px;
	height: 11px;
	border-radius: 100%;
	background: #DEDEDE;
	margin-bottom: 24px;
}
.img-disc > div.active {
	background: #E48154;
}

.product-video {
	max-width: 1186px;
    margin: 120px auto 100px;
    z-index: 2;
    position: relative;
}
.product-video:after {
	content: '';
    position: absolute;
    width: 3000px;
    height: calc(100% + 250px);
    left: 50%;
    margin-left: -1500px;
    top: -120px;
    background: #fff;
    z-index: 1;
}
.product-video:before {
	content: '';
    position: absolute;
    width: 1380px;
	height: 285px;
	left: 50%;
	margin-left: -690px;
	bottom: -100px;
	background: #F4F4F4;
	z-index: 2;
}
.video-wrap {
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
	z-index: 3;
}

.video-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.product-description {
	background: #fff;
	padding-top: 140px;
}
.product-description:empty {
	display: none;
}
.product-description > .flex > div {
	margin: 70px 0;
}

.product-description > .flex:nth-child(odd) > div:last-child {
	text-align: right;
}
.product-description > .flex > div:last-child {
	display: -webkit-flex;
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
	justify-content: center;
}
.product-description > .flex > div:last-child h4 {
	width: 460px;
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 40px;
	line-height: 120%;
	color: #454648;
	margin-bottom: 40px;
}
.product-description > .flex > div:last-child p {
	width: 460px;
	font-family: Raleway;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 163%;
	color: #333333;
}

/*product-tabs2*/
.product-tabs2 {
    margin-top: 50px;
    border-top: 1px solid lightgrey;
	position: relative;
}
.section-swiper-carousel.products {
    margin-bottom: 160px;
}
.product-tabs2:after {
	content: '';
    position: absolute;
    width: 3000px;
    height: 100%;
    left: 50%;
    margin-left: -1500px;
    top: 0;
    background: #fff;
    z-index: 1;
}
.product-tabs2 > * {
	z-index: 2;
	position: relative;
}

/*choose-block*/
.choose-block {
	text-align: center;
    padding: 65px;
}
.choose-block img {
	margin-bottom: 50px;
}
.choose-block p {
	font-family: Raleway;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 163%;
	text-align: center;
	color: #333333;
	margin-bottom: 56px;
}
.choose-block p.title {
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 40px;
	line-height: 150%;
	text-align: center;
	color: #000000;
	margin-bottom: 24px;
}
.choose-block a {
	width: 288px;
}

.brand-alph {
	width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.brand-alph > * {
	flex: 1 1 auto;
	padding-top: 8px;
	padding-bottom: 8px;
	font-family: Raleway;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: #D5D5D5;
	text-align: center;
}
.brand-alph > a {
	color: #333;
}
.brand-alph > a:hover,
.brand-alph > a.active {
	background: #4584c0 !important;
	color: #fff;
}

.product-manufacturer h1 {
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 125%;
	color: #2B2B2B;
	margin-top: 0;
}

/*manufacturer-category-col*/
.manufacturer-category-cols {
	flex-wrap: wrap;
	display: flex;
	transition: all .3s;
}
.manufacturer-category-cols .col-sm-3 {
	display: flex;
	width: 20%;
	padding-bottom: 120px;
	padding-top: 50px;
}
.manufacturer-category-cols h2 {
	font-family: Oswald;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 125%;
	margin: 0 20px 0 0;
}
.manufacturer-category-cols h2 + div a {
	font-family: Raleway;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 163%;
	color: #333333;
	margin-bottom: 8px;
	margin-top: 2px;
	display: block;
}
.manufacturer-category-cols h2 + div a:hover {
	color: #4584c0;
}

.mail-box,
.blog-box,
.blog-tags-box {
	margin-top: 5px;
	width: calc(100% - 30px);
    margin-left: 15px;
    padding-bottom: 24px;
    border-bottom: 1px solid #D5D5D5;
	display: none;
}
.mail-box p,
.blog-box p,
.blog-tags-box p {
	font-family: Oswald;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 18px;
}
.mail-box a,
.blog-box a {
	position: relative;
	display: block;
	font-family: Raleway;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 36px;
	color: #747474;
	background: #F4F4F4;
	border: 1px solid #D5D5D5;
	padding-left: 43px;
	width: 210px;
	max-width: 100%;
}
.blog-box a {
	width: 240px;
}
.mail-box a:hover,
.blog-box a:hover{
	color: #E48154;
}
.mail-box a + a,
.blog-box a + a {
	border-top: none;
}
.mail-box a.active,
.blog-box a.active {
	color: #E48154;
}
.mail-box a.active:after {
	content: url("/catalog/view/theme/subu/image/icon/male.png");
	position: absolute;
	top: 0;
	left: 20px;
}

.blog-box a {
	position: relative;
}
.blog-box a:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    display: block;
    width: 16px;
    height: 16px;
    background: #fff;
}
.blog-box a.active:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    display: block;
    width: 16px;
    height: 16px;
    background: #E48154;
}
.blog-box a.active:before {
    content: url(/catalog/view/theme/subu/image/icon/checkbox.png);
    position: absolute;
    top: 10px;
    left: 19px;
    display: block;
    z-index: 2;
	line-height: 14px;
}

.blog-box,
.blog-tags-box {
	border-bottom: none;
	margin-bottom: 80px;
	padding-bottom: 0;
}
.blog-tags-box {
	margin-bottom: 0;
}
.blog-tags-box a {
	display: block;
	font-family: Raleway;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 163%;
	color: #333333;
	margin-bottom: 8px;
}
.blog-tags-box a:hover {
	color: #E48154;
}


h1 + .mail-box {
	margin-top: 50px;
	margin-left: 0;
	border-bottom: none;
}

/*category-des*/
.category-des {
	margin-top: 30px;
}
.category-des:after{
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.category-des .flex {
	display: block;
}
.category-des .flex > div {
	flex: 1 1 auto;
}
.category-des .flex > div:first-child {
	float: left;
}
.category-des .description-hidden {
	display: none;
}
.category-des .description-hidden.active {
	display: block;
}
.category-des .flex > div img {
	min-width: 300px;
	margin-right: 20px;
}
.category-des a[href="#"] {
	font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    align-items: center;
}
.category-des a[href="#"]:after {
	content: url(/catalog/view/theme/subu/image/icon/arrow-right.png);
    margin-left: 10px;
}

/*blog*/
.blog-home #column-left {
	border-right: 1px solid #D5D5D5;
}
.blog-home .newletter-subscribe-container {
	margin-top: 0 !important;
}
.blog h1 {
	margin-left: 30px;
    margin-top: 0;
    margin-bottom: 0;
}
.blog .empty-res {
	margin-left: 30px;
	margin-top: 40px;
}

.blog_grid_holder .blog_item {
	background: #fff;
	position: relative;
}
.blog-date-block  {
	position: relative;
}
.blog-date-block > span {
	font-family: Oswald;
	font-style: normal;
	font-weight: 300;
	font-size: 20px;
	line-height: 163%;
	color: #747474;
	margin-bottom: 16px;
	display: inline-block;
}
.blog-date-block .uptolike-buttons {
	position: absolute;
	right: 20px;
    top: 14px;
}
.blog-date-block .uptolike-buttons li[data-snid="uptolike2"] {
	display: none !important;
}
.utl-icon-tm .sn-icon:before {
	content: url("/catalog/view/theme/subu/image/icon/telegram2.png") !important;
}
.utl-icon-fb .sn-icon:before {
	content: url("/catalog/view/theme/subu/image/icon/fb2.png") !important;
}
.sn-more {
	position: absolute !important;
	left: -3000px !important;
	opacity: 0 !important;
	display: none !important;
}

.blog_grid_holder.column-1 {
	margin-top: 100px;
	margin-bottom: 60px;
}
.blog_grid_holder.column-1 .blog-date-block .uptolike-buttons {
	top: 0;
}
.blog_grid_holder.column-1 .blog_item {
	padding: 30px 55px 40px;
}
.blog_grid_holder.column-1 .summary {
	width: 500px;
	max-width: 100%;
}
.blog_grid_holder.column-1 .image {
	position: absolute;
    right: 0;
    bottom: 0;
	transform: translate(30%, -20%);
}
.blog_grid_holder.column-1 .blog_title {
	margin-bottom: 16px !important;
}
.blog_grid_holder.column-1 .blog_title a {
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 125%;
	color: #333333;
}
.blog_grid_holder.column-1 .short {
	font-family: Raleway;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 163%;
	color: #747474;
	margin-bottom: 48px;
}
.blog_grid_holder.column-1 .blog_more {
	font-family: Oswald;
	font-style: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	letter-spacing: 0.05em;
	text-decoration-line: underline;
	text-transform: uppercase;
	color: #E48154;
}
.blog_grid_holder.column-1 .blog_more:hover {
	text-decoration-line: none;
}

.blog_grid_holder.column-2 .blog_item {
	width: calc(50% - 20px);
    padding: 0 0 24px;
}
.blog_grid_holder.column-2 .blog_item:nth-child(odd) {
	margin-right: 40px;
}
.blog_grid_holder.column-2 .blog_item .image {
	margin: 0;
}
.blog_grid_holder.column-2 .blog-date-block {
	padding: 16px 24px 8px;
}
.blog_grid_holder.column-2 .blog_title {
	padding: 0 24px;
}
.blog_grid_holder.column-2 .blog_title a {
	font-family: Raleway;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 163%;
	color: #333333;
}
.blog_grid_holder.column-2 .blog_more {
	font-family: Oswald;
	font-style: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	letter-spacing: 0.05em;
	text-decoration-line: underline;
	text-transform: uppercase;
	color: #E48154;
	margin: 32px 24px 0;
	display: inline-block;
}
.blog_grid_holder.column-2 .blog_more:hover {
	text-decoration-line: none;
}
.blog_grid_holder.column-2 .blog-date-block > span {
	margin-bottom: 0;
}

/*blog-blog*/
.blog-blog #content {
	width: 1200px;
    margin: 30px auto 0;
    float: none;
    padding: 0;
    background: #fff;
}
.blog-blog .blog_post .main_thumb {
	padding: 0;
}
.blog-main-tags-box {
	padding: 64px;
}
.blog-main-tags-box p {
	font-family: Oswald;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 163%;
	color: #747474;
	margin-bottom: 90px;
}
.blog-main-tags-box  a {
	font-family: Oswald;
	font-style: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #333333;
	display: block;
	margin-bottom: 24px;
}
.blog-blog .main_thumb + .flex > .col-sm-3 {
	border-right: 1px solid #D5D5D5;
}
.blog-blog .main_thumb + .flex > .col-sm-9 {
	padding: 64px;
}
.blog-blog h1 {
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 40px;
	line-height: 120%;
	color: #333333;
	margin-left: 0;
	margin-bottom: 56px;
}
.blog-blog .main_description {
	font-family: Raleway;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 163%;
	color: #747474;
}
.blog-blog .main_description p {
	margin-bottom: 32px;
}
.blog-blog .main_description > img {
	margin: 50px 0;
	display: block;
}
.blog-blog .blog-date-block {
	margin-bottom: 75px;
}
.blog-blog .blog-date-block .uptolike-buttons {
	top: 0;
}
.blog-blog .main_description > .flex > div {
	margin: 0;
}
.blog-blog .main_description > .flex > div:first-child {
	margin-right: 32px;
}
.blog-blog .main_description > .flex > div:last-child {
	margin-left: 32px;
}
.blog-blog .main_description > .flex > div strong {
	font-family: Raleway;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 163%;
	color: #333333;
}
.blog-video {
	background: #fff;
	border-top: 1px solid #D5D5D5;
}
.blog-video > div {
	width: 860px;
	max-width: 100%;
	margin: 0 auto;
    padding: 48px 0;
}

/*information-information-4*/
.information-information-4 h1 {
	font-weight: 500;
	font-size: 30px;
	line-height: 120%;
	display: flex;
	align-items: center;
	text-align: center;
	text-align: center;
	margin-bottom: 56px;
	margin-top: 0;
	justify-content: center;
}
.information-information-4 #content {
    padding-bottom: 140px;
}
.about-us2 > div > div {
	position: absolute;
    right: -65px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    top: 64px;
    z-index: 1;
}
.about-us2 > div > div a {
	display: block;
	margin: 7px 0;
}
.about-us1 {
	position: relative;
    right: -70px;
}
.about-us1:before {
	content: '';
	position: absolute;
	display: block;
	width: 640px;
	height: 575px;
	background: #fff;
	bottom: -57px;
	left: -57px;
    z-index: -1;
}
.about-us1 img {
	z-index: 2;
    position: relative;
}

.about-us2 {
	z-index: 2;
}
.about-us2>div:before {
	content: '';
	position: absolute;
	display: block;
	width: 135px;
	height: 135px;
	background: #fff;
	bottom: -57px;
	right: -57px;
	z-index: -1;
}
.about-us2 > div {
	background: #fff;
    padding: 56px 64px;
    position: relative;
    top: 62px;
    left: -60px;
    border: 1px solid #D5D5D5;
}
.about-us2 > div p {
	font-weight: normal;
	font-size: 14px;
	line-height: 163%;
	color: #333333;
}
.about-us2 > div p.title {
	font-weight: 500;
	font-size: 24px;
	line-height: 125%;
	color: #333333;
	margin-bottom: 31px;
}

.instagram-widget {
	margin-top: 150px;
	position: relative;
}
.instagram-widget:before {
	content: '';
	position: absolute;
	display: block;
	width: 3000px;
	height: 650px;
	background: #fff;
	top: 0;
	left: 50%;
	margin-left: -1500px;
	z-index: -1;
}
.instagram-widget .h2 {
	font-family: Raleway;
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 163%;
	text-align: center;
	color: #000000;
	margin-bottom: 30px;
}

/*text-404*/
.text-404 {
	width: 500px;
    margin: 0 auto;
    text-align: center;
}
.text-404 > p:first-child {
	font-weight: 900;
	font-size: 58.7625px;
	line-height: 163%;
	text-align: center;
	color: #FFFFFF;
	margin-bottom: 35px;
}
.text-404 > h1 {
	font-weight: 600;
	font-size: 24px;
	line-height: 163%;
	text-align: center;
	margin-bottom: 24px;
}
.text-404 > h1 + p,
.text-404 .like-p {
	font-weight: normal;
	font-size: 14px;
	line-height: 163%;
	text-align: center;
	margin-bottom: 76px;
}
.text-404 > a {
	width: 290px;
    margin-bottom: 50px;
}
.account-logout .text-404 > a {
    border: none;
    background-color: var(--custom-black);
    text-transform: uppercase;
    font-size: var(--common-font-size);
    letter-spacing: 2.4px;
    height: 42px;
    width: 95%;
    line-height: 42px;
    padding: 0;
}
.account-logout .text-404 > a:hover {
    background-color: var(--custom-black);
}
.error-not_found .product-tabs-container-slider,
.checkout-cart .product-tabs-container-slider,
.account-wishlist .product-tabs-container-slider,
.checkout-success .product-tabs-container-slider {
	position: relative;
	padding-top: 125px;
}
.error-not_found .product-tabs-container-slider:before,
.checkout-cart .product-tabs-container-slider:before,
.account-wishlist .product-tabs-container-slider:before,
.checkout-success .product-tabs-container-slider:before  {
	content: '';
	display: block;
	position: absolute;
	height: 100%;
	width: 3000px;
	left: 50%;
	margin-left: -1500px;
	top: 0;
	background: #fff;
	z-index: -1;
}
#not-found-content {
    display: flex;
    height: 40vh;
    align-items: flex-end;
    justify-content: center;
}

#not-found-content .text-404 .error-code {
    font-weight: 900;
    font-size: 60px;
    line-height: 163%;
    text-align: center;
    color: var(--custom-gray);
    margin-bottom: 35px;
}

#not-found-content .text-404 h1 {
    font-weight: 600;
    font-size: 24px;
    line-height: 163%;
    text-align: center;
    font-family: var(--primary-font-family);
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
@media (max-width: 991px) {
    #not-found-content {
        margin-top: 50px;
        align-items: start;
    }

    #not-found-content .text-404 .error-code {
        display: none;
    }
}
#not-found-content .text-404 #btn-home {
    color: white;
    height: 52px;
    padding: 0;
    line-height: 52px;
    background-color: var(--custom-black);
    font-family: var(--primary-font-family);
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-size: 14px;
}

.empty-category-container {
    margin-top: 40px;
}

.empty-category {
    text-align: left;
    margin-bottom: 50px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    color: var(--custom-black);
    flex-grow: 1;
}

@media (max-width: 400px) {
    .empty-category {
        text-align: center;
    }
}
.empty-category-buttons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 50px;
}

.empty-category-buttons .btn {
    font-size: 14px;
    border-color: var(--custom-gray);
    color: var(--custom-gray);
    text-transform: uppercase;
    letter-spacing: 2.4px;
    height: 52px;
    line-height: 52px;
    width: 300px;
    padding: 0;
    margin-left: 25px;
}


.checkout-cart .empty-cart-btn,
.account-wishlist .empty-cart-btn {
	margin: 50px auto 212px;
	width: 288px;
	max-width: 100%;
	display: block;
}

/*information-contact*/
.information-contact .contact-page-block,
.information-contact footer,
.information-contact .bottom-footer {
    z-index: 2;
    position: relative;
}
.contact-page-block {
	margin: 230px auto 100px;
    width: 1000px;
    max-width: 100%;
    background: #fff;
	border: 1px solid #D5D5D5;
}
.contact-page-block > div:first-child {
	background: #454648;
    color: #fff;
    padding: 100px;
	font-weight: normal;
	font-size: 14px;
	line-height: 163%;
	min-width: 370px;
}
.contact-page-block > div:first-child .title {
	font-weight: bold;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-top: 35px;
}
.contact-page-block > div:first-child > .title:first-child {
	margin-top: 0;
}
.contact-page-block > div:first-child a {
	color: #fff;
}
.contact-page-block > div:last-child {
	padding: 30px 100px;
}
.contact-page-block > div:last-child .title {
    font-weight: 600;
    font-size: 16px;
    line-height: 163%;
    text-align: center;
    color: #333333;
	margin-bottom: 8px;
}
.contact-page-block > div:last-child .title + p {
	font-weight: normal;
	font-size: 14px;
	line-height: 163%;
	text-align: center;
	color: #333333;
	margin-bottom: 24px;
}
.contact-page-iframe {
	border: 0;
    width: calc(100vw + 100px);
    height: calc(100vh + 300px);
    position: fixed;
    left: -50px;
    top: -400px;
    z-index: 1;
}
.contact-page-iframe-after {
	position: fixed;
    width: 100vw;
    height: 50vh;
    bottom: 0;
    left: 0;
    background: #ECECEC;
    display: block;
    z-index: 2;
    background: -moz-linear-gradient(top, rgba(236,236,236,0) 0%, rgba(236,236,236,1) 50%, rgba(236,236,236,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(236,236,236,0) 0%,rgba(236,236,236,1) 50%,rgba(236,236,236,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(236,236,236,0) 0%,rgba(236,236,236,1) 50%,rgba(236,236,236,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ececec', endColorstr='#ececec',GradientType=0 );
}
/* Temporary hide info block */
.contact-page-block {
    width: 700px;
    padding-bottom: 30px;
}
.contact-page-block div:first-child {
    display: none;
}

.information-contact #content fieldset div.required .control-label:before {
	display: none;
}
.information-contact #content fieldset .control-label {
    font-weight: normal;
    font-size: 14px;
    line-height: 163%;
    color: #ABABAB;
    margin-bottom: 7px;
    padding-top: 0;
}
.information-contact #content fieldset input,
.information-contact #content fieldset textarea {
	height: 42px;
    border-radius: 0;
    background: #f8f8f8;
    -webkit-box-shadow: none;
    box-shadow: none;
	outline: none;
}
.information-contact #content fieldset textarea {
	height: 105px;
}
.information-contact #content .btn-primary {
	width: 100%;
}
.information-contact  #content .contact-form {
    min-height: 100%;
    justify-content: center;
}
.information-contact  #content .contact-form textarea {
    resize: none;
}

#cart:hover .dropdown-menu {
	display: block;
}

.empty-cart-div {
	background: #454648;
	padding: 24px 21px;
	text-align: center;
	margin-right: -25px !important;
}
.empty-cart-div .title {
	font-weight: 600;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 0;
}
.empty-cart-div .title + p {
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: #FFFFFF;
	margin-bottom: 24px;
}
.empty-cart-div a {
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	align-items: center;
}
.empty-cart-div a:after {
	content: url("/catalog/view/theme/subu/image/icon/arrow-right.png");
	margin-left: 10px;
}

.select-size-value {
	border: 1px solid #B5B5B5;
    box-sizing: border-box;
    padding: 0 14px;
    line-height: 50px;
	font-family: Raleway;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	color: #333333;
	text-align: left;
}
.select-size-value:after {
	content: url("/catalog/view/theme/subu/image/icon/arrow-down.png");
	-moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
	position: absolute;
	right: 16px;
	line-height: 20px;
    top: 20px;
}

.select-size-options {
	display: none;
	position: absolute;
    width: 100%;
    background: #F4F4F4;
	z-index: 1;
}
.select-size-options > div {
	line-height: 35px;
}
.select-size-options > div[disabled] {
	pointer-events: none;
}
.select-size-options > div[disabled] > div {
	opacity: .4;
	pointer-events: none;
}
.select-size-options .flex4 {
	border: 1px solid #B5B5B5;
	border-top: none;
}
.select-size-options .flex4 > div {
	margin: 0;
	font-family: Oswald;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 35px;
	color: #333333;
	cursor: pointer;
}
.select-size-options .flex4:hover > div,
.select-size-options .flex4.active > div {
	color: #fff !important;
	background: #E48154 !important;
}
.select-size-options .flex4 > div:first-child {
	background: #EAEAEA;
	border-right: 1px solid #B5B5B5;
}
.select-size-options .flex4 > div span {
	color: #B5B5B5;
	margin-left: 2px;
}

.product-sizes-box {
	text-align: center;
}
.product-sizes-box > div:first-child {
	min-width: 60%;
	position: relative;
}
.product-sizes-box > div:last-child p {
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    text-decoration-line: underline;
    color: #333333;
    margin-bottom: 0;
    line-height: 50px;
    white-space: nowrap;
	text-align: right;
	cursor: pointer;
}
.product-sizes-box > div:last-child p:before {
	content: url("/catalog/view/theme/subu/image/icon/sizes.png");
	margin-right: 8px;
}
.product-sizes-box > div.active .select-size-options {
	display: block;
}
.product-sizes-box > div.active .select-size-value:after {
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	line-height: 20px;
    top: 15px;
}

.modal-backdrop {
	z-index: 3;
    top: 70px;
    background-color: #F4F4F4;
}
.modal-backdrop.in {
    filter: alpha(opacity=90);
    opacity: .9;
}
.modal-dialog {
	-webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
}


.modal-content {
	-webkit-box-shadow: none;
    display: flex;
    box-shadow: none;
	border-radius: 0;
	border: none;
	padding: 40px;
}
.modal-content .close {
    background: url('/catalog/view/theme/subu/image/icon/icon-close.svg');
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
	width: 14px;
	height: 14px;
	display: block;
	position: absolute;
	right: 29px;
	top: 27px;
	opacity: 1 !important;
    color: #1C1B1B;
}
#smca-modal-body .modal-close {
    background: url(/catalog/view/theme/subu/image/icon/icon-close.svg) !important;
    background-size: 16px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.modal-content .close span {
	display: none;
}
.modal-header {
	padding: 0;
    border-bottom: none;
}

#sizes-popup .modal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
#sizes-popup .modal-dialog {
	margin: 0;
    width: 1160px;
    max-width: 100%;
    height: auto;
    max-height: 70vh;
}
#sizes-popup .modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
#sizes-popup .modal-header {
    position: relative;
    flex-grow: 0;
    min-height: auto;
    padding: 10px 40px;
}
#sizes-popup .modal-header .close {
	position: absolute;
    top: 24px;
	right: 10px;
}
#sizes-popup .modal-header p.title {
    margin: 0;
	font-weight: 500;
	font-size: 40px;
	line-height: 120%;
	text-align: center;
}
#sizes-popup .modal-body {
    flex-grow: 1;
    /* flex-basis: auto; */
    overflow-y: auto;
    margin: 15px;
    padding: 0;
}
#sizes-table-container {
    overflow-x: auto;
    position: relative;
    width: 100%;
    height: 100%;
}
#sizes-table-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 1;
}
#sizes-table-container .scroll-shadow {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    transition: 0.1s opacity;
}
#sizes-table-container .scroll-shadow.active {
    opacity: 1;
}
#sizes-table-container #scroll-shadow-top {
    left: 1px;
    width: 100%;
    height: 15px;
    background: linear-gradient(to top, transparent, rgb(0, 0, 0, 0.25));
}
#sizes-table-container.sticky-header #scroll-shadow-top {
    border-top: 1px solid #b5b5b5;
}
#sizes-table-container #scroll-shadow-bottom {
    top: inherit;
    left: 1px;
    bottom: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(to bottom, transparent, rgb(0, 0, 0, 0.25));
}
#sizes-table-container #scroll-shadow-left {
    width: 15px;
    height: 100%;
    background: linear-gradient(to left, transparent, rgb(0, 0, 0, 0.25));
}
#sizes-table-container #scroll-shadow-right {
    left: inherit;
    right: 0;
    width: 15px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgb(0, 0, 0, 0.25));
}
#sizes-popup .modal-body table {
    position: relative;
	border: none;
    margin: 1px;
    margin-top: 0;
    max-width: calc(100% - 2px);
}
#sizes-popup .modal-body table tbody {
    white-space: nowrap;
}
#sizes-popup .modal-body td {
	text-align: center;
	font-weight: normal;
	border: 1px solid #B5B5B5;
	box-sizing: border-box;
	line-height: 25px;
}
#sizes-popup .modal-body th {
	min-width: 90px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	color: #333333;
	border: 1px solid #B5B5B5;
    border-top: none;
	line-height: 30px;
    vertical-align: middle;
}
#sizes-popup .modal-body th:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: #b5b5b5;
}
#sizes-popup .sticky-header table th {
    position: sticky;
    top: 0px;
    background-color: #ffffff;
}
@media (max-width: 991px) {
	#sizes-popup .modal-header .close {
        top: 17px;
    }
	#sizes-popup .modal-header p.title {
		font-size: 24px;
		line-height: 125%;
    }
}
@media (max-width: 767px) {
    #sizes-popup .modal-dialog {
        max-height: 100%;
    }
    #sizes-popup .modal-content {
		padding: 10px;
	}
	#sizes-popup .modal-header {
        padding: 10px 40px;
    }
	#sizes-popup .modal-header p.title {
		margin-left: 0;
		margin-bottom: 0;
	}
	#sizes-popup .modal-header .close {
        right: 10px;
    }
	#sizes-popup .modal-body {
        margin: 10px;
        padding: 0 !important;
	}
	#sizes-popup .modal-body .flex > div {
		min-width: 50px;
	}
    #sizes-popup .modal-body table {
        max-height: none;
    }
}

.chart-system-selector-container {
	cursor: pointer;
	position: relative;
	user-select: none;
}
.chart-system-sizes-row:hover,
.chart-system-header.hover,
#sizes-popup .sticky-header table th.hover,
.chart-system-size.hover {
	background: #F4F4F4;
}
.chart-system-size:hover {
    background-color: #e9e9e9;
}
.chart-system-selector {
	text-align: center;
}
.chart-system-selector:after {
	content: url("");
   	background-image: url("/catalog/view/theme/subu/image/icon/arrow-down.png");
    background-size: 8px 8px;
    width: 8px;
    height: 8px;
	position: absolute;
	display: inline-block;
    top: 11px;
   	margin-left: 8px;

	-moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.chart-system-selector-options {
	display: none;
	position: absolute;
    width: 100%;
	z-index: 1;
	background: white;
	line-height: 30px;
	box-shadow: 0px 9px 14px -5px;
}
.chart-system-selector-container.active .chart-system-selector-options {
	display: block;
}
.chart-system-selector-container.active .chart-system-selector:after {
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

/*popup cart*/
.mfp-wrap {
	top: 70px !important;
    z-index: 5000!important;
}
.mfp-bg {
	opacity: 0.9;
    top: 70px !important;
    background: #F4F4F4 !important;
}

/*checkout-cart*/
.ocdev-brand,
.ocdev-brand + a {
    font-family: 'Gotham Pro', sans-serif !important;
}
.checkout-cart h1 {
	font-weight: 500;
	font-size: 40px;
	line-height: 120%;
	text-align: center;
	color: #333;
	margin-bottom: 54px;
	margin-top: 0;
}
.cart-left {
	position: relative;
}
.cart-left button {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    text-decoration-line: underline;
    color: #B5B5B5;
    background: transparent;
    border: none;
    outline: none;
    position: absolute;
    right: 0;
}
.cart-left td {
	border-top: none !important;
	border-bottom: 1px solid #D5D5D5;
	padding: 24px 0 !important;
}
.cart-left .new-price,
.cart-left .price-product span,
.wishlist-table .new-price,
.wishlist-table .price-product span {
    font-weight: 400;
    font-size: 16px;
    line-height: 163%;
    color: #000;
    display: inline-block;
}
.cart-left .old-price,
.wishlist-table .old-price {
    color: #B5B5B5 !important;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 16px;
    line-height: 163%;
    margin-right: 16px;
    display: inline-block;
}
.cart-total-block {
	text-align: center;
	margin: 50px 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 163%;
	color: #2B2B2B;
}
.cart-login-block {
	padding: 40px 50px;
    background: #fff;
    margin-left: 100px;
    text-align: center;
}
.cart-login-block p {
	font-weight: normal;
	font-size: 14px;
	line-height: 163%;
	text-align: center;
	color: #5E5E5E;
	margin-bottom: 32px;
}
.cart-login-block a {
	display: block;
	width: 100%;
	margin-bottom: 16px;
}
.cart-login-block a + a {
	border: 1px solid #333 !important;
    background: #fff !important;
    color: #333 !important;
}
.cart-login-block a + a:hover {
	background: #333333 !important;
    border: 1px solid #333 !important;
	color: #fff !important;
}

.cart-right img {
	display: block;
	margin: 53px auto;
	padding-left: 100px;
}

#top-wishlist {
	display: inline-block;
    width: auto;
}
#top-wishlist:hover .dropdown-menu {
    display: block;
}
@media (max-width: 991px) {
	#top-wishlist:hover .dropdown-menu {
		display: none;
	}
}
.top-wishlist-link {
	position: relative;
    line-height: 40px;
    display: inline-block;
}

.account-wishlist h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 48px;
}
.account-wishlist h1 + .table-responsive,
.account-order-info .table-responsive {
	width: 620px;
	max-width: 100%;
    background: #fff;
    margin-bottom: 60px;
}
.account-order-info .text-center {
    position: relative;
}
.account-order-info .cart-price-block,
.account-order-info .wishlist-table .price-product span {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--custom-gray);
}
.account-order-info .wishlist-table .price-product span {
    margin-top: 8px;
}
.account-order-info .ocdev-brand-order-info + a {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--custom-black);
    font-family: var(--primary-font-family) !important;
}

.account-order-info .options {
    display: flex;
    flex-wrap: wrap;
}
.account-order-info .options span:nth-child(odd)::after {
    content: "/";
    margin: 0 5px;
}
.account-order-info .options span:nth-child(even)::after {
    content: "\A";
    white-space: pre;
}

.account-order-info .product-quantity {
    top: 7px;
    right: 20px;
    position: absolute;
    border-radius: 50px;
    background-color: white;
    width: 24px;
    height: 24px;
    border: 1px solid #DDDDDD;
    font-size: 10px;
    font-weight: 600;
    font-family: var(--secondary-font-family);
    color: #6A6A6A;
    padding-top: 4px;
    box-shadow: 0px 1px 5px #36363626;
}
.account-wishlist h1 + .table-responsive td,
.account-order-info .table-responsive td {
	border-top: none;
	padding: 0;
}
.wishlist-table > table {
	margin-bottom: 0;
}

.wishlist-table .text-left .flex > div {
	flex: 1 1 auto;
}
.wishlist-table .text-left .flex > div a,
.wishlist-table .text-left .flex > div button {
	width: 100%;
}
.wishlist-table .text-left .flex > div button {
	width: 288px;
	border: 1px solid #333 !important;
    background: #fff !important;
    color: #333 !important;
	margin-right: 30px;
}
.wishlist-table .text-left .flex > div button:hover {
	background: #333333 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
}
.wishlist-table .text-left .flex > div a {
	font-family: Raleway;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	display: flex;
	align-items: center;
	text-decoration-line: underline;
	color: #B5B5B5;
	margin-top: 17px;
}
.wishlist-table .fa-shopping-cart {
	display: none;
}
.wishlist-table td {
	padding: 24px 0 !important;
	border-bottom: 1px solid #F4F4F4;
}
.wishlist-table tr:first-child td {
	padding-top: 0 !important;
}
.wishlist-table tr:last-child td {
	padding-bottom: 0 !important;
	border-bottom: none;
}
.wishlist-table .price-product {
	margin-bottom: 16px;
}
.wishlist-table tr td:first-child {
	padding-right: 30px !important;
}
.wishlist-table tr td img {
    min-width: 150px;
}

#prlogin-popup {
	z-index: 1049;
	background-color: #1C1B1B80;
}
#prlogin-popup .modal-dialog {
	margin-top: 0;
	padding-top: 100px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 50px !important;
}
#prlogin-popup .modal-header > div {
	display: none;
}
#prlogin-popup .modal-header > div.active {
	display: block;
}
#prlogin-popup .modal-header > div > span {
	position: absolute;
    font-weight: normal;
    font-size: 14px;
    line-height: 163%;
    text-align: center;
    text-decoration-line: underline;
    top: 10px;
    cursor: pointer;
}
#prlogin-popup .modal-header > div > span:hover {
	text-decoration-line: none;
}
#prlogin-popup .modal-content {
	background: transparent !important;
	padding: 0;
}
#prlogin-popup .modal-body {
	background: #fff;
	padding: 24px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    width: 100%;
}
#prlogin-popup .modal-title {
    font-family: var(--primary-font-family);
	text-align: center;
	font-weight: 600;
	font-size: 12px;
	line-height: 20px;
    letter-spacing: 2.4px;
	text-align: center;
	color: #1C1B1B;
	margin-bottom: 16px;
    text-transform: uppercase;
}
#prlogin-popup .modal-header > .close {
	background: url(/catalog/view/theme/subu/image/icon/icon-close.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center right;
	top: 5px;
	width: 36px;
    height: 35px;
}
#prlogin-popup .form-horizontal .control-label {
    width: 100%;
    text-align: left;
    font-weight: normal;
    font-size: 14px;
    line-height: 163%;
    margin-bottom: 5px;
}
#prlogin-popup .form-horizontal .control-label:before {
	display: none;
}
#prlogin-popup .form-control {
    font-size: var(--primary-font-family);
    font-size: 12px;
	width: 100%;
    border-radius: 0;
    border: none;
    outline: none;
    line-height: 42px;
    height: 47px;
	-webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
}
#prlogin-popup input[name="password"] + a {
	position: absolute;
    right: 15px;
    top: -25px;
    color: #2B2B2B;
}
#prlogin-popup .col-sm-10,
#prlogin-popup .col-sm-8 {
	width: 100%;
}
#prlogin-popup .form-group {
    margin-bottom: 16px;
}
#prlogin-popup button[type="submit"] {
    margin: 0 auto;
    margin-top: 16px;
    font-family: var(--primary-font-family);
    font-size: var(--checkout-font-size);
    font-weight: 600;
    line-height: 15px;
    letter-spacing: 2.4px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 15px 82px;
    display: block;
    background: #1C1B1B;
}
#prlogin-popup button[type="submit"]:hover{
    color: #1C1B1B;
    background: #FFFFFF;
    border: 1px #6A6A6A33 solid;
}
#login-type{
    margin-bottom: 16px;
}
#login-type .control-label {
    font-size: var(--secondary-font-family)!important;
    font-size: 12px!important;
    color: #1C1B1B;
    font-weight: 500!important;
    width: auto!important;
    padding-left: 15px;
}
@media(max-width: 370px){
    #login-type .control-label {
        padding-left: 0px;
    }
}
@media(max-width: 340px){
    #login-type .control-label {
        width: 100% !important;
    }
}
#login-type .checkmark_radio,
#recovery-type .checkmark_radio {
    border-radius: 0;
}

#prlogin-popup .text_agree {
	font-weight: normal;
	font-size: 12px;
	line-height: 163%;
	text-align: center;
	color: #747474;
	max-width: 360px;
	margin: 16px auto;
}
#prlogin-popup .alert button.close {
	display: none;
}

#prlogin-popup .alert {
    padding-bottom: 0;
    margin-bottom: 15px;
}

.modal-content .alert .close {
	background: transparent !important;
	font-family: Oswald;
}
.qc-col-2 {
	max-width: 440px;
    /* margin: 0 auto !important; */
    /* float: none !important; */
}
.qc-col-2 .col-xs-7,
.qc-col-2 .col-xs-5 {
	width: 100% !important;
}
#d_quickcheckout .panel-default {
	background: transparent !important;
    border: none !important;
}
#d_quickcheckout .panel-default > .panel-heading {
	border: none;
    position: absolute;
    left: 0;
    transform: translate(-100%, 0);
    padding: 0;
    margin-top: 22px;
    background: none;
}
#d_quickcheckout .panel-title .icon {
	display: none;
}
#d_quickcheckout .panel-title .text {
	font-weight: 600;
	font-size: 12px;
	line-height: 18px;
	text-align: right;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #2B2B2B;
}
#d_quickcheckout .panel {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
#d_quickcheckout div.required .control-label:before {
	display: none;
}
#d_quickcheckout .form-control {
    display: block;
    width: 100%;
    height: 42px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc !important;
    border-radius: 0 !important;
	font-weight: 500;
	font-size: 14px;
	color: #333333 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.qc-coupon .control-label {
    display: none;
}
.qc-coupon > div {
    width: 100%;
}
.qc-coupon input {
    text-align: center;
}
#shipping_method_list button,
#shipping_address_country_id_input button,
#shipping_address_zone_id_input button,
#shipping_address_city_input button {
    font-size: 14px;
    outline: none !important;
}
#payment_address_firstname_input,
#payment_address_lastname_input,
div[id="shipping_address_address_2_input"],
div[id="shipping_address_company_input"] {
	width: calc(50% - 5px);
    float: left;
    margin-left: 0 !important;
	margin-right: 0 !important;
}
#payment_address_firstname_input,
div[id="shipping_address_address_2_input"] {
    margin-right: 10px !important;
}
#payment_address_firstname_input > div,
#payment_address_lastname_input > div,
div[id="shipping_address_address_2_input"] > div,
div[id="shipping_address_company_input"] > div {
	padding: 0 !important;
}
#d_quickcheckout #shipping_address .panel-body {
	padding-top: 0 !important;
}
#d_quickcheckout #shipping_method .panel-body {
	padding-bottom: 0 !important;
}
#d_quickcheckout #shipping_method .panel {
	margin-bottom: 0 !important;
}
#shipping_method_form .panel-default > .panel-heading {
    margin-top: 15px;
}

.checkout-top h1 {
	font-weight: 500;
	font-size: 40px;
	line-height: 120%;
	text-align: center;
}
.checkout-top p {
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	color: #333333;
	text-align: center;
}
.qc-totals {
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	color: #333333;
	text-align: center;
}
.qc-totals > .q-line-totals {
	display: none;
}
.qc-totals > .q-line-totals:last-child {
	display: block;
}

#cart_view .panel-body {
	padding: 0 !important;
}
#cart_view .qc-cart {
	display: none;
}
#cart_view .panel-default {
	margin-bottom: 0;
}

/* Styles for products list on checkout page  */
#checkout_form_container {
    display: flex;
    justify-content: center;
}
@media(max-width: 991px) {
	#checkout_form_container {
        flex-direction: column-reverse;
        align-items: center;
    }
}
#checkout_cart{
    margin-left: 15px;
    padding-left: 0;
    will-change: min-height;
}

#checkout_cart_inner{
    transform: translate(0, 0); /* For browsers don't support translate3d. */
    transform: translate3d(0, 0, 0);
    will-change: position, transform;
}

#cart_view_products_list {
    max-height: 50vh;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
#cart_view_products_list::-webkit-scrollbar {
  display: none;
}
#cart_view_products_list tbody tr:first-child td {
    border-top: none;
}
#cart_view_buttons {
	padding-bottom: 15px;
}

#cart_view .product-image {
    vertical-align: middle;
    width: 40%;
    padding-left: 0;
    padding-right: 0;
}
@media(max-width: 991px) {
	#cart_view #cart_confirm_wrap {
		display: none;
	}
}

#cart_view .ocdev-brand + a {
	font-size: 14px;
}

#checkout_form {
    width: 100%;
}

#d_quickcheckout #confirm_comment {
    resize: none;
    overflow: hidden;
    min-height: 60px;
}
#d_quickcheckout #confirm_comment::-webkit-input-placeholder {
   text-align: center;
}
#d_quickcheckout #confirm_comment:-moz-placeholder { /* Firefox 18- */
   text-align: center;
}
#d_quickcheckout #confirm_comment::-moz-placeholder {  /* Firefox 19+ */
   text-align: center;
}
#d_quickcheckout #confirm_comment:-ms-input-placeholder {
   text-align: center;
}
@media(max-width: 425px) {
    #d_quickcheckout #confirm_comment {
        min-height: 50px;
    }
}

/* Styles for order recipient */
#shipping_address .radio-input:last-of-type {
    margin-bottom: 15px;
}

.checkbox-input label {
	margin: 0 20px;
	cursor: pointer;
	position: relative;
}
.checkbox-input label input {
    display: inline-block;
	margin: 2px 5px 0 0;
    vertical-align: top;
	opacity: 0;
}
.checkbox-input label input[type="checkbox"] + span:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
    background: #f4f4f4;
}
.checkbox-input label input[type="checkbox"]:checked + span:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
    background: #E48154;
}
.checkbox-input label input[type="checkbox"]:checked + span:before {
    content: url(/catalog/view/theme/subu/image/icon/checkbox.png);
    position: absolute;
    top: 4px;
    left: 4px;
    display: block;
    z-index: 2;
}
#shipping_address_another_recipient_input label {
    margin: 0;
}
#shipping_address_another_recipient_input.checkbox-input label input[type="checkbox"] + span:after {
	background: #fff;
    border: 1px solid #ccc;
}
#shipping_address_another_recipient_input.checkbox-input label input[type="checkbox"]:checked + span:after {
    background: #3d88cd;
    border: none;
}

#shipping_address_firstname_input,
#shipping_address_lastname_input,
#shipping_address_telephone_input {
	display: none;
}

#d_quickcheckout .qc-totals .row:last-child {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}
#d_quickcheckout .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 4px;
}
.bootstrap-select > .dropdown-toggle {
	line-height: 40px;
    padding: 0 20px 0 10px;
	border: none !important;
	/*background: #fff !important;*/
	outline: none !important;
}
#d_quickcheckout .preloader {
	display: none !important;
}
.bootstrap-select > .dropdown-menu {
	border-radius: 0;
    border: none;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
	color: #333;
	background-color: #f4f4f4;
	font-weight: 600;
}
.dropdown-menu > li > a {
	padding: 5px 20px;
}

#payment_method_list .radio-input {
	border: 1px solid #D5D5D5;
	border-bottom: none;
    padding: 10px 20px;
    font-weight: normal;
    font-size: 14px;
	margin: 0;
}
#payment_method_list > .radio-input:last-child {
	border-bottom: 1px solid #D5D5D5;
}
#payment_method .panel-default > .panel-heading {
	margin-top: 12px;
}

#shipping_address .radio-input {
	border: 1px solid #D5D5D5;
	border-top: none;
    padding: 10px 20px;
    font-weight: normal;
    font-size: 14px;
	margin: 0;
}
#shipping_address .panel-body > p {
	display: none;
}
#shipping_address .panel-body > p + .radio-input {
	border-top: 1px solid #D5D5D5;
}
#shipping_address .panel-body .radio-input label {
	cursor: pointer;
}
.radio-input label input[type="radio"] {
	/*opacity: 0;*/
	position: relative;
	left: -10000px;
}
.radio-input label input[type="radio"] {
	position: relative;
}
.radio-input label input[type="radio"]:before {
	content: '';
	cursor: pointer;
	display: block;
	background: #dadada;
	width: 16px;
	height: 16px;
	border-radius: 100%;
	position: absolute;
	top: -1px;
    left: 9995px;
}
.radio-input label input[type="radio"]:checked:before {
	content: '';
	display: block;
	background: #fff;
	width: 16px;
	height: 16px;
	border-radius: 100%;
	position: absolute;
	top: -1px;
    left: 9995px;
	border: 5px solid #3d88cd;
}

#confirm_coupon {
    width: 42px;
    height: 42px;
    padding: 0;
}
#confirm_coupon:after {
    right: 10px;
}
#confirm_coupon.btn-loading i {
    display: none;
}
#qc_cart_confirm_order {
	margin-top: 15px;
}
#qc_confirm_order + .text-center,
#qc_cart_confirm_order + .text-center {
    text-align: center;
    font-weight: normal;
    font-size: 14px;
    line-height: 163%;
    margin-top: 24px;
    color: #747474;
}
#qc_cart_confirm_order + .text-center {
	margin-top: 12px;
}
@media(min-width: 992px) {
	#qc_confirm_order,
	#qc_confirm_order + .text-center {
		display: none;
	}
}

.checkout-success .text-404 > h1 {
	font-weight: 500;
	font-size: 72px;
	line-height: 120%;
	text-align: center;
	color: #454648;
}
.checkout-success .text-404 > h1 + div {
	font-weight: 500;
	font-size: 24px;
	line-height: 125%;
	color: #B5B5B5;
	margin-bottom: 32px;
    text-align: center;
    font-weight: bold;
}
.checkout-success .text-404 > h1 + div span {
	color: #333333;
}
.checkout-success .text-404 {
    width: initial;
}
.checkout-success .text-404 > p {
	margin-bottom: 48px;
    text-align: center;
}
.checkout-success .text-404 + a {
	display: block;
	width: 288px;
	max-width: 100%;
	margin: 0 auto 104px;
	background: #333333 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
}
.checkout-success .text-404 + a:hover {
    border: 1px solid #333 !important;
    background: #fff !important;
    color: #333 !important;
}
@media (max-width: 767px) {
    .checkout-success .text-404 > h1 {
    font-size: 50px;
    }
    .checkout-success .text-404 > h1 {
        font-size: 40px;
    }
    .checkout-success .text-404 > h1 + div {
        font-size: 20px;
    }
}


/*#shipping_address .panel-body > .radio-input,*/
#payment_address .panel-body > .radio-input,
#payment_address .panel-body > p {
	display: none !important;
}
/*#shipping_address .panel-body > #shipping_address_form,*/
#payment_address .panel-body > #payment_address_form {
	display: block !important;
}

/*account-account*/
.account-account .account-header {
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.account-account .alert ,
.account-login .alert,
.account-forgotten .alert,
.account-reset .alert
{
    padding-top: 20px;
    margin-bottom: -20px;
}

.account-account h1 ,
.account-edit h1,
body[class*="account-address-"] h1,
.account-password h1,
.account-order-info h1
{
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    align-items: center;
    text-align: center;
    color: var(--custom-black);
    margin-bottom: 0;
    text-transform: uppercase;
    margin-top: 50px;
    font-family: var(--primary-font-family);
    letter-spacing: 2.4px;
}
.account-subpage-header {
    position: relative;
    display: flex;
    flex-direction: column;
}

.account-account h1 + a
{
	align-self: flex-end;
	margin-top: 15px;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: var(--custom-gray);
}
.button-subpage-back {
    position: absolute;
    left: 40px;
    bottom: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: var(--custom-black);
    text-decoration: underline;
    padding: 20px;
    margin: -20px;
}
.account-account h1 + a:before {
	content: url("/catalog/view/theme/subu/image/icon/logout.png");
	position: relative;
    top: 4px;
	margin-right: 18px;
}
@media (max-width: 575px) {
    .account-account h1 + a {
        align-self: center;
    }
}

.data-account {
	background: #fff;
	margin-bottom: 48px;
}
.data-account .title a {
	position: absolute;
	right: 32px;
    top: 12px;
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	text-decoration-line: underline;
    letter-spacing: 0;
    font-family: var(--secondary-font-family);
    text-transform: capitalize;
}
.data-account .title a:hover {
	text-decoration-line: none;
}
.data-account .title a:before {
	content: url("/catalog/view/theme/subu/image/icon/pencil.png");
	position: relative;
    top: 2px;
    margin-right: 8px;
}
.data-account .title + div {
	padding: 15px 32px;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: var(--custom-gray);
}
.data-account .title + div > div {
	margin-bottom: 20px;
	position: relative;
}
.data-account .title + div > div:last-child {
	margin-bottom: 0;
}
.data-account .title + div span {
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: var(--custom-black);
	display: block;
	margin-top: 5px;
}
.data-address .title + div > div a {
	position: absolute;
	right: 0;
    top: 0;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	text-decoration-line: underline;
	color: var(--custom-black);
}
.data-address .title + div > div a:hover {
	text-decoration-line: none;
}
.data-address .title + div > a:hover {
	text-decoration-line: none;
}
.data-subscription .btn {
    padding: 15px 30px;
    white-space: normal;
	line-height: normal;
	font-size: 14px;
}
.data-orders .title + div span {
	text-transform: uppercase;
}
.data-orders .title + div a {
	display: block;
    width: 100%;
    text-align: center;
    line-height: 50px;
    margin-top: 17px;
}
.data-orders .title + div a:hover {
	color: #fff;
	background: #333;
}
.data-orders .title + div > div {
	margin-bottom: 40px;
}
.data-orders .title + div > div:last-child {
	margin-bottom: 0;
}

.data-account span.oswald {
	font-family: Oswald !important;
	font-weight: normal !important;
}

.account-register #content form .buttons {
    float: right;
    margin-bottom: 30px;
}
.account-reset #content form .buttons {
    margin-bottom: 30px;
}

/*account-edit*/
.forgotten-page-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: var(--custom-black);
    margin-bottom: 48px;
    margin-top: 64px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
}
.account-edit #content > .form-horizontal,
.account-password #content > .form-horizontal,
.account-forgotten #content > .form-horizontal,
body[class*="account-address-"] #content > .form-horizontal {
    margin: 50px 0 !important;
}
.account-edit #content > .form-horizontal .col-sm-2,
.account-edit #content > .form-horizontal .col-sm-10,
.account-password #content > .form-horizontal .col-sm-2,
.account-password #content > .form-horizontal .col-sm-10,
.account-forgotten #content > .form-horizontal .col-sm-2,
.account-forgotten #content > .form-horizontal .col-sm-10,
body[class*="account-address-"] #content > .form-horizontal .col-sm-2,
body[class*="account-address-"] #content > .form-horizontal .col-sm-10 {
    width: 100% !important;
	float: none !important;
}
#prlogin-popup .form-horizontal .control-label,
.account-login #content form .control-label,
.account-edit #content > .form-horizontal .control-label,
.account-password #content > .form-horizontal .control-label,
.account-forgotten #content > .form-horizontal .control-label
{
    padding-top: 0;
    margin-bottom: 4px;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 163%;
	text-align: left;
}
body[class*="account-address-"] #content > .form-horizontal .control-label {
    text-align: left;
    padding: 0 10px;
    line-height: 50px;
    height: 50px;
}
body[class*="account-address-"] #checkout_delivery_np_city_group > .row {
    margin: 20px;
}
#prlogin-popup .form-horizontal .control-label:before,
.account-edit #content > .form-horizontal .control-label:before,
.account-password #content > .form-horizontal .control-label:before,
.account-forgotten #content > .form-horizontal .control-label:before,
.account-reset #content > .form-horizontal .control-label:before,
body[class*="account-address-"] #content > .form-horizontal .control-label:before {
	display: none;
}
#prlogin-popup .form-control,
.account-login #content form .form-control,
.account-edit #content > .form-horizontal .form-control,
.account-password #content > .form-horizontal .form-control,
.account-forgotten #content > .form-horizontal .form-control,
.account-reset #content .login-form .form-control,
.account-reset #content form .form-control,
body[class*="account-address-"] #content > .form-horizontal .form-control {
    font-weight: 600;
    display: block;
    width: 100%;
    height: 47px !important;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 0 !important;
    color: #1C1B1B !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.account-reset #content .login-form .form-control {
    height: 100%;
}
#prlogin-popup  a{
    font-family: var(--secondary-font-family);
    font-size: 12px;
    font-weight: 400;
    text-decoration: underline;
    line-height: 21px;
    color: #1C1B1B;
}

.login-page-form #login-type {
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
}
.login-page-form #login-type input[type="radio"]{
    display: none;
}

.login-page-form .control-label input:checked + .checkmark_radio {
    border: 5px solid #1C1B1B;
}

.account-edit #content > .form-horizontal input[type="submit"],
.account-edit #content > .form-horizontal button[type="submit"],
.account-password #content > .form-horizontal input[type="submit"],
.account-password #content > .form-horizontal button[type="submit"],
.account-forgotten #content > .form-horizontal input[type="submit"],
.account-forgotten #content > .form-horizontal button[type="submit"],
body[class*="account-address-"] #content > .form-horizontal input[type="submit"],
body[class*="account-address-"] #content > .form-horizontal button[type="submit"] {
	width: 100%;
	margin-top: 32px;
}
.account-reset #content > .form-horizontal button[type="submit"] {
    padding-left: 50px;
    padding-right: 50px;
}
.account-edit #content > .form-horizontal .buttons .pull-right,
.account-password #content > .form-horizontal .buttons .pull-right,
.account-forgotten #content > .form-horizontal .buttons .pull-right,
body[class*="account-address-"] #content > .form-horizontal .buttons .pull-right {
	float: none !important;
	width: 100%;
}
.account-edit #content > .form-horizontal .buttons .pull-left a,
.account-password #content > .form-horizontal .buttons .pull-left a,
.account-forgotten #content > .form-horizontal .buttons .pull-left a,
body[class*="account-address-"] #content > .form-horizontal .buttons .pull-left a,
.account-order-info #content .pull-right a {
	position: absolute;
    left: 130px;
	top: 52px;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: right;
    color: #333333 !important;
    height: initial;
}
.account-edit #content > .form-horizontal .buttons .pull-left a:before,
.account-password #content > .form-horizontal .buttons .pull-left a:before,
.account-forgotten #content > .form-horizontal .buttons .pull-left a:before,
body[class*="account-address-"] #content > .form-horizontal .buttons .pull-left a:before,
.account-order-info #content .pull-right a:before {
	content: '<';
	position: relative;
    top: -1px;
	margin-right: 16px;
}
.account-edit .breadcrumb,
.account-password .breadcrumb,
.account-order-info .breadcrumb,
.account-forgotten .breadcrumb,
body[class*="account-address-"] .breadcrumb {
	display: none;
}
.account-login .link-forgotten {
    display: inline-block;
    margin-top: 10px;
}

.account-order-info .table-responsive {
    margin-top: 50px;
}
.account-order-info .table-responsive .main-order-info {
    width: 100%;
    justify-content: space-between;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 30px;
    height: 40px;
    border-bottom: 1px solid lightgrey;
    margin-bottom: 30px;
    padding: 5px 10px;
}
.account-order-info h1 + .table-responsive .main-order-info span {
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 21px;
}
.account-order-info .table-responsive > p {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 163%;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}
.account-order-info .table-responsive.packages-table {
    padding-bottom: 20px;
}
.account-order-info .table-responsive.packages-table > p {
    margin-bottom: 20px;
}
.account-order-info .table-responsive.packages-table .table {
    margin: -15px 0 -15px;
}
.account-order-info .table-responsive.packages-table .table tr td {
    padding: 15px 0 15px;
    border-top: 1px solid #ddd;
}
.account-order-info .table-responsive.packages-table .table tr:first-child td {
    border-top: none;
}
.account-address-edit .bootstrap-select > .dropdown-menu.show {
    transform: translateX(0);
    max-width: 100%;
}
.account-address-edit .bootstrap-select > .dropdown-menu span.text {
    white-space: normal;
}
@media (max-width: 767px) {
    .account-account > .container,
    .account-edit > .container,
    .account-address-edit > .container,
    .account-order-info > .container,
    .account-password > .container,
    .account-forgotten > .container,
    .account-wishlist > .container,
    .account-logout > .container {
        padding-top: 30px;
    }
}

.forgotten-page-subtitle {
	text-align: center;
    font-weight: 600;
    font-size: var(--common-font-size);
    line-height: 170%;
    margin-bottom: 30px;
    text-transform: uppercase;
}
#btn-forgotten {
    background-color: var(--custom-black);
    padding: 12px 70px;
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-size: 14px;
    height: 42px;
    line-height: 18px;
    border: none;
}
.account-forgotten #recovery-type label {
    font-size: 12px;
    font-weight: 500;
}
.account-forgotten #recovery-type input {
    display: none;
}
#recovery-type {
    margin-bottom: 20px;
}
#recovery-type label {
    margin-right: 15px;
}
.account-forgotten #column-right ,
.account-account #column-right,
.account-password #column-right,
body[class*="account-address-"] #column-right,
.account-order-info #column-right,
.account-edit #column-right,
.account-login #column-right,
.account-reset #column-right,
.account-logout #column-right
{
    margin-top: 50px;
}
.account-forgotten #column-right header,
.account-account #column-right header,
.account-logout #column-right header,
.account-password #column-right header,
.account-order-info #column-right header,
.account-login #column-right header,
body[class*="account-address-"] #column-right header,
.account-edit #column-right header
{
    text-transform: uppercase;
    letter-spacing: 2.4px;
}
.account-forgotten #column-right button ,
.account-logout #column-right button ,
.account-account #column-right button,
.account-password #column-right button,
.account-order-info #column-right button,
.account-login #column-right button,
body[class*="account-address-"] #column-right button,
.account-edit #column-right button
{
    background-color: var(--custom-black);
    text-transform: uppercase;
    letter-spacing: 2.4px;
    font-size: 12px;
    line-height: 20px;
    border: none;
}

.account-forgotten #column-right .form-control:focus ,
.account-account #column-right .form-control:focus,
.account-password #column-right .form-control:focus,
.account-logout #column-right .form-control:focus,
.account-order-info #column-right .form-control:focus,
.account-login #column-right .form-control:focus,
.account-reset #column-right .form-control:focus,
body[class*="account-address-"] #column-right .form-control:focus,
.account-edit #column-right .form-control:focus
{
    box-shadow: none;
    -webkit-box-shadow: none;
    border-color: var(--custom-black);
}

.account-forgotten #column-right .panel,
.account-account #column-right .panel,
.account-password #column-right .panel,
.account-order-info #column-right .panel,
.account-login #column-right .panel,
body[class*="account-address-"] #column-right .panel,
.account-logout #column-right .panel,
.account-edit #column-right .panel
{
    border-radius: 0;
}
.account-forgotten #content > .form-horizontal input[type="submit"] {
	margin-bottom: 90px;
}
.account-forgotten #content > .form-horizontal .buttons .pull-left a {
	display: none;
}

.ajax-result-container2 .blog-tags-box {
	text-align: center;
}
.ajax-result-container2 .blog-tags-box p {
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 163%;
    margin-bottom: 15px;
	text-transform: inherit;
    letter-spacing: 0;
}

#search-by-category .t1,
#search-by-category .t2,
#search-by-category .search-ajax .ajax-result-container {
	display: none !important;
}
#search-by-category.active-t1 .t1,
#search-by-category.active-t2 .t2,
#search-by-category.active-t1 .search-ajax .ajax-result-container {
	display: block !important;
}

/*product-search*/
.product-search .custom-products .product-layout .product-layout {
	padding: 0 !important;
	width: 100% !important;
}
.product-search .appenddivproduct > .product-layout > .product-layout {
	padding: 10px 20px !important;
}

.lg-backdrop {
	background: #fff !important;
}
.lg-actions .lg-next, .lg-actions .lg-prev {
	background: transparent !important;
	opacity: 1 !important;
}

.lg-actions .lg-prev:after,
.lg-actions .lg-next:after
{
    background-image: url(/catalog/view/theme/subu/image/icon/arrow-left.png);
    background-size: 10px 20px;
    display: inline-block;
    width: 10px;
    height: 20px;
    content: "" !important;
}
.lg-actions .lg-next:after {
    background-image: url(/catalog/view/theme/subu/image/icon/arrow-right.png);
}

.lg-actions .lg-next:before,
#lg-counter,
#lg-share,
#lg-download {
	display: none !important;
}
.lg-toolbar {
	opacity: 1 !important;
	background: #fff !important;
}
.lg-outer .lg-toogle-thumb {
	display: none !important;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
	border-color: #D5D5D5 !important;
}
.lg-toolbar .lg-icon {
	color: #212426 !important;
}
.lg-toolbar .lg-icon {
	height: initial !important;
	padding: 15px 0 15px !important;
}
span.lg-autoplay-button.lg-icon {
    display: none !important;
}
.lg-actions .lg-icon {
    box-shadow: 0px 1px 5px 0px #36363626;
    padding: 10px 16px !important;
    border-radius: 50% !important;
}
.lg-outer .lg-thumb-outer {
	background: #fff !important;
}

.lg-sub-html {
	background: #fff !important;
	color: #000 !important;
}

.account_socnetauth2__header {
	margin-top: 16px;
	margin-bottom: 16px;
	text-align: center;
}
.auth-soc {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.auth-soc .socnetauth2_buttons {
	display: block;
	margin: 5px;
}
.auth-soc .socnetauth2_buttons:hover img {
	opacity: 0.8;
}

.__b-popup1__ {
	background: rgba(244,244,244,0.97) !important;
	opacity: 1 !important;
	top: 70px !important;
}

.male-sbscr label {
	margin: 0 20px;
	cursor: pointer;
	position: relative;
}
.male-sbscr label input {
    display: inline-block;
	margin: 2px 5px 0 0;
    vertical-align: top;
	opacity: 0;
}
.male-sbscr label input[type="checkbox"] + .checkmark:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
    background: #F4F4F4;
}
.male-sbscr label input[type="checkbox"]:checked + .checkmark:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
    background: #333;
}
.male-sbscr label input[type="checkbox"]:checked + .checkmark:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
	display: block;
	width: 16px;
	height: 16px;
	z-index: 2;
    background-image: url('/catalog/view/theme/subu/image/icon/checkbox.png');
    background-repeat: no-repeat;
    background-position: center;
}

#popup2 + .box > .success h3 {
	font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 163%;
    margin-bottom: 22px;
    margin-top: 0;
}
#popup2 + .box > .success h3 + label {
	font-family: Raleway;
	font-style: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 163%;
}

.product-thumb.wishlist_on .actions-link {
	display: none;
}
.product-thumb.wishlist_on .actions-link .btn-wishlist {
	display: none;
}
.product-thumb.wishlist_on .quickviewbutton {
	display: block;
}
.product-thumb.wishlist_on + .product-thumb-hover .actions-link .btn-wishlist img,
.product-thumb.wishlist_on .actions-link .btn-wishlist img {
	opacity: 0;
}
.product-thumb.wishlist_on + .product-thumb-hover .actions-link .btn-wishlist:after,
.product-thumb.wishlist_on .actions-link .btn-wishlist:after {
    content: url(/catalog/view/theme/subu/image/icon/icon-wishlist.svg) !important;
    position: absolute;
    left: -1px !important;
    top: 3px !important;
    display: block !important;
}

body[class*="product-category-"] #column-left {
	position: sticky;
    top: 80px;
}
.custom-products + .row.text-center {
	clear: both;
	margin-top: 60px;
}
.custom-products + .row.text-center a {
    margin-top: 55px;
    width: 300px;
}

/*qviz-popup*/
#qviz-popup .modal-dialog {
	width: 100vw;
    min-height: 100vh;
    margin: 0;
    top: 0;
    background: #f4f4f4;
}
#qviz-popup .modal-content {
	display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	width: 100%;
	height: 100%;
	background: #f4f4f4;
}
#qviz-popup .modal-body {
	width: 100%;
	align-items: center;
    justify-content: space-between;
}
#qviz-popup .modal-content .close {
    background: url(/catalog/view/theme/subu/image/icon/icon-close.svg);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
	right: 50px;
	top: 50px;
	width: 36px;
	height: 35px;
	z-index: 2;
}
#qviz-popup .modal-body .tab-content {
	width: 100%;
}

#qviz-popup .qviz-right {
	max-width: 200px;
}
#qviz-popup .qviz-right .grey {
	font-family: Oswald;
	font-style: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #B5B5B5;
}
#qviz-popup .qviz-right .orange {
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 72px;
	line-height: 120%;
	color: #E48154;
}
#qviz-popup .qviz-right .black {
	font-family: Raleway;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	display: flex;
	align-items: center;
	text-align: center;
}
#qviz-popup .qviz-right a {
	font-family: Oswald;
	font-style: normal;
	font-weight: bold;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	letter-spacing: 0.05em;
	text-decoration-line: underline;
	text-transform: uppercase;
	color: #333333;
}

#qviz-popup .qviz-middle .title {
	font-weight: 600;
	font-size: 24px;
	line-height: 163%;
	text-align: center;
	color: #454648;
	margin-bottom: 70px;
}
#qviz-popup .qviz-middle .flex {
	width: 100%;
	align-items: center;
    justify-content: center;
}
#qviz-popup .qviz-middle span {
	border: 1px solid #454648;
	width: 30%;
	margin: 0 8px;
	font-weight: 600;
	font-size: 14px;
	line-height: 16px;
	color: #454648;
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: center;
	cursor: pointer;
}
#qviz-popup .qviz-middle span.active,
#qviz-popup .qviz-middle span:hover {
	background: #333333;
	color: #fff;
}
#qviz-popup .nav-tabs {
	margin: 0;
	border: none;
	margin-right: 120px;
}
#qviz-popup .nav-tabs li {
	float: none;
	margin-bottom: 40px;
}
#qviz-popup .nav-tabs li a {
	display: block;
	background: #fff;
	width: 18px;
	height: 18px;
	border-radius: 100%;
	border: none;
	padding: 0;
	position: relative;
}
#qviz-popup .nav-tabs li a span {
	position: absolute;
    font-family: Oswald;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #B5B5B5;
    left: 150%;
	white-space: nowrap;
}
#qviz-popup .nav-tabs li a span.finish {
	color: #E48154;
}
#qviz-popup .nav-tabs li.li-selected a span.finish {
	color: #B5B5B5 !important;
}
#qviz-popup .nav-tabs li.active a {
	background: #E48154;
}
#qviz-popup .nav-tabs li.li-selected a {
	border: 1px solid #E48154;
	background: #fff !important;
}
#qviz-popup .nav-tabs li a:after {
	content: url("/catalog/view/theme/subu/image/icon/dotted-grey.svg");
	position: absolute;
	top: -34px;
    left: 7px;
}
#qviz-popup .nav-tabs li.active a:after,
#qviz-popup .nav-tabs li.li-selected a:after {
	content: url("/catalog/view/theme/subu/image/icon/dotted-orange.svg");
}
#qviz-popup .nav-tabs li:last-child a:after {
	display: none;
}

.information-information-8 #qviz-popup {
	opacity: 1;
    position: relative;
    display: block;
}
.information-information-8 #content > p,
.information-information-8 #qviz-popup .modal-header {
	display: none;
}
.thumbnails {
	max-height: 100vh;
	overflow-y: auto;
	-ms-overflow-style: none;
}
.thumbnails::-webkit-scrollbar {
	display: none;
}

@media(min-width: 768px) {
	/*.lg-backdrop*/
	.lg-item {
		max-width: 60% !important;
		left: 50% !important;
		transform: translate(-50%, 0) !important;
		overflow: hidden;
	}
	.lg-sub-html {
		position: absolute !important;
		top: 15px;
		bottom: inherit !important;
		display: inline-block;
		background: transparent !important;
		font-size: 24px !important;
		line-height: 163%;
		color: #000 !important;
		width: initial !important;
		text-align: left !important;
	}

	.lg-actions .lg-prev {
		left: 15% !important;
	}
	.lg-actions .lg-next {
		right: 15% !important;
	}
	.lg-outer .lg-thumb-outer {
		top: 50%;
		left: 30px;
		transform: translate(0, -50%) !important;
		height: initial !important;
		max-height: 100%;
		width: 100px !important;
		background: transparent !important;
	}
	.lg-outer .lg-thumb,
	.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
		height: initial !important;
		float: none !important;
		transform: none !important;
		width: 100px !important;
		height: 100px !important;
		padding: 0 !important;
	}
	.lg-toolbar .lg-icon {
		height: initial !important;
		padding: 30px 0 0 !important;
	}
	.lg-toolbar {
		background: transparent !important;
	}
}

/* Stocks page */
.stocks-navigation {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 50px;
    margin-bottom: 40px;
}
.stocks-cities {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    float: left;
    margin-right: 60px;
}
.stocks-city {
    cursor: pointer;
    margin-right: 20px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    padding: 15px 0;
}
.stocks-city.active {
    color: #3D88CD;
}
.stocks-switch-container {
    display: flex;
    width: 450px;
    border: 1px solid #E0E0E0;
    box-sizing: border-box;
}
.stocks-switch-container div {
    cursor: pointer;
    width: 50%;
    text-align: center;
    padding: 14px 0;
    font-size: 16px;
    line-height: 18px;
    color: rgba(0, 0, 0, 0.54);
}
.stocks-switch-container div.active {
    background: #3D88CD;
    color: white;
}

.stocks-list {
	display: flex;
	flex-wrap: wrap;
}
.stock-container {
	margin-top: 30px;
}
.stock-layout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    font-family: 'Gotham Pro', sans-serif;
}
.stock-image {
	width: 50%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.stock-info {
    width: 50%;
    padding: 30px 25px;
}
.stock-info p {
    word-break: break-word;
}
.stock-info p:last-child {
	margin-bottom: 0;
}
.stock-address {
    font-weight: 500;
    margin-bottom: 15px;
}
.stock-title {
    font-weight: 500;
    margin-bottom: 30px;
}

.stocks-list .stock-image {
	position: relative;
	min-height: 250px;
}
.stocks-list .stock-discount {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.7);
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
}

.stocks-map {
    display: none;
    height: 500px;
}
.stocks-map .stock-layout {
    box-shadow: none;
}
.stocks-map .stock-layout .stock-image {
	flex: 0 0 125px;
	width: 125px;
	height: 125px;
}
.stocks-map .stock-layout .stock-image .stock-discount {
	display: none;
}
.stocks-map .stock-info {
	flex: 0 0 170px;
    width: 170px;
	box-shadow: none;
	padding: 0;
	padding-left: 10px;
	font-size: 14px;
}
.stocks-map .stock-address {
    margin: 0;
    margin-bottom: 5px;
}
.stocks-map .stock-title {
    margin: 0;
    margin-bottom: 10px;
}
.stocks-map .stock-schedule {
    margin: 0;
}
.stocks-map .stock-phone {
    margin: 0;
}

@media(max-width: 991px) {
    .stocks-navigation {
        flex-direction: column-reverse;
    }
    .stocks-cities {
        margin-top: 20px;
    }
    .stocks-list .stock-image {
		min-height: 200px;
	}
    .stocks-list .stock-info {
        font-size: 14px;
        padding: 20px;
    }
    .stocks-list .stock-discount {
        font-size: 14px;
    }
}

@media(max-width: 767px) {
    .stocks-switch-container {
        width: 100%;
        flex-direction: column;
    }
    .stocks-switch-container div {
        width: 100%;
    }
    .stocks-list {
		flex-wrap: wrap;
		justify-content: center;
	}
	.stock-container {
		width: 50%;
	}
	.stocks-list .stock-layout {
		flex-direction: column;
	}
	.stocks-list .stock-layout .stock-image {
		width: 100%;
	}
	.stocks-list .stock-layout .stock-info {
		width: 100%;
	}
	.stocks-map .stock-layout .stock-info {
		flex-basis: auto;
	}
}

@media(max-width: 425px) {
	.stock-container {
		width: 100%;
		max-width: 300px;
	}
	.stock-container:first-child {
		margin-top: 0;
	}
	.stock-container + .stock-container {
		margin-top: 40px;
	}
    .stock-info {
        font-size: 14px;
        padding: 15px;
    }
	.stocks-map .stock-layout {
		flex-direction: column;
	}
	.stocks-map .stock-layout .stock-image {
		width: 100%;
	}
	.stocks-map .stock-layout .stock-info {
		width: 100%;
		padding-left: 0;
		padding-top: 10px;
	}
}
/*End Stocks page*/

/* Responsive */
@media(max-width: 1440px){
	.img-disc {
		right: -66px;
	}
	.flexslider22 .blog_grid_holder.column-1 .summary {
		width: 380px;
	}
	.flexslider22 .banner7-content.slider-1 .text-content {
		max-width: 430px;
	}
	.about-us1:before {
		width: 550px;
		height: 490px;
	}
	.blog_grid_holder.column-1 .summary {
		width: 350px;
	}
}
@media(max-width: 1200px){
	.oc-banner7-container .flexslider .slides#oc-inivoslider22 {
		width: 550px;
	}
	.flexslider22 .banner7-content.slider-1 .text-content {
		top: 40%;
		max-width: 400px;
	}
	.flexslider22:before {
		top: 240px;
	}
	.main-women:after {
		right: -200px;
	}
	.main-men:after {
		left: -130px;
	}
	.product-back-link-wrap {
		width: 55px;
	}
	.img-disc {
		right: -36px;
	}
	.product-sizes-box > div:first-child {
		min-width: 57%;
	}
	.select-size-options .flex4 > div:nth-child(2) {
		flex: 1 1 17%;
	}
	.blog_grid_holder.column-1 .blog_item {
		padding: 30px 25px 40px;
	}
	.blog_grid_holder.column-1 .summary {
    	width: 250px;
	}
	.blog-blog #content {
		max-width: 100%;
	}
	.about-us1:before {
		width: 450px;
		height: 400px;
		bottom: inherit;
    	top: 60px;
	}
}
@media(max-width: 991px){
	body[class*="product-category-"] #column-left {
		position: relative;
		top: 0;
	}
    #ocfilter .list-group-item {
        margin-left: 0;
    }
	#search-by-category .search-container .categories-container{
		display: none;
	}
	#search-by-category .search-container #text-search{
		width: 100%;
		border-radius: 40px;
	}
	#logo {
		padding: 15px 0;
	}
	.cart-container {
		padding: 15px 15px 0 0;
	}
	#search-by-category{
		margin: 15px 0;
	}

	.static-policy .text-content h2{
		line-height: 1;
	}
	.static-policy .text-content p{
		margin-top: 10px;
	}
	#top > .container > ul:last-child .btn-link {
		padding: 0 6px;
	}
	.navbar .btn-navbar .icon-bar {
		background: #25294a;
	}
	.hozmenu-container > .nav-container {
		display: none;
	}
	#top > .container > ul:first-child > li {
		min-width: 100px;
	}
	.main-line1 .main-col {
		text-align: center;
	}
	.main-line1 .row > .main-col:first-child {
		margin-bottom: 80px;
	}
	.oc-banner7-container .flexslider .slides#oc-inivoslider22 .nivo-caption {
		position: relative;
	}
	.oc-banner7-container .flexslider .slides#oc-inivoslider22 {
		width: 100%;
	}
	.main-line2 {
		z-index: 3;
    	position: relative;
	}
	.container {
		max-width: 100%;
	}
	.flexslider22 .banner7-content.slider-1 .text-content {
		margin-top: 150px;
		max-width: 100%;
		width: 100%;
		position: relative;
		left: 0;
	}
	.main-women .title,
	.main-women .title + div {
		margin-left: 0;
    	text-align: center;
	}
	.main-men .title,
	.main-men .title + div {
		margin-right: 0;
    	text-align: center;
	}
	.product-tabs-container-slider .tabs li {
		margin: 0 10px;
	}
	.product-tabs-container-slider .tabs {
		padding-left: 0;
	}
	#frm_subscribe-normal {
		padding-left: 40px;
	}
	#subscribe_email-normal {
    	font-size: 32px;
	}
	.product-thumb-hover {
		left: -5px;
		width: calc(100% + 10px);
	}
	.product-back-link-wrap {
		display: none;
	}
	.img-disc {
		right: -26px;
	}
	.product-sizes-box > div:last-child p {
		font-size: 12px;
	}
	.product-description > .flex > div:last-child {
		padding: 0 20px;
	}
	.contact-page-block > div:first-child {
		padding: 100px 50px;
	}
	.contact-page-block > div:last-child {
		padding: 30px 50px;
	}
	.about-us2 > div {
		padding: 36px 44px;
	}
	.about-us1:before {
		content: '';
		width: 340px;
		height: 300px;
		bottom: inherit;
		top: 60px;
	}
	.blog-home #column-left {
    	flex: 1 1 25%;
	}
	.blog_grid_holder.column-1 .image {
		position: relative;
    	transform: none;
	}
	.blog_grid_holder.column-1 .summary {
		width: 100%;
	}
	.blog_grid_holder.column-2 .blog_item {
		width: 100%;
	}

	.blog_grid_holder.column-1 .blog_item {
		padding: 0;
	}
	.blog_grid_holder.column-1 .short {
		padding: 0 24px;
	}
	.blog_grid_holder.column-1 .blog_item {
		padding: 0 0 24px;
	}
	.blog_grid_holder.column-1 .blog-date-block {
		padding: 16px 24px 8px;
	}
	.blog_grid_holder.column-1 .blog_title {
		padding: 0 24px;
	}
	.blog_grid_holder.column-1 .blog_more {
		margin: 32px 24px 0;
	}
	.blog-main-tags-box {
		padding: 64px 15px;
	}
	.cart-login-block {
		margin-left: 50px;
	}

	#ma-mobilemenu {
        transition: left 0.3s;
		display: block;
		left: -500px;
		top: 0;
		box-shadow: none !important;
		background: white;
		height: 100vh !important;
        min-height: 100vh !important;
        width: 300px;
        z-index: 2000;
		/*overflow-y: auto;*/
        /*overflow-x: hidden;*/
		justify-content: space-between;
	}
    #ma-mobilemenu.open {
        left: 0;
    }
    #ma-mobilemenu a {
        border: none;
    }
    #ma-mobilemenu .ma-mobilemenu-tab {
        border-top: 1px solid lightgrey;
        line-height: 40px;
        font-weight: 600;
        letter-spacing: 2.4px;
        margin: 0 20px;
        padding: 10px 0;
        font-size: var(--common-font-size);
    }
    #ma-mobilemenu .ma-mobilemenu-tab:first-child {
        border-top: none;
    }
    #ma-mobilemenu .ma-mobilemenu-tab:last-child {
        border-bottom: 1px solid lightgrey;
    }
    #ma-mobilemenu .menu-collection-list {
        display: flex;
        flex-direction: column;
        row-gap: 12px;
        padding-left: 20px;
        margin-bottom: 20px;
    }
    #ma-mobilemenu .menu-collection-item {
        background: none;
    }
    #ma-mobilemenu .menu-collection-item.active {
        position: relative;
        padding-left: 15px;
    }
    #ma-mobilemenu .menu-collection-item.active > * {
        color: var(--custom-black);
    }
    #ma-mobilemenu .menu-collection-item.active::after {
        content: "•";
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 3em;
        line-height: 20px;
        transform: translate(-10%, -25%);
        color: var(--custom-black);
    }
    #ma-mobilemenu .menu-collection-item > * {
        border: none;
        font-family: var(--secondary-font-family);
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        color: var(--custom-gray);
        margin: 0;
    }

    #ma-mobilemenu .ma-mobilemenu-tab.can-open {
        position: relative;
    }

    #ma-mobilemenu .ma-mobilemenu-tab.can-open::after {
        pointer-events: none;
        position: absolute;
        content: '+';
        top: 8px;
        right: 0;
        font-size: 3em;
        font-weight: 300;
    }

    #ma-mobilemenu .ma-mobilemenu-tab.can-open.opened::after {
        content: '–';
    }

	.navbar-active #ma-mobilemenu {
		display: flex !important;
	}
    .ma-mobilemenu-header {

        width: 100%;
        height: 60px;
        border-bottom: 1px solid #DDDDDD;
    }
	#ma-mobilemenu .pt_menu a {
		font-family: Raleway;
		font-style: normal;
		/* font-weight: 500; */
		font-size: 14px;
		line-height: 48px;
	}
	#top .menu-top {
		height: 50px;
	}
	.mobilemenu .acc-line {
		margin-top: 50px;
        padding-bottom: 8px;
	}
	.mobilemenu .acc-line a {
		border-top: 1px solid #E1E4EB;
		font-family: Raleway;
		font-style: normal;
		font-weight: 500;
		font-size: 14px;
		color: #333333;
	}
	.mobilemenu .acc-line a:before {
        height: 17px;
        width: 17px;
        content: "";
        background-size: 17px;
        display: inline-block;
        background-repeat: no-repeat;
        background-image: url(/catalog/view/theme/subu/image/icon/icon-acc.svg);
        margin-right: 12px;
        margin-bottom: -2px;
	}
	.mobilemenu  .logo-phone > span {
		font-family: 'Raleway';
		font-weight: 300;
		font-size: 11px;
		line-height: 13px;
		letter-spacing: 0;
		color: #333333;
		display: block;
		margin: 0 15px;
	}
	.mobilemenu .logo-phone {
		padding: 15px 0;
		position: relative;
	}
	.mobilemenu .logo-phone > a {
		color: #333333;
		font-family: 'Oswald';
		font-style: normal;
		font-weight: normal;
		font-size: 12px;
		line-height: 18px;
		letter-spacing: 0.1em;
		border-bottom: none;
	}
	.mobilemenu .pt_menu .popup {
		display: none !important;
		width: 100% !important;
	}
	.mobilemenu .block1 {
		width: 100% !important;
	}
	.mobilemenu .block2,
	.mobilemenu .block2 + br,
	.mobilemenu .block1 br,
	.mobilemenu .block1 + br,
	.uptolike-buttons,
	.mobilemenu .itemSubMenu {
		display: none !important;
	}
	.pt_menu .popup.active-on,
	.mobilemenu .itemSubMenu.active-on {
		display: block !important;
	}
	.mobilemenu .itemSubMenu.active-on {
		padding-left: 20px;
	}
	#ma-mobilemenu .pt_menu a.itemMenuName {
		color: #333;
	}
	#popup30 .itemSubMenu {
		display: block !important;
	}
	#popup30 a.actParent {
		display: none !important;
	}
	.top-all-brands {
		position: relative;
		background: transparent;
		text-align: left;
		padding: 0;
	}

	.mob-lang {
		position: absolute;
		right: 15px;
		bottom: 20px;
	}
	.mob-lang span {
		font-family: Raleway;
		font-style: normal;
		font-weight: 500;
		font-size: 12px;
		line-height: 14px;
		cursor: pointer;
		margin: 0 12px;
		opacity: 0.5;
		color: #333333;
	}
	.mob-lang span.active {
		opacity: 1;
		text-decoration-line: underline;
	}
	.ma-mobilemenu-close {
		cursor: pointer;
		position: absolute;
        top: 15px;
        right: 23px;
		display: block;
		width: 30px;
		height: 30px;
		z-index: 2001;
	}
    .ma-mobilemenu-close:before,
    .ma-mobilemenu-close:after {
        top: 5px;
        right: 15px;
    }

	#back-top {
		z-index: 3;
	}
	#top > .container > ul:first-child > li {
		padding-left: 40px;
	}
	.navbar .btn-navbar > .icon-bar:first-child {
		width: 19px;
	}
	.navbar .btn-navbar > .icon-bar:nth-child(2) {
		width: 23px;
	}
	.navbar .btn-navbar > .icon-bar:nth-child(3) {
		width: 21px;
	}
	.navbar a.btn-navbar, .navbar a.btn-navbar:hover {
		border: none !important;
		margin: 17px 0;
	}

}

.mob,
.breadcrumb.mob + .alert {
	display: none;
}

@media(max-width: 767px){
	/*.logo-top {*/
	/*	z-index: 10;*/
	/*	position: relative;*/
	/*}*/
	.mob {
		display: block;
	}
	.pc,
	.breadcrumb.pc + .alert {
		display: none !important;
	}
	.owl-buttons{
		display: none;
	}
	.social-footer .list-unstyled{
		margin: 25px 0
	}
	.footer-title{
		margin: 0 0 15px;
	}
	.payment-img,
	.bottom-footer{
		text-align: center
	}
	.copyright-text{
		margin: 0 0 20px
	}
	li.logo-phone,
	#form-language {
		display: none !important;
	}
	#top > .container > ul:first-child > li {
		padding-left: 40px;
	}
	.navbar .btn-navbar > .icon-bar:first-child {
		width: 19px;
	}
	.navbar .btn-navbar > .icon-bar:nth-child(2) {
		width: 23px;
	}
	.navbar .btn-navbar > .icon-bar:nth-child(3) {
		width: 21px;
	}
	.navbar a.btn-navbar,
	.navbar a.btn-navbar:hover {
		border: none !important;
		margin: 17px 0;
	}
	.main-line0 .sub-col > div {
		display: none;
	}

	.main-slider {
		display: none;
	}
	.slider-mob img {
		width: calc(100% + 30px);
		max-width: calc(100% + 30px);
		left: -15px;
		position: relative;
	}

	.slider-mob p.title {
		font-family: Oswald;
		font-style: normal;
		font-weight: 500;
		font-size: 32px;
		line-height: 120%;
		color: #454648;
		margin: 24px 0;
	}
	.slider-mob p.title + p {
		font-family: Raleway;
		font-style: normal;
		font-weight: normal;
		font-size: 14px;
		line-height: 163%;
		color: #333333;
		opacity: 0.7;
		padding-left: 24px;
		display: block;
		border-left: 1px solid #454648;
		margin-bottom: 24px;
	}
	.slider-mob a {
		width: 100%;
		text-align: center;
	}
	.oc-banner7-container .flexslider .slides#oc-inivoslider22 {
		border: none !important;
	}
	.banner7-content.slider-1 .text-content {
		padding: 0 !important;
	}
	.slider-mix-arrows {
		position: absolute;
		bottom: 100%;
		margin-bottom: 25px;
	}
	.flexslider22 .banner7-readmore a {
		margin-top: 30px;
		width: 100%;
	}
	.slider-mix-arrows > span + span {
		right: -200px;
	}
	.slider-mix-arrows > span {
		right: -140px;
	}
	.main-women {
		margin-top: 200px;
	}
	.main-men {
		margin-top: 350px;
	}
	.main-men:after {
		content: '';
		display: block;
		width: 408px;
		height: 583px;
		background: url("/catalog/view/theme/subu/image/sn2.png") no-repeat;
		left: 0;
    	background-size: contain;
	}
	.main-women:after {
		content: '';
		display: block;
		width: 397px;
		height: 540px;
		background: url("/catalog/view/theme/subu/image/sn1.png") no-repeat;
		right: 0;
    	background-size: contain;
	}
	.main-men:before {
		background: linear-gradient(0deg, #F1F1F1 0%, #fff 100%);
	}
	.main-women:before {
		background: linear-gradient(0deg, #F1F1F1 0%, #fff 100%);
	}
	.main-men .title,
	.main-women .title {
		font-size: 24px;
		line-height: 120%;
		text-align: center;
		color: #454648;
		margin-top: 150px;
	}
	.main-men .title + div a,
	.main-women .title + div a {
		display: block;
		margin-bottom: 24px;
	}
	.card-sizes,
	.product-tabs-container-slider .tabs {
		display: none;
	}
	.product-name {
		font-size: 12px;
	}
	.price {
    	font-size: 12px;
	}
	.product-tabs-container-slider .module-title h2 {
		font-size: 24px;
	}
	.main-men {
		margin-bottom: 60px;
	}
	#dialog-normal .newletter-title,
	#dialog-normal .newleter-content {
		padding-left: 5% !important;
		width: 90%;
		text-align: center;
		float: none;
	}
	#dialog-normal .newletter-title,
	#dialog-normal .newleter-content {
		padding: 70px 0;
	}
	.newletter-subscribe-container {
		padding: 0;
		background: #f5f5f2;
		background: -moz-linear-gradient(top, #f5f5f2 50%, #f5f5f2 50%, #f9f9f7 50%);
		background: -webkit-linear-gradient(top, #f5f5f2 50%, #f5f5f2 50%, #f9f9f7 50%);
		background: linear-gradient(to bottom, #f5f5f2 50%, #f5f5f2 50%, #f9f9f7 50%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f2', endColorstr='#f9f9f7', GradientType=1);
	}
	#cmsblock-33 {
		display: none;
	}
    .layer-category #column-left {
        display: block;
    }
    .filters-wrap {
        justify-content: center;
    }
    .filter-bage {
        margin-left: 5px;
        margin-right: 5px;
    }
	.navbar-active #ma-mobilemenu {
		display: flex !important;
	}
	#ma-mobilemenu .pt_menu a {
		font-family: Raleway;
		font-style: normal;
		/* font-weight: 500; */
		font-size: 14px;
		line-height: 48px;
	}
	#top .menu-top {
		height: 50px;
	}
	.mobilemenu .acc-line a {
		border-top: 1px solid #E1E4EB;
		font-family: Raleway;
		font-style: normal;
		font-weight: 500;
		font-size: 14px;
		color: #333333;
	}
	.mobilemenu  .logo-phone > span {
		font-family: 'Raleway';
		font-weight: 300;
		font-size: 11px;
		line-height: 13px;
		letter-spacing: 0;
		color: #333333;
		display: block;
		margin: 0 15px;
	}
	.mobilemenu .logo-phone {
		padding: 15px 0;
		position: relative;
		margin-bottom: constant(safe-area-inset-top);
		margin-bottom: env(safe-area-inset-top);
	}
	.mobilemenu .logo-phone > a {
		color: #333333;
		font-family: 'Oswald';
		font-style: normal;
		font-weight: normal;
		font-size: 12px;
		line-height: 18px;
		letter-spacing: 0.1em;
		border-bottom: none;
	}
	.mobilemenu .pt_menu .popup {
		display: none !important;
		width: 100% !important;
	}
	.mobilemenu .block1 {
		width: 100% !important;
	}
	.mobilemenu .block2,
	.mobilemenu .block2 + br,
	.mobilemenu .block1 br,
	.mobilemenu .block1 + br,
	.uptolike-buttons,
	.mobilemenu .itemSubMenu {
		display: none !important;
	}
	.pt_menu .popup.active-on,
	.mobilemenu .itemSubMenu.active-on {
		display: block !important;
	}
	.mobilemenu .itemSubMenu.active-on {
		padding-left: 20px;
	}
	#ma-mobilemenu .pt_menu a.itemMenuName {
		color: #333;
	}
	#popup30 .itemSubMenu {
		display: block !important;
	}
	#popup30 a.actParent {
		display: none !important;
	}
	.top-all-brands {
		position: relative;
		background: transparent;
		text-align: left;
		padding: 0;
	}

	.mob-lang {
		position: absolute;
		right: 15px;
		bottom: 20px;
	}
	.mob-lang span {
		font-family: Raleway;
		font-style: normal;
		font-weight: 500;
		font-size: 12px;
		line-height: 14px;
		cursor: pointer;
		margin: 0 12px;
		opacity: 0.5;
		color: #333333;
	}
	.mob-lang span.active {
		opacity: 1;
		text-decoration-line: underline;
	}

	#back-top {
		z-index: 3;
	}
	#frm_subscribe-normal {
		padding-left: 0;
	}

	.modal-dialog {
		/*background: #ffffff;*/
		margin: 0 !important;
		height: 100vh;
		overflow: auto;
	}


	#prlogin-popup .modal-content {
		top: 70px;
	}
	#prlogin-popup .modal-header > .close {
		z-index: 2;
		top: 60px;
		right: 16px;
	}
	.modal-header > div > span {
		right: 14px;
    	top: 22px;
	}
	.blog_grid_holder.column-1 {
		margin-top: 30px;
		padding: 0 15px !important;
	}
	.blog_grid_holder {
		padding: 0 15px !important;
	}
	.blog h1 {
		margin-left: 0;
	}
	.breadcrumb {
		margin-bottom: 10px;
	}
	.blog-blog #content {
		margin: 50px auto 0;
	}
	.blog-blog .blog_post .main_thumb img {
		height: 320px;
		width: initial !important;
		max-width: initial;
		transform: translate(-50%, 0);
		position: relative;
		left: 50%;
	}
	.blog-blog .blog_post .main_thumb + .flex {
		display: block;
		margin: 0;
	}
	.blog-main-tags-box {
		padding: 16px 0;
	}
	.blog-main-tags-box p {
		margin-bottom: 16px;
	}
	.blog-main-tags-box a {
		margin-bottom: 12px;
		display: inline-block;
		margin-right: 24px;
	}
	.blog-blog .main_thumb + .flex > .col-sm-9 {
		padding: 24px 15px;
    	margin: 0;
		border-top: 1px solid #F4F4F4;
	}
	.blog-blog .blog-date-block {
		margin-bottom: 15px;
	}
	.blog-blog h1 {
		margin-left: 0;
		font-size: 24px;
	}
	.blog_post .main_description > p {
		padding-left: 16px;
		border-left: 1px solid #f4f4f4;
	}
	.blog .main_description .flex {
		display: block;
	}
	.blog .main_description .flex > div {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.blog-video > div {
		padding: 24px 15px;
	}
	.blog {
		margin-bottom: 0 !important;
	}
	body:not(.common-home) .newletter-subscribe-container {
		margin-top: 0;
	}

	.contact-page-iframe {
		position: relative;
		top: 0;
		left: 0;
		margin: 0 -15px;
		width: calc(100% + 30px);
		max-width: calc(100% + 30px);
		height: 300px;
	}
	.contact-page-iframe-after {
		display: none;
	}
	.information-contact .contact-page-block {
		display: block;
		margin: -5px -15px 0;
		border: none;
		width: calc(100% + 30px);
		max-width: calc(100% + 30px);
		text-align: center;
	}
	.contact-page-block > div:first-child {
		padding: 32px 15px;
	}
	.contact-page-block > div:last-child {
		padding: 30px 15px;
	}

	.checkout-cart h1,
	.product-manufacturer h1,
	body[class*="information-information-"] h1 {
		margin-top: 20px;
	}
	.information-information-4 h1 {
		font-size: 24px;
		text-align: left;
		display: inline-block;
		margin-bottom: 24px;
	}
	.information-information-4 h1 + .flex {
		display: block;
	}
	.about-us1 {
		position: relative;
		right: 0;
		margin: 0 !important;
	}
	.about-us1:before {
		top: 30px;
	}
	.about-us2 > div {
		padding: 0;
		left: 0;
		background: transparent;
		border: none;
		position: unset;
    	margin-top: 60px;
	}
	.about-us2>div:before {
		display: none;
	}
	.about-us2 > div > div {
		top: 27px;
		right: 16px;
		display: block;
	}
	.about-us2 > div > div a {
		display: inline-block;
		margin: 0 7px;
	}
	.instagram-item img {
		width: 100%;
	}
	.text-404 {
		width: 100%;
	}
    #not-found-content {
        margin-bottom: 20px;
    }

	.account-wishlist h1 + .table-responsive {
		max-width: calc(100% + 30px);
		margin: 0 -15px;
		padding: 40px 0;
		border: none;
	}
	.account-wishlist h1,
	.checkout-cart h1 {
		font-size: 24px;
		margin-bottom: 24px;
	}
	.wishlist-table tr td:first-child {
		padding-right: 10px !important;
	}
	.wishlist-table tr td {
		white-space: normal !important;
	}
	.wishlist-table .flex {
		padding-bottom: 120px;
	}
	.wishlist-table .text-left .flex > div button {
		position: absolute;
		left: 15px;
		width: calc(100% - 30px);
		margin-top: 30px;
	}
	.wishlist-table .text-left .flex > div a {
		position: absolute;
		margin-top: 100px;
		left: 50%;
		display: inline-block;
		text-align: center;
		transform: translate(-50%, 0);
	}
	.ocdev-brand + a {
		font-size: 16px !important;
		min-height: 32px;
	}
	.category-info h1 {
        text-align: center;
		font-size: 24px;
	}
	.layout1 {
		padding: 10px 8px;
	}
	.custom-products {
		padding-left: 11px;
    	padding-right: 11px;
	}

	.brand-alph {
		width: calc(100% + 15px);
		overflow: auto;
	}
	.brand-alph > * {
		min-width: 30px;
	}
	.product-manufacturer .row.m0 > div {
		padding: 0;
	}
	.manufacturer-category-cols .col-sm-3 {
		width: 50%;
		padding-bottom: 0;
		padding-top: 50px;
		float: left;
	}
	.container .alert {
		width: calc(100% + 30px);
		margin-left: -15px !important;
	}
    .account-forgotten .alert {
        padding-top: 0;
        margin-bottom: 0;
    }
	#search-by-category.active {
		top: 50px;
	}

	.opc-hidden + .row {
		display: -webkit-flex;
		display: -webkit-box;
		display: -moz-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.owl-pagination .owl-page.active span {
		width: 8px;
	}
	.owl-pagination .owl-page:hover span, .owl-pagination .owl-page.active span {
		background: #E48154;
	}
	.product-main-info .product-name {
		text-align: center;
    	margin-top: 30px;
	}
	.img-disc {
		display: none;
	}
	.product-model-ul {
		text-align: center;
        border-bottom: none;
	}

	.product-optio-block1 {
		display: block;
		text-align: center;
	}
	.product-optio-block1 div {
		margin-bottom: 24px;
	}
	.product-sizes-box {
		text-align: center;
		display: block;
	}
	.product-sizes-box > div:last-child p {
		font-size: 14px;
    	text-align: center;
   		margin-top: 10px;
	}
	#button-cart2, #button-cart {
		margin: 0 10px 16px 0;
	}
	.product-sizes-box {
		margin: 40px 0 10px;
	}
	.product-description {
		padding-top: 40px;
	}
	.product-description > .flex > div:last-child h4 {
		max-width: 100%;
		font-size: 16px;
		margin-bottom: 8px;
	}
	.product-description > .flex > div:last-child p {
		width: 100%;
		font-size: 14px;
	}
	.product-description .flex {
		display: block;
	}

	.choose-block {
		text-align: center;
		padding: 50px 15px;
	}
	.choose-block p.title {
		font-size: 32px;
	}
	.choose-block p {
		font-size: 14px;
		margin-bottom: 40px;
	}
	.product-thumb-hover {
		display: none !important;
	}

	.cart-left,
	.cart-right  {
		margin: 0 !important;
	}
	.cart-left tr > td:first-child img {
		min-width: 120px;
	}
	.checkout-cart h1 + .flex {
		display: block;
	}
	.cart-left td {
		border-left: none !important;
		white-space: normal !important;
	}
	.cart-left > form > .table-responsive {
		border: none !important;
	}
	.cart-left button {
		font-weight: 500;
		font-size: 12px;
	}
	.cart-login-block {
		margin-left: 0;
		padding: 34px 15px;
	}
	.cart-right img {
		margin: 40px auto;
		padding-left: 0;
	}
	.checkout-top h1 {
		font-size: 24px;
	}
	.filter-link {
		display: none;
	}
	#column-left.active {
		display: block !important;
		position: fixed;
		z-index: 4;
		width: 100%;
		left: 0;
		top: 0;
		height: 100vh;
		overflow: auto;
	}

    .account-forgotten h1 {
        font-family: var(--primary-font-family);
        margin-top: 0;
        text-align: center;
    }
	.account-edit #content > .form-horizontal .buttons .pull-left a,
	.account-password #content > .form-horizontal .buttons .pull-left a,
	body[class*="account-address-"] #content > .form-horizontal .buttons .pull-left a,
	.account-order-info #content .pull-right a {
		color: #B5B5B5 !important;
		top: 0;
		left: 15px;
	}
	.account-order-info h1 + .table-responsive {
		padding: 40px 10px;
	}
	.account-order-info .wishlist-table tr td img {
		min-width: 100px;
	}
	#dialog-normal .newleter-content {
		padding-left: 0 !important;
    	width: 100% !important;
	}
	#subscribe_email-normal {
		font-size: 24px;
	}
	#subscribe-normal .btn {
		width: 100%;
	}

	#qviz-popup .modal-body {
		flex-direction: column;
	}
	#qviz-popup .nav-tabs {
		display: none;
	}
	#qviz-popup .modal-content {
		padding: 0;
	}
	#qviz-popup .qviz-middle .title {
		font-size: 16px;
		margin-bottom: 20px;
	}
	#qviz-popup .qviz-middle .flex {
		flex-direction: column;
	}
	#qviz-popup .qviz-middle span {
		width: 100%;
		max-width: 290px;
		margin-bottom: 15px;
	}
	#qviz-popup .qviz-right .grey {
		margin-top: 50px;
    	margin-bottom: 0;
	}
	#qviz-popup .modal-content {
		display: block;
	}
	.newletter-popup {
		max-width: 100%;
	}

	.__b-popup1__ {
		top: 50px !important;
	}

    .filters-wrap {
        margin: 0;
    }
}


.slider-soc {
	width: 25px;
	padding: 3px 0;
	text-align: center;
	background-color: #fff;
	border-radius: 5px;
	margin: 4px 0;
}

.mob-lang, #form-language {
	display: none;
}

@media(min-width: 1440px){
	.product-thumb:not(.product-thumb-hover) .image > a:not(.quickviewbutton) {
		min-height: 281px;
	}
}
.lg-outer {
    z-index: 100501 !important;
    background-color: #fff;
}
.qc-coupon button {
	max-height: 42px;
	line-height: 42px;
	min-width: 42px;
}
.checkout-cart #accordion .panel {
    border-radius: 0;
}
#collapse-coupon .control-label {
	padding: 0;
}
#input-coupon {
    border-radius: 0;
}
#coupon-input-group {
	display: flex;
}
#button-coupon {
	margin-left: 15px;
}
@media (max-width: 425px) {
	#coupon-input-group {
		flex-direction: column;
		align-items: flex-end;
	}
	#button-coupon {
		margin-top: 15px;
		margin-left: 0;
	}
}
.modal-open #content,
.modal-open > .container,
.modal-open > .product-tabs2 {
	filter: blur(40px);
}
#content,
.modal-open > .container {
	transition: 0.3s filter ease-out;
	-webkit-transition: 0.3s -webkit-filter ease-out;
	-moz-transition: 0.3s -moz-filter ease-out;
	-ms-transition: 0.3s -ms-filter ease-out;
	-o-transition: 0.3s -o-filter ease-out;
}
.modal-backdrop.in {
	opacity: 0 !important;
}


.button-buy-block{
    align-content: center;
    align-items: center;
}

.button-buy-block .btn-wishlist img{
    max-width: 100%;
    margin-bottom: 15px;
    width: 35px;
    height: 35px;
    margin-left: 15px;
}

.button-buy-block .btn-wishlist img.size-error{
    margin-bottom: 42px;
}

.button-buy-block .not-available {
    font-family: var(--primary-font-family);
    letter-spacing: 2.4px;
    color: var(--custom-gray);
    font-size: var(--common-big-font-size);
    line-height: 1.25;
    height: initial;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Language popup */

.lang-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    max-width: 100%;
    background-color: #ffffff;
    border: 0;
    z-index: 999999;
    border-radius: 12px;
    box-shadow: 0px 8px 8px -4px #1018280A;
    box-shadow: 0px 20px 24px -4px #1018281A;
}
.lang-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 999996;
    backdrop-filter: blur(9px);
}
.lang-popup-overlay-tr {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 999998;
}
.lang-popup .lang-popup-content {
    padding-top: 24px;
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
}
.lang-popup .lang-popup-content .head-block {
    height: 60px;
}
.lang-popup .lang-popup-buttons {
    padding-top: 32px;
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
}
.lang-popup .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    border: none;
    background: none;
    display: block;
}
.lang-popup .close-button::before,
.lang-popup .close-button::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 24px;
    background-color: #667085;
    border-radius: 4px;
}
.lang-popup .close-button::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.lang-popup .close-button::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.lang-popup .popup-title {
    width: 352px;
    height: 28px;
    color: #101828;
    font-family: Raleway;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
}
.lang-popup .popup-button {
    display: inline-block;
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 3px;
}
.lang-popup .popup-button .button-select-ru {
    width: 170px;
    /*height: 44px;*/
    color: #344054;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    background: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 18px;
    padding-right: 18px;
    box-shadow: 0px 1px 2px 0px #1018280D;

}
.lang-popup .popup-button .button-select-ru:hover {
    border: 1px solid #a6aaaf;
}
.lang-popup .popup-button .button-select-ua {
    width: 170px;
    /*height: 44px;*/
    color: #ffffff;
    border: 1px solid #3D88CD;
    border-radius: 8px;
    background-color: #3D88CD;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 18px;
    padding-right: 18px;
    box-shadow: 0px 1px 2px 0px #1018280D;
}
.lang-popup .popup-button .button-select-ua:hover {
    background-color: #337dc1;
}
.lang-popup .popup-text {
    width: 352px;
    /*height: 80px;*/
    color: #475467;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
.lang-popup .inner-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    top: 15px;
    left: 20px;
    background: linear-gradient(0deg, #D1FADF, #D1FADF),
    linear-gradient(0deg, #ECFDF3, #ECFDF3);
    border: 8px solid #ECFDF3;
    position: fixed;
}
.lang-popup .inner-circle svg {
    top: 4px;
    position: absolute;
    left: 4px;
}

@media (max-width: 767px) {
    .lang-popup {
        width: 90%;
    }
    .lang-popup .popup-title {
        width: 100%;
    }
    .lang-popup .popup-text {
        width: 100%;
    }
    .lang-popup .popup-button {
        width: 49%;
    }
    .lang-popup .popup-button .button-select-ru {
        width: 100%;
    }
    .lang-popup .popup-button .button-select-ua {
        width: 100%;
    }
}
/*  filter-mobile  */
.filter-mobile {
    display: none;
}
@media (max-width: 991px) {
    footer {
        border-top: none;
    }
    .toolbar {
        display: none;
    }
    #column-left {
        float: none !important;
    }
    .manufacturer-container {
        margin-bottom: 20px;
    }
    .page-products-list .custom-category {
        width: 100%;
        min-width: 100%;
        display: block;
    }
    .page-products-list .centered-catalog .center-mobile {
        margin: 0;
    }
    .page-products-list .centered-catalog .center-mobile > #content,
    .page-products-list .centered-catalog .center-mobile > #content .custom-category,
    .page-products-list .centered-catalog .center-mobile > #content .custom-products
    {
        display: flex;
        width: 100%;
        justify-items: center;
    }
    .page-products-list .centered-catalog .center-mobile > #content .custom-products {
       /* width: 600px;*/
        padding: 0;
    }
    .center-mobile > #content .custom-products div .product-layout:only-child {
        width: 100vw;
        padding: 0 20% 0 18%;
    }
    .page-products-list .centered-catalog .center-mobile > #content .custom-products > div > *
    {
      /*  display: inline-block;
        vertical-align: top;*/
    }
    .page-products-list .centered-catalog > * {
        display: inline-block;
        vertical-align: top;
    }
    /*.page-products-list .content > * {*/
    /*    display: inline-block;*/
    /*    vertical-align: top;*/

    /*}*/
    .custom-products .product-layout .image{
        max-height: 165px;
    }
    .custom-products * {
        font-family: var(--primary-font-family);
    }
    .custom-products .product-layout {
        min-width: 165px;
        max-height: 300px;
    }
    .custom-products .product-name {
        font-size: var(--mobile-catalog-name-font-size);
        letter-spacing: 2.2px;
        line-height: 18px;
    }

    .custom-products .layout1 {
        padding: 0;
    }
    .filter-mobile{
        display: block;
        margin: 0 15px;
    }
    .filter-mobile-fixed {
        margin: 0;
    }
    #ocfilter-shadow.open, #sort-shadow.open, #mobile-menu-shadow.open {
        display: block;
        background-color: rgba(0, 0, 0, 0.4);
    }
    #ocfilter.open {
        right: 0;
    }
    #ocfilter {
        position: fixed;
        top: 0;
        right: -300px;
        width: 270px;
        max-width: 270px;
        height: 100vh;
        border: none;
        border-radius: 0;
        overflow-y: scroll;
        overflow-x: hidden;
        padding: 10px 10px 0;
        background-color: #ffffff !important;
        z-index: 2000;
    }
    #ocfilter .list-group-item.ocfilter-option {
        border-bottom: 1px solid lightgrey;
    }
    #ocfilter .list-group-item {
        margin: 0;
    }
    #ocfilter .filter-name-mobile {
        text-align: center;
        vertical-align: middle;
        line-height: 60px;
        display: block;
        height: 60px;
        position: relative;
        border-bottom: 1px solid lightgrey;
        font-size: var(--common-big-font-size);
        font-weight: 600;
        letter-spacing: 2.4px;
        text-transform: uppercase;
    }
    #ocfilter .filter-name-mobile-close {
        position: absolute;
        top: 20px;
        right: 16px;
        width: 30px;
        height: 30px;
    }

    .filter-name-mobile-close:before, .filter-name-mobile-close:after,
    .sort-name-mobile-close:before, .sort-name-mobile-close:after,
    .ma-mobilemenu-close:before, .ma-mobilemenu-close:after
    {
        position: absolute;
        content: ' ';
        height: 20px;
        width: 1px;
        background-color: #333;
    }
    .filter-name-mobile-close:before,
    .sort-name-mobile-close:before,
    .ma-mobilemenu-close:before
    {
        transform: rotate(45deg);
    }

    .filter-name-mobile-close:after,
    .sort-name-mobile-close:after,
    .ma-mobilemenu-close:after
    {
        transform: rotate(-45deg);
    }
    #ocfilter .list-group-item.ocfilter-option {
        position: relative;
    }
    #ocfilter .list-group-item.ocfilter-option:after {
        pointer-events: none;
        position: absolute;
        content: '+';
        top: 12px;
        right: 16px;
        font-size: 3em;
        font-weight: 300;
    }
    #ocfilter .list-group-item.ocfilter-option.active:after {
        content: '–';
        color: var(--custom-black);
    }

    .product-total-container > .back {
        display: none;
    }
    #ocfilter > .opened {
        width: 100%;
    }
    #ocfilter:has(.opened) {
        display: block;
    }
}
@media (max-width: 625px) {
    .page-products-list .centered-catalog .center-mobile > #content .custom-products {
        /*width: 400px;*/
        /*padding: 0;*/
    }
}
@media (max-width: 425px ) and (min-width:380px) {
    .page-products-list .centered-catalog .center-mobile > #content .custom-products {
       /* padding-left: 3vw;*/
    }
}

.filter-mobile-buttons {
    display: flex;
    box-sizing: border-box;
}
.filter-mobile-button {
    cursor: pointer;
    align-items: center;
    border: 1px solid #e2e2e2;
    display: flex;
    font-size: var(--common-font-size);
    letter-spacing: 2.4px;
    line-height: 22px;
    margin-left: -1px;
    min-height: 45px;
    padding: 10px 10px;
    float: left;
    width: 50%;
    text-align: center;
    justify-content: center;
}
.sort-only .filter-mobile-button {
    width: 100%;
}
.filter-mobile-button-centered {
    display: flex;
    align-items: center;
}
.filter-mobile-button > select {
    font-size: 14px;
    font-family: proximanowa-regular, "Open Sans", "Gill Sans MT", "Gill Sans", Corbel, Arial, sans-serif;
    border: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.filter-icon {
    width: 25px;
    height: 25px;
    margin-right: 2px;
    background-repeat: no-repeat;
    background-position: center;
    /*background-image: url(../../default/image/filter-image-icon.svg);*/
    background-image: url(../image/filter-image-icon.svg);
}
.sort-icon, .toolbar .sorts-wrap-desktop .caret {
    width: 25px;
    height: 25px;
    margin-right: 2px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../image/sort-icon.svg);
}
.toolbar .sorts-wrap-desktop .caret {
    border: 0;
    top: 20%;
    right: 30px;
}
@media (min-width: 991px) {
    .mobile-sort-list {
        display: none;
    }
}

.mobile-sort-list {
    transition: bottom 0.3s;
    position:fixed;
    background: white;
    z-index: 2000;
    padding-bottom: 70px;
    max-width: 320px;
    bottom: -600px;
    min-width: 100vw;
    width: 100vw;
    border: none;
    border-radius: 0;
    overflow-y: scroll;
}
.mobile-sort-list.open {
    bottom: 0;
    left: 0;
}

.mobile-sort-list .sort-name-mobile {
    text-align: center;
    vertical-align: middle;
    line-height: 60px;
    width: 100%;
    display: block;
    height: 60px;
    position: relative;
    border-bottom: 1px solid lightgrey;
    font-size: var(--common-big-font-size);
    color: var(--custom-black);
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}
.mobile-sort-list  {
    letter-spacing: 2.4px;
}
.mobile-sort-list .sort-name-mobile-close {
    position: absolute;
    top: 20px;
    right: 16px;
    width: 30px;
    height: 30px;
}

.sort-name-mobile-close:before, .sort-name-mobile-close:after {
    position: absolute;
    content: ' ';
    height: 20px;
    width: 1px;
    background-color: #333;
}
/*#ocfilter {*/
/*    transition: right 0.3s;*/
/*    position: fixed;*/
/*    top: 0;*/
/*    right: -300px;*/
/*    width: 270px;*/
/*    max-width: 270px;*/
/*    height: 100vh;*/
/*    border: none;*/
/*    border-radius: 0;*/
/*    overflow-y: scroll;*/
/*    padding: 10px 10px 0;*/
/*    background-color: #ffffff !important;*/
/*    z-index: 2000;*/
/*}*/
/*.mobile-sort-list {*/
/*    display: none;*/
/*    position: absolute;*/
/*    background: white;*/
/*    z-index: 10;*/
/*    width: 100%;*/
/*    height: 200px;*/
/*    bottom: 0;*/
/*    overflow-x: hidden;*/
/*}*/
.mobile-sort-list-item {
    padding: 10px;
    border-top: none;
}
#ocfilter-shadow, #sort-shadow, #mobile-menu-shadow {
    transition: background-color 0.3s;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1999;
}

#content {
    display: flow-root;
}
.product-thumb > .image {
    min-height: 80px;
}
.filter-mobile-fixed {
    position: fixed;
    z-index: 5;
    background: white;
    left: 1px;
    width: 100%;
}
.filter-mobile-category-item {
    float: left;
    padding: 10px;
    border: 1px solid #e2e2e2;
    margin-left: 5px;
}
.filter-mobile-category {
    overflow: scroll;
    padding: 5px;
    padding-bottom: 10px;
}
.filter-mobile-category-scroll {
    width: max-content;
}
.filter-mobile-category-back {
    float: left;
    padding: 9px;
    background: black;
    border-radius: 100%;
    margin-right: 10px;
}
.filter-mobile-category-back:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    top: auto;
    left: 0;
    bottom: auto;
    background-image: url(/catalog/view/theme/arena/image/chevron-left-white.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s left;
}
@media (max-width: 425px) {
    .custom-products .product-layout {
        /*margin: 20px 5px;*/
    }
}
.account_socnetauth2_bline_content{
   /* display: none;*/
}

#quickViewContainer .quickview-modal .modal_left {
    margin-left: 3%;
    padding: 0;
}

#quickViewContainer .modal_left {
    float: left;
    width: 14%;
}

#quickViewContainer .modal-content {
    border-radius: 0;
    display: block;
    width: 100%;
    padding-bottom: 5px;
}

#quickViewContainer .modal-dialog.quickview-modal {
    max-width: 1300px;
}
#quickViewContainer .modal-dialog {
    outline: 0 none currentcolor;
}
@media (min-width: 992px) {
    #quickViewContainer .modal-lg, .modal-xl {
        max-width: 800px;
    }
}
@media (min-width: 576px) {
    #quickViewContainer .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}
#quickViewContainer .modal-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)!important;
    max-height: 90vh;
    width: 70%;
    overflow-y: auto;
}

#quickViewContainer .modal-dialog .carousel-indicators li {
    box-sizing: content-box;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin: 0 5px;
    text-indent: -999px;
    cursor: pointer;
    border: 1px solid lightgrey;
}
#quickViewContainer .modal-dialog .carousel-indicators .active {
    background-color: var(--custom-black);
    margin-bottom: 1px;
    border-color: var(--custom-black);
}
#quickViewContainer .modal.modal-quickView {
    left: 1%;
}
#quickViewContainer .modal-content{
    padding-top: 0;

}

#quickViewContainer .product-price {
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--custom-gray);
}

#quickViewContainer .row.header-row,
#quickViewContainer .row.footer-row
{
    height: 54px;
    position: relative;
}
#quickViewContainer .row.header-row {
    display: block;
}
#quickViewContainer .row.footer-row {
    margin-top: 16px;
}
#quickViewContainer .row {
    display: -ms-flexbox;
    display: flex;
    margin-right: -15px;
    margin-left: -15px;
}
#quickViewContainer .body-row {
    column-gap: 15px;
   /* max-height: 550px;
    overflow: auto;*/
}
#quickViewContainer .col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
#quickViewContainer .modal_left .image_icons {
    margin: 0 auto;
    float: none;
}

#quickViewContainer .image_icons {
    cursor: pointer;
}

#quickViewContainer .col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

#quickViewContainer .carousel {
    position: relative;
}

#quickViewContainer .has-error {
    text-align: center;
}

#quickViewContainer .carousel-indicators-container {
    bottom: 0;
}
#quickViewContainer .carousel-indicators-container {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    list-style: none;
    column-gap: 10px;
    height: 20px;
    align-items: center;
}
#quickViewContainer .carousel-indicators {
    all: unset;
    margin: 0;
    line-height: 12px;
    height: 12px;
}
#quickViewContainer dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

#quickViewContainer ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

#quickViewContainer .carousel-inner {
    padding: 0;
}

#quickViewContainer .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#quickViewContainer .carousel-item-next, #quickViewContainer .carousel-item-prev, #quickViewContainer .carousel-item.active {
    display: block;
}

#quickViewContainer .carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
}

#quickViewContainer .w-100 {
    width: 100% !important;
}
#quickViewContainer .d-block {
    display: block !important;
}
#quickViewContainer img {
    max-width: 100%;
    height: auto;
}
#quickViewContainer img {
    vertical-align: middle;
    border-style: none;
}
#quickViewContainer .carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

#quickViewContainer .carousel-control-next, #quickViewContainer .carousel-control-prev {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    height: 11px;
    width: 6px;
    background: url(/catalog/view/theme/subu/image/control-icon.svg);
    filter: saturate(200%);
    margin-top: -1px;
    padding: 15px;
    background-repeat: no-repeat;
    background-position: center;
}
#quickViewContainer .modal-dialog .carousel-control-next {
    transform: rotate(180deg);
}
#quickViewContainer .carousel-control-next {
    right: 0;
}

#quickViewContainer .carousel-control-prev {
    left: 0;
}
#quickViewContainer .params {
    position: relative;
    max-width: 550px;
    text-align: left;
}
#quickViewContainer .col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

#quickViewContainer .quickview-options {
    font-size: 0.75rem;
}
#quickViewContainer .product-option-radio {
    position: relative;
    margin-bottom: 15px;
}
#quickViewContainer .modal.fade {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
#quickViewContainer .modal-title{
    font-size: 22px;
    text-transform: uppercase;
    overflow-wrap: break-word;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 3.6px;
}
#quickViewContainer .quickview-size-name,
#quickViewContainer .quickview-options#product-colors h5
{
    font-size: 16px;
    margin-top: 22px;
    margin-bottom: 5px;
    font-weight: 400;
    font-family: var(--secondary-font-family);
    color: var(--custom-black);
}

#quickViewContainer #product-sizes label {
    border: 1px solid lightgrey;
    color: var(--custom-gray);
    box-sizing: border-box;
    padding: 9px 15px;
    margin-right: 10px;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    font-weight: 400;
}

#quickViewContainer #product-sizes label.checked {
    border: 1px solid var(--custom-black);
    color: var(--custom-black);
}

#quickViewContainer #product-sizes input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
}

#quickViewContainer .close {
    top: 24px;
}
#quickViewContainer .quickView-colors {
    position: relative;
    background: transparent !important;
    padding-bottom: 10px;
    margin: 0;
}
#quickViewContainer .quickview-color {
    width: 35px;
    height: 35px;
    border: 1px solid var(--custom-black);
}
#quickViewContainer .quickview-color.active {
    padding: 2px;
}
#quickViewContainer .quickview-color div{
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#quickViewContainer .btn-quickview#button-cart {
    background-color: transparent;
    font-size: var(--common-big-font-size);
    text-transform: uppercase;
    color: var(--custom-gray);
    display: block;
    padding: 0;
    width: 100%;
    bottom: 0;
    height: 38px;
    line-height: 38px;
    border: 1px solid lightgrey;
    text-align: center;
    justify-items: center;
}
#quickViewContainer .btn-quickview#button-cart:hover,
#quickViewContainer .btn-quickview#button-cart:active
{
    border-color: var(--custom-black);
    color: var(--custom-black);
    -webkit-box-shadow: none;
    box-shadow: none;
}
#quickViewContainer .btn-quickview#button-cart span {
    font-size: var(--common-font-size);
    letter-spacing: 2.4px;
    font-weight: 600;
}

#quickViewContainer a.more {
    width: 100%;
    line-height: 54px;
    font-size: var(--common-font-size);
    font-weight: 600;
    letter-spacing: 2.4px;
    text-align: center;
    text-decoration: underline;
    text-transform: uppercase;
    color: var(--custom-gray);
}
.safe-button.row {
    height: 40px;
}

#quickViewContainer .more-mobile {
    display: none;
}

@media (max-width: 1400px) {
    #quickViewContainer .safe-button.row {
        display: none;
    }
    #quickViewContainer .modal-content {
        max-width: 1100px;
    }
    #quickViewContainer .carousel-inner {
        min-width: 350px;
    }

    #quickViewContainer .col-6 {
        max-width: 500px;
    }
    #quickViewContainer .modal-dialog.quickview-modal {
        max-width: 1100px;
    }
}

@media (max-width: 1150px) {
    #quickViewContainer .modal-content {
        max-width: 900px;
    }
    #quickViewContainer .carousel-inner {
        min-width: 350px;
        min-height: 250px;
    }

    #quickViewContainer .col-6 {
        max-width: 400px;
    }
    #quickViewContainer .modal-dialog.quickview-modal {
        max-width: 900px;
    }

    #quickViewContainer .btn-quickview#button-cart span{
        font-size: 10px;
    }
}

@media (max-width: 991px) {
    #quickViewContainer .modal-content
    {
        top: 20%;
    }
    #quickViewContainer .modal-dialog.quickview-modal,
    #quickViewContainer .modal-content
    {
        padding: 0;
        width: 100%;
        margin: 0;
        max-width: none;

    }
    #quickViewContainer .row {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
    #quickViewContainer .header-row {
        position: sticky !important;
        background-color: white;
        top: 0;
        z-index: 100;
    }
    #quickViewContainer .body-row {
     /*   overflow-y: auto;*/
       /* display: flex;*/
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #quickViewContainer .body-row .col-6{
        width: 100%;
        max-width: none;
    }
    #quickViewContainer .close {
        top: 18px;
        right: 24px;
    }
    #quickViewContainer .header-row {
        border-bottom: 1px solid lightgrey;
    }
    #quickViewContainer .product-price {
        text-align: center;
        padding-bottom: 24px;
        border-bottom: 1px solid lightgrey;
    }
    #quickViewContainer .params .modal-title{
        padding-left: 0 !important;
        text-align: center !important;
    }
    #quickViewContainer .quickview-size-name,
    #quickViewContainer #product-sizes,
    #quickViewContainer #product-colors
    {
        margin-left: 20px;
    }
    #quickViewContainer .btn-quickview#button-cart {
        position: static;
        margin: 0 20px;
        width: calc(100% - 40px);
    }
    #quickViewContainer .btn-quickview#button-cart span{
        font-size: var(--common-font-size);
    }
    #quickViewContainer .modal-title {
        padding-top: 28px;
        font-size: 18px;
    }
    #quickViewContainer #product-sizes label {
        font-size: 14px;
    }
    #quickViewContainer .more {
        display: none;
    }
    #quickViewContainer .safe-button.row {
        display: none;
    }
    #quickViewContainer .more-mobile {
        display: block;
    }

    #quickViewContainer .carousel-indicators-container {
        margin-bottom: 10px;
    }

    #quickViewContainer .price-old {
        margin-left: 30px;
    }

    #quickViewContainer .price-new {
        margin-left: -100px;
    }

    #quickViewContainer .price {
        font-size: 15px;
    }

}

@media (max-width: 767px) {
    #quickViewContainer a.more-mobile {
       /* height: 300px;*/
    }
}

.control-label .checkmark_radio {
    width: 16px;
    height: 16px;
    background-color: white;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 2px;
}
.control-label .wl_checkbox:checked + .checkmark_radio ,
.control-label .recovery-checkbox:checked + .checkmark_radio {
    border: 5px solid #1C1B1B;
}
.wl_checkbox {
    width: 16px!important;
    height: 16px!important;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0px;
    display: none;
}
.control-label .wl_checkbox:checked + .checkmark::after {
    display: block;
}

#information-page p,
#information-page span,
#information-page li,
#info-page-modal p,
#info-page-modal span,
#info-page-modal li
{
    font-family: var(--secondary-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

#information-page h1,
#information-page h2 *,
#information-page h2,
#info-page-modal h1,
#info-page-modal h2 *,
#info-page-modal h2
{
    font-family: var(--primary-font-family);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}
#information-page h1 ,
#info-page-modal h1
{
    margin: 40px 0;
    font-size: 28px;
    line-height: 40px;
}
#information-page h2,
#info-page-modal h2
{
    margin: 20px 0 !important;
}

#information-page h2 *,
#information-page h2,
#info-page-modal h2 *,
#info-page-modal h2
{
    font-size: 22px !important;
    line-height: 35px;
}


@media (max-width: 991px) {
    #information-page h1,
    #info-page-modal h1 {
        font-size: 20px;
        line-height: 30px;
    }
    #information-page p,
    #information-page span,
    #information-page li,
    #info-page-modal p,
    #info-page-modal span,
    #info-page-modal li
    {
        font-size: 14px !important;
        line-height: 22px;
    }
    #information-page h2,
    #info-page-modal h2 {
        margin: 16px 0 !important;
    }
    #information-page h2 * ,
    #information-page h2,
    #info-page-modal h2 * ,
    #info-page-modal h2
    {
        font-size: 18px !important;
        line-height: 28px;
    }
}
.account-logout #content {
    margin-top: 50px;
}
.account-logout .text-404 {
    width: 100%;
}
.account-logout .text-404 .like-p {
    text-wrap: balance;
    margin-bottom: 0;
}
.account-logout h1 {
    font-family: var(--primary-font-family);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
}

#content.account-page,
.account-edit #content,
body[class*="account-address-"] #content,
.account-password #content,
.account-order-info #content
{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-end;
    justify-content: center;
}
.account-page-content,
.account-subpage-form,
.account-order-info .wishlist-table
{
    display: flex;
    flex-direction: column;
    width: 40vw;
}

.data-account .title {
    font-size: var(--common-font-size);
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 2.4px;
    text-align: center;
    position: relative;
    padding: 0 32px;
    text-transform: uppercase;
}
.data-account div:last-child span,
.data-address a.add-adress
{
    font-size: 12px;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;
    border: 1px solid lightgrey;
    margin-bottom: 20px;
}
.data-address div:last-child span,
.data-orders div:last-child span
{
    height: auto;
}

.data-address a.add-adress ,
.data-account #update_subscription,
.data-orders div a.open-order,
#btn-account-edit,
#address-edit-form-submit,
#btn-password-edit
{
    text-align: center;
    margin: 32px auto 0;
    width: 220px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--custom-gray);
    display: block;
    letter-spacing: 2.4px;
    background-color: transparent;
    font-size: 14px;
    border: 1px solid lightgrey;
}
#btn-account-edit ,
#address-edit-form-submit,
#btn-password-edit {
    padding-top: 15px;
    padding-bottom: 15px;
}
#address-edit-form-submit {
    width: 100%;
}
.data-account #update_subscription, .data-orders div a.open-order
{
    margin-top: 0;
}
.data-account #unsubscribe {
    font-family: var(--secondary-font-family);
    font-size: var(--common-font-size);
    font-weight: 400;
    line-height: 21px;
    text-decoration: underline;
    border: none;
    background: none;
    display: inline;
    color: var(--custom-black);
}
.data-account .subscribe-message *{
    color: inherit;
    font-family: var(--secondary-font-family);
    font-size: var(--common-font-size);
    font-weight: 400;
}
.account-page #subscription_form{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.data-address a.add-adress:hover,
.data-account #update_subscription:hover,
.data-orders div a.open-order:hover,
#btn-account-edit:hover,
#address-edit-form-submit:hover,
#btn-password-edit:hover
{
    border-color: var(--custom-black);
    color: var(--custom-black);
    background-color: transparent;
}

.data-account #update_subscription:active {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.data-account div:last-child span.empty {
    color: var(--custom-gray);
}
.data-password .data-password-body {
    padding-top: 0;
}
.male-sbscr-inner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    row-gap: 15px;
    margin-bottom: 15px;
}
@media (min-width: 1600px) {
    .account-page-container,
    .account-edit-container,
    .account-password .container,
    .account-order-info .container,
    body[class*="account-address-"] .container
    {
        width: 80%;
    }

}
@media (max-width: 1600px) {
    .account-page-content {
        width: 60vw;
    }
    .account-edit h1,
    .account-password h1,
    .account-order-info h1,
    body[class*="account-address-"] h1
    {
        padding-bottom: 30px;
    }
}
@media (max-width: 991px) {

    .account-account h1,
    .account-edit h1,
    body[class*="account-address-"] h1,
    .account-password h1,
    .account-order-info h1 {
        margin-top: 10px;
    }
    .account-account .alert {
        padding-top: 0;
        margin-bottom: 0;
    }

    .data-account .title a {
        right: 22px;
    }
    .account-login .row,
    .account-reset .row
    {
        margin-top: 25px;
    }

    .account-reset #content > .form-horizontal .control-label {
        height: auto;
        margin-bottom: 5px;
    }

    #content.account-page ,
    .account-edit #content ,
    .account-password #content,
    body[class*="account-address-"] #content,
    .account-order-info #content,
    .account-logout #content
    {
        width: 100%;
        align-content: center;
        padding: 0;
    }
    .account-logout .text-404 {
        width: 80%;
    }
    .account-logout #content {
        margin-top: 25px;
    }
    .button-edit-back {
        left: 0;
    }
    .account-page-content
    {
        width: 100%;
    }
    .account-subpage-form
    {
        width: 80%;
    }
    .account-order-info .wishlist-table {
        width: 95%;
    }
    .account-order-info .ocdev-brand-order-info + a {
        font-size: var(--common-font-size);
    }
    .account-order-info .wishlist-table {
        border: none;
    }
    .account-order-info .cart-price-block, .account-order-info .wishlist-table .price-product span {
        font-size: var(--common-font-size);
    }
    .data-account .title + div {
        padding: 15px 20px;
    }
}

@media (max-width: 465px) {
    .button-subpage-back {
        left: 0;
        bottom: -20px;
    }
}

#cart:hover .dropdown-menu.pull-right {
    display: none;
}

#info-page-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    background-color: rgba(0, 0, 0, .3);
    display: grid;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition: opacity .4s, visibility .4s;
}
#info-page-modal * {
    font-family: var(--primary-font-family) !important;
}
#info-page-modal p,
#info-page-modal li,
#info-page-modal span
{
    font-family: var(--secondary-font-family) !important;
}

#info-page-modal h1 *,
#info-page-modal h2 *
{
    font-family: var(--primary-font-family) !important;
}


#info-page-modal.open {
    visibility: visible;
    opacity: 1;
}

#info-page-modal .info-modal-body {
    max-width: 800px;
    padding: 20px 45px;
    z-index: 2001;
    margin: 30px 15px;
    background-color: white;
}

#info-page-modal .info-modal-header {
    width: 100%;
    height: 40px;
    line-height: 50px;
    position: relative;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

#info-page-modal .info-modal-title {
    font-family: var(--primary-font-family);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    color: var(--custom-black);
    font-weight: 600;
    margin-bottom: -1px;
}

#info-page-modal .info-modal-close {
    display: block;
    position: absolute;
    right: 0;
    background-size: 16px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background-image: url(/catalog/view/theme/subu/image/icon/icon-close.svg);
}

#info-page-modal .info-modal-continue {
    background-color: transparent;
    font-weight: 600;
    font-size: var(--common-font-size);
    text-transform: uppercase;
    color: var(--custom-gray);
    display: block;
    padding: 0;
    width: 220px;
    bottom: 0;
    height: 42px;
    line-height: 42px;
    border: 1px solid lightgrey;
    margin: 5px auto;
}

#info-page-modal .info-modal-continue:hover {
    border-color: var(--custom-black);
    color: var(--custom-black);
}

@media (max-width: 991px) {
    #info-page-modal .info-modal-body {
        max-width: 100vw;
        padding: 0 10px;
        z-index: 2001;
        margin: 0;
        background-color: white;
    }

    #info-page-modal .info-modal-header {
        padding: 15px 2px;
        height: auto;
        line-height: 16px;
        position: sticky;
        top: 0;
        border-bottom: 1px solid lightgrey;
        margin-bottom: 5px;
        display: flex;
        column-gap: 20px;
        align-content: center;
        justify-content: space-between;
    }

    #info-page-modal .info-modal-close {
        position: static;
        min-height: 16px;
        min-width: 16px;
    }
}

.mfp-wrap.mfp-auto-cursor.mfp-ready {
    overflow: visible !important;
}

@media (min-width:1250px) and (max-width: 1920px) {
    .centered-catalog > * {
        min-width: 1170px;
    }
}
@media (min-width:992px) and (max-width: 1249px) {
    .centered-catalog > * {
        min-width: 95%;
    }
}

.tooltip-data {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-data::after {
    content: attr(data-title);
    visibility: hidden;
    background-color: black;
    color: white;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: normal; /* Разрешает перенос строк */
    word-wrap: break-word; /* Перенос длинных слов */
    width: 100%;
    z-index: 10000;
}

.tooltip-data:active::after,
.tooltip-data:hover::after {
    visibility: visible;
    opacity: 1;
}

.checkout-failure .text-failure>h1 {
    font-style: normal;
    font-weight: 500;
    font-size: 72px;
    line-height: 120%;
    text-align: center;
    color: #4f4f4f;
    margin-bottom: 40px;
}
.checkout-failure .text-failure {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 120px;
}
.checkout-failure .text-failure div.text_error_message_1 {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 125%;
    color: #333333;
    margin-bottom: 32px;
    text-align: center;
}
.checkout-failure .text-failure div.text_error_message_2 {
    font-size: 12px;
    color: #000000;
    margin-bottom: 52px;
    text-align: center;
}
.checkout-failure .text-failure a.main-page-button {
    font-weight: 500;
    width: 288px;
    max-width: 100%;
    margin: 0 auto 104px;
    background: #333333 !important;
    border: 1px solid #333 !important;
    color: #fff !important;
}
.checkout-failure .text-failure a.main-page-button:hover {
    border: 1px solid #333 !important;
    background: #fff !important;
    color: #333 !important;
}
@media(max-width: 776px) {
    .checkout-failure .text-failure>h1 {
        font-size: 42px;
        margin-bottom: 40px;
    }
    .checkout-failure .text-failure div.text_error_message_1 {
        font-size: 20px;
    }
    .checkout-failure .text-failure a.main-page-button {

    }
}
.filter-button-block{
    position: sticky;
    bottom: 0;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 5px;
    background: white;
}
.filter-button-submit{
    width: 100%;
}
#loader-ocfilter{
    background: #b3b3b36e;
    width: 90%;
    height: 100%;
    position: absolute;
    z-index: 15;
    display: none;
}
#loader-catalog{
    background: #b3b3b36e;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 15;
    display: none;
    top: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#loader-ocfilter > .loader-logo, #loader-catalog > .loader-logo{
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3d88cd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 50% auto;
}
#loader-catalog > .loader-logo{
    margin: 40vh auto!important;
}
@media(max-width: 992px){
    .filter-button-block{
        position: fixed!important;
        width: 250px;
        bottom: 10px;
    }
    #loader-catalog{
        left: 0;
    }
    #loader-ocfilter{
        left: 0;
        top: 0;
        width: 100%;
        position: fixed;
    }
    #loader-catalog > .loader-logo{
        margin: 50vh auto!important;
    }
}
.btn-primary{
    background: #1C1B1B!important;
    color: #FFFFFF!important;
    text-transform: uppercase;
    font-family: var(--primary-font-family);
    font-size: 14px;
}
.btn-primary:hover{
    color: #1C1B1B!important;
    background: #FFFFFF!important;
    border: 1px #6A6A6A33 solid!important;
}
#column-left{
    position: sticky;
    top: 10px;
    max-height: 100vh!important;

}
#ocfilter {
    transition: height 0.3s ease;
    padding-bottom: 50px;
}
@media(max-width: 991.98px) {
    .is_mobile{
        display: block;
    }
    .is_desktop{
        display: none;
    }
}
@media(min-width: 992px) {
    .is_desktop{
        display: block;
    }
    .is_mobile{
        display: none;
    }
}