.main .overlay {
	position: fixed;
	visibility: hidden;
	z-index: 50;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	pointer-events: none;
	-webkit-animation: fadeOutFromBlock 0s ease-in-out;
	-o-animation: fadeOutFromBlock 0s ease-in-out;
	animation: fadeOutFromBlock 0s ease-in-out;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: all 0.36s ease-in-out;
	-moz-transition: all 0.36s ease-in-out;
	-o-transition: all 0.36s ease-in-out;
	transition: all 0.36s ease-in-out;
}
.page-drop-opened .main .overlay {
	-webkit-animation: fadeInFromNone 0.36s ease-in-out;
	-o-animation: fadeInFromNone 0.36s ease-in-out;
	animation: fadeInFromNone 0.36s ease-in-out;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-transform: translate3d(0, 250px, 0);
	-moz-transform: translate3d(0, 250px, 0);
	-ms-transform: translate3d(0, 250px, 0);
	-o-transform: translate3d(0, 250px, 0);
	transform: translate3d(0, 250px, 0);
}
.page-drop-already-triggered .main .overlay {
	-webkit-animation-duration: 0.36s;
	-moz-animation-duration: 0.36s;
	-o-animation-duration: 0.36s;
	animation-duration: 0.36s;
	visibility: inherit;
}
.page-drop {
	position: relative;
	/*overflow: hidden;*/
	z-index: 1;
	height: 193px;
	background: #f2f2f2;
}
.page-drop-inner {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
	max-width: 1280px;
	padding: 0 30px;
	line-height: 193px;
	-webkit-user-select: initial;
	-moz-user-select: initial;
	-ms-user-select: initial;
	user-select: initial;
}
.page-drop-close-button {
	position: absolute;
	z-index: 2;
	top: 20px;
	right: 30px;
	width: 29px;
	height: 29px;
	padding: 0;
	background: #fff;
}
.page-drop-close-button:hover {
	background: #000;
}
.page-drop-close-button:before {
	content: "";
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 11px;
	margin: -6px 0 0 -5px;
	background: url("../images/sprite.svg") no-repeat -49px -329px;
}
.page-drop-close-button:hover:before {
	background-position: 0 -329px;
}
.page-drop-opened header {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.header-icon.blur {
	opacity: 0.5;
}
.header-icon.focus:not(.language):before {
	opacity: 0;
}
.header-icon.focus:not(.language):after {
	opacity: 1;
}
.header-icon.profile.active:after {
	opacity: 1;
}
.header-icon:after {
	background-position-x: -49px !important;
}
.header-icon.focus .header-icon-text {
	color: #adda0b;
}
.page-drop .page-drop-content {
	display: none;
	width: 100%;
	height: 100%;
	background: #f2f2f2;
}
.page-drop .page-drop-content.active,
.page-drop .page-drop-content.previous {
	display: block;
}
.page-drop .page-drop-content.active {
	position: relative;
	z-index: 2;
	-webkit-animation: fadeInFromNone 0.36s ease-in-out;
	-o-animation: fadeInFromNone 0.36s ease-in-out;
	animation: fadeInFromNone 0.36s ease-in-out;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.page-drop .page-drop-content.previous {
	position: absolute;
	display: block;
	top: 0;
	left: 50%;
	z-index: 1;
	width: calc(100% - 60px);
	-webkit-transform: translate3d(-50%, 0, 0);
	-moz-transform: translate3d(-50%, 0, 0);
	-ms-transform: translate3d(-50%, 0, 0);
	-o-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
}
.page-drop .search-content {
	font-size: 0;
}
.page-drop .language-select {
	vertical-align: middle;
	position: relative;
	display: inline-block;
	top: -2px;
	width: 190px;
	height: 40px;
	background: #fff;
	border: 1px solid #dedddd;
	color: #000;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 0.5px;
	line-height: 1.2em;
	text-align: left;
	cursor: pointer;
	-webkit-box-shadow: 0 5px 14px -10px transparent;
	-moz-box-shadow: 0 5px 14px -10px transparent;
	box-shadow: 0 5px 14px -10px transparent;
}
.page-drop .language-select:focus {
	-webkit-box-shadow: 0 7px 15px -13px #000;
	-moz-box-shadow: 0 7px 15px -13px #000;
	box-shadow: 0 7px 15px -13px #000;
}
.page-drop .language-select .options-list {
	position: absolute;
	-webkit-animation: fadeOutFromBlock 0.01s ease-in-out;
	-o-animation: fadeOutFromBlock 0.01s ease-in-out;
	animation: fadeOutFromBlock 0.01s ease-in-out;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	width: calc(100% + 2px);
	top: 39px;
	left: -1px;
	background: #fff;
	border: 1px solid #dedddd;
	border-top: 0 none;
}
.page-drop .language-select.already-shown .options-list {
	-webkit-animation: fadeOutFromBlock 0.36s ease-in-out;
	-o-animation: fadeOutFromBlock 0.36s ease-in-out;
	animation: fadeOutFromBlock 0.36s ease-in-out;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.page-drop .language-select.show .options-list {
	-webkit-animation: fadeInFromNone 0.36s ease-in-out;
	-o-animation: fadeInFromNone 0.36s ease-in-out;
	animation: fadeInFromNone 0.36s ease-in-out;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
.page-drop .language-select .selected-option {
	position: relative;
	height: 100%;
	padding: 0 26px 0 12px;
	line-height: 38px;
	background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAFCAYAAABfPyy9AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AILDyEI/km/rwAAAFdJREFUGNNjYBhoYGFhMY2BgeE/OoaKEwRMhBRoaGjk6ujobEIW09HR2aShoZFLNV8kJCRwKioqnmRgYPivqKh4MiEhgZPqQRUdHS2qpaW1PTo6WpQUfQDmZxTakjhIKgAAAABJRU5ErkJggg==) no-repeat right center;
}
.page-drop .language-select .options-list .select-option {
	padding: 7px 26px 7px 12px;
	background: #fff;
	-webkit-transition: background 0.36s ease-in-out;
	-moz-transition: background 0.36s ease-in-out;
	-o-transition: background 0.36s ease-in-out;
	transition: background 0.36s ease-in-out;
}
.page-drop .language-select .options-list .select-option:hover {
	background: #f2f2f2;
}
.page-drop .language-select .select-option-text {
	display: inline-block;
	vertical-align: middle;
}
.page-drop .language-select .flag-icon {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 14px;
	margin-right: 5px;
	background: url("../images/sprite.svg") no-repeat;
}
.page-drop .language-select .selected-option[data-flag="bg"] .flag-icon,
.page-drop .language-select .select-option[data-flag="bg"] .flag-icon {
	background-position: 0 -1099px;
}
.page-drop .language-select .selected-option[data-flag="en"] .flag-icon,
.page-drop .language-select .select-option[data-flag="en"] .flag-icon {
	background-position: -99px -1099px;
}
.page-drop .language-select .selected-option[data-flag="ro"] .flag-icon,
.page-drop .language-select .select-option[data-flag="ro"] .flag-icon {
	background-position: 0 -1143px;
}
.search-box-field,
.search-box-button {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}
.search-box-field {
	width: 474px;
	height: 40px;
	padding: 0 15px;
	border: 1px solid #bdbdbd;
	border-right: 0 none;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2em;
}
.search-box-button {
	height: 40px;
	padding: 0 50px;
	border: 2px solid #000;
	background: #fff;
	line-height: 37px;
}
.search-box-button,
.search-box-button-text,
.search-box-button-text:before,
.search-box-button-text:after {
	-webkit-transition: all 0.36s cubic-bezier(0.42, 0.92, 0.43, 0.94);
	-moz-transition: all 0.36s cubic-bezier(0.42, 0.92, 0.43, 0.94);
	-o-transition: all 0.36s cubic-bezier(0.42, 0.92, 0.43, 0.94);
	transition: all 0.36s cubic-bezier(0.42, 0.92, 0.43, 0.94);
}
.search-box-button:hover {
	background: #000;
}
.search-box-button-text {
	position: relative;
	color: #000;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}
.search-box-button:hover .search-box-button-text {
	color: #fff;
}
.search-box-button-text:before,
.search-box-button-text:after {
	content: "";
	position: relative;
	display: inline-block;
	vertical-align: middle;
	top: -1px;
	width: 17px;
	height: 17px;
	margin-right: 4px;
	background: url("../images/sprite.svg") no-repeat;
}
.search-box-button-text:before {
	background-position: -149px -24px;
}
.search-box-button-text:after {
	position: absolute;
	top: 0;
	left: 0;
	background-position: 0 -24px;
}
.search-box-button-text:before,
.search-box-button:hover .search-box-button-text:after {
	opacity: 1;
}
.search-box-button:hover .search-box-button-text:before,
.search-box-button-text:after {
	opacity: 0;
}
.customer-button {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 200px;
	height: 68px;
	background: #fff;
	border: 1px solid #e5e5e5;
	color: #000;
	font-weight: 500;
	line-height: 68px;
	text-transform: uppercase;
	-webkit-box-shadow: 0 7px 15px -13px transparent;
	-moz-box-shadow: 0 7px 15px -13px transparent;
	box-shadow: 0 7px 15px -13px transparent;
	-webkit-transition: all 0.36s ease-in-out;
	-moz-transition: all 0.36s ease-in-out;
	-o-transition: all 0.36s ease-in-out;
	transition: all 0.36s ease-in-out;
}
.customer-button:not(:first-child) {
	margin-left: 16px;
}
.customer-button:hover {
	-webkit-box-shadow: 0 7px 15px -13px #000;
	-moz-box-shadow: 0 7px 15px -13px #000;
	box-shadow: 0 7px 15px -13px #000;
}
.customer-button:before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 12px;
	height: 66px;
	background: url("../images/sprite.svg") no-repeat;
}
.customer-button.profile {
	padding-left: 36px;
}
.customer-button.profile.male:before {
	width: 40px;
	background-position: 0 -780px;
}
.customer-button.profile.female:before {
	width: 34px;
	background-position: 0 -710px;
}
.customer-button.orders {
	padding-left: 49px;
}
.customer-button.orders:before {
	width: 46px;
	background-position: 0 -518px;
}
.customer-button.returns {
	padding-left: 55px;
}
.customer-button.returns:before {
	width: 47px;
	background-position: 0 -584px;
}
.customer-button.log-out {
	padding-left: 25px;
}
.customer-button.log-out:before {
	width: 34px;
	background-position: 0 -643px;
}
.page-drop .ordered-products-list,
.page-drop .favourite-products-list {
	width: calc(100% - 324px);
	height: 100%;
	font-size: 0;
	text-align: left;
}
.page-drop .ordered-product-item,
.page-drop .favourite-product-item {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	line-height: 1.2em;
}
.page-drop .ordered-product-item:not(:first-child),
.page-drop .favourite-product-item:not(:first-child) {
	margin-left: 16px;
}
.page-drop .remove-ordered-product-link,
.page-drop .remove-favourite-product-link {
	position: absolute;
	display: block;
	top: 0;
	right: 0;
	width: 19px;
	height: 19px;
	background: #fff url("../images/sprite.svg") no-repeat -45px -325px;
}
.page-drop .remove-ordered-product-link:hover,
.page-drop .remove-favourite-product-link:hover {
	background: #000 url("../images/sprite.svg") no-repeat 4px -325px;
}
.page-drop .ordered-product-item .hover-panel,
.page-drop .favourite-product-item .hover-panel {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	text-align: center;
	line-height: 152px;
	opacity: 0;
	-webkit-transition: all 0.26s ease-in-out;
	-moz-transition: all 0.26s ease-in-out;
	-o-transition: all 0.26s ease-in-out;
	transition: all 0.26s ease-in-out;
	-webkit-transition-delay: 0.13s;
	-moz-transition-delay: 0.13s;
	-o-transition-delay: 0.13s;
	transition-delay: 0.13s;
}
.page-drop .ordered-product-item:hover .hover-panel,
.page-drop .favourite-product-item:hover .hover-panel {
	opacity: 1;
}
.page-drop .ordered-product-item .hover-panel-table,
.page-drop .favourite-product-item .hover-panel-table {
	display: table;
	width: 100%;
	height: 100%;
}
.page-drop .ordered-product-item .hover-panel-inner,
.page-drop .favourite-product-item .hover-panel-inner {
	display: table-cell;
	vertical-align: middle;
	padding-left: 9px;
	text-align: left;
	line-height: 12px;
}
.page-drop .ordered-product-item .brand,
.page-drop .ordered-product-item .price,
.page-drop .ordered-product-item .old-price,
.page-drop .favourite-product-item .brand,
.page-drop .favourite-product-item .price,
.page-drop .favourite-product-item .old-price {
	font-size: 11px;
	font-weight: 700;
}
.page-drop .ordered-product-item .brand,
.page-drop .favourite-product-item .brand {
	color: #000;
	text-transform: uppercase;
}
.page-drop .ordered-product-item .price,
.page-drop .ordered-product-item .old-price,
.page-drop .favourite-product-item .price,
.page-drop .favourite-product-item .old-price {
	letter-spacing: -0.3px;
}
.page-drop .ordered-product-item .price,
.page-drop .favourite-product-item .price {
	margin-top: 3px;
}
.page-drop .ordered-product-item .price.promo-price,
.page-drop .favourite-product-item .price.promo-price {
	color: #bd1e2d;
}
.page-drop .ordered-product-item .old-price,
.page-drop .favourite-product-item .old-price {
	margin-top: 2px;
	color: #6d6e71;
	text-decoration: line-through;
}
.page-drop .cart,
.page-drop-favourites {
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 100%;
	text-align: center;
	line-height: 1.2em;
}
.page-drop .cart-table,
.page-drop-favourites-table {
	display: table;
	width: 100%;
	height: 100%;
}
.page-drop .cart-inner,
.page-drop-favourites-inner {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	top: -28px;
	text-align: left;
}
.page-drop .ordered-products-count,
.page-drop .ordered-products-price,
.page-drop-favourite-products-count {
	color: #000;
	font-size: 15px;
	font-weight: 700;
}
.page-drop .ordered-products-price {
	margin-top: 6px;
}
.page-drop .to-cart,
.page-drop .to-favourites {
	display: block;
	width: 100%;
	height: 40px;
	margin-top: 18px;
	border: 2px solid #000;
	background: #fff;
	color: #000;
	font-weight: 700;
	line-height: 36px;
}
.page-drop .to-favourites {
	margin-top: 40px;
}
.page-drop .to-cart span {
	position: relative;
}
.page-drop .to-cart,
.page-drop .to-cart span:before,
.page-drop .to-cart span:after,
.page-drop .to-favourites {
	-webkit-transition: all 0.36s cubic-bezier(0.42, 0.92, 0.43, 0.94);
	-moz-transition: all 0.36s cubic-bezier(0.42, 0.92, 0.43, 0.94);
	-o-transition: all 0.36s cubic-bezier(0.42, 0.92, 0.43, 0.94);
	transition: all 0.36s cubic-bezier(0.42, 0.92, 0.43, 0.94);
}
.page-drop .to-cart span:before,
.page-drop .to-cart span:after {
	content: "";
	position: relative;
	display: inline-block;
	vertical-align: middle;
	top: -2px;
	background: url("../images/sprite.svg") no-repeat;
	width: 14px;
	height: 19px;
	margin-right: 9px;
}
.page-drop .to-cart span:before {
	background-position: -99px -100px;
}
.page-drop .to-cart span:after {
	position: absolute;
	left: 0;
	background-position: 0 -100px;
}
.page-drop .to-cart:hover,
.page-drop .to-favourites:hover {
	background: #000;
	color: #fff;
}
.page-drop .to-cart span:before,
.page-drop .to-cart:hover span:after {
	opacity: 1;
}
.page-drop .to-cart:hover span:before,
.page-drop .to-cart span:after {
	opacity: 0;
}