@charset "UTF-8";
/*variables*/
@-webkit-keyframes up-down {
	50% {
		-webkit-transform: translateY(3px);
		transform: translateY(3px);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-moz-keyframes up-down {
	50% {
		-moz-transform: translateY(3px);
		transform: translateY(3px);
	}
	100% {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes up-down {
	50% {
		-webkit-transform: translateY(3px);
		-moz-transform: translateY(3px);
		transform: translateY(3px);
	}
	100% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
}

.checkbox-row input {
	display: none;
}

input:checked + .radio-label:before {
	content: "";
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-237px -45px;
}

.checkbox-row input:checked + .check-label:before {
	content: "";
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-223px -30px;
}

.radio-label {
	position: relative;
	cursor: pointer;
	margin-bottom: 10px;
	display: block;
}

.radio-label:before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-right: 10px;
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-237px -30px;
}

.check-label {
	position: relative;
	cursor: pointer;
	margin-bottom: 10px;
	display: block;
}

.check-label:before {
	content: "";
	display: inline-block;
	width: 13px;
	height: 13px;
	margin-right: 10px;
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-223px 0;
}

/* custom select*/
.select-hidden {
	display: none;
	visibility: hidden;
	padding-right: 10px;
}

.select {
	cursor: pointer;
	display: inline-block;
	position: relative;
	font-size: 16px;
	color: #000;
	width: 100%;
	height: 40px;
}

.select-styled {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
	padding: 8px 15px;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	border: 1px solid #c0c0c0;
}

.select-styled:after {
	content: "";
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-color: #c0c0c0 transparent transparent transparent;
	position: absolute;
	top: 16px;
	right: 10px;
}

.select-styled:active:after, .select-styled.active:after {
	top: 9px;
	border-color: transparent transparent #c0c0c0 transparent;
}

.select-options {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 999;
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #e9e9e9;
}

.select-options li {
	margin: 0;
	padding: 12px 0;
	text-indent: 15px;
	-webkit-transition: all 0.15s ease-in;
	-moz-transition: all 0.15s ease-in;
	transition: all 0.15s ease-in;
}

.select-options li:hover {
	color: #4e515d;
	font-weight: 600;
}

.select-options li[rel="hide"] {
	display: none;
}
/* end custom select*/

/* ZOOM*/
.zoomLens {
	z-index: 10 !important;
}

.selected_elem {
	z-index: 11;
}

.red-link {
	position: relative;
	color: #f02c56;
}

.red-link::after {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background: #f02c56;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.red-link:hover {
	color: #ea1c49;
}

.red-link:hover::after {
	width: 0;
	background: #ea1c49;
}

/* GENERAL styles*/
@font-face {
	font-family: 'Open-Sans';
	/* название одно */
	src: url("../fonts/OpenSans-Regular.ttf");
	/* разные файлы */
	font-weight: normal;
	/* разная плотность */
	font-style: normal;
}

@font-face {
	font-family: 'Open-Sans';
	/* название одно */
	src: url("../fonts/OpenSans-Semibold.ttf");
	/* разные файлы */
	font-weight: 600;
	/* разная плотность */
	font-style: normal;
}

@font-face {
	font-family: 'Open-Sans';
	/* название одно */
	src: url("../fonts/OpenSans-Bold.ttf");
	/* разные файлы */
	font-weight: 700;
	/* разная плотность */
	font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 1.4em;
	font-family: Open-Sans;
	outline: none;
	list-style: none;
	text-decoration: none;
	color: #1b1c20;
}

.clearfix:after {
	content: " "; /* Older browser do not support empty content */
	visibility: hidden;
	display: block;
	height: 0;
	clear: both;
}

.container {
	max-width: 1024px;
	padding: 0 12px;
	height: 100%;
	margin: 0 auto;
	position: relative;
}

.fw {
	display: -ms-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.popup_section {
	display: none;
	position: fixed;
	z-index: 14;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

.popup_close {
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	right: 15px;
	top: 15px;
	z-index: 12;
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-292px -60px;
	cursor: pointer;
}

.popup_underlayer {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.8);
}

.text-bold {
	font-weight: bold;
	text-transform: uppercase;
}

.login_input {
	width: 100%;
	height: 40px;
	border-radius: 0;
	padding: 0 10px;
	border: 1px solid #c0c0c0;
	margin: 10px 0;
	font-size: 14px;
}

.green-button {
	display: inline-block;
	width: 260px;
	line-height: 38px;
	position: relative;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: #28cda2;
	border: none;
	border-radius: 0;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

.green-button::after {
	content: '';
	display: block;
	width: 0;
	height: 3px;
	position: absolute;
	bottom: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	background-color: #1fb68d;
}

.green-button:hover {
	background: #0cc595;
}

.green-button:hover::after {
	width: 100%;
	background: #12a27b;
}

.red_button {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	background: #f02c56;
	line-height: 42px;
	text-align:center;
	cursor:pointer;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}

.red_button:hover, .red_button_generic:hover {
	background: #ea1c49;
}
.red_button_generic,.white_button_generic {
	display: inline-block;
	height:42px;
	line-height: 42px;
	padding:0 50px;
	text-align: center;
	cursor:pointer;

	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	background: #f02c56;
	border:0;

	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}
.white_button_generic{
	color: #1b1c20;
	background: #fff;
	border: 1px solid #1b1c20;
}
.white_button_generic:hover {
	background: #f4f4f4;
}
.next_button_generic:after {
	content: '';
	display: inline-block;
	position: relative;
	top: 3px;
	width: 7px;
	height: 14px;
	margin-left: 5px;
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position: -267px -30px;
}
.prev_button_generic:before {
	content: '';
	display: inline-block;
	position: relative;
	top: 3px;
	width: 7px;
	height: 14px;
	margin-right: 5px;
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position: -276px -30px;
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.button_group_generic{
	margin-top:30px;
	text-align:center;
}

.arrow-open:after {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.white-button {
	display: inline-block;
	width: 260px;
	line-height: 36px;
	position: relative;
	margin-right: 11px;
	text-transform: uppercase;
	text-align:center;
	font-size: 14px;
	font-weight: bold;
	color: #1b1c20;
	background: #fff;
	border: 2px solid #e2e2e2;
	border-radius: 0;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

.white-button:hover {
	background: #e5e5e5;
}

.icon-film{
	display: inline-block;
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-356px -87px;
	width:26px;
	height:25px;
}

/* Source Banner*/
#t_source_banner{
	display:table;
	margin:0 auto;
	position:relative;
}
#t_source_banner img{
	display:block;
	border:0;
	width:100%;
}
#t_source_banner .close{
	display:block;
	width:29px;
	height:29px;
	position:absolute;
	top:5px;
	right:6px;
	z-index:5;
}

/* Go up*/
.s_go-up{
	margin-bottom:44px;
}
.s_go-up .go_up {
	display: -ms-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 40px;
	height: 40px;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #1b1c20;
}

.s_go-up .go_up:hover {
	background: #0c0c0e;
}

.s_go-up .go_up:hover .go_up_svg {
	-webkit-animation: up-down 0.4s;
	-moz-animation: up-down 0.4s;
	animation: up-down 0.4s;
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

.s_go-up .go_up_block {
	-webkit-box-pack: end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

/* end Go up*/
/* section general */
h1.section_title {/* H1 and H2 */
	margin: 30px auto 0 auto;
	padding-bottom:30px;
	font-size: 24px;
	color: #1b1c20;
	font-weight: bold;
	text-transform: uppercase;
	border-bottom:1px solid #e2e2e2;
}
h2.section_title {
	margin: 0 0 25px 0;
	font-size: 20px;
	border:0;
}

.section_p, div.section_p p {
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 30px;
	line-height: 24px;
}

.section_p:last-of-type, div.section_p p:last-of-type {
	margin-bottom: 0;
}

.section_red_button {
	display: block;
	margin-top: 30px;
	line-height: 42px;
	width: 150px;
	text-align: center;
}

/* SECTION NAVIGATION */
.s_top-nav {
	padding: 15px 0;
}

.top-nav {
	-webkit-box-pack: start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.top-nav_back {
	color: #fff;
	margin-right: 35px;
	font-weight: bold;
	font-size: 12px;
	padding: 6px;
	background: #f02c56;
	position: relative;
}

.top-nav_back:before {
	content: '';
	display: block;
	position: absolute;
	border: 5px solid transparent;
	border-right: 5px solid #f02c56;
	left: -9px;
}

.top-nav_back:hover {
	background-color: #ea1c49;
}

.top-nav_back:hover:before {
	border-right: 5px solid #ea1c49;
}
.top-nav_bread-item {
	font-size: 12px;
}
.top-nav_bread-item h1 {
	font-size: 1em;
}

.top-nav_bread-item a {
	color: #9b9b9b;
}

.top-nav_bread-item:not(:last-child):after {
	content: '/';
	margin: 0 10px;
	color: #9b9b9b;
	font-size: 12px;
}

.top-nav_bread-item:last-child {
	color: #1b1c20;
	font-weight: bold;
}

.top-nav_bread-item:last-child a {
	color: #1b1c20;
	font-weight: bold;
}

/* END TOP NAV*/
/*sandwich*/
.sandwich {
	background: transparent;
	width: 29px;
	height: 18px;
	top: 14px;
	left: 15px;
	position: absolute;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
	display: none;
	/*sandwich lines*/
	/*sandwich opened*/
}

.sandwich__line {
	height: 3px;
	width: 100%;
	background: #fff;
	position: absolute;
}

.sandwich__line:nth-child(1) {
	top: 0;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
}

.sandwich__line:nth-child(2) {
	top: 7px;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
}

.sandwich__line:nth-child(3) {
	top: 14px;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
}

.sandwich__open .sandwich__line:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 29px;
	top: 7px;
}

.sandwich__open .sandwich__line:nth-child(2) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 29px;
}

.sandwich__open .sandwich__line:nth-child(3) {
	opacity: 0;
}

/*sing up section*/
.s_sing-up {
	background: #1b1c20;
	min-height: 45px;
	font-size: 12px;
}

.s_sing-up .container {
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: inherit;
	position:relative;
}
.sign_center{
	position:absolute;
	width:auto;
	left:50%;
	top:16px;
	transform: translate(-50%, 0);
}

.language_down {
	position: relative;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 25px;
}

.language_button {
	cursor: pointer;
}

.language_title {
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	margin-right: 7px;
	font-weight: 600;
}

.language_arrow {
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-284px -30px;
	display: inline-block;
	width: 7px;
	height: 4px;
	cursor: pointer;
}

.country_content {
	display: none;
}

.country_selector {
	position: absolute;
	display: none;
	top: 37px;
	width: 290px;
	padding: 20px 10px;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.23);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.23);
	background: #fff;
	z-index: 12;
}

.country_selector:before {
	content: '';
	position: absolute;
	display: block;
	top: 0px;
	left: 0;
	width: 40px;
	height: 3px;
	background: #1b1c20;
}

.country_open {
	display: block;
}

.country_title {
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: bold;
	color: #1b1c20;
}

.country_name {
	font-size: 14px;
	color: #9b9b9b;
}

.country_flag {
	width: 22px;
	height: 14px;
	display: inline-block;
	margin-right: 18px;
}

.country_top {
	display: -ms-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	padding-bottom: 7px;
	border-bottom: 1px solid #e2e2e2;
	cursor: pointer;
}

.country_top .country_name {
	color: #1b1c20;
}

.country_top:after {
	content: '';
	position: absolute;
	display: block;
	width: 14px;
	height: 7px;
	right: 0;
	top: 50%;
	margin-top: -4px;
	background: transparent url(/img/icons.png) no-repeat top left;
	background-position: -237px 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

.country_list {
	border-bottom: 1px solid #e2e2e2;
	margin-bottom: 15px;
}

.country_item {
	display: -ms-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	padding: 7px 0;
}

.country_item:hover .country_name {
	color: #1b1c20;
}

.country_button {
	border: none;
	width: 130px;
	line-height: 35px;
	font-size: 14px;
	background: transparent;
	border: 1px solid #cccad2;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}

.country_button:hover {
	background: #1b1c20;
	color: #fff;
}

.butt_to-blog {
	text-transform: uppercase; /* ricohax */
	color: #fff;
	padding: 8px 16px 7px;
	border: 1px solid #fff;
	font-weight: 600;
}

.butt_to-blog:hover {
	background: #fff;
	color: #1b1c20;
}

.sign_right {
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.sign_white-text {
	color: #fff;
	font-weight: normal;
}

.sign_free-shipind {
	color: #d8ae4c;
	text-transform: uppercase;
	font-weight: 600;
}

.sign_logo-adapt {
	display: none;
}

.sign_chat {
	color: #fff;
	text-decoration: underline;
	text-transform: uppercase;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 25px;
	font-weight: 600;
}

.sign_chat:hover {
	text-decoration: none;
}
.sign_chat::before {
	content: '';
	display: inline-block;
	width: 37px;
	height: 25px;
	margin-right: 10px;
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-253px 0;
}

.sign_search {
	width: 0;
	border: none;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	background-color: #1b1c20;
	position: absolute;
	right: 0;
	color: #fff;
	border-bottom: 1px solid #aeaeae;
	padding: 5px 0;
	z-index: 1;
}
.sign_search-active {
	width: 300px;
	-webkit-transition: width 1s;
	-moz-transition: width 1s;
	transition: width 1s;
	padding: 5px 20px 5px 5px;
}

.sign_search_label {
	display: inline-block;
	width: 19px;
	height: 19px;
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-292px 0;
	cursor: pointer;
	z-index: 2;
}

/* SECTION TOP with autentification*/
.s_top {
	background: #fff;
	min-height: 97px;
	border-bottom: 1px solid #cccad2;
}

.s_top .container {
	min-height: inherit;
}

.gender_selector {
	-ms-flex-item-align: end;
	align-self: flex-end;
	margin-bottom: -2px;
}

.gender_link {
	display: inline-block;
	padding: 9px 34px;
	color: #9b9b9b;
	border-bottom: none;
	font-weight: 600;
	text-transform: uppercase;
	-webkit-transition: color 0.2s;
	-moz-transition: color 0.2s;
	transition: color 0.2s;
}

.gender_selector_mobile {
	display: none;
	border-bottom:1px solid black;
	-webkit-transition: color 0.2s;
	-moz-transition: color 0.2s;
	transition: color 0.2s;
}

.active_link {
	color: #1b1c20;
	border-bottom: 3px solid #f02c56;
}

.logo-block {
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}

.user_buttons {
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}

.user_buttons_item {
	background: transparent url("/img/icons.png") no-repeat top left;
	display: inline-block;
	width: 30px;
	height: 30px;
	position: relative;
	margin-left: 20px;
}

.user_buttons .person {
	background-position:0 0;
}

.user_buttons .person:hover {
	background-position:0 -30px;
}

.user_buttons .heart {
	width:31px;
	background-position:-30px 0;
}

.user_buttons .heart:hover {
	background-position:-30px -30px;
}

.user_buttons .basket {
	background-position:-61px 0;
}

.user_buttons .basket:hover {
	background-position:-61px -30px;
}

.user_buttons .person_popup {
	display: inline-block;
	position: relative;
}

.user_buttons .person_popup:hover .falldown_block {
	display: block;
}

.user_buttons .falldown_block {
	/* NONE !!!*/
	display: none;
	z-index: 12;
	position: absolute;
	width: 190px;
	left: 50%;
	top: 40px;
	margin-left: -90px;
	text-align: center;
	background: #fff url(/img/back_login.png) no-repeat right bottom;
	padding: 23px 0;
	border: 1px solid #cbc9d1;
	border-top: 3px solid #f02c56;
}

.user_buttons .falldown_block::before {
	content: '';
	display: block;
	border: 8px solid transparent;
	position: absolute;
	top: -16px;
	left: 50%;
	margin-left: -4px;
	border-bottom: 8px solid #f02c56;
}

.user_buttons .falldown_block_hide {
	display: none;
}


.user_buttons .login_item {
	margin-bottom: 23px;
	font-size: 14px;
}

.user_buttons .login_item:hover a {
	color: #ea1c49;
}

.user_buttons .red_button {
	display: block;
	margin: 0 auto;
	width: 132px;
	line-height: 34px;
	background-color: #f02c56;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 12px;
}

.user_buttons .red_button:hover {
	background-color: #ea1c49;
}

.user_buttons .red-circle {
	display: inline-block;
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: -ms-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	right: -3px;
	bottom: -3px;
	background-color: #f02c56;
}

.user_buttons .new_acc {
	margin: 28px 0 0 0;
	font-size: 12px;
}


/*SECTION MENU*/
.s_site_menu .container {
	padding: 0 0 0 12px;
}

.header_nav {
	min-height: 50px;
	margin-top: -1px;
	margin-bottom: -1px;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	flex-wrap: wrap;
}

/* review stars and count */
.pl_reviews_container {
	margin-top:6px;
	text-align:center;
	font-size:14px;
	color:#1b1c20;
}
.pl_stars_container,.pl_stars_img{
	background: transparent url("/img/stars.png") no-repeat top left;
	display:inline-block;
	height:15px;
	overflow:hidden;
}
.pl_stars_container {
	background-position:0 -15px;
	width:92px;
	position:relative;
	margin:0 auto;
}

.pl_stars_img {
	background-position:0 0;
	position:absolute;
	top:0;
	left:0;
}

.pl_reviews_txt {
	margin-left:5px;
	display:inline-block;
	vertical-align: text-top;
}

/* product color swatches */
.prod-color_one {
	width: 30px;
	height: 30px;
	margin: 0 6px 12px 0;
	border:1px solid black;
	display:block;
}

.prod-color_one:hover {
	padding: 2px;
	border: 1px solid #d8ae4c;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

.prod-color_one-wrap {
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

.prod-color_one-wrap > div {
	width: 100%;
	height: 100%;
}

.prod-color_one img {
	border: 1px solid #cccad2;
	width: 100%;
	height: 100%;
}

.prod-color_one .discount {
	font-size:xx-small;
	color:red;
}

a.prod-attrib-choice.selected {
	padding: 2px;
	border: 1px solid #d8ae4c;
}
a.prod-attrib-choice.prod-attrib-item.selected {
	padding: 5px;
}

/* error*/
.message_text {
	margin: 40px 0 20px 0;
	position: relative;
}
.error_text {
	padding-left: 90px;/*to make room for the icon*/
}
.message_text a, .error_text a {
	margin: 0 5px;
	color: #f02c56;
}

.error_icon {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -30px;
	width: 61px;
	height: 61px;
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:0 -60px;
}
/* end error*/

/* POPUP quick view */
.s_popup_quick {
	z-index: 11;
}

.popup-quick_wrapper {
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.quick_wrapper {
	position: relative;
	width: 100%;
	background: #fff;
	z-index: 1;
	padding: 70px 10px 30px 10px;
	height: auto;
}
.quick_wrapper #quick_product{
	width:100%;
}
.quick_wrapper .social-list {
	-webkit-box-pack: start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.quick_read-more {
	text-align: right;
}

.quick_read-more a {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
}

.quick_read-more a:hover::after {
	-webkit-transform: translateX(2px);
	-moz-transform: translateX(2px);
	-ms-transform: translateX(2px);
	transform: translateX(2px);
}

.quick_read-more a::after {
	content: '';
	display: inline-block;
	width: 7px;
	height: 14px;
	margin-left: 12px;
	position: relative;
	top: 2px;

	background: transparent url("/img/icons.png") no-repeat top left;
	background-position: -276px -30px;

	-webkit-transition: -webkit-transform 0.2s;
	transition: -webkit-transform 0.2s;
	-moz-transition: transform 0.2s, -moz-transform 0.2s;
	transition: transform 0.2s;
	transition: transform 0.2s, -webkit-transform 0.2s, -moz-transform 0.2s;
	-webkit-transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}
/* end POPUP quick view */

/* Popup size chart (used for checkout address book too)*/
.s_popup_size {
	display: none;
	position: fixed;
	z-index: 14;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.popup_size_wrapper {
	margin-top: 50px;
	overflow-y: auto;
	-webkit-box-align: start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.size_underlayer {
	background: rgba(0, 0, 0, 0.8);
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.size_wrapper {
	position: relative;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	z-index: 11;
	/*max-width: 690px;*/
	margin: 0 auto;
	background: #fff;
}

.size_title-block {
	margin-top: 53px;
	border-bottom: 2px solid #000;
	max-width: 193px;
}

.size_title {
	text-align: right;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 24px;
	margin-bottom: 13px;
}
/* end Popup size cchart*/


.nav_text {
	font-weight: bold;
	font-size: 12px;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	line-height: 50px;
	cursor: pointer;
}

.gold_menu_item {
	/*z-index: 11;*/
	padding: 0;
	background: url("/img/gold_sale.png") repeat-x center center;
	background-repeat:repeat-x;
}

.nav_gold {
	color: #fff;
	padding: 0 19px;
	line-height: 50px;
	display: inline-block;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 12px;
}

.sub_nav-back {
	display: none;
}

.nav_blog {
	display: none;
	font-weight: bold;
	padding: 15px 40px;
}

.sub_nav {
	display: none;
	position: absolute;
	padding: 15px;
	width: 100%;
	margin-top: -1px;
	left: 0;
	border: 1px solid #cccad2;
	z-index: 12;
	background: #fff;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.23);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.23);
}

.sub_nav-list {
	width: 65%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 15px;
	flex-direction: column;
}

.sub_nav_item {
	display: block;
	width: 33%;
	text-align: left;
}

.sub_nav_item a {
	line-height: 2;
	text-transform: capitalize;
	font-size: 14px;
	font-weight: normal;
}

.sub_nav_item a:hover {
	color: #f02c56;
}

.sub_nav-banner {
	width: 35%;
	text-align: right;
	background-repeat: no-repeat;
	background-position: center center;
}

.nav_banner-block {
	display: inline-block;
	padding: 25px 0;
	border-top: 2px solid #d8ae4c;
	font-size: 22px;
	font-weight: normal;
}

.nav_banner-title {
	font-weight: normal;
	text-transform: none;
	text-align: right;
	margin-bottom: 5px;
}

.nav_banner-price {
	font-weight: bold;
	text-align: right;
}

.nav_banner-wrap {
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
}

.nav_banner-button {
	display: inline-block;
	padding: 13px 40px;
	margin-top: 25px;
	text-transform: uppercase;
	background: #1b1c20;
	color: #fff;
}

.nav_banner-button:hover {
	background: #0c0c0e;
	color: #fff;
}

/* TOP SITE SECTION */
.logo_img{
	margin-right:140px;
}

.top_slider-navigation {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.top_slider-arrow {
	z-index: 1;
	display: block;
	height: 30px;
	width: 18px;
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-333px -60px;
	cursor: pointer;
}

.top_slider-arrow:hover {
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-333px -92px;
}

.top_slider-next {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	margin-right: 15px;
}

.top_slider-prev {
	margin-left: 15px;
}

.slick-dots {
	display: -ms-flex;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	bottom: 60px;
	left: 77%;
	margin-left: -10px;
	width: 40px;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.slick-dots .slick-active button {
	background-color: #f02c56;
}

.slick-dots button {
	font-size: 0;
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	border: none;
	background-color: #d9d8d8;
	cursor: pointer;
}

.slick-dots button:hover {
	background-color: #f02c56;
}


/* BEST SELLERS SECTION*/
.s_best-sellers {
	padding: 35px 0 40px;
}

.s_best-sellers .top_slider-navigation {
	left: 0;
	height: 320px;
}

.s_best-sellers .top_slider-navigation .top_slider-next {
	margin-right: 15px;
}

.section_title_line {
	font-size: 30px;
	display: inline-block;
	font-weight: normal;
	color: #1b1c20;
	text-transform: uppercase;
	padding: 0 20px;
	background: #fff;
}

.section_title_block {
	text-align: center;
	position: relative;
	margin-bottom: 30px;
}

.section_title_block:after {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 1px;
	background-color: #cccad2;
	top: 50%;
	z-index: -1;
}

.section_title_block .gold_text {
	font-weight: bold;
}

.gold_text {
	color: #d8ae4c;
}

.bestsellers_slider {
	width: 90%;
	margin: 0 auto;
}

.bestsellers_slide {
	position: relative;
	max-width: 209px;
	padding: 8px;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	margin: 10px 0;
}

.bestsellers_slide:hover {
	border: 1px solid #d8ae4c;
	padding: 7px;
	-webkit-box-shadow: 0 0 20px 2px #eeeeee;
	box-shadow: 0 0 20px 2px #eeeeee;
}

.bestsellers_slide:hover .bestsellers_img_wrap {
	position: relative;
}

.bestsellers_slide:hover .bestsellers_img_wrap .bestsellers_img_eye {
	width: 68px;
	height: 68px;
	display: block;
	left: 50%;
	margin-left: -34px;
	top: 50%;
	margin-top: -34px;
	position: absolute;
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-62px -60px;
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: -webkit-transform 1s;
	transition: -webkit-transform 1s;
	-moz-transition: transform 1s, -moz-transform 1s;
	transition: transform 1s;
	transition: transform 1s, -webkit-transform 1s, -moz-transform 1s;
}

.bestsellers_slide:hover .bestsellers_img_wrap:hover .bestsellers_img_eye {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.bestsellers_img_wrap img {
	width: 206px;
	height: auto;
	border: 1px solid #cccccc;
}

.bestsellers_tags {
	position: absolute;
	width: 100%;
	z-index: 1;
}

.bestsellers_sale {
	width: 43px;
	height: 43px;
	position: absolute;
	left: 12px;
	top: 8px;
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-197px -60px;
}

.bestsellers_like {
	width: 22px;
	height: 19px;
	position: absolute;
	left: 176px;
	top: 15px;
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-333px 0;
}

.bestsellers_like:hover {
	background: transparent url("/img/icons.png") no-repeat top left;
	background-position:-333px -30px;
}

/*.bestsellers_img {
  width: 100%;
  height: 100%; }*/

.bestsellers_name, .bestsellers_label {
	margin-top: 20px;
	margin-bottom: -20px;
	text-align: center;
	padding: 0 20px;
	font-size: 14px;
	text-transform: uppercase;
	line-height: 20px;
	font-weight: 600;
}

.bestsellers_label {
	color: #f02c56;
}

.bestsellers_price {
	text-align: center;
	margin-top: 20px;
	font-weight: bold;
	font-size: 14px;
}

.bestsellers_price_old {
	text-decoration: line-through;
}

.bestsellers_price_sale {
	color: #f02c56;
}


/* GET IT section*/
.s_get-it-now {
	margin: 0 auto 44px auto;
	background-color: #e2e2e2;
}

.get-it_wrapper {
	height: 80px;
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.get-it_imgs {
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.get-it_mail {
	display: block;
	padding: 0 15px;
	height: 35px;
	width: 270px;
	margin-right: 15px;
	font-size: 14px;
	background: #fff;
	border: none;
	border-radius: 0;
}

.get-it_button {
	width: 135px;
	height: 35px;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	text-transform: uppercase;
	background: #1b1c20;
	border: none;
	border-radius: 0;
	cursor: pointer;
}

.get-it_button:hover {
	background-color: #0c0c0e;
}

/* end GET IT section*/
/* FOOTER */
.site_footer {
	background: #1b1c20;
	padding: 35px 0 80px;
}

.seotext {
	font-size: 14px;
	margin-top: 2px;
	margin-bottom: 14px;
}


.footer {
	/* TOP */
	/*FOOTER DESCRIPTION*/
	/* END FOOTER DESCRIPTION */
	/*FOOTER NAV*/
	/*END FOOTER NAV*/
}

.footer-top {
	-webkit-box-pack: start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.footer-description {
	max-width: 225px;
	margin-left: 13px;
}

.footer-description-small-line {
	margin-top: 18px;
	margin-bottom: 25px;
	width: 50px;
	height: 1px;
	background: #d8ae4c;
}

.footer-description-text {
	font-size: 14px;
	line-height: 20px;
	color: #888888;
	font-weight: 300;
}

.footer-nav {
	margin-left: 10%;
}

.footer-nav-title {
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
}

.footer-nav-line {
	width: 100%;
	height: 1px;
	background-color: #767676;
	margin-top: 13px;
	margin-bottom: 10px;
}

.footer-nav-item {
	margin-bottom: 15px;
}

.footer-nav-a {
	color: #fff;
	font-size: 14px;
	font-weight: 300;
	text-transform: uppercase;
}

.footer-nav-a:hover {
	color: #767676;
}

.footer-bottom {
	-webkit-box-align: end;
	-moz-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

/* footer bottom */
.fixed-block {
	position: fixed;
	bottom: -1px;
	left: 0;
	width: 100%;
	background-color: rgba(27, 28, 32, 0.9);
	z-index: 11;
	height: 40px;
}

.fixed-block .container {
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.fixed-item {
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 0px 13px;
}

.fixed-item:not(:last-child) {
	border-right: 1px solid #a3a3a3;
}
.fixed-item span{
	color: #fff;
}
.fixed-item a {
	color: #fff;
	text-decoration:underline;
}

.social-link {
	background: transparent url("/img/icons.png") no-repeat top left;
	display: block;
	width: 27px;
	height: 27px;
	margin-left: 30px;
}

.pin {
	background-position:-88px 0;
}

.pin:hover {
	background-position:-88px -30px;
}

.fb {
	background-position:-115px 0;
}

.fb:hover {
	background-position:-115px -30px;
}

.tw {
	background-position:-142px 0;
}

.tw:hover {
	background-position:-142px -30px;
}

.yt {
	background-position:-169px 0;
}

.yt:hover {
	background-position:-169px -30px;
}

.in {
	background-position:-196px 0;
}

.in:hover {
	background-position:-196px -30px;
}

.copyright {
	color: #a3a3a3;
	font-size: 12px;
	font-weight: normal;
	line-height: 20px;
	max-width: 300px;
}
.copyright a {
	color: #a3a3a3;
	text-decoration:underline;
}

.payment-block {
	-webkit-box-align: end;
	-moz-box-align: end;
	-ms-flex-align: end;
	align-items: center;
}

.payment-wrapper {
	margin-left: 22px;
}

.payment-wrapper.certificated {
	height:101px;
	overflow:hidden;
}

/* END footer bottom */

.seotext img{/*resize category header images if page width shrinks*/
	width:100%;
}

.mobile_only{
	display:none;
}

/* 1001*/
@media all and (min-width: 1001px) {
	.nav_item {
		padding: 0 12px;
	}

	.nav_item:hover:not(:last-child) .sub_nav {
		display: -ms-flex;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
	}

	.nav_item:hover:not(:last-child) .nav_text::after {
		content: '';
		display: block;
		border: 8px solid transparent;
		position: absolute;
		bottom: -1px;
		left: 50%;
		margin-left: -4px;
		border-bottom: 8px solid #fff;
		z-index: 11;
	}

	.nav_item:hover:not(:last-child) .nav_text::before {
		content: '';
		z-index: 11;
		display: block;
		border: 9px solid transparent;
		position: absolute;
		bottom: 0;
		left: 50%;
		margin-left: -5px;
		border-bottom: 9px solid #cccad2;
	}

	.gold_menu_item {
		padding: 0;
	}
}

@media all and (min-width: 1030px) {
	.nav_item {
		padding: 0 14px;
	}

	.gold_menu_item {
		padding: 0;
	}
}

/* Media for 1000*/
@media all and (max-width: 1000px) {
	.desktop_only {
		display: none;
	}
	.mobile_only{
		display:inline-block;
	}

	.container {
		padding: 0px 24px;
	}

	.butt_to-blog {
		display: none;
	}

	.s_site_menu {
		display: none;
	}

	.sandwich {
		display: block;
	}

	.language_down {
		margin-left: 50px;
		margin-right: 0;
	}

	.country_selector {
		top: 28px;
	}

	.sign_search {
		right: 24px;
	}

	.sign_search:focus {
		width: 150px;
	}

	.s_top {
		border-color: #000;
		min-height: 57px;
	}

	.logo_img {
		height: 26px;
		margin-right:0;
	}

	.gender_selector {
		z-index: 1;
	}

	.gender_link {
		padding: 9px 3px;
		margin-right: 15px;
	}

	.top_slider-next {
		margin-right: 15px;
	}

	.slick-dots {
		bottom: 70px;
	}

	.gold_menu_item {
		z-index: initial;
	}

	/* ADAPTIVE MENU 1000*/
	.s_site_menu-active {
		display: block;
		position: fixed;
		left: 0;
		top: 0;
		background: #fff;
		overflow-y: auto;
		width: 100%;
		height: 100vh;
		z-index: 30;
	}

	.s_site_menu-active .container {
		padding: 0;
	}

	.header_nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		height: auto;
		-webkit-box-align: start;
		-moz-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding-bottom: 60px;
	}

	.nav {
		/* NAVIGATION FOR MENU*/
	}

	.nav_item {
		width: 100%;
		background: transparent;
		padding: 0 45px;
	}

	.nav_item:hover {
		background-color: #d7d7d7;
		margin-top: -1px;
		padding-top: 1px;
	}

	.nav_item .nav_gold {
		color: #d8ae4c;
		padding: 0;
		width: 100%;
	}

	.nav_text, .nav_gold {
		width: 100%;
		font-size: 18px;
		border-bottom: 1px solid #d7d7d7;
	}

	.nav_navigation {
		display: block;
		width: 100%;
		line-height: 100px;
		padding: 0 45px;
		position: relative;
	}

	.nav_close {
		position: absolute;
		z-index: 20;
		width: 23px;
		top: 49px;
		right: 40px;
		margin-top: -11px;
		height: 23px;
		display: block;
		cursor: pointer;
	}

	.nav_close:hover .line {
		background: #d7d7d7;
	}

	.nav_close-active {
		position: fixed;
	}

	.nav_close .line {
		position: absolute;
		bottom: 10px;
		right: -4px;
		width: 30px;
		height: 3px;
		background-color: #9c9c9c;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		transition: all 0.5s;
		-webkit-animation-timing-function: ease-in-out;
		-moz-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	.nav_close .line-two {
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
		transform: rotate(135deg);
	}

	.nav_blog {
		display: inline-block;
		color: #1b1c20;
		border-color: #1b1c20;
		-webkit-transition: all 1s;
		-moz-transition: all 1s;
		transition: all 1s;
	}

	.nav_blog:hover {
		background-color: #1b1c20;
		color: #fff;
	}
	.gender_selector_mobile {
		display: block;
		-webkit-transition: all 1s;
		-moz-transition: all 1s;
		transition: all 1s;
	}

	.s_site_menu-active .sub_nav-back {
		position: fixed;
		left: 35px;
		z-index: 20;
		top: 50px;
		margin-top: -13px;
		cursor: pointer;
		display: none;
	}

	.s_site_menu-active .sub_nav-back-active {
		display: block;
	}

	.s_site_menu-active .nav_item {
		-webkit-transition: all 1s;
		-moz-transition: all 1s;
		transition: all 1s;
	}
	.s_site_menu-active .nav_item.first .nav_text{
		padding-top:25px;
		border-top: 3px solid black;
	}
	.s_site_menu-active .nav_item.last .nav_text{
		border-bottom: 0;
	}
	.s_site_menu-active .nav_item.nav_item_help_contact span.icon{
		display: inline-block;
		background: transparent url("/img/icons.png") no-repeat top left;
		background-position:-356px -60px;
		width:32px;
		height:26px;
		margin-bottom:-7px;
		margin-right:12px;
	}

	.s_site_menu-active .nav_item-active {
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		overflow-y: auto;
		background: #1b1c20;
		z-index: 10;
		padding: 0;
		margin: 0 auto;
	}

	.s_site_menu-active .nav_item-active .nav_text {
		padding: 0 80px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 21;
		border: 0;
		background-color: #d7d7d7;
		line-height: 100px;
		font-size: 18px;
		cursor: auto;
	}

	.s_site_menu-active .nav_item-active .sub_nav {
		display: block;
		opacity: 1;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		background: transparent;
		padding: 30px 80px;
		border: 0;
		margin-top: 100px;
	}

	.s_site_menu-active .nav_item-active .sub_nav-list {
		padding: 0;
		width: 100%;
		height:auto!important;/*overwrite the hardcoded height that is used for "flex-direction: column" sorting*/
	}

	.s_site_menu-active .nav_item-active .sub_nav_item {
		width: 100%;
	}

	.s_site_menu-active .nav_item-active .sub_nav_item a {
		color: #fff;
		width: 100%;
		display: inline-block;
		font-size: 18px;
		line-height: 60px;
	}

	.s_site_menu-active .nav_item-active .sub_nav_item a:hover {
		color: #f02c56;
	}

	.s_site_menu-active .nav_item-active .sub_nav-banner {
		display: none;
	}

	/*end ADAPTIVE MENU 1000*/
	/*best sellers 1000*/
	.s_best-sellers .bestsellers_slider {
		width: 90%;
	}

	/*end best sellers 1000*/
	/* GET IT section 1000*/
	.s_get-it-now {
		margin: 0 auto;
	}

	.get-it_icon {
		height: 40px;
		width: auto;
	}

	.get-it_banner {
		height: 36px;
	}

	.get-it_mail {
		margin-right: 0;
	}

	/* end GET IT section 1000*/
	/*footer 1000*/
	.site_footer {
		padding: 0;
	}

	.site_footer .container {
		padding: 0;
		display: -ms-flex;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
	}

	.footer-top {
		padding: 35px 10px 40px 24px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: start;
		-moz-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		width: 62%;
	}

	.footer-description {
		max-width: 100%;
		margin-left: 0;
		margin-bottom: 50px;
	}

	.footer-nav {
		width: auto;
		margin-left: 0;
		margin-right: 60px;
	}

	.footer-bottom {
		background-color: #2f2f33;
		padding: 35px 0 40px 0;
		width: 38%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-moz-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	/*end footer 1000*/
	/* footer bottom 1000*/
	.fixed-block {
		-webkit-box-ordinal-group: 3;
		-moz-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		position: static;
		background-color: transparent;
		height: auto;
		z-index: initial;
	}

	.fixed-block .container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

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

	.fixed-list_wrapper {
		border-top: 1px solid #7a797a;
		padding: 24px;
		width: 100%;
		-webkit-box-ordinal-group: 3;
		-moz-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	.fixed-item {
		width: 100%;
		margin-bottom: 9px;
		color: #a3a3a3;
	}
	.fixed-item span {
		color: #a3a3a3;
	}

	.fixed-item:not(:last-child) {
		border: 0;
	}

	.social-list {
		-webkit-box-ordinal-group: 2;
		-moz-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		width: 100%;
		-ms-flex-pack: distribute;
		justify-content: space-around;
		padding: 24px;
		border-top: 1px solid #7a797a;
	}

	.social-link {
		margin: 0 auto;
	}

	.copyright {
		max-width: initial;
		position: absolute;
		bottom: 0;
		width: 100%;
		left: 0;
		background-color: #1b1c20;
		height: 40px;
		padding: 0 24px;
		border-top: 1px solid #7a797a;
		color: #fff;
	}

	.payment-block {
		width: 100%;
		-webkit-box-ordinal-group: 2;
		-moz-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding-bottom: 30px;
	}

	.payment-wrapper {
		margin: 0 auto;
		text-align: center;
		margin-bottom: 10px;
	}

	.paypal {
		-webkit-box-ordinal-group: 2;
		-moz-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.bizzrate {
		-webkit-box-ordinal-group: 3;
		-moz-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	.certificated {
		width: 111px;
		height: 106px;
		overflow: hidden;
		-webkit-box-ordinal-group: 4;
		-moz-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}

	.norton {
		width: 125px;
		height: 76px;
		overflow: hidden;
		-webkit-box-ordinal-group: 5;
		-moz-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}

	/* END footer bottom 1000*/
	/* QUICK 1000*/
	.quick_wrapper .social-list {
		-webkit-box-pack: justify;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		max-width: 350px;
		border: none;
	}

	/* end QUICK 1000*/
}

/* END 1000*/
/* MEDIA FOR <=850*/
@media all and (max-width: 850px) {
	.s_best-sellers .top_slider-navigation {
		display: none;
	}

	.s_best-sellers .container {
		padding: 0;
	}

	.s_best-sellers .bestsellers_slider {
		width: 100%;
	}

	.fixed-item {
		text-align: center;
	}

	.fixed-list_wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

}

/* end MEDIA FOR <=850*/
/* MEDIA <=768*/
@media all and (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	.slick-dots {
		bottom: 55px;
	}

	/*sing up 768*/
	.sign_free-shipind {
		font-size: 10px;
	}

	/*menu 768*/
	.nav_navigation {
		padding: 0 40px;
	}

	.nav_text, .nav_gold {
		font-size: 18px;
	}

	.nav_blog {
		font-weight: bold;
	}

	.nav_item {
		padding: 0 40px;
	}

	/*end menu 768*/
	/*bread 768*/
	.top-nav_bread-item {
		display: none;
	}

	/*end bread 768*/
	/* GET IT section 768*/
	.get-it_wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		min-height: 160px;
		-webkit-box-pack: center;
		-moz-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.get-it_imgs {
		margin-bottom: 20px;
	}

	/* end GET IT section 768*/
	/* footer bottom 768*/
	.payment-block {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.payment-wrapper {
		margin-bottom: 25px;
	}

	/* END footer bottom 768*/
	/* QUICK 768*/
	.popup-quick_wrapper {
		-webkit-box-align: start;
		-moz-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		overflow-y: auto;
	}

	.quick_wrapper {
		margin: 20px 0;
		padding: 20px 15px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		overflow-y: auto;
	}

	.quick_wrapper .social-list {
		display: none;
	}

	.quick_descr {
		width: 100%;
	}

	.quick_details {
		width: 100%;
		max-width: 100%;
	}

	/* end QUICK 768*/
}

/* MEDIA 640*/
@media all and (max-width: 640px) {
	/*slick 640*/
	.slick-dots {
		bottom: 35px;
	}

	/*end slick 640*/
	/*menu 640*/
	.nav_navigation {
		padding: 0 20px;
	}

	.nav_text, .nav_gold {
		line-height: 36px;
		font-size: 14px;
	}

	.nav_blog {
		padding: 10px 40px;
	}

	.nav_item {
		padding: 0 20px;
	}

	/*end menu 640*/
	/* footer bottom 640*/
	.site_footer .container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.footer-top {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}

	.footer-bottom {
		width: 100%;
		padding-bottom: 0;
	}

	.fixed-list {
		text-align: left;
	}

	.fixed-list_wrapper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-moz-box-orient: horizontal;
		-moz-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.fixed-item {
		padding: 0;
		color: #fff;
		text-align: left;
	}

	.copyright {
		position: static;
		-webkit-box-ordinal-group: 4;
		-moz-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		background-color: transparent;
		color: #a3a3a3;
	}

	.payment-block {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-moz-box-orient: horizontal;
		-moz-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.payment-wrapper {
	}

	/* END footer bottom 640*/

	/* QUICK 640*/
	.quick_wrapper {
		padding-top: 35px;
	}

	.quick_wrapper .prod-price_button {
		width: 140px;
	}

	.quick_wrapper .prod-brand_logo {
		width: 100px;
	}

	.quick_wrapper .product_gallery {
		width: 100%;
		height: auto;
	}

	.quick_wrapper .gallery_selected-photo {
		width: 100%;
		height: auto;
	}

	.quick_close {
		top: 10px;
		right: 10px;
	}

	.quick_descr {
		padding: 0;
	}

	/* end QUICK 640*/
}

/*end MEDIA 640*/
/*MEDIA 550*/
@media all and (max-width: 550px) {
	/*menu 550*/
	.nav_navigation {
		padding: 0 20px;
		line-height: 60px;
	}

	.nav_text, .nav_gold {
		line-height: 36px;
		font-size: 14px;
	}

	.nav_close {
		top: 30px;
		right: 22px;
	}

	.nav_blog {
		padding: 8px 15px;
	}

	.nav_item {
		padding: 0 20px;
	}

	.country_selector {
		top: 27px;
	}

	.s_site_menu-active .nav_item-active .nav_text {
		line-height: 60px;
		font-size: 14px;
		padding: 0 40px;
	}

	.s_site_menu-active .nav_item-active .sub_nav {
		margin-top: 60px;
		padding: 20px 40px;
	}

	.s_site_menu-active .nav_item-active .sub_nav_item a {
		font-size: 14px;
		line-height: 35px;
	}

	.s_site_menu-active .sub_nav-back {
		top: 30px;
		left: 15px;
	}

	/*end menu 550*/
	.logo-block {
		display: none;
	}

	/*slick dots 550*/
	.slick-dots {
		bottom: 20px;
		width: 25px;
	}

	.slick-dots button {
		width: 5px;
		height: 5px;
	}

	.top_slider-arrow {
		width: 7px;
		height: 12px;
	}

	.top_slider-next {
		margin-right: 10px;
	}

	.top_slider-prev {
		margin-left: 10px;
	}

	.gender_link {
		font-size: 12px;
	}

	.language_down {
		margin-left: 44px;
	}

	.language_title {
		font-size: 10px;
		margin-right: 4px;
	}

	.s_top {
		min-height: 40px;
	}

	.user_buttons_item {
		-webkit-transform: scale(0.8);
		-moz-transform: scale(0.8);
		-ms-transform: scale(0.8);
		transform: scale(0.8);
		margin-left: 20px;
	}

	.user_buttons .red-circle {
		width: 15px;
		height: 15px;
	}

	.sign_chat {
		font-size: 0;
		margin-right: 20px;
	}

	/*.sign_chat_image {
		width: 25px;
		height: 17px;
		margin-right: 0;
	}*/

	.sign_search_label {
		width: 16px;
		height: 16px;
	}

	.sign_free-shipind {
		display: none;
	}

	.sign_logo-adapt {
		display: block;
		margin-top:-3px;
	}
	.sign_logo-adapt img {
		width:175px;
		height:21px;
	}

	/*FOOTER NAV 550*/
	.footer-description {
		margin-bottom: 30px;
	}

	.footer-nav {
		margin-left: 0;
		margin-right: 15px;
	}

	.footer-nav-title {
		font-size: 14px;
	}

	.footer-nav-a {
		font-size: 12px;
		margin-bottom: 20px;
	}

	.footer-nav-a:hover {
		color: #767676;
	}

	/*END FOOTER NAV 550*/
	/* footer bottom 550*/
	.footer-bottom {
		padding: 20px 0 0;
	}

	.copyright {
		height: auto;
		padding: 10px;
		font-size: 12px;
		line-height: 1.1;
	}

	.payment-wrapper {
		margin: 0 auto;
	}

	.payment-img {
		width: 100%;
		height: auto;
	}

	/* END footer bottom 550*/
}

/*end MEDIA 550px*/
/*MEDIA 480px*/
@media all and (max-width: 480px) {
	/*get it now 480*/
	.get-it_mail {
		width: 100%;
	}

	/*end get it now 480*/
}

/*end MEDIA 480px*/
/*MEIDA 440*/
@media all and (max-width: 440px) {
	.country_selector {
		left: -45px;
	}

	.country_selector:before {
		left: 40px;
	}
}

/*end MEDIA 440*/

.hidden {
	display: none;
}

#catmenu_cat300 span{/* Everything for $5 and Under */
	color:#EF2C55 !important;
}
#catmenu_cat317 a{/* Swimwear - View All */
	font-weight:bold;
}