/* general */

@charset "UTF-8";
/* cyrillic-ext */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;300;500&display=swap');

html{
	overflow-x: hidden;
}

html, body, div, span, applet, object, iframe, input,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 14px;
	vertical-align: baseline;
	background: transparent;
	font-weight:normal;
	color:#DDD;
}

label, legend{
	font-weight: 700;
}

b{
	font-weight:bold;
}

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

:focus {
	outline: 0;
}
:active {
	outline: 0;
}

ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
    border: none;
	-webkit-appearance: none;
	border-radius: 0;
}

input[type=text],input[type=password],input[type=email],input[type=number],input[type=submit],input[type=button], button{
	-webkit-appearance: none !important;
}

p{
	margin: 15px 0;
}

*{
	 font-variant-numeric:lining-nums;
	 font-family: 'IBM Plex Sans',sans-serif;
	 color: #777;
	 line-height: 1.6;
}

select{
	box-shadow: inset 0 -1.4em 1em 0 rgba(0,0,0,.02);
	background-color: #121518;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;charset=utf8, %3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-position: right .45em top 50%;
	background-repeat: no-repeat;
	padding-right: 1.4em;
	background-size: auto 16px;
	border-radius: 2px;
	display: block;
}

p{
	color: #777;
}

::placeholder {
    text-transform: initial;
    font-weight: 600;
    font-size: 14px;
    color: #9e9e9e;
}


input[type="email"], input[type="date"], input[type="search"], input[type="number"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
	box-sizing: border-box;
	border: 1px solid #726a5e;
	padding: 0 .75em;
	height: 2.507em;
	font-size: .97em;
	border-radius: 0;
	max-width: 100%;
	width: 100%;
	vertical-align: middle;
	background-color: #121518;
	color: #dcd9d5;
	box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
	transition: color .3s,border .3s,background .3s,opacity .3s;
}

input[type="email"]:focus, input[type="date"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
	box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

blockquote{
	padding-left: 50px;
	border-left: 1px solid #000;
	margin: 20px 0;
}

textarea.fld{
	height: 150px;
}

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
  }
  /* IE 6 doesn't support max-height
   * we use height instead, but this forces the menu to always be this tall
   */
  * html .ui-autocomplete {
    height: 100px;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 30px;
	border: 5px solid #EEE;
	box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.29);
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#particles{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.mobile-heading{
	display: none;
	background: #EEE;
	font-size: 13px;
	padding: 5px 10px;
	margin: 0 -13px;
	text-align: center;
	color: #dcd9d5;
	min-height: 42px;
}

.follower-trades{
	overflow: auto;
	width: 250px;
	height: 100%;
}

.follower-trades-holder{
	position: relative;
	position: fixed;
	right: 0;
	top: 0;
	width: 250px;
	height: 100vh;
	background: #121518;
	border: 0px solid #DDD;
	border-left-width: 2px;
	z-index: 200;
	box-sizing: border-box;
	transition: width .3s ease;
}

.follower-trades-holder.closed{
	width: 0;
}

.follower-trades-holder .follower-trades-hider{
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	width: 20px;
	height: 40px;
	z-index: 10;
	overflow: hidden;
	border-radius: 20px 0 0 20px;
	background-color: #1a1c1d;
}

.follower-trades-holder .follower-trades-hider:hover{
	background-color: #BBB;
}

.follower-trades-hider-semicircle{
	background: url(/img/arrow-right.svg) left 5px center no-repeat transparent;
	background-size: 13px 13px;
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 30px;
}



.follower-trades-holder.closed .follower-trades-hider .follower-trades-hider-semicircle{
	transform: rotate(180deg);
	margin-left: -20px;
}

.follower-trades .trades-header{
	background: #000;
	padding: 5px 20px;
	box-sizing: border-box;
	height: 57px;
	margin-bottom: 20px;
	color: #dcd9d5;
	position: relative;
}

.follower-trades .trades-header .trades-hint{
	font-size: 13px;
	display: block;
	color: #dcd9d5;
}

.follower-trades .trades-loading{
	background: url(/img/loading-white.svg) center center no-repeat transparent;
	background-size: 20px 20px;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	display: none;
}

.follower-trades .follower-trade{
	display: block;
	position: relative;
	padding: 10px 20px;
}

.follower-trades .follower-trade:nth-child(even){
	background-color: #EFEFEF;
}

.follower-trade .user-icon{
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin: -2px 7px 0 0;
}

.follower-trade .open-time{
	font-size: 12px;
	text-align: right;
	display: block;
	position: relative;
	margin-bottom: 10px;
}

.follower-trade .user-card{
	display: block;
	font-size: 13px;
}

.follower-trade .currency-card{
	font-size: 13px;
}

.follower-trade .trade-type{
	padding: 2px 10px;
}

.follower-trade .trade-status{
	position: absolute;
	left: 20px;
	top: 6px;
	z-index: 10;
}

.follower-trade .trade-type.trade-type-offline, .follower-trade .trade-type.trade-type-closed{
	background: url(/img/offline.svg) center center no-repeat #34495e;
	background-size: 15px 15px;
	width: 20px;
	height: 20px;
	padding: 0;
	display: inline-block;
	vertical-align: middle;
	margin-top: -2px;
	position: 
}

.follower-trade .trade-type.trade-type-closed{
	background: url(/img/close-trade.svg) center center no-repeat #000;
	background-size: 10px 10px;
}

h3 #curprice{
	font-size: 35px;
	font-weight: 400;
	color: #dcd9d5;
}

.time-periods-holder{
	position: relative;
	height: 40px;
}

.time-periods{
	padding: 0 20px;
	overflow: hidden;
	height: 40px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1000;
}

.time-periods:hover{
	height: max-content;
	background: #111;
}

.time-period{
	display: inline-block;
	color: #555;
	font-size: 12px;
	padding: 10px 20px;
	cursor: pointer;
}

.time-period:hover, .time-period.active{
	color: #dcd9d5;
	background: #1a1c1d;
}

.stats-element{
	display: inline-block;
	width: max-content;
	margin-left: 20px;
}

.user-balances{
	padding: 5px;
	background: #1a1c1d;
}

.user-balances .balance-element{
	display: inline-block;
	width: max-content;
	padding: 5px 10px;
	cursor: pointer;
}

.user-balances .balance-element:first-child{
	margin-left: -10px;
}

.user-balances .balance-element:first-child{
	margin-right: -10px;
}

.user-balances .balance-element:hover{
	background: #333;
}

.stats-element .stats-title, .balance-element .balance-title{
	font-size: 12px;
	color: #999;
}

.balance-title img{
	width: 16px;
	height: 16px;
	vertical-align: middle;
	margin: -2px 0 0 4px;
}

.stats-element .stats-value.negative{
	color: #ff5555;
}

.stats-element .stats-value.positive{
	color: #00AA00;
}

.stats-element .stats-value{
	font-size: 14px;
	color: #dcd9d5;
}

.chart-button{
	float: right;
	margin-top: 12px;
}

.general-table{
	width: 100%;
}

.general-table tr td, .general-table tr th{
	padding: 10px;
	text-align: left;
	vertical-align: middle;
	color: #dcd9d5;
}

.general-table tr th{
	background: #1a1c1d;
	color: #dcd9d5;
	font-size: 12px;
	vertical-align: top;
}

.general-table tr th:first-child{
	border-radius: 5px 0 0 0;
}

.general-table tr th:last-child{
	border-radius: 0 5px 0 0;
}

.general-table tr{
	transition: background .2s ease;
}

.traders-table .user-icon, .currencies-table .user-icon, .trader-currencies-table .user-icon{
	width: 32px;
	border-radius: 32px;
	vertical-align: middle;
	margin: -3px 10px 0 0;
}

.general-table.traders-table .currency-icon{
	width: 32px;
	vertical-align: middle;
	margin: -3px 5px 0 0;
}

.price-up, .general-table tr td.price-up{
	color: #00AA00;
}

.price-down, .general-table tr td.price-down{
	color: #ff5555;
}

.action-button.centered{
	margin: 10px auto;
	display: block;
}

.action-button.displaynone{
	display: none;
}

.action-button.set-buy, .action-button.form-buy{
	background: #2980b9;
	color: #dcd9d5;
}

.action-button.set-sell, .action-button.form-sell{
	background: #d35400;
	color: #dcd9d5;
}

.action-button.set-offline{
	background: url(/img/offline.svg) center center no-repeat #34495e;
	background-size: 34px 30px;
	width: 60px;
	color: #dcd9d5;
}

.action-button.set-offline:hover{
	background: url(/img/offline.svg) center center no-repeat #000;
	background-size: 34px 30px;
}

.action-button.set-closed{
	background: url(/img/close-trade.svg) center center no-repeat #000;
	background-size: 25px 25px;
	width: 60px;
	color: #dcd9d5;
}

.action-button.set-closed:hover{
	background: url(/img/close-trade.svg) center center no-repeat #555;
	background-size: 25px 25px;
}

.action-button:disabled:not(.loading){
	opacity: 0.2;
}

.form-buy.inactive, .form-sell.inactive{
	opacity: .3;
}

.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front{
	z-index: 500;
}

#tradeForm{
	position: relative;
}

.trade-form-overlay{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	border-radius: 5px;
}

.trade-form-overlay a{
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #121518;
	border-radius: 5px;
	color: #dcd9d5;
	padding: 10px 15px;
	font-weight: 600;
}

.trade-form-holder{
	display: inline-block;
	width: 50%;
	box-sizing: border-box;
	padding: 10px 20px;
}

.trade-type{
	padding: 0px 5px;
	border-radius: 15px;
	background: #2980b9;
	text-align: center;
	color: #dcd9d5;
	font-size: 12px;
	margin: 3px 0;
	min-width: 50px;
}

.trade-type.trade-type-sell{
	background: #d35400;
}

.trade-type.trade-type-offline{
	background: #34495e;
}

.trade-type.trade-type-closed{
	background: #000;
}

.general-table .currency-icon{
	vertical-align: middle;
	width: 30px;
	margin: -3px 20px 0 0;
}

.trader-page .big-user-icon{
	margin: 0 auto;
	display: block;
	border-radius: 100px;
	width: 96px;
	height: 96px;
}

.trader-page-h2{
	margin-top: 40px;
}

.middle-bubbles, .big-bubbles{
	text-align: center;
	margin-top: 22px;
}

.big-bubbles{
	margin-bottom: 50px;
}

.middle-bubbles .bubble, .big-bubbles .bubble{
	display: inline-block;
	vertical-align: top;
	width: 100px;
	position: relative;
	padding-top: 11px;
	font-size: 30px;
	color: #dcd9d5;
	margin: 0 5px;
}

.middle-bubbles .bubble .bubble-content{
	font-size: 30px;
	color: #dcd9d5;
}

.middle-bubbles .bubble .bubble-text, .big-bubbles .bubble .bubble-text{
	color: #dcd9d5;
	font-size: 12px;
}

.middle-bubbles .bubble-icon, .big-bubbles .bubble-icon{
	width: 60px;
	height: 50px;
	background: url(/img/trader-page-icons.svg) left 11px top no-repeat transparent;
	background-size: 500px auto;
	margin: 0 auto 10px auto
}

.middle-bubbles .bubble.potential-profit-rate .bubble-icon{
	background-position: -47px top;
}

.middle-bubbles .bubble.success-rate .bubble-icon{
	background-position: -116px top;
}

.middle-bubbles .bubble.trades-qty .bubble-icon{
	background-position: -197px top;
}

.middle-bubbles .bubble.followers-qty .bubble-icon{
	background-position: -285px top;
}

.big-bubbles .bubble{
	width: 230px;
}

.big-bubbles .bubble.checkin-date .bubble-icon{
	background-position: -365px top;
}

.big-bubbles .bubble.registration-date .bubble-icon{
	background-position: -439px top;
}

.bubble sup{
	vertical-align: top;
}

.max-100{
	max-width: 100%;
}

.review-form{
	display: none;
}

.grey-form{
	background: #1a1c1d;
	padding: 20px;
	border-radius: 5px;
	text-align: center;
	max-width: 475px;
	margin: 30px auto;
}

.grey-form .input-field{
	margin-bottom: 22px;
}

.grey-form .input-field:last-child{
	margin-bottom: 0;
}

.grey-form h2{
	font-size: 17px;
	font-weight: bold;
	color: #dcd9d5;
	margin-top: 0;
}

h2.underlined-h2{
	text-align: center;
	font-size: 20px;
	border-radius: 5px;
	border-bottom: 3px solid #EEE;
}

.top-margin-60{
	margin-top: 60px;
}

.grey-form .form-label{
	font-size: 17px;
	color: #dcd9d5;
	font-weight: normal;
	width: 100%;
	text-align: left;
	display: block;
	box-sizing: border-box;
	margin-top: 20px;
	text-align: left;
}

.grey-form .form-label:first-child{
	margin-top: 0;
}

.grey-form input[type=file]{
	display: none;
}

.grey-form .inputs{
	text-align: center;
	margin-top: 20px;
}

.grey-form .review-file-placeholder{
	padding: 10px 17px 10px 65px;
	background: url(/img/upload-light.svg) left 17px top 12px no-repeat #fce400;
	color: #dcd9d5;
	font-size: 17px;
	font-weight: normal;
	display: inline-block;
	border-radius: 5px;
	float: right;
	margin-top: -6px;
}

.grey-form input[type=text], .grey-form textarea{
	font-weight: normal;
	font-size: 17px;
	box-shadow: none;
	border: 1.5px solid #ececec;
	border-radius: 5px;
	padding: 15px 17px;
}

.grey-form input[type=radio]{
	margin-left: 20px;
}

.grey-form input[type=radio].first-button{
	margin-left: 0;
}

.grey-form textarea{
	height: 105px;
}

.grey-form .button-submit{
	margin-top: 30px;
}

.grey-form input[type=text]::placeholder, .grey-form textarea::placeholder{
	font-weight: normal;
	font-size: 17px;
}

.grey-form .currency-search-field{
	width: 48%;
}

.chart-iframe{
	border: 0;
	width: 100%;
	height: 600px;
}

.g-recaptcha > div{
	margin: auto;
}

.rating-holder{
	text-align: center;
}

.rating-star {
	width: 36px;
	height: 26px;
	background: url(/img/rating-star-grey.svg) center center no-repeat #121518;
	display: inline-block;
	cursor: pointer;
	padding: 5px;
}

.rating-star.filled{
	background-color: #fce400;
}

.is-form, button.is-form, input[type="submit"].is-form, input[type="reset"].is-form, input[type="button"].is-form {
	overflow: hidden;
	position: relative;
	background-color: #f9f9f9;
	text-shadow: 1px 1px 1px #dcd9d5;
	color: #666;
	border: 1px solid #ddd;
	text-transform: none;
	font-weight: 400;
	transition: all .3s ease;
	width: 100%;
	font-size: 16px;
}

.is-form:hover, button.is-form:hover{
	background-color: #f9f9f9 !important;
	box-shadow: inset 0 0px 50px rgba(0,0,0,.1);
}

.promo-form{
	position: relative;
}

.promo-form.big-promo-form{
	border: 2px dashed #111;
	margin-bottom: 20px;
}

.promo-form.big-promo-form .apply-promo-code{
	font-size: 14px;
}

.promo-form.big-promo-form .promo-form-holder{
	margin: 20px;
	font-size: 14px;
	color: #777;
}

.promo-form-holder #promoCode{
	margin-top: 10px;
}

.promo-form-loading, .code-loading{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 100;
	display: none;
	background: url(/img/loading.svg) center center no-repeat rgba(0,0,0,.8);
}

.code-loading{
	background-size: 32px 32px;
}

.country-lang-select{
	padding: 10px 15px;
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	color: #dcd9d5;
	background: #000;
	display: none;
}

.country-lang-select select.lang-selectbox{
	width: max-content;
	padding: 0 25px 0 5px;
	height: 29px;
	margin: 0 20px;
	display: inline-block;
}

.country-lang-select p{
	display: inline-block;
	font-weight: normal;
	color: #dcd9d5;
}

.country-lang-select .button{
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
	padding: 10px 30px;
	line-height: 10px;
	background: #fcbdd1;
	font-weight: bold;
}

.country-lang-select .change-currency, .country-lang-select .change-language{
	display: inline-block;
	font-size: 30px;
	font-weight: bold;
	color: #dcd9d5;
	margin: 10px 15px;
}

.promo-codes .promo-code{
	background: #e4ebde;
	padding: 10px;
	position: relative;
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
	-moz-column-gap: 15px;
	-webkit-column-gap: 15px;
	column-gap: 15px;
}

.promo-code .code{
	color: #111;
	font-size: 12px;
	font-weight: normal;
	width: 100%;
	display: block;
}

.promo-code .amount{
	color: #111;
	font-size: 12px;
	text-align: right;
	width: 100%;
}

.promo-code .amount .delete-code{
	font-size: 12px;
	padding-bottom: 0;
}

.promo-form{
	overflow:hidden;
}

.promo-form .is-form{
	margin: 15px 0 15px;
}

.order-definition-text img{
	margin-top: 5px;
	width: 30px;
}

.order-definition-text td{
	vertical-align: top;
	font-size: 14px;
}

.order-definition-text td:first-child{
	padding-right: 15px;
}

.order-definition-text strong{
	color: #777;
	font-size: 14px;
}

.order-block, .order-block a{
	font-size: 14px;
}

.contacts .button{
	margin: 20px 0;
}

.reason-responses .reason-response{
	display: none;
	padding: 20px;
}

.contact-form-fields{
	display: none;
}

/*
@font-face {
  font-family: 'Glyphicons Halflings';

  src: url('/css/fonts/glyphicons-halflings-regular.eot');
  src: url('/css/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/css/fonts/glyphicons-halflings-regular.woff') format('woff'), url('/css/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('/css/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings' !important;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-envelope::before {
    content: "\2709";
}

.glyphicon-phone-alt::before {
    content: "\e183";
}

.glyphicon-pencil::before {
    content: "\270f";
}

.glyphicon-eye-open::before {
    content: "\e105";
}

.glyphicon-user::before {
    content: "\e008";
}

.glyphicon-phone-alt::before {
    content: "\e183";
}

.glyphicon-envelope::before {
    content: "\2709";
}

.contacts-reseller-container .glyphicon {
    font-size: 22px;
}

.contacts-details-title {
    font-size: 26px;
    margin-bottom: 30px;
}

.contacts-details-title .glyphicon{
	margin-right: 10px;
}

.contacts-details-title *{
	font-size: 30px;
}

.contacts-details-title span {
    vertical-align: -3px;
}
*/

body {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	font-weight:normal;
	color:#393c3d;
	line-height: 1;
}

a:hover{
	color: #2980b9;
	text-decoration: none;
}

.header-container{
	width:100%;
	background:#121518;
	min-height:125px;
	margin-bottom: -1px;
}

.header{
	width:100%;
	margin:0 auto;
	background:#121518;
	z-index:100;
	top:0;
}

.header .logo{
	display:inline-block;
	width:184px;
	height:31px;
	margin:0px;
	padding-top:22px;
}

.header .logo a{
	border-bottom:0;
	font-size: 20px;
	font-weight: 300;
}

.header .logo a img{
	width: auto;
	height: 31px;
	vertical-align: middle;
	margin-right: 10px;
	margin-top: -3px;
}

.header .language-select{
	float:right;
	border-radius:2px;
	border: 1px solid #d4d5d7;
	width:50px;
	height:21px;
	margin:0px 15px 29px 30px;
}

/* top authorisation box */

.google-sign-in{
	margin: 0 auto;
	text-align: center;
	display: block;
}


.google-sign-in img{
	width: 191px;
}

.header .auth{
	float:right;
	padding-left:17px;
	background:url(/img/login.gif) left 1px no-repeat transparent;
	margin-top:30px;
	position:relative;
	font-size:16px;
}

.header .logout{
	float:right;
	width: 50px;
	height: 14px;
	padding-top:7px;
	cursor:pointer;
	font-size:12px;
	margin:29px 0 29px 30px;
	color:#292f35;
	text-align:right;
	text-decoration:underline;
}

.header .auth.authorised{
	background:none; 
	padding-left:0;
}

.header .auth a{
	color:#393c3d;
	font-size:14px;
}

.header .auth #loginform {

	line-height:20px;
    border-radius: 6px;
    color: #555;
    left: 0px;
    padding: 15px;
    position: absolute;
    text-align: left;
    top: 33px;
    z-index: 99;
    background: rgb(230,232,234); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(230,232,234,1) 0%, rgba(239,241,242,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(230,232,234,1)), color-stop(100%,rgba(239,241,242,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(230,232,234,1) 0%,rgba(239,241,242,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(230,232,234,1) 0%,rgba(239,241,242,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(230,232,234,1) 0%,rgba(239,241,242,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(230,232,234,1) 0%,rgba(239,241,242,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e8ea', endColorstr='#eff1f2',GradientType=0 ); /* IE6-9 */
}

.header .auth input[type='text'], .header .auth input[type='password']{
	padding:10px 10px;
	font-size:14px;
	margin-bottom:10px;
	width:157px;
}

.top-bar{
	background: #000;
	color: #dcd9d5;
	text-align: center;
	padding: 14px;
}

.top-bar span, .top-bar strong{
	color: #dcd9d5;
	font-size: 18px;
}

.top-bar .top-url{
	color: #dcd9d5;
	font-size: 14px;
	display: inline-block;
	margin-left: 10px;
}

#auth_loader{
	margin:14px 0 14px 0;
}

#loggedin{
	margin-top:-8px;
	position:relative;
}

#loggedin .user-menu{
	background:#121518;
	border-radius:5px;
	border:1px solid #d3d3d3;
	position:absolute;
	width:130px;
	left:-51px;
	top:42px;
	z-index:200;
	display:none;
}

#loggedin .user-menu .profile-arrow{
	position:absolute;
	left:55px;
	top:-12px;
	background:url(/img/profile-arrow.png) left top no-repeat transparent;
	width:20px;
	height:13px;
}

#loggedin .user-menu a{
	width:110px;
	padding:9px 10px;
	border-bottom:1px solid #f2f2f2;
	color:#393c3d;
	display:block;
	text-decoration:none;
}

#loggedin .user-menu a:hover{
	background-color:#f4f4f5;
}

#loggedin .userpic{
	float:left;
}

#loggedin .userpic img{
	border-radius:15px;
}

#loggedin .userlinks{
	float:left;
	margin:-5px 0 0 10px;
	width:100px;
	display:table;
	margin-top:0px;
}

#loggedin .userlinks .username{
	height:30px;
	vertical-align:middle;
	display:table-cell;
}

#loggedin .userlinks a{
	color:#169fde;
	font-size:16px;
	text-decoration:none;
	line-height:18px;
	font-weight:bold;
}

#loggedin .userlinks a:hover{
	text-decoration:underline;
}

.header-messages{
	width:14px;
	height:12px;
	position:relative;
	float:left;
	margin-left:20px;
	margin-top:13px;
	font-size:14px;
}

.header-messages div{
	background-color:#e4423c;
	width:12px;
	height:10px;
	color:#dcd9d5;
	font-size:13px;
	position:absolute;
	top:-12px;
	right:-12px;
	border-radius:15px;
	text-align:center;
	padding:4px 4px 4px 4px;
}

/* end top authorisation box */

/* top menu */

.header-container .main-menu-container .menu-text{
	padding: 20px;
	color: #dcd9d5 !important;
	font-size: 18px;
}

.header-container .main-menu-container .menu-text strong, .header-container .main-menu-container .menu-text u{
	color: #dcd9d5 !important;
}

.header .left-top-menu{
	float:right;
	margin:0;
	margin-top:-40px;
}

.header .left-top-menu a{
	font-family:FontAwesome;
	font-size:14px;
	color:#777777;
	font-weight:normal;
	border-bottom:none;
}

.header .left-top-menu a:hover{
	color:#dcd9d5;
}

.header .right-top-menu{
	position: absolute;
	right: 0;
	top: 17px;
}

.header .top-search{
	margin-top: -10px;
	position: absolute;
	width: 36px;
	height: 29px;
	background: url(/img/lens.svg) right 3px no-repeat transparent;
	right: 54px;
	top: 21px;
	background-size: 17px 17px;
	z-index: 200;
}

.header .top-search .search-form{
	position: absolute;
	min-width: 260px;
	z-index: 9;
	padding: 20px;
	width: max-content;
	margin: 0;
	transition: all .25s;
	box-shadow: 1px 1px 15px rgba(0,0,0,.15);
	border: 2px solid #ddd;
	right: -53px;
	top: 36px;
	background: #121518;
	display: none;
}

.header .top-search .search-form:before{
	content: "";
	position: absolute;
	width: 22px;
	height: 11px;
	background: url(/img/submenu-arrow.svg) center center no-repeat transparent;
	top: -11px;
	right: 47px;
}

.header .top-search input[type=submit]{
	background: url(/img/lens.svg) center center no-repeat transparent;
	background-size: 20px 20px;
	border-radius: 0;
	border: 0;
	width: 25px;
	height: 25px;
	vertical-align: top;
	position: absolute;
	right: 29px;
	top: 25px;
	opacity: 0.6;
}

.header .top-search input[type=text]{
	background-color: rgba(0,0,0,.03);
	box-shadow: none;
	border: 1px solid rgba(0,0,0,.09);
	color: currentColor !important;
	width: 100%;
	box-sizing: border-box;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 13px;
}

.header .cart{
	width: 21px;
	height: 20px;
	background: url(/img/cart.svg) center 19px no-repeat transparent;
	background-size: 21px 19px;
	position: relative;
	margin-right: 20px;
	float: left;
	margin-top: -8px;
	cursor: pointer;
	font-size: 10px;
	padding-top: 30px;
	text-align: center;
}
.header .cart.loading{
	background: url(/img/loading.svg) center top no-repeat transparent;
	background-size: contain;
}

.header .cart .cart-item-sample, .header .cart .cart-footer{
	display:none;
}

.header .cart .cart-items{
	background-color: #5f12df;
	border-radius:10px;
	font-size:10px;
	font-weight:600;
	padding:3px 8px 3px 8px;
	text-align:center;
	color:#dcd9d5;
	position:absolute;
	right:-12px;
	top:6px;
}

.search-form-big{
	position: relative;
}

.search-form-big input[type=submit]{
	position: absolute;
	background: transparent;
	right: 0;
	top: 0;
	width: 50px;
}

.search-form-big input[type=submit]:hover{
	background: none;
}

.search-form-big input[type=text]{
	background: url(/img/lens.svg) right 10px top 7px no-repeat #121518;
	background-size: 23px;
}

#orderForm{
	overflow: hidden;
}

#orderForm .form-overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: url(/img/loading.svg) center center no-repeat rgba(0,0,0,.7);
	background-size: 64px 64px;
	z-index: 100;
	display: none;
}

.cart-item td{
	font-weight: 700;
	color: #111;
}

.cart-item td .cart-item-description{
	font-weight: 700;
}

.cart-table.big-cart-table.order-preview tr.cart-item td{
	font-size: 13px;
	font-weight: normal;
	color: #777;
	padding-left: 0;
	padding-right: 0;
}

.cart-table.big-cart-table.order-preview tr th{
	font-size: 13px;
}

.cart-footer.order-preview strong{
	font-weight: 700;
	color: #777;
	font-size: 12px;
}

.cart-table.big-cart-table .mobile-cart-data{
	display: none;
}

.cart-footer.order-preview 	.promo-code .amount{
	font-weight: 700;
	font-size: 13px;
}

.cart-footer.order-preview 	.promo-code .amount a{
	font-size: 13px;
}

.cart-footer.order-preview .total-holder .cart-total{
	color: #111;
}

.cart-table.big-cart-table.order-preview tr.cart-item td strong{
	font-size: 13px;
	color: #777;
}

.cart-table.big-cart-table.order-preview tr.cart-item td .cart-item-description{
	font-size: 13px;
	color: #777;
}

.cart-table.big-cart-table.order-preview tr.cart-item td.cart-price-td{
	font-weight: 700;
	color: #111;
	text-align: right;
}

.header .cart-price{
	color: #02b1d9;
	font-size:16px;
	font-weight:normal;
	margin-top:4px;
	float:right;
	cursor:pointer;
}

.header .cart-content{
	display:none;
	position:absolute;
	right:0px;
	top:35px;
	width:500px;
	min-width:350px;
	padding:20px;
	z-index:100;
	border:1px solid #d9d9d9;
	background:#121518;
	z-index: 200;
	-webkit-box-shadow: 0px 2px 3px 0px rgba(217,217,217,1);
	-moz-box-shadow: 0px 2px 3px 0px rgba(217,217,217,1);
	box-shadow: 0px 2px 3px 0px rgba(217,217,217,1);
}

.header .cart-content .cart-table-holder{
	overflow-y: auto;
	overflow-x: hidden;
	width: 100%;
	max-height: calc(100vh - 350px);
	
}



.cart-table.cart-top{
	margin-bottom: 20px;
}

.cart-content .cart-overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: url(/img/loading.svg) center center no-repeat #121518;
	background-size: 64px 64px;
	z-index: 100;
	display: none;
}

.header .cart-empty{
	text-align:center;
	font-size:14px;
}

.header .cart-content table{
	width:100%;
}

.header .cart-content table tr td{
	padding:7px;
	border-bottom:1px solid #d9d9d9;
	font-size:14px;
}

.header .cart-content table tr td:nth-child(3), .header .cart-content table tr td:nth-child(5), .header .cart-content table tr td:nth-child(7){
	width:20px;
}

.header .cart-content table tr td:nth-child(4){
	text-align:center;
}

.cart-subtract-item, .cart-add-item, .wishlist-subtract-item, .wishlist-add-item{
	display:inline-block;
	padding:3px 10px;
	font-size:20px;
	border-bottom:none;
	-webkit-box-shadow: 0px 0px 2px 0px rgba(217,217,217,1);
	-moz-box-shadow: 0px 0px 2px 0px rgba(217,217,217,1);
	box-shadow: 0px 0px 2px 0px rgba(217,217,217,1);
}

.cart-item-description, .wishlist-item-description{
	font-size:12px;
	margin-top:10px;
	line-height:17px;
}

.big-cart-table .cart-subtract-item, .big-cart-table .cart-add-item, .big-wishlist-table .wishlist-subtract-item, .big-wishlist-table .wishlist-add-item{
	margin:0 20px;
}

.header .cart-subtract-item:hover, .header .cart-add-item:hover{
	background:#EFEFEF;
}

.cart-content a.cart-remove-item, .wishlist-content a.wishlist-remove-item{
	font-size: 8px;
	display: block;
	padding: 5px;
	width: 10px;
	text-align: center;
	border: 2px solid #CCC;
	border-radius: 20px;
	font-weight: bold;
	color: #AAA;
	line-height: 1.2;
}

.cart-content a.cart-remove-item:hover, .wishlist-content a.wishlist-remove-item:hover{
	background:#EFEFEF;
}

.cart-table tr td, .wishlist-table tr td{
	vertical-align:middle;
}

.cart-table tr td img, .wishlist-table tr td img{
	max-width:64px;
	max-height:64px;
}

.cart-footer div, .wishlist-footer div{
	text-align:left;
	color:#70543e;
	font-weight:600;
	padding:1px 0;
}

.cart-footer .small{
	font-size: 13px;
}

.cart-footer .total-holder{
	border-top: 1px solid #EEE;
	border-bottom: 3px solid #EEE;
	padding: 4px 0;
	margin: 10px 0 30px;
}

.cart-footer .total-holder .cart-total{
	float: right;
	text-align: right;
	padding-right: 0;
	font-size: 14.5px;
	font-weight: 700;
}

.cart-content-top .cart-footer{
	margin-top: 20px;
}

.cart-content-top .cart-footer > div{
	
	text-align: right;
}

.cart-content-top .cart-footer strong, .cart-content-top .cart-footer .cart-total{
	font-weight: 700;
	font-size: 16px;
}

.cart-footer .cart-buttons{
	margin-top: 20px;
}

.cart-footer div strong, .wishlist-footer div strong{
	color:#DDD;
	display:inline-block;
	margin-right:10px;
	font-weight: normal;
	font-size: 14px;
}

.cart-footer div span, .wishlist-footer div span{
	width:120px;
	display:inline-block;
	font-weight:400;
	color:#777;
	padding-right:10px;
	font-size: 14px;
}

.cart-footer .subtotal{
	border-bottom: 1px solid #EEE;
	padding-bottom: 7px;
	color: #777;
}

.cart-footer .subtotal .cart-subtotal{
	text-align: right;
	float: right;
	padding-right: 0;
	font-weight: 700;
	color: #dcd9d5;
	font-size: 14.5px;
	vertical-align: middle;
}

.button.checkout-button{
	width: 100%;
	background-color: #f6316c;
	box-sizing: border-box;
	line-height: 2;
}
/*
.button.order-button{
	display: block;
	width: max-content;
	font-weight: 700;
	box-sizing: border-box;
	text-transform: none;
	font-size: 14.5px;
}*/

.sub-order-text{
	font-size: 14.5px;
	font-weight: normal !important;
}

.button.white-button{
	border: 2px solid #111;
	background: #121518;
	color: #dcd9d5 !important;
	transition: all .3s ease;
	font-size: 14px;
}

.button.white-button:hover{
	color: #121518 !important;
}

.header .currency-select{
	color:#727272;
	padding-right:15px;
	font-size:13px;
	font-weight:600;
	position:absolute;
	right: 57px;
	top: 38px;
	background:url(/img/menu-arrow.svg) right 8px no-repeat transparent;
	background-size: 9px;
	width: 54px;
	text-align: right;
}

.header .currency-select span{
	color:#727272;
	font-size:13px;
	font-weight:600;
}

.header .currency-select:hover{
	cursor:pointer;
	color:#dcd9d5;
}

.header .currency-select .currency-options{
	position:absolute;
	top:24px;
	left: -6px;
	z-index:100;
	background:#1a1c1d;
	display:none;
	border-radius:5px;
	width: 79px;
	text-align: left;
}

.header .currency-select .currency-options .currency-option{
	color:#727272;
	font-size:13px;
	font-weight:600;
	padding:8px 12px;
	text-transform: uppercase;
	border-radius:5px;
}

.header .currency-select .currency-options .currency-option:hover{
	background:#111;
	color: #dcd9d5;
}

.header .lang-select{
	color:#727272;
	padding-right:22px;
	font-size:13px;
	font-weight:600;
	margin-right:6px;
	margin-top:11px;
	position:absolute;
	left: -121px;
	top: 18px;
	z-index: 200;
}

.lang-select .lang-image{
	width: 30px;
	transition: all .2s ease;
}

.lang-select .lang-option:hover .lang-image{
	transform: scale(1.2)
}

.header .lang-select span{
	color:#727272;
	font-size:13px;
	font-weight:600;
	display:block;
	margin-top:-17px;
}

.header .lang-select:hover{
	cursor:pointer;
	color:#dcd9d5;
}

.header .lang-select .lang-options{
	position:absolute;
	top:15px;
	left: -12px;
	z-index:100;
	background:#1a1c1d;
	display:none;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
}

.header .lang-select .lang-options .lang-option{
	color:#727272;
	font-size:13px;
	font-weight:600;
	padding:8px 12px;
}

.header .lang-select .lang-options .lang-option:hover{
	background:#1a1c1d;
}

.header .lang-select .lang-options .lang-option a{
	border-bottom:0;
}

.header .profile-url{
	width: 43px;
	height: 30px;
	background: url(/img/account.svg) center center no-repeat transparent;
	background-size: 21px 24px;
	margin-top: -8px;
	text-indent: 0px;
	font-size: 10px;
	padding-top: 30px;
	text-align: center;
	position: absolute;
	right: -1px;
	top: -1px;
}

/* end top menu */

/* MAIN MENU */


.mobile-menu-opener{
	display: none;
	transition: all .3s ease;
}

.mobile-menu-opener.rotated{
	transform: rotate(180deg);
}

.header-container .main-menu-container{
	width: 100%;
	display:block;
	margin: 0 auto;
	position: relative;
}

.header-container .main-menu{
	max-width: calc(100% - 250px);
	font-size:16px;
	height:60px;
	clear:both;
	margin: 11px 0 0 8px;
	display: inline-block;
	vertical-align: top;
	
}

.header-container .main-menu .main-menu-list{
	margin: auto;
	display: block;
	text-align: center;
}

.main-menu-list .par .top-level img{
	width: 16px;
	vertical-align: middle;
}

.header-container .main-menu ol, .header-container .main-menu ul {
    list-style: none outside none;
}

.header-container .main-menu .menu-item{
	padding: 10px;
	display: block;
	position: relative;
}

.header-container .main-menu a, .header-container .main-menu .menu-item.top-level{
	color:#dcd9d5;
	text-decoration:none;
	font-size:14px;
	padding:10px;
	font-weight:300;
	padding:17px 17px;
	display:block;
	border-bottom:none;
	position: relative;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.header-container .main-menu a:after, .header-container .main-menu .menu-item:after{
	content: "";
	width: 0;
	position: absolute;
	bottom: -3px;
	left: 50%;
	right: 0px; 
	height: 3px; 
	transition: all 0.3s ease;
}

.header-container .main-menu a:hover:after,  .header-container .main-menu a.active:after, .header-container .main-menu .menu-item:hover:after,  .header-container .main-menu .menu-item.active:after{
	width: 100%; 
	left: 0;
}

.header-container .main-menu a.top-level:after, .header-container .main-menu a.top-level.active:after, .header-container .main-menu .menu-item.top-level:after, .header-container .main-menu .menu-item.top-level.active:after{
	bottom: 15px;
	height: 8px;
}

.header-container .main-menu a.with-submenu, .header-container .main-menu .menu-item.with-submenu{
	padding-right: 12px;
	background: url(/img/menu-arrow.svg) right center no-repeat #121518;
	background-size: 9px;
}

.header-container .main-menu a.checkout{
	margin-top:-2px;
}

.header-container .main-menu .top-level{
	text-transform: uppercase;
}

.header-container .main-menu a:hover{
	color:#666;
	
}

.header-container .main-menu ul li{
	margin-left:0px;
	display: inline-block;
	vertical-align: top;
	position: relative;
}

.header-container .main-menu ul li .menu-l1{
	position: absolute;
	display: none;
	left: 0;
	top: 50px;
	min-width: 260px;
	z-index: 9;
	padding: 20px 30px;
	width: max-content;
	margin: 0;
	transition: all .25s;
	box-shadow: 1px 1px 15px rgba(0,0,0,.15);
	border: 2px solid #ddd;
	z-index: 2000;
	background: #121518;
}

.submenu-arrow{
	display: inline-block;
	background: url(/img/menu-arrow.svg) right center no-repeat #121518;
	width: 9px;
	height: 5px;
	margin-left: 7px;
	vertical-align: middle;
}

.header-container .main-menu ul li .menu-l1:after{
	content: "";
	position: absolute;
	width: 22px;
	height: 11px;
	background: url(/img/submenu-arrow.svg) center center no-repeat transparent;
	top: -11px;
	left: 47px;
}

.header-container .main-menu ul li:hover .menu-l1{
	display: block;
}

.header-container .main-menu .menu-l1 ul{
	width: 100%;
	margin-left: 0;
}

.header-container .main-menu .menu-l1 ul li{
	width: 100%;
	display: block;
	text-align: left;
	border-bottom: 1px solid #ececec;
}

.header-container .main-menu .menu-l1 ul li a{
    font-size: 17px;
    font-weight: normal;
	color: #807d7d;
	text-transform: none;
	padding: 10px 0;
	
}

.header-container .main-menu .menu-l1 ul li .menu-l2{
	position: absolute;
	left: 150px;
	top: 0;
	z-index: 9;
	padding: 10px 20px;
	width: max-content;
	margin: 0;
	transition: all .25s;
	box-shadow: 1px 1px 15px rgba(0,0,0,.15);
	border: 2px solid #ddd;
	z-index: 2000;
	background: #121518;
	display: none;
}

.header-container .main-menu .menu-l1 ul li:hover .menu-l2{
	display: block;
}

.header-container .main-menu .menu-l1 ul li .menu-l2 ul{
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
	-moz-column-gap: 15px;
	-webkit-column-gap: 15px;
	column-gap: 15px;
}

.header-container .main-menu .menu-l1 ul li .menu-l2 ul li{
	display: block;
	float: none;
	width: 100%;
	position: relative;
	border: none;
}

.header-container .main-menu .menu-l1 ul li .menu-l2 ul li a{
	display: block;
	font-size: 17px;
    font-weight: normal;
	color: #807d7d;
	padding: 3px 15px;
	margin: 0 6px 0 -6px;
	line-height: 1.5;
}

.header-container .main-menu .menu-l1 ul li .menu-l2 ul li:hover a{
	background-color: #121518;
}

.header-container .main-menu .menu-l1 ul li .menu-l2 ul li .menu-l3{
	position: absolute;
	display: none;
	width: 100%;
	background: #121518 none repeat scroll 0 0;
	box-shadow: 0 0 21px rgba(0, 0, 0, 0.18);
	top: 0;
	left: calc(100% - 15px);
	padding: 15px;
	z-index: 2100;
}

.header-container .main-menu .menu-l1 ul li .menu-l2 ul li:hover .menu-l3{
	display: block;
}

.header-container .main-menu .menu-l1 ul li .menu-l2 ul li:hover .menu-l3 ul li a{
	background-color: transparent;
}

.header-container .main-menu .menu-l1 ul li .menu-l2 ul li:hover .menu-l3 ul li a:hover{
	background-color: #121518;
}

.header-container .main-menu .menu-l1 ul li .menu-l2 ul li .menu-l3 ul li .menu-l4{
	position: absolute;
	display: none;
	width: 100%;
	background: #121518 none repeat scroll 0 0;
	box-shadow: 0 0 21px rgba(0, 0, 0, 0.18);
	top: 0;
	left: calc(100% - 15px);
	padding: 15px;
	z-index: 2100;
}

.header-container .main-menu .menu-l1 ul li .menu-l2 ul li .menu-l3 ul li:hover .menu-l4{
	display: block;
}

.search{
	position:relative;
	float:right;
	margin-right:-12px;
}

.search input[type=text]{
	width:250px;
	padding-left:40px;
	margin-top:10px;
}

.search input[type=submit]{
	position:absolute;
	left:15px;
	top:20px;
	background:url(/img/icons/search.gif) left top no-repeat transparent;
	width:17px;
	height:17px;
	padding:10px;
	border-radius:0;
	-moz-border-radius:0;
	-webkit-border-radius:0;
}

.search-big-form{
	padding: 20px;
	transition: all .25s;
	position: relative;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	box-sizing: border-box;
}

.search-big-form .search-big-form-2{
	padding-top: 0;
}


.search-big-form input[type=submit]{
	background: url(/img/lens.svg) center center no-repeat transparent;
	background-size: 20px 20px;
	border-radius: 0;
	border: 0;
	width: 25px;
	height: 25px;
	vertical-align: top;
	position: absolute;
	right: 29px;
	top: 24px;
	opacity: 0.6;
}

.search-big-form input[type='submit']:hover{
	background: url(/img/lens.svg) center center no-repeat transparent;
	background-size: 20px 20px;
}

.search-big-form input[type=text]{
	background-color: rgba(0,0,0,.03);
	box-shadow: none;
	border: 1px solid rgba(0,0,0,.09);
	width: 100%;
	box-sizing: border-box;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 13px;
}


.mobile-menu{
	width: 24px;
	height: 27px;
	background: url(/img/menu.svg) center center no-repeat transparent;
	cursor: pointer;
	position: absolute;
	top: 26px;
	left: 13px;
	z-index: 400;
	background-size: contain;
}

/* END MAIN MENU */

.loading{
	background: url(/img/circle-loader.svg) center center no-repeat #000 !important;
	background-size: 20px 20px !important;
}



.custom-image-loader{
	background: url(/img/loading.svg) center center no-repeat rgba(0,0,0,0.7);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 200;
	display: none;
}

.wccpf-field.loading{
	background-position: right center;
}

.products-loader{
	width: 64px;
	height: 64px;
	background: url(/img/loading.svg) center center no-repeat transparent;
	margin: 30px auto;
	display: none;
}

.subproduct-image, .legend-image, .legend-color-picker{
	cursor: pointer;
	width: 38px;
	height: 38px;
	border-radius: 50px;
	border: 3px solid #e9e9e9;
	margin: 3px;
	display: inline-block;
	vertical-align: top;
	box-sizing: border-box;
}

.subproduct-image{
	vertical-align: middle;
}

.legend-color-picker[data-color=FFFFFF], .legend-color-picker[data-color='#FFFFFF']{
	border-color: #DDD;
}

.subproduct-image:hover, .legend-image:hover {
	border: 2px solid #8200ec;
}

.subproduct-image.active, .legend-image.active, .legend-color-picker.active{
	border: 2px solid #dcd9d5;
	width: 41px;
	height: 41px;
	box-shadow: 0px 0px 0px 2px #8200ec;
	margin: 2px 1px 1px 2px;
}

.box-image{
	min-height: 247px;
}

.legend-image-holder{
	text-align: left;
	max-height: 500px;
	overflow: hidden;
	transition: all 0.5s ease;
	margin-top: 5px;
	padding: 0;
}

.legend-image-holder.show{
	max-height: 500px;
	padding: 5px 0;
}

.phone-models, .case-types{
	position: fixed;
	right: 0;
	top: 120px;
	width: 150px;
	height: 20px;
	overflow: auto;
	transition: all 0.3s ease;
}

.phone-models:hover, .case-types:hover{
	height: auto;
}

.phone-models{
	right: 170px;
}

.phone-models a, .case-types a{
	display: block;
	margin-bottom: 10px;
}

.box-image, .woocommerce-product-gallery__image{
	background: url(/img/circle-loader.svg) center center no-repeat transparent;
	background-size: 32px;
}

label.newline{
	display: block;
	margin: 5px 0 3px 0;
}

.legend{
	
}

.legend:last-child{
	border-bottom-width: 1px;
}

.legend label{
	padding-right: 20px;
}

.legend-color-holder{
	display: none;
}

.legend-fields, .sp-legend-fields{
	position: relative;
}

.sp-legend-fields label{
	text-align: left;
}

.legend-fields-overlay{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(/img/circle-loader.svg) center center no-repeat rgba(0,0,0,0.7);
	z-index: 100;
}

.legend-fields-overlay span{
	margin: 30px auto;
	color: #dcd9d5;
	font-size: 20px;
	display: block;
	text-align: center;
}

.casetype-holder{
	position: relative;
	height: 116px;
	display: none;
}

.casetype-options{
	position: relative;
}

.casetype-options label, .casetype-options input{
	display: none !important;
}

.casetype-overlay{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(/img/circle-loader.svg) center center no-repeat rgba(0,0,0,0.7);
	z-index: 100;
	display: none;
}

.casetype-block{
	width: calc(50% - 8px);
	border: 1px solid #e3e3e3;
	border-radius: 3px;
	padding: 18px 10px 18px 0;
	position: relative;
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	min-height: 93px;
}

.casetype-block:nth-of-type(1){
	margin-right: 15px;
}

.casetype-block.active{
	border-color: #3f3f3f;
}

.casetype-block.active .casetype-tick{
	display: block;
	border: 1px solid #3f3f3f;
}

.casetype-block.active .casetype-arrow{
	display: none;
}

.casetype-icon{
	height: 55px;
	min-width: 55px;
	text-align: left;
	vertical-align: top;
	float: left;
}

.casetype-title{
	font-size: 13px;
	font-weight: 600;
	color: #696969;
}

.casetype-descr{
	font-size: 12px;
	font-weight: normal;
	color: #7b7b7b;
	margin-top: 7px;
}

.casetype-tick{
	display: none;
	position: absolute;
	right: -6px;
	top: -6px;
	width: 30px;
	height: 30px;
	background: url(/img/tick.svg) center center no-repeat #121518;
	border-radius: 15px;
}

.legend-input:not(.no-uppercase){
	text-transform: uppercase;
}

#qrCode{
	display: none;
}

#qrCode > img, #qrCode > canvas{
	width: 100% !important;
	height: auto;
	max-width: 100%  !important;
}

.go-top{
	border: 3px solid #DDD;
	width: 48px;
	height: 48px;
	background: url(/img/menu-arrow.svg) center center no-repeat #121518;
	background-size: 16px;
	position: fixed;
	bottom: 20px;
	left: 20px;
	border-radius: 32px;
	transform: rotate(180deg);
	cursor: pointer;
	display: none;
}

.phone-changed{
	position: fixed;
	z-index: 1000;
	left: 50%;
	top: 143px;
	transform: translateX(-50%);
	color: #dcd9d5;
	background: #000;
	padding: 30px;
	border-radius: 5px;
	text-align: center;
	display: none;
}


.mobile-product-title, .mobile-product-price{
	display: none;
	text-transform: uppercase;
	font-weight: bold;
	color:	#dcd9d5;
	font-size: 20px;
	padding: 0 16px;
	margin-top: -47px;
	font-family: Montserrat;
}

.mobile-product-price .free-shipping{
	text-transform: none;
}

.your-city-link{
	display: block;
	padding: 13px 13px 13px 56px;
	box-sizing: border-box;
	width: calc(100% + 38px);
	border: 1px solid #7b04e0;
	border-radius: 5px;
	color: #7b04e0;
	font-size: 14px;
	background: url(/img/location-pointer.svg) 17px 8px no-repeat transparent;
	background-size: 24px 32px;
	font-weight: 600;
	text-decoration: underline;
	margin: 0px -19px 14px -19px;
}

.your-city-link:hover{
	text-decoration: none;
	color: #7b04e0;
}

.your-city-link.your-city-link-mobile{
	display: none;
	width: 100%;
	margin: -25px 0 39px 0;
}

.your-city-link.your-city-link-mobile.your-city-link-bottom{
	width: auto;
	margin: 18px -19px 18px -19px;
}

.location-holder.location-holder-mobile{
	display: none;
	width: 100%;
	margin: 15px auto 15px auto;
	position: relative;
	box-sizing: border-box;
}

.location-holder.location-holder-mobile .location-triangle{
	position: absolute;
	left: 50%;
	bottom: -12px;
	transform: translateX(-50%);
	width: 23px;
	height: 12px;
	background: url(/img/triangle.svg) center center no-repeat transparent;
}

h1.product-title.entry-title{
	color: #dcd9d5;
	font-size: 18pt;
	text-transform: uppercase;
}

.product-data .product-info.product-info-mobile{
	display: none;
}

.product-info .is-divider.small{
	display: none;
}

.product-info select{
	width: 100%;
	margin: 7px 0;
}

.variations2{
	width: 100%;
	margin-bottom: 16px;
}

.variations2 tr td{
	padding: 7px 0;
	border-bottom: 1px solid #ececec;
}


.message.red-message{
	color: #dcd9d5;
	font-size: 15px;
	background-color: #c9413a;
	padding: 10px;
	font-weight: 600;
	text-align: center;
}

.message .message-loading{
	vertical-align: middle;
	margin-right: 18px;
	width: 32px;
	margin-top: -3px;
}

.product-atts{
	padding: 9px 19px;
}

.product-atts input[type=text]{
	margin-bottom: 0;
}

.product-atts label{
	color: #5d5d5d;
}

.legends-holder{
	padding: 9px 19px 19px 19px;
	margin: 15px -19px 0 -19px;
	border: 1px solid #7212e3;
	border-radius: 7px;
	
}

.open-legends-holder{
	border: 1px solid #7212e3;
	border-radius: 7px;
	padding: 9px;
	margin: 15px -19px 0 -19px;
}

.close-legends{
	color: #7212e3;
	background: url(/img/close-legend-inner.svg) left center no-repeat transparent;
	background-size: 24px 24px;
	padding: 5px 0 5px 33px;
	width: 100%;
	font-size: 15px;
	font-weight: bold;
}

.close-legends-button{
	width: 23px;
	height: 24px;
	background: url(/img/close-legends.svg) center center no-repeat transparent;
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	cursor: pointer;
}

.free-shipping{
	font-size: 13px;
	color: #545454;
	font-weight: 600;
}

.subproducts-tr{
	text-align: left;
}

.subproducts-holder{
	float: right;
}

.product-design-label{
	display: inline-block;
	margin-top: 13px;
	color: #8200ec !important;
}

.inline-block{
	display: inline-block;
}

.align-right{
	text-align: right;
}

.product-info label{
	color: #b6b6b6;
	font-size: 14px;
}

.product-info input[type="email"], .product-info input[type="search"], .product-info input[type="number"], .product-info input[type="url"], .product-info input[type="tel"], .product-info input[type="text"], .product-info textarea, .product-info select{
	padding: 14px 18px !important;
	border: 1px solid #dcdcdc !important;
	box-shadow: none !important;
	border-radius: 2px;
	font-weight: 600;
	font-size: 14px;
	background-color: #121518;
	height: auto;
}



.product-info select.purple{
	border-color: #5f12df !important;
	color: #5f12df;
	background-image: url(/img/arrow-down-purple.svg);
	background-size: 10px;
	width: calc(100% - 170px);
	display: inline-block;
	vertical-align: middle;
	height: 37px;
	box-sizing: border-box;
	padding-left: 9px !important;
}

.product-info select{
	padding: 0 30px 0 15px !important;
	font-weight: 600;
	color: #595959;
	height: 50px;
}

.product-info input.input-text.qty{
	padding: 0 !important;
	height: 40px;
	border-top: 4px solid #010101 !important;
}

.single_add_to_cart_button.button, .cart .single_add_to_cart_button.button{
	background: url(/img/icon-buy.svg) 26px center no-repeat #ff006a !important;
	font-size: 16px !important;
	text-transform: uppercase;
	padding: 2px 0;
	/*width: calc(100% - 105px);*/
	width: 100%;
	border-radius: 7px;
	height: 68px;
}



.product-thumbnails{
	position: absolute;
	left: 10px;
	top: 30px;
	z-index: 1000;
	width: 84px !important;
}


.product-thumbnails a{
	border-radius: 100px;
	border: 2px solid #e9e9e9;
	height: 64px;
}

.product-thumbnails .is-selected a{
	box-shadow: 0px 0px 0px 2px #6f6f6f;
	margin-top: 3px;
}

.product-thumbnails .flickity-viewport{
	height: 375px !important;
}

.product-thumbnails .flickity-slider{
	transform: none !important;
}

.product-thumbnails .col{
	display: block !important;
	position: relative !important;
	left: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-bottom: 11px !important;
}

.product-images .badge-container{
	left: auto;
	right: 0;
}

.product-small .badge-container{
	left: auto;
	right: -15px;
	top: -15px;
}

.product-small .product-main-image .wp-post-image{
	height: 247px;
	width: auto;
	display: block;
	margin: auto;
	object-fit: contain;
}

.product-images .badge-container .badge-inner{
	padding: 10px;
	height: 74px;
}

.product-small .badge-container .badge-inner{
	padding: 5px;
	height: 49px;
}

.product-thumbnails a:hover img, .product-thumbnails .is-nav-selected a img{
	transform: none !important;
}

.product-upload{
	border: 1px dashed #dcdcdc ;
	border-radius: 5px;
	padding: 9px 19px 19px 19px;
	font-size: 14px;
	color: #5a5859;
	font-weight: 600;
	margin-bottom: 20px;
}

.product-upload label{
	color: #dcd9d5;
	margin-bottom: 0;
	display: block;
}

.product-upload .product-file, .customizable-photo-upload .product-file{
	display: none;
}

.customizable-photo-upload{
	display: none;
}

.custom-image-holder .custom-map-holder{
	width: 100%;
}

.custom-image-a.customizable-photo-holder{
	height: 0;
	position: relative;
	overflow: hidden;
	padding-bottom: 100%;
}

.custom-image-a .dark-back, .custom-image-a .preview-layer-under-subproduct{
	width: calc(100% - 4px);
	padding-bottom: calc(100% - 4px);
	position: absolute;
	left: 0;
	top: 0;
	background: #000;
	z-index: 0;
	border: 2px solid #dcd9d5;
	max-width: 100%;
}

.custom-image-holder .custom-built-image{
	position: relative;
	z-index: 100;
}

.custom-image-holder .phone-case-image{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 200;
}

.top-layer-image{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 201;
}

.titled-wrapper{
	border: 1px solid #0e0e0e;
	border-radius: 10px;
	padding: 15px 7px 7px 7px;
	margin-bottom: 20px;
	position: relative;
}

.titled-wrapper.title-wrapper-purple{
	border-color: #6012e0;
	margin-bottom: 0;
}

.titled-wrapper h2{
	position: absolute;
	padding: 0 10px;
	font-size: 14px;
	font-weight: 600;
	left: 17px;
	top: -27px;
	background: #121518;
	color: #0e0e0e;
}

.titled-wrapper.title-wrapper-purple h2{
	color: #6012e0;
}

.photo-customizer, .sticker-customizer{
	background: #f3f1f1;
	border-radius: 10px;
	padding: 10px 10px 20px 10px;
	margin: -27px -8px -8px -8px;
	position: relative;
	display: none;
}

.photo-customizer.fixed, .sticker-customizer.fixed{
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	width: 100%;
	max-width: 510px;
	margin: 0;
	box-sizing: border-box;
}

.pc-preview, .sc-preview{
	display: inline-block;
	width: 44px;
	height: 44px;
	border-radius: 5px;
	vertical-align: middle;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #000;
}

.sc-preview{
	background-color: transparent;
}

.pc-filename{
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	color: #dcd9d5;
	font-weight: 700;
	margin-left: 10px;
	width: calc(100% - 206px);
	overflow: hidden;
	height: 24px;
	white-space: nowrap;
}

.pc-ok, .sc-ok{
	float: right;
	border-radius: 5px;
	color: #dcd9d5;
	height: 44px;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	background: url(/img/tick-white.svg) left 25px top 17px no-repeat #0b0b0c;
	padding: 11px 25px 10px 44px;
	box-sizing: border-box;
	background-size: 12px;
	margin-right: 5px;
	cursor: pointer;
}

.pc-trash, .sc-trash{
	float: right;
	width: 44px;
	height: 44px;
	border-radius: 5px;
	background: url(/img/delete-white.svg) center center no-repeat #f91152;
	background-size: 20px;
}

.pc-slider.ui-widget.ui-widget-content, .sc-slider.ui-widget.ui-widget-content{
	border-width: 0;
	background: #cbcbcb;
	height: 2px;
	width: calc(100% - 105px);
	display: inline-block;
	top: 4px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active, .ui-slider .ui-slider-range{
	background: #555 !important;
}

.ui-widget-content{
	background: #000 !important;
}

.pc-tool-rotate, .pc-tool-zoom, .sc-tool-rotate, .sc-tool-zoom{
	background: url(/img/rotate-photo.svg) left 23px top 10px no-repeat transparent;
	padding-left: 70px;
	height: 45px;
}

.pc-tool-zoom, .sc-tool-zoom{
	background-image: url(/img/zoom-photo.svg);
}

.pc-tool span, .sc-tool span{
	font-weight: 700;
	font-size: 14px;
	color: #0b0b0c;
	display: inline-block;
	vertical-align: middle;
	width: 79px;
	margin-top: 13px;
}

.pc-slider.ui-slider-horizontal .ui-slider-handle, .sc-slider.ui-slider-horizontal .ui-slider-handle{
	border: 0;
	background: url(/img/slider-photo.svg) center center no-repeat #0b0b0c;
	border-radius: 30px;
	width: 26px;
	height: 26px;
	top: -25px;
}

.custom-image-holder #customMap{
	width: 255px;
	height: 510px;
	position: relative;
	cursor: grab;
	left: 50%;
	transform: translateX(-50%);
}

.custom-image-holder #customMap .custom-built-image, .custom-image-holder #customMap .phone-case-image{
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 500;
	cursor: grab;
	transform: translateX(-50%);
	height: 100%;
	width: 510px;
	max-width: 600px;
}

.custom-map-holder .zoomin, .custom-map-holder .zoomout{
	width: 28px;
	height: 28px;
	left: 19px;
	bottom: 70px;
	background: url(/img/zoom.svg) center top no-repeat transparent;
	cursor: pointer;
	position: absolute;
	z-index: 510;
}

.custom-map-holder .zoomout{
	background-position: center bottom;
	bottom: 26px;
}

.location-holder{
	color: #dcd9d5;
	background: linear-gradient( 165deg, rgb(247,15,255) 0%, rgb(247,15,255) 35%, rgb(95,18,223) 60%, rgb(95,18,223) 100%);
	padding: 9px;
	border-radius: 5px;
	margin: 0 -19px 14px -19px;
	position: relative;
}

.location-holder.location-holder-big{
	width: 100%;
	box-sizing: border-box;
	margin: 0 0 14px 0;
	text-align: left;
}

.location-holder.location-holder-big .newline{
	text-align: left;
	font-size: 14.5px;
}

.location-holder .search-lens{
	display: inline-block;
	background: url(/img/search.svg) center center no-repeat transparent;
	width: 25px;
	height: 25px;
	vertical-align: middle;
}

.location-holder .newline{
	color: #dcd9d5;
	padding-left: 7px;
}

.location-options{
	width: 100%;
	background: #dcd9d5;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
	max-height: 300px;
	overflow: auto;
	margin-top: -3px;
	border-radius: 0 0 5px 5px;
}

.location-options .location-option{
	padding: 9px;
	color: #555;
	font-size: 16px;
	cursor: pointer;
	font-weight: bold;
}

.location-options .location-option:hover{
	background: #1a1c1d;
}

.location-option .option-country{
	font-size: 13px;
	color: #999;
	font-weight: normal;
}

.location-option .option-place{
	font-size: 13px;
	color: #999;
	display: inline-block;
	margin-left: 10px;
	font-weight: normal;
}

.form-flat input:not([type="submit"]).location-input, input[type=text].location-input{
	border-radius: 5px !important;
	box-shadow: inset 0px 0px 4px 0px rgba(0, 0, 0, 0.12) !important;
	margin: 9px 0 0 0;
	color: #929292 !important;
	transition: none !important;
	font-weight: 700;
	font-size: 14px;
	padding: 24px 18px;
}

.form-flat.quantity{
	display: none;
}

.leaflet-top.leaflet-right, .leaflet-top.leaflet-left{
	display: none;
}

.leaflet-top .leaflet-control{
	margin-top: 0;
}

.leaflet-touch .leaflet-bar a{
	height: 20px;
	line-height: 20px;
	display: inline-block;
	border-bottom: none;
}

.upload-placeholder, .open-legends, .upload-placeholder-loading, .add-sticker{
	background: url(/img/upload.svg) 11px 10px no-repeat #f5eb00;
	background-size: 33px 29px;
	border-radius: 7px;
	font-size: 14px;
	font-weight: 800;
	color: #dcd9d5;
	padding: 12px 24px 12px 55px;
	margin: 9px 12px 0 0;
	display: inline-block;
	cursor: pointer;
}

.upload-placeholder-loading.upload-placeholder-loading-small{
	width: 44px;
	height: 44px;
	padding: 0;
	margin-top: 0;
	margin-right: 7px;
}

.upload-placeholder.upload-placeholder-small:not(.upload-placeholder-first){
	width: 37px;
	height: 37px;
	padding: 0;
	margin-right: 7px;
	margin-top: 2px;
	background: url(/img/upload-plus.svg) center center no-repeat #0b0b0c;
	background-size: 14px;
	text-indent: -10000px;
}

.upload-placeholder.upload-placeholder-small.upload-placeholder-first, .add-sticker{
	border-radius: 2px;
	color: #dcd9d5;
	font-size: 14px;
	font-weight: 600;
	padding-left: 50px;
	text-transform: none;
	background: url(/img/upload-icon.svg) left 16px center no-repeat #0e0e0e;
	margin-top: 0px;
}

.add-sticker{
	background-color: #6012e0;
}

.stickers-list{
	display: none;
	margin-top: -15px;
}
.added-stickers{
	display: none;
	margin: -9px;
}

.stickers-list-title{
	font-size: 14px;
	font-weight: 600;
	color: #6012e0;
	padding: 14px 13px;
	float: left;
}

.close-stickers{
	display: inline-block;
	width: 37px;
	height: 37px;
	border-radius: 7px;
	background: url(/img/close-white-thin.svg) center center no-repeat #5f12df;
	background-size: 15px;
	cursor: pointer;
	vertical-align: middle;
	transition: all .3s ease;
}

.added-sticker{
	position: absolute;
}

.sticker-handle{
	cursor: pointer;
	position: absolute;
}

.add-sticker-small{
	width: 37px;
	height: 37px;
	padding: 0;
	margin-right: 7px;
	margin-top: 2px;
	border-radius: 7px;
	vertical-align: middle;
	background: url(/img/upload-plus.svg) center center no-repeat #6012e0;
	background-size: 14px;
	display: inline-block;
	cursor: pointer;
}

.close-stickers:hover{
	background-color: #000;
}

.stickers-list-header{
	text-align: right;
}
.stickers{
	max-height: 150px;
	width: 100%;
	overflow: auto;
	margin: 0 -5px -7px -5px;
}

.sticker{
	height: 44px;
	min-width: 44px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	margin: 10px;
	vertical-align: middle;.sticker
}

.sticker:after{
	content: "";
	position: absolute;
	right: -4px;
	bottom: -4px;
	background: url(/img/plus-white-small.svg) center center no-repeat #0b0b0c;
	width: 22px;
	height: 22px;
	border-radius: 22px;
	background-size: 9px;
}

.added-stickers .sticker:after{
	background-image: url(/img/photo-edit.svg);
}

.sticker img{
	height: 44px;
}

.upload-placeholder.upload-placeholder-small:hover, .add-sticker:hover{
	background-color: #cc0055;
	transition: all .3s ease;
}
.photo-preview, .photo-preview-handle{
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.photo-preview.loading, .added-sticker{
	background: url(/img/loading.svg) center center no-repeat transparent;
	background-size: 30px;
}

.photo-preview{
	background: url(/img/photo-bg-1.svg) center center no-repeat, url(/img/photo-bg-2.svg) center center repeat;
	background-color: #121518;
	background-size: 50px, 20px;
}


.photo-preview div, .added-sticker div{
	width: 100%;
	height: 100%; 
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}

.photo-preview-handle{
	
}

.photo-preview-handle.active, .sticker-handle.active{
	border: 1px solid #dcd9d5;
	box-shadow: 0px 0px 4px 2px #777;
}

.customizable-photo-upload.shown{
	display: inline-block;
	vertical-align: middle;
}

.scroll-handle{
	position: absolute;
	left: 0;
	top: 0;
	width: 22.5%;
	height: 100%;
	z-index: 1000;
}

.scroll-handle.scroll-handle-right{
	left: auto;
	right: 0;
}

.open-legends{
	margin-right: 0;
}

.upload-placeholder-loading{
	width: 195px;
	height: 46px;
	box-sizing: border-box;
	background: url(/img/loading.svg) center center no-repeat #f5eb00;
	background-size: 22px;
	display: none;
}

.sp-upload .upload-placeholder-loading{
	width: 121px;
	height: 26px;
}

.personalise-image{
	width: 29px;
	height: 29px;
	vertical-align: middle;
	margin-right: 10px;
}

.open-legends{
	padding-left: 24px;
	color: #dcd9d5;
	background: linear-gradient( 165deg, rgb(247,15,255) 0%, rgb(247,15,255) 35%, rgb(95,18,223) 80%, rgb(95,18,223) 100%);
	margin-top: 0;
}

.sp-lightbox .upload-placeholder{
	margin-left: 12px;
}

.upload-placeholder-filled, .review-file-cancel{
	background: url(/img/cancel-file.svg) 0 8px no-repeat transparent;
	background-size: 29px;
	display: none;
	padding: 12px 24px 12px 37px;
	max-width: 183px;
	box-sizing: border-box;
	overflow: hidden;
	white-space: nowrap;
	margin-top: 9px;
}

.review-file-cancel{
	float: right;
	margin-top: -8px;
}

.upload-placeholder-filled.upload-placeholder-filled-small{
	width: 44px;
	height: 44px;
	padding: 0;
	margin-right: 7px;
	margin-top: 0;
	border-radius: 5px;
	background: url(/img/loading.svg) center center no-repeat #fce401;
	background-size: cover;
	position: relative;
	overflow: initial;
}

.upload-placeholder-filled.upload-placeholder-filled-small:after{
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 14px;
	background: url(/img/photo-edit.svg) center center no-repeat #0b0b0c;
	position: absolute;
	right: -3px;
	bottom: -3px;
	background-size: 9px;
}

.upload-placeholder-filled.upload-placeholder-filled-small .upload-placeholder-image{
	width: 44px;
	height: 44px;
	background: url(/img/loading.svg) center center no-repeat #fce401;
	background-size: cover;
	border-radius: 5px;
	margin-right: 7px;
}

.upload-placeholder-filled.p-placeholder.shown, .upload-placeholder-filled.upload-placeholder-filled-small.shown{
	display: block;
}

.upload-placeholder-filled.sp-placeholder.shown{
	display: inline-block;
}



.suggested-product-holder{
	border-top: 1px solid rgba(239, 239, 239, 0.5);
	margin-bottom: 30px;
}

.suggested-product{
	margin: 0;
	border-bottom: 1px solid rgba(239, 239, 239, 0.5);
	padding: 5px 0;
	position: relative;
}

.suggested-product-overlay{
	position: absolute;
	left: 0;
	top: 0;
	background: transparent;
	width: calc(100% + 23px);
	height: 100%;
	z-index: 100;
	cursor: pointer;
}

.suggested-product-image, .suggested-product-title, .suggested-product-price, .sp-checkbox{
	display: inline-block;
	vertical-align: middle;
}

.suggested-product label{
	display: inline-block;
	font-weight: normal;
	color:	#555;
	font-size: 12px;
	box-sizing: border-box;
}

.upload-text{
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: #5a5859;
}


.suggested-product-image{
	width: 52px;
	height: 52px;
	vertical-align: middle;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.variation-title, .variation-image{
	display: inline-block;
	margin: 2px;
	cursor: pointer;
}


.form-flat input:not([type="submit"]), .form-flat button, .form-flat input{
	border-radius: 0;
}

.product-info{
	text-align: left;
}

.woocommerce-product-gallery__image a, .woocommerce-product-gallery__image a img, .woocommerce-product-gallery__image a canvas{
	cursor: default;
}

.row .row-small:not(.row-collapse), .container .row-small:not(.row-collapse){
	margin-right: 0;
	margin-left: 0;
}

.image-tools a.zoom-button{
	display: none;
}



.crumbs{
	padding:19px 0;
	margin-bottom: 20px;
}

.crumbs .content-container{
	color:#c1c1c1;
	font-size:13px;
}

.crumbs a:first-child{
	margin-left:-10px;
}

.crumbs a, .crumbs span{
	display:inline-block;
	padding:5px 10px;
	color:#8f8f8f;
	font-size:13px;
	border-bottom:none;
}

.crumbs a:hover{
	background:#121518;
	text-decoration: underline;
}

.crumbs span{
	font-weight:700;
}

body{
	background:#121518;
	font-size:12px;
	padding:0;
	margin:0;
	color: #777777;
    font-family: 'IBM Plex Sans',sans-serif !important;
    font-size: 13px;
    font-weight: 300;
}



input[type='text'].small, select.small{
	background:#121518;
	padding:5px 5px 5px 5px;
	font-size:16px;
	border:1px solid #d4d9da;
	border-radius:5px;
	box-shadow:inset 0 0 3px #EEE;
	color:#393c3d;
	width:155px;
	font-weight:normal;
	margin-right:15px;
}

select.small{
	padding:4px 5px;
	margin-top:0;
}

input.numeric-input{
	background:url(/img/icons/numeric-input.png) 36px 13px no-repeat #dcd9d5 !important;
	cursor:n-resize;
}

input[type='text']:disabled, input[type='password']:disabled, select:disabled, textarea:disabled{
	background:#3b4043;
}

input[type='button'], input[type='submit']{
	color:#ff9e02;
	cursor:pointer;
	font-weight:normal;
	font-size:13px;
	font-family: 'IBM Plex Sans',sans-serif;
	line-height: 44px;
	padding: 0px 15px;
	background-color: #2a343d ;
	border-radius: 5px;
}

input[type='button']:hover, input[type='submit']:hover{
	background: #000;
	color: #dcd9d5;
}

a{
	color:#DDD;
	text-decoration:none;
	font-size:16px;
	display:inline-block;
	padding-bottom:3px;
}

a.bold{
	font-weight:bold;
}

.btn{
	color:#dcd9d5 !important;
	font-size:12px !important;
	text-transform: uppercase;
	text-align:center;
	/*padding:17px;*/
	padding: 0px 124px 0px 120px;
	text-decoration:none;
	display:block;
	font-weight:bold;
	margin:10px 0;
	background: #393838;
	border-radius: 4px;
}

.btn:hover{
}

a.btn{
	border:none;
}

a.btn:hover{
	text-decoration: none !important;
}

.btn:disabled{
	opacity:.5;
}

.btn.select-file{
	font-size:16px !important;
	border-radius:0 5px 5px 0;
	background:#a9abad;
	padding:14px 0 13px 0;
	width:150px;
	margin:0 0 0 -10px !important;
}

.btn.red{
	color: #dcd9d5 !important;
	background:#a42f2b;
}

.btn.red:hover{
	background:#a20904;
	
}

.btn.blue{
	
}

.btn.green{
	background:#0ba267;
}

.btn.orange{
	background:#a25b00;
}

.btn.light-grey{
	background:#808182;
}

.btn.grey{
	background:#555;
}

.btn.white{
	background:#121518;
	color:#9a9d9d !important;
	border:1px solid #9a9d9d;
}

.btn.small{
	font-size:12px !important;
	padding:10px;
}

.btn.very-small{
	font-size:12px !important;
	padding:3px 7px;
	margin: 0 10px 0 0 !important;
}

.btn.left{
	margin-right:10px;
}

.btn.right{
	margin-left:20px;
}

.yellow-back{
	background-color:#fffa71;
}

.btn.very-small.lnk_add_city, .btn.very-small#lnk_choose_cityshipping_country{
	margin: 5px 0px 0 0 !important;
}

input.chs {
    border-style: none;
    display: inline;
    margin: 0 3px 0 0;
    vertical-align: middle;
}


label {
    cursor: pointer;
    display: inline;
    vertical-align: middle;
	font-size:12px;
	color:#555;
	line-height: 2;
}

span.small{
	color:#555;
	font-size:12px;
}

.centered{
	text-align:center !important;
}

h1, h2, h3, h4, h5, h6{
	font-weight:normal;
}

h1{
	font-size:35px;
	margin:15px 0;
	color:#ffa200;
	font-weight: 300;
	text-align: center;
}
h1 span{
	font-size:28px;
	color:#ffa200;
}

h1.big-white{
	font-size:52px;
	
	color:#dcd9d5;
	text-transform:uppercase;
}

h2{
	font-size:35px;
	margin:20px 0 15px 0;
	font-weight: 300;
	text-align: left;
	color: #dcd9d5;
}

h3{
	font-weight: bold;
	color: #dcd9d5;
	font-size: 20px;
	margin: 15px 0;
}

h4{
	font-size:16px;
	color:#393c3d;
	margin:20px 0;
}

strong{
	font-weight:bold;
	color:#dcd9d5;
}

.hint{
	font-size: 14px;
	margin: 10px 0;
}

.right{
	float:right !important;
}

.left{
	float:left;
	padding-top: 20px;

}

.center{
	text-align:center;
}

.opt{
	padding:20px 0 0 0;
}

.err{
	margin:10px 0 10px 0;
	padding:3px 5px;
	border-radius:2px;
	background-color:#e02222;
	color:#dcd9d5 !important;
	font-size:12px;
	display:inline-block;
	font-weight: 600;
	width: max-content;
}

input[type=button].btn.select-file{
	line-height: 12px;
	background: #000;
	
}

input[type=text].select-file{
	width: 210px;
}

.checkbox {
    border: 1px solid #DDD;
    width: 18px;
    height: 18px;
    float: left;
    box-shadow: inset 0 0 2px #EEE;
    background-color: #121518;
    margin: 2px 6px 0 0;
	display: none;
}

.checkbox.checked{
	background:url(/img/check.png) 4px 4px no-repeat #121518;
}

input[type=radio]{
	vertical-align: middle;
	margin-right: 10px;
	min-width: 10px;
	min-height: 10px;
}

.radio{
	border: 3px solid #121518;
	width: 11px;
	height: 9px;
	float: left;
	box-shadow: 0px 0px 0px 2px #777;
	background-color: #121518;
	margin: 5px 6px 1px 1px;
	border-radius: 10px;
	transform: scale(0.7);
	
}

.radio.checked{
	background: #000;
}

.radio-label{
	margin-right:15px;
	min-width:90px;
	float:left;
}

.pre-radio-label{
	width:180px;
	margin-right:10px;
}

.message{
	color: #dcd9d5;
	font-size: 15px;
	padding: 10px;
	font-weight: 600;
	margin-bottom: 20px;
}

.message.error{
	background-color: #c9413a;
}

.message.error p{
	font-size:15px;
	color: #dcd9d5;
	font-weight: 600;
	text-align: center;
}

.message.error p a{
	font-size:15px;
	color: #dcd9d5;
	font-weight: 600;
}

.message p a{
	text-decoration: underline;
}
.message p a:hover{
	text-decoration: none;
	color: #dcd9d5;
}

.message.success{
	background-color:#69c137;
}

.message.success.no-icon, .message.error.no-icon{
	padding-top:0px;
	background:none;
}

.message.success.no-icon p, .message.error.no-icon p{
	font-size:18px;
}

.message.success p{
	font-size:15px;
	color: #dcd9d5;
	text-align: center;
	font-weight: 600;
	
}

.message p span{
	display:block;
	margin: 15px auto;
	width:400px;
	text-align:center;
}

.message span{
	display:block;
	margin: 15px auto;
	width:400px;
	text-align:center;
}

.center-block{
	width:450px;
	margin:0 auto;
}

.justify{
	text-align:justify !important;
}

.super{
	vertical-align:super;
}

.block{
	margin-top:30px;
	margin-bottom: 30px;
	line-height: 1.4;
}

.block h2, .block div{
	color: #dcd9d5;
}

.block .button.black{
	margin: 10px 0;
}

.city-add{
	margin:5px 0;
	width:100%;
}

.city-add a{
	float:right;
}

/* end general */

.home-icons{
	-moz-column-count: 4;
	-webkit-column-count: 4;
	column-count: 4;
	-moz-column-gap: 15px;
	-webkit-column-gap: 15px;
	column-gap: 15px;
}

.home-icons .home-icon{
	text-align: center;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: .05em;
	width: 100%;
	margin-top: 0;
	margin-bottom: .5em;
	text-rendering: optimizeSpeed;
	font-size: 17px;
	font-weight: 700;
	color: #dcd9d5;
}

.home-icons .home-icon img{
	height: 140px;
	margin: 0 auto 16px;
	display: block;
}

.home-how-to{
	width: 100vw;
	height: 30vh;
	position: relative;
	background-size: contain;
	overflow: hidden;
	margin-bottom: 50px;
}

.home-how-to .main-back{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(/img/slides/back1.jpg) center center no-repeat transparent;
	background-size: contain;
}

.home-how-to .back-2{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(/img/slides/back2.png) center center no-repeat transparent;
	background-size: contain;
}

.home-how-to .dots-1, .home-how-to .dots-2{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.home-how-to .dots-2{
	transform: scale(-1);
}

.home-how-to .content-container{
	height: 100%;
}

.home-how-to .what-is{
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	cursor: pointer;
	font-size: 30px;
	padding: 10px 20px;
	border-radius: 5px;
	transition: all .3s ease;
	color: #dcd9d5;
	background: rgba(0,0,0,.05);
	font-weight: 300;
}

.home-how-to .what-is:hover{
	background: #2980b9;
	color: #dcd9d5;
}

.home-how-to .what-is-content{
	display: none;
}

.home-how-to .dots-1 .dot, .home-how-to .dots-2 .dot{
	position: absolute;
	background: #000;
	border-radius: 30px;
	opacity: .7;
}

.how-to-lightbox{
	padding: 20px;
}

.how-to-lightbox h1{
	margin-top: 0;
	font-size: 25px;
}

.how-to-lightbox h1, .how-to-lightbox h2{
	font-weight: normal;
}

.how-to-lightbox h2{
	font-size: 20px;
}

.how-to-lightbox strong{
	font-weight: 600;
}

.how-to-lightbox ul{
	margin: 20px;
	list-style: disc;
}

.button-black, .button.button-black, input[type=submit].button-black{
	margin: 10px 0;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #dcd9d5;
	background: #000;
	border-radius: 3px;
	padding: 10px 17px;
	display: block;
	width: max-content;
	cursor: pointer;
}

.button-black.button-black-big, input[type=submit].button-black-big{
	font-size: 16px;
	line-height: 1.6;
	min-width: 200px;
	box-sizing: border-box;
	text-align: center;
}

.button-black.loading{
	background: url(/img/button-loading.svg) center center no-repeat transparent;
	background-size: cover;
}

.button-black.button-review{
	background: url(/img/pencil-big.svg) left 17px top 11px no-repeat #000;
	background-size: 22px;
	padding-left: 60px;
}

#selectBrands{
	float:right;
	margin-top:-22px;
}


.product a, .products-carousel a{
	border-bottom:0;
}



.added-to-cart, .added-to-wishlist{
	position:fixed;
	top:200px;
	left:1000px;
	background:#02b1d9;
	display:none;
	z-index:200;
}

#paypalForm{
	display: none;
}

.card-inputs{
	position: relative;
}

.credit-card-image{
	position: absolute;
	top: 45px;
	right: 9px;
	width: 30px;
}

.card-inputs .card-input{
	border: 1px solid #DDD;
	padding: 8px 5px;
}

.payment-inputs .card-inputs label{
	font-size: 14.5px;
	font-weight: 700;
	margin: 4px 0;
}



.payment-option-holder{
	margin-bottom: 10px;
	padding-bottom: 10px !important;
	border-bottom: 1px solid #ececec;
}

.payment-option-holder label{
	font-size: 14.5px;
	color: #111;
}

.payment-option-holder a{
	font-weight: 700;
	color: #111;
	font-size: 13px;
}

.payment-option-image{
	width: 40px;
	vertical-align: top;
}

.payment-option-image:first-child{
	margin-left: 10px;
}

.paypal-payment{
	vertical-align: middle;
	margin-left: 10px;
	width: 130px;
}

.payment-inputs{
	overflow: hidden;
}

.payment-inputs label{
	font-weight: normal;
	font-size: 13px;
	margin: 15px 0;
	display: block;
}

#cardElement{
	border: 1px solid #ececec;
	padding: 10px;
}


/* cart, wishlist */

.striped{
	position: relative;
	border-top: 2px solid #e5e5e5;
	margin-bottom: 45px;
}

.striped span{
	position: absolute;
	left: 50%;
	top: 50%;
	background: #121518;
	padding: 0 10px;
	font-size: 20px;
	font-weight: 700;
	color: #111;
	white-space: nowrap;
	transform: translate(-50%, -50%);
}

.profile-right .striped{
	margin-top: 25px;
}

.profile-right .striped span{
	font-size: 16px;
}

#wishlistForm{
	margin-top:20px;
	margin-bottom:10px;
}
.cart-content-big .cart-footer, .wishlist-content-big .wishlist-footer{
	margin-top:30px;
}

/*.cart-content *, .cart-price, .parts-table td, .pages a{
	font-family:Arial, Tahoma;
	font-weight:normal !important;
}*/

.promo-title{
	margin: 20px 0 15px;
	padding: 0 0 10px 30px;
	font-weight: 800;
	color: #111;
	border-bottom: 3px solid #EEE;
	background: url(/img/price-tag.svg) left bottom 15px no-repeat transparent;
	background-size: 16px 16px;
}



.cart-table.big-cart-table, .wishlist-table.big-wishlist-table{
	border-collapse: separate;
	width:100%;
}

.cart-table.big-cart-table tr td, .cart-table.big-cart-table tr th, .wishlist-table.big-wishlist-table tr td, .wishlist-table.big-wishlist-table tr th{
	background:#121518;
	border:1px solid #E9E9E9;
	border-width:0 0 1px 0px;
	padding:10px;
	text-align:left;
	font-weight: 700;
	font-size: 14.5px;
	color: #111;
}

.big-cart-item-text a{
	font-weight: 700;
	font-size: 14.5px;
}

.big-cart-item-text a:hover{
	color: #999;
}

.cart-right{
	width: 100%;
}

.cart-table.big-cart-table tr th, .wishlist-table.big-wishlist-table tr th, .cart-right tr th, .tracking-table tr th{
	font-size:15px;
	font-weight:700;
	text-transform: uppercase;
	color: #777;
	border-top: 0;
	border-bottom: 3px solid #EEE;
	padding: 5px;
	white-space: nowrap;
	text-align: left;
}

.tracking-table{
	width: 100%;
}

.tracking-table tr td{
	font-size: 14px;
	padding: 5px 0;
	border-bottom: 1px solid #EEE;
}

.tracking-table tr th:nth-child(2), .tracking-table tr td:nth-child(2){
	text-align: right;
}

.tracking-table tr td:nth-child(2) strong{
	font-size: 14.5px;
}

.tracking-table tr td:first-child strong{
	color: #777;
	font-size: 14px;
}

.tracking-table tr td:nth-child(2) span{
	font-size: 11.5px;
}

.cart-right tr th{
	text-align: left;
}

.table-holder .holder-left{
	padding-right: 30px;
	border-right: 1px solid #ececec;
}

.table-holder .holder-right{
	padding-left: 30px;
}

.cart-table.big-cart-table tr td:nth-child(3), .wishlist-table.big-wishlist-table tr td:nth-child(3){
	min-width:200px;
}

.cart-table.big-cart-table tr:first-child th, .wishlist-table.big-wishlist-table tr:first-child th{
	border-top-width:1px;
}

.cart-table.big-cart-table tr th:last-child, .cart-table.big-cart-table tr td:last-child, .wishlist-table.big-wishlist-table tr th:last-child, .wishlist-table.big-wishlist-table tr td:last-child{
	border-right-width:0px;
}

.wishlist-inputs{
	width:100%;
	margin-top:30px;
}

.wishlist-inputs tr th{
	font-weight:bold;
	font-size:12px;
	text-align:left;
	padding:0 0 20px 20px;
}

.wishlist-inputs tr td{
	padding:10px 0 10px 10px;
}

.wishlist-inputs tr td:nth-child(1) input[type=text], .wishlist-inputs tr td:nth-child(2) input[type=text]{
	width:200px;
}

.wishlist-inputs tr td:nth-child(4) input[type=number]{
	width:50px;
}

.wishlist-inputs tr td:nth-child(1){
	padding-left:0px;
}

.wishlist-inputs tr td:nth-child(3){
	width:100%;
}

.wishlist-inputs tr th:nth-child(1){
	padding-left:10px;
}

input[type=text].wishlist-product-name{
	width: -moz-calc(100% - 32px);
    width: -webkit-calc(100% - 32px);
    width: calc(100% - 32px);
}



/* end cart, wishlist */


/* authentication and registration */

.auth-block{
	width:350px;
	text-align:left;
	margin: 50px auto;
}

.auth-block label{
	color:#393c3d;
	font-size:12px;
	margin-top: 9px;
}

.auth-block label.radio-label{
	margin-top: 0;
}

.auth-block a, .login-form a{
	line-height: 2;
}

.login-form #email, .login-form #passw{
	background: url(/img/icons/login-inputs.png) left top no-repeat #edeff0;
	padding-left: 55px;
	max-width: 80%;
	max-width: calc(100% - 70px);
}

.login-form #passw{
	background: url(/img/icons/login-inputs.png) left bottom no-repeat #edeff0;
}

.birthdate-label{
	padding:10px 0 0 14px;
	height:31px;
	font-size:18px;
	box-shadow:inset 0 0 3px #EEE;
	color:#393c3d;
	width:100px;
	font-weight:normal;
	background:#f0f1f2;
	border:1px solid #d4d9da;
	border-radius:25px 0 0 25px;
	-moz-border-radius:25px 0 0 25px;
	-webkit-border-radius:25px 0 0 25px;
}

.date-row select{
	float:left;
	margin-top:0px;
	width:108px;
	border-left-width:0;
	border-radius:0;
}

.date-row select:nth-child(4){
	border-radius:0 25px 25px 0;
}

.row{
	margin:5px 0;
	position: relative;
	/*width: 320px;*/
}

.row.columns-2{
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
	-moz-column-gap: 15px;
	-webkit-column-gap: 15px;
	column-gap: 15px;
}

.row.columns-2 > div{
	position: relative;
}

.input-placeholder{
	display: none;
	position: absolute;
	left: 10px;
	top: 1px;
	font-size: 13px;
	overflow: hidden;
	max-width: 92%;
	max-height: 19px;
	text-align: left;
	white-space: nowrap;
	box-sizing: border-box;
}

.row.row-radios{
	height:40px;
}

.row.files_list img{
	margin:0;
	float:right;
}

.row.files_list img:hover{
	background:#EFEFEF;
}

.row .code{
	text-transform:uppercase;
}

/* end authentication and registration */



.container{
	position:relative;
	width:100%;
}

/* home splash */

.block-header{
	color:#dcd9d5;
}

.splash{
	height:725px;
	height:calc(100vh - 269px);
	margin-bottom:30px;
}

.splash *{
	font-family: "Montserrat", Raleway, Times New Roman;
}

.splash-back{
	background:url(/img/bg-slider.png) center top no-repeat transparent;
	width:100%;
	height:725px;
	height:calc(100vh - 269px);
	position:absolute;
	left:0;
}

.splash-arrow-left, .splash-arrow-right{
	width: 50px;
	height: 50px;
	cursor: pointer;
	background: url(/img/icons/arrow-left.png) center center no-repeat transparent;
	position: absolute;
	top: 340px;
	top: calc(50vh - 135px);
	display: none;
}

.splash-arrow-left{
	left: 20px;
}

.splash-arrow-right{
	right: 20px;
	background: url(/img/icons/arrow-right.png) center center no-repeat transparent;
}

.splash .splash-content:hover .splash-arrow-left, .splash .splash-content:hover .splash-arrow-right{
	display: block;
}

.splash .splash-main-title{
	font-weight:normal;
	font-size:40px;
	color:#dcd9d5;
	padding-top:0px;
}

.splash .splash-title-image{
	margin-top:105px;
}

.splash .splash-title{
	color:#dcd9d5;
	font-size:103px;
	margin:0px 0 0px 0;
	display:none;
}

.splash .splash-title2{
	color:#dcd9d5;
	font-size:60px;
	margin:0 0 10px 0;
	display:none;
}

.splash .splash-title3{
	color:#dcd9d5;
	font-size:40px;
	margin:0;
	display:none;
}

.splash .splash-button{
	display:none;
	font-size: 24px;
	border-radius:0;
	margin-top: 30px;
	display:none;
	font-weight: normal;
	background: url(/img/yellow-button.png) center center no-repeat transparent;
	width: 244px;
	height: 45px;
	padding-top: 25px;
	text-align: center;
	border-radius: 100px;
	color: #dcd9d5;
	float: none;
	background-size: contain;
}

.splash .splash-button:hover{
	background: #fece2e;
}

.splash .splash-title span{
	color:#dcd9d5;
	font-weight:bold;
}

.splash .splash-content{
	width:100%;
	margin:0 auto;
	position:relative;
	height:725px;
	height:calc(100vh - 269px);
	background:url(/img/loader1.gif) center 200px no-repeat transparent;
	transition: all 0.3s ease;
	display: table;
}

.splash .splash-content:hover{
	box-shadow: inset 105px 0px 105px -105px rgba(0,0,0,1), inset -105px 0px 105px -105px rgba(0,0,0,1);
}

.splash .splash-content .splash-content-container{
	width: 100%;
	max-width: 1080px;
	display: table-cell;
	margin: 0 auto;
	vertical-align: middle;
	text-align: center;
	text-shadow: 0px 0px 3px rgba(255, 255, 255, 1);
}

.splash .splash-content.loaded{
	background-size: cover !important;
}

.splash-blocks{
	width:999px;
	height:500px;
	background:url(/img/blocks-background.jpg) left top no-repeat transparent;
	position:relative;
	margin:0 auto;
}

.splash-blocks .splash-block{
	position:absolute;
	width:190px;
	height:190px;
	padding:30px;
	color:#dcd9d5;
}

.splash-block .block-header{
	font-size:26px;
	margin-bottom:20px;
}

.splash-block.block-1{
	background:#169fde;
	left:250px;
	top:0;
}

.splash-block.block-2{
	background:#907fc8;
	left:0;
	top:250px;
}

.splash-block.block-3{
	background:#e4423c;
	right:0;
	top:250px;
}

.splash-block a{
	position:absolute;
	bottom:30px;
	left:30px;
}

/* end home splash */

.content-container{
	max-width:1080px;
	margin:0 auto;
	margin-top:0px;
	padding:0;
	position:relative;
	box-sizing: border-box;
}

.content-left, .content-right, .content-middle{
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
}

.content-left, .content-right{
	width: 21%;
}

.content-middle{
	width: 58%;
}

.content-container.full-width{
	max-width: 1520px;
}

.content-container.products-container{
	
}

.prices-holder.trades-list{
	margin-bottom: 15px;
}

.prices-holder.currencies-list .p-row{
	cursor: pointer;
}

.p-row:hover{
	background: #1a1c1d;
}

.prices-list-heading div{
	display: inline-block;
	width: 33%;
	font-size: 13px;
	text-align: right;
}

.currencies-list .greyed-out{
	color: #BBB;
	font-size: 13px;
}


.prices-list-heading div:first-child{
	text-align: left;
}

.prices-holder .p-row{
	padding: 0;
	line-height: 0;
	position: relative;
	cursor: pointer;
}

.prices-holder .p-row div{
	display: inline-block;
	width: 33%;
	font-size: 13px;
	text-align: right;
}

.prices-holder .p-row div.order-arrow{
	position: absolute;
	left: -10px;
	top: 0px;
	color: #ffa200;
	width: max-content;
	display: block;
}

.prices-holder .p-row div:first-child{
	text-align: left;
}

.trade-forms-holder{
	padding: 0 10px 10px 10px;
	margin: 20px;
	background: #1a1c1d;
}

.trade-form-heading > div{
	display: inline-block;
	width: 50%;
	text-align: left;
	font-size: 12px;
}

.trade-form-heading > div span{
	font-size: 12px;
}

.trade-form-heading > div:nth-child(2){
	text-align: right;
}

.trade-form-input-row{
	position: relative;
}

.trade-form-input-row .trade-form-input-label, .trade-form-input-row .trade-form-input-label2{
	position: absolute;
	font-size: 13px;
	top: 7px;
	left: 15px;
}

.trade-form-input-row .trade-form-input-label2{
	left: auto;
	right: 15px;
}

.trade-form-input-row input{
	border-radius: 4px;
	margin-bottom: 10px;
	text-align: right;
	padding-right: 55px;
}

.trade-options{
}

.trade-options div, .orders-history-options div{
	display: inline-block;
	cursor: pointer;
	padding: 10px 20px;
}

.trade-options div.active, .trade-options div:hover, .orders-history-options div.active, .orders-history-options div:hover{
	color: #ffa200;
	border-top: 2px solid #ffa200;
}

.loading-image{
	margin: 5px auto;
}

.user-orders-list{
	width: 100%;
}

.user-orders-list tr td, .user-orders-list tr th{
	font-size: 13px;
	text-align: left;
	padding: 5px;
}

.user-orders-list.open-orders tr th:last-child, .user-orders-list.open-orders tr td:last-child{
	width: 60px;
	text-align: center;
}

.user-orders-list .table-loader td{
	padding: 10px;
	text-align: center;
}

.user-orders-list tr th{
	background: #1a1c1d;
}

.orders-list .price-row{
	font-size: 25px;
	color: #EEE;
}

.orders-list, .trades-list{
	width: 100%;
}

.trades-list{
	height: 350px;
	overflow: auto;
}

.orders-list tr td{
	vertical-align: top;
}

.orders-list tr th, .trades-list tr th{
	font-size: 13px;
}

.button-placeholder, .order-button{
	background: #2b2f31;
	border-radius: 4px;
	text-align: center;
	cursor: pointer;
	color: #ffa200;
	display: block;
	padding: 5px;
	margin-top: 25px;
}

.trade-form-input-row .small-message{
	position: absolute;
	right: 0;
	bottom: -6px;
	font-size: 11px;
	color: #a29a8e;
}

.stop-limit-confirm-table{
	width: 100%;
	margin-bottom: 10px;
}

.stop-limit-confirm-table tr td{
	font-size: 13px;
	color: #a29a8e;
	padding: 4px 0;
}

.stop-limit-confirm-table tr td:nth-child(2){
	text-align: right;
	color: #DDD;
}

.stop-limit-confirm-table .negative{
	color: #ff5555 !important;
}

.stop-limit-confirm-table .positive{
	color: #41f2ad !important;
}

.lightbox-content .small-message{
	font-size: 12px;
	color: #a29a8e;
}

.lightbox-content .small-message span{
	color: #DDD;
	font-size: 12px;
}

.order-button.loading{
	background-position: left 10px top 8px !important;
}

.order-button.buy-button{
	background-color: #0ba267;
	color: #dcd9d5;
}

.order-button.sell-button{
	background-color: #a0081c;
	color: #dcd9d5;
}

.button-placeholder:hover{
	color: #dcd9d5;
}

.slider-holder{
	padding: 5px 10px;
	margin: 10px 0 25px 0;
	position: relative;
}

.slider-holder .slider-bullet{
	width: 10px;
	height: 10px;
	background: #AAA;
	border: 1px solid #999;
	transform: rotate(45deg) translateX(-50%);
	position: absolute;
	left: 10px;
	top: 9px;
	z-index: 1;
	cursor: pointer;
}



.slider-holder .slider-bullet:hover{
	background: #777;
}

.slider-holder .slider-bullet.bullet-25{
	left: 25%;
}

.slider-holder .slider-bullet.bullet-50{
	left: 50%;
}

.slider-holder .slider-bullet.bullet-75{
	left: 75%;
}

.slider-holder .slider-bullet.bullet-100{
	left: calc(100% - 14px);
}

.ui-slider-horizontal .ui-slider-range{
	height: 4px !important;
}

.ui-slider-horizontal{
	top: 3px !important;
	height: 4px !important;
	border: 1px solid #555 !important;
}

.ui-slider-horizontal .ui-slider-handle{
	transform: rotate(45deg);
	top: -9px !important;
}


.orders-list tr td, .trades-list tr td{
	font-size: 13px;
}

.negative, .prices-holder .p-row.sell div:first-child, .currencies-list .negative, .user-trade .buy-sell-badge.negative, .user-orders-list .negative{
	color: #ff5555 !important;
}

.positive, .prices-holder .p-row.buy div:first-child, .currencies-list .positive, .user-trade .buy-sell-badge.positive, .user-orders-list .positive{
	color: #41f2ad !important;
}

.bottom-status{
	padding: 3px 5px;
	background: #000;
	position: fixed;
	bottom: 0;
	left: 0;
	font-size: 12px;
	width: 100vw;
	box-sizing: border-box;
}

.bottom-status.excellent{
	color: #41f2ad;
}

.bottom-status.fine{
	color: #e9ff80;
}

.bottom-status.slow{
	color: #ffa200;
}

.bottom-status.extremely-slow{
	color: #a0081c;
}

.cancel-order{
	width: 20px;
	height: 20px;
	background: url(/img/delete-white.svg) center center no-repeat transparent;
	background-size: 15px 15px;
	border-radius: 3px;
	cursor: pointer;
	margin: auto;
}

.cancel-order:hover{
	background-color: #555;
}

.user-trades-list{
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100;
	overflow: hidden;
	max-height: 100vh;
}

.user-trades-list .user-trade{
	font-size: 13px;
	background: #35322e;
	padding: 15px;
	cursor: pointer;
	max-width: 150px;
	border: 5px solid #1a1c1d;
	border-radius: 15px;
}

.user-trades-list .user-trade span, .user-trades-list .user-trade strong{
	font-size: 13px;
}

.content-container ul{
	list-style-type:disc;
	margin-left:15px;
}

.content-container.home{
	padding:0;
	width:1080px;
}

.white-container{
	background:#121518;
}

.transparent-back{
	background:transparent;
}

.heading{
	background:#121518;
	padding:40px 0 20px 0;
	font-size:18px;
	color:#dcd9d5;
	font-weight:700;
	border-bottom:4px solid #e1e4d9;
}

.big-heading{
	height:70px;
	margin:10px 0;
	font-size:26px;
	font-weight:800;
	color:#DDD;
	text-align:center;
	text-transform: uppercase;
}

.big-heading.no-icon{
	background:none;
	padding-left:0;
}

.heading a{
	float:right;
	color:#3f3f3f;
	font-size:14px;
	margin-top:5px;
}


a.button, ul.parts-list li a.button{
	background-color: #000;
    border: medium none;
    color: #dcd9d5 !important;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding: 3px 20px;
}

a.button:hover, ul.parts-list li a.button:hover{
	background-color:#DDD;
}

a.button.grey{
	color:#393c3d;
	border-color:#e5e5e5;
	text-transform:none;
	font-weight:normal;
}

a.button.dark-grey{
	background:#DDD;
}

a.button.small{
	font-size:14px;
}

.button{
	text-align: center;
}

.displaynone{
	display:none;
}

.highlighted{
	background: #ff0;
}

.margin-auto{
	margin-left: auto !important;
	margin-right: auto !important;
	display: block;
	width: max-content;
}

.width-50{
	width: 50%;
}

.displaymobile{
	display:none;
}

input[type=file].displaynone{
	width:0;
	height:0;
	display:block;
}

.clear{
	clear:both;
}



.displayblock{
	display: block;
}

::-webkit-input-placeholder {
   text-transform: initial;
   font-weight: 600;
   font-size: 14px;
   color: #929292;
}

:-moz-placeholder { 
   text-transform: initial;
   font-weight: 600;
   font-size: 14px;
   color: #929292;
}

::-moz-placeholder {  
   text-transform: initial;
   font-weight: 600;
   font-size: 14px;
   color: #929292;
}

:-ms-input-placeholder { 
   text-transform: initial;
   font-weight: 600;
   font-size: 14px;
   color: #929292;
}


/* profile */

.userinfo{
	width:480px;
	float:left;
	padding-right:20px;
	border-top: 2px solid #DDD;
}

.userinfo h1, .profile-right h1{
	font-size: 17.5px !important;
	text-transform: uppercase;
	text-align: left;
	margin-top: 30px;
}

.userinfo input[type=text]::placeholder, .userinfo input[type=password]::placeholder, .userinfo textarea::placeholder, .userinfo select, .userinfo textarea{
	font-size: 12px;
}

.userinfo input[type=text], .userinfo input[type=password]{
	font-size: 13.5px;
	padding: 20px 10px;
	transition: all .3s ease;
}

.userinfo textarea{
	padding: 10px;
}

.userinfo input[type=text].filled, .userinfo input[type=password].filled, .userinfo textarea.filled{
	padding: 25px 10px 15px 10px;
}

.userinfo select{
	height: 40px;
}

.profile-right{
	width:438px;
	float:right;
	border: 2px solid #111;
	padding: 0 30px;
	box-sizing: border-box;
}

.profile-block{
	padding-bottom:30px;
	margin-bottom:30px;
	text-align: left;
}

.profile-block h2{
	color:#555;
}

.profile-block.no-border{
	border-bottom:0;
}

.profile-right .profile-block{
	padding-left:30px;
}

.profile-block h1{
	font-size:21px;
	font-weight:normal;
	color:#292f35;
	
	float:left;
	margin-top:0;
}

.profile-block .icon, .user .icon{
	position:relative;
}

.profile-block .icon .eu-badge, .user .icon .eu-badge{
	background-color:#4541e7;
	color:#ffdf2c;
	border:2px solid #dcd9d5;
	border-radius:18px;
	width:25px;
	height:22px;
	position:absolute;
	top:-5px;
	left:-5px;
	font-weight:bold;
	padding:8px 0 0 4px;
}

.profile-block .icon img, .user .icon img{
	border-radius:150px;
	float:left;
}

.user{
	float:left;
	width:310px;
	height:180px;
}

.user .text{
	float:left;
	width:180px;
	margin-left:20px;
}

.user .text .title a{
	font-size:22px;
}

h1 span.age{
	color:#393c3d;
	font-weight:normal;
	font-size:21px;
}

.profile-block h1.title{
	margin-top:0;
	color:#dcd9d5;
	font-size:26px;
	
	float:none;
}

.profile-block .location, .profile-block .couple, .profile-block .controls,  .user .location{
	float:left;
	background: url(/img/location-icon.png) left top no-repeat transparent;
	padding-left:20px;
	width:350px;
	margin:10px 0 20px 0px;
}

.user .location{
	margin-left:0;
	margin-top:15px;
	margin-bottom:10px;
}

.profile-block .controls{
	padding:0;
	background:none;
	margin:0;
	float:right;
	width:inherit;
	width: 100%;
}

.profile-block .location a, .user .location a{
	color:#393c3d;
	font-size:16px;
	text-decoration:none;
}

.profile-block .couple{
	background-image: url(/img/couple-icon.png);
}

.profile-block .couple a{
	font-weight:bold;
	font-size:16px;
	color:#169fde;
	text-decoration:none;
}

.profile-tab{
	text-align:center;
	font-weight:bold;
	cursor:pointer;
	width:165px;
	background:#f7f8f9;
	border:1px solid #e5e5e5;
	border-top:0;
	border-right:0;
	float:right;
	padding:24px 0;
}

.profile-tab.profile-tab-wide{
	width:249px;
}

.profile-tab.active, .profile-tab:hover{
	border-color:#121518;
	background:#121518;
}

.profile-tab span{
	padding:0 10px; 
	background:#121518;
	border:1px solid #e5e5e5;
	border-radius:20px;
	
}

.profile-data-title{
	width:220px;
	font-size:16px;
	color:#7e7e7f;
	float:left;
	padding:10px 0;
}

.profile-data-title a{
	font-size:16px;
	color:#7e7e7f;

}

.profile-data{
	width:220px;
	font-weight:bold;
	color:#292f35;
	float:left;
	padding:10px 0;
}

.profile-users-wrapper, .friend-users-wrapper{
	overflow:hidden;
	width:400px;
	height:290px;
	padding-left:10px;
}

.friend-users-wrapper, .profile-users-wrapper.long{
	width:450px;
}

.profile-users-holder{
	width:1800px;
}

.profile-users-holder.long{
	width:2000px;
}

.profile-users, .friend-users{
	width:450px;
	float:left;
}

.friend-users, .profile-users.long{
	width:500px;
}

.profile-user{
	padding:10px 0;
	margin-right:30px;
	float:left;
	width:400px;
}

.friend-users .profile-user, .profile-users.long .profile-user{
	width:450px;
}

.profile-user.long{
	width:470px;
}

.profile-user:last-child{
	border-bottom:0;
}

.profile-user-icon{
	float:left;
	width:40px;
	position:relative;
}

.profile-user-icon .eu-badge, .comment .icon .eu-badge{
	background-color:#4541e7;
	color:#ffdf2c;
	border:2px solid #dcd9d5;
	border-radius:18px;
	width:13px;
	height:11px;
	position:absolute;
	top:-6px;
	left:-6px;
	font-weight:bold;
	padding:4px 0 0 2px;
	font-size:8px;
}

.comment .icon .eu-badge{
	left:0;
}

.profile-user-icon img{
	border-radius:20px;
}
.profile-user-info{
	float:left;
	border-right:1px solid #e5e5e5;
	width:190px;
	overflow:hidden;
}

.friend-users .profile-user .profile-user-info, .profile-users.long .profile-user .profile-user-info{
	width:240px;
}

.profile-user.long .profile-user-info{
	border-right-width:0;
}

.profile-user-info .location{
	margin:0;
	font-size:14px;
	margin-top:5px;
}

.profile-user-info a{
	
	font-size:16px;
	color:#169fde;
	text-decoration:none;
}

.profile-user-regdate{
	float:left;
	font-size:14px;
	padding-left:10px;
}

.profile-user.long .profile-user-regdate{
	float:right;
}

.profile-user-regdate div{
	font-weight:bold;
	margin-top:9px;
	font-size:14px;
}

.profile-user-status{
	float:right;
}

.profile-tab-content{
	margin-top:30px;
}

.profile-block .total_earned{
	font-size:20px;
	color:#555;
	
	float:left;
}

.profile-block .total_earned span{
	display:block;
	color:#393c3d;
	margin-bottom:3px;
}

.users-scrollers, .friend-scrollers{
	width:60px;
	margin:20px auto;
}

.users-scroller, .friend-scroller{
	background:#e5e5e5;
	border-radius:5px;
	width:10px;
	height:10px;
	float:left;
	margin-right:5px;
	cursor:pointer;
}

.users-scroller.active, .users-scroller:hover, .friend-scroller.active, .friend-scroller:hover{
	background-color:#169fde;
}

.fileform{
	position:relative;
}



#file_userpic{
	text-align: center;
}

#file_userpic img.icon{
	border-radius:60px;
}

.fileform .delete-file-button{
	position:absolute;
	right:100px;
	top:0;
	background:url(/img/icons/close-faq.png) left top 7px no-repeat transparent;
	display:block;
	padding-left:15px;
	color:#555;
	font-size:12px;
	width:0px;
	overflow:hidden;
	white-space:nowrap;
}

.fileform .delete-file-button:hover{
	width:75px;
	right: 25px;
}

.small-file-message{
	font-size:12px;
	font-style:italic;
	color:#393c3d;
	margin-top:10px;
}

.small-file-message.no-italics{
	font-style:normal;
}



/* orders */

.order{
	position:relative;
}

.order-text{
	font-size: 13px;
	color: #777 !important;
	font-weight: normal !important;
	margin-top: 20px;
}

.order .order-delete-button{
	position:absolute;
	right:10px;
	top:52px;
}

.order .order-title{
	padding:10px;
	background:url(/img/icon_open.png) right 10px top 10px no-repeat #1a1c1d;
}

.order .order-title:nth-of-type(1){
	border-radius:5px 5px 0 0;
}


.order .order-title:nth-child(even){
	background-color:#F5F5F5;
}

.order:nth-of-type(even) .order-title{
	background-color:#F5F5F5;
}

.order .order-title:hover{
	background-color:#fecc1d;
	font-weight:bold;
	color:#dcd9d5;
	cursor:pointer;
}

.order .order-table tr td{
	padding:5px 10px;
}

.order .order-table tr td:nth-child(2){
	font-weight:bold;
}

.order .order-table, .order .order-products, .order .order-delete-button{
	display:none;
}

.order:nth-of-type(1) .order-table, .order:nth-of-type(1) .order-products, .order:nth-of-type(1) .order-delete-button{
	display:block;
}

.order-products table{
	margin-top:20px;
	margin-bottom:20px;
}

.order-products table tr td{
	padding:5px;
	font-size:13px;
	vertical-align:top;
}

.order-products table tr td div{
	font-size:13px;
}

.order-products table tr th{
	font-weight:bold;
	font-size:12px;
	text-align:left;
	padding:5px 10px;
}

.order-products .order-product-image img{
	max-width:75px;
	max-height:75px;
}

.order-description{
	height:181px;
}

.order-payment{
	margin-top:40px;
}

.order-payment img{
	margin-top:-15px;
}

.order-payment .clear{
	margin-top:40px;
}

.content-text{
	margin: 20px 0;
}

.tracking-form{
	margin-bottom: 70px;
}

.tracking-form input[type=submit]{
	background: #000;
	font-weight: bold;
	text-transform: none;
	margin-top: 20px;
	font-size: 16px;
}

.tracking-form h4{
	font-weight: bold;
	font-size: 14.5px;
	color: #111;
	margin-bottom: 7px;
}

/* end orders */
/* end profile */

/* sitemap */
.section{
	float:left;
	width:165px;
	margin-right:20px;
	margin-top:30px;
}

.section a{
	color:#555;
}

.section .section-title{
	font-size:20px;
	font-weight:bold;
	margin:10px 0;
	padding:10px 0px 0 0px;
}

.section .section-title:hover{
	border-bottom:1px dashed #555;
}

.section .pages{
	margin-top:20px;
}

.section .page{
	padding:0;
}

.section .page a{
	width:165px;
	display:block;
	padding:10px 0;
	border-bottom:1px solid #555;
}

.section .page a:hover{
	background:#555;
	color:#dcd9d5;
	padding:10px;
	margin:-1px -10px 0 -10px;
	border-top:1px solid #555;
}
/* end sitemap */

/* blogposts */
#blogpostsList{
	width:100%;
}

.full-preview-image{
	height:350px;
	width:100%;
	background-size: cover;
	background-position: center;
}

.blogpost{
	border-bottom:1px solid #e5e5e5;
}

.blogpost.no-border{
	border:0;
}

.blogpost .content .icon img{
	float:left;
	border-radius:30px;
}

.blogpost .preview-image{
	width:375px;
	height:250px;
	float:left;
	overflow:hidden;
	background-position: center center;
    background-size: cover;
}

.blogpost .preview-image img{
	min-width:375px;
	min-height:250px;
}

.blogpost .content{
	padding:0px 30px 0 30px;
	width:565px;
	width: calc(100% - 450px);
	float:left;
	height:220px;
}

.blogpost .content.full-content{
	width: 100%;
	border-bottom:0;
	height:inherit;
	padding: 30px 0;
}

.blogpost .content .text{
	overflow:hidden;
	height:49px;
}

.blogpost .content h3.title{
	margin-bottom:30px;
}

.blogpost .content h3.title a{
	color:#dcd9d5;
	font-size:26px;
}

.blogpost .content .meta{
	margin-bottom:30px;
}



.blogpost .content .full-meta{
	margin-top:22px;
}

.blogpost .content .full-content-left{
	/*width: 100%;*/
	margin:0 40px 40px 0;
/*	padding: 0px 200px;
*/}

.cntrl {
	display: inline-block;
}

.half {
	float: left;
}

.hals {
	float: left;
}

.hals .social {
	margin-top: -10px;
}

.blogpost .content .full-content-right{
	float:right;
	margin-left:55px;
	width:500px;
	overflow:hidden;
}

.blogpost .content .full-content-right img{
	margin:0 30px 30px 0;
	max-width:500px;
}

.blogpost .content .half{
	/*margin-top:20px;*/
}

.blogpost .content .social{
	/*margin-top:20px;*/
/*	margin-bottom:28px;
*/}

.hals .rht {
	display: inline-block !important;
}
.rht .social {
	margin-top: 15px;
}
.half .left {
	margin: 0 !important;
	padding-top: 5px !important;
}

.social img {
	margin:0!important;
	float: none!important;
	width: 30px;
}

.blogpost .content a.comments, .blogpost .content a.views{
	color:#393c3d;
	font-size:14px;
	padding-left:20px;
	padding-top:0;
	background:url(/img/icons/comments.png) left 4px no-repeat transparent;
}

.blogpost .content a.views{
	background:url(/img/icons/views.png) left 2px no-repeat transparent;
	margin-right:20px;
}

.blogpost .content .full-text img[align=left]{
	margin:0 40px 40px 0;
}

.blogpost .content .full-text img[align=right]{
	margin:0 0 40px 40px;
}

.comment{
	position:relative;
	margin-bottom:40px;
	border-top:1px solid #e5e5e5;
	padding-top:20px;
}

.comment.comment-form{
	position:relative;
	border-top:0;
}

.comment .comment-form-overlay{
	background:rgba(0, 0, 0, .2);
	width:500px;
	height:200px;
	position:absolute;
	left:0;
	top:0;
	z-index:100;
	display:none;
}



.comment .comment-form-overlay img{
	margin:70px 230px !important;
}

.comment .comment-form-message-overlay{
	position:absolute;
	background:rgba(0, 0, 0, .4);
	width:712px;
	height:200px;
	position:absolute;
	left:0;
	top:0;
	z-index:100;
	display:none;
	border-radius:5px;
}

.comment-form-message-overlay .innertext{
	margin:30px;
	text-align:center;
}

.comment-form-message-overlay .innertext h3{
	color:#dcd9d5;
	text-align:center;
	margin-bottom:30px;
}

.comment-form-message-overlay .innertext a{
	color:#dcd9d5;
	font-size:18px;
	margin-top:20px;
}

.comment-div{
	width:709px;
}

.comment-textarea{
	border:2px solid #e5e5e5;
	border-radius:3px;
	padding:13px;
	background:#f7f8f9;
	color:#393c3d;
	font-size:16px;
	float:left;
	height:68px;
	width: 619px;
}

.comment .opt table{
	width:100%;
	border:0;
}

.comment .opt table tr td{
	vertical-align:top;
}

.comment .opt table tr td:nth-child(1){
	width:40px;
}

.comment .comment-author a{
	
	margin: 10px 0;
	display:block;
}

.comment .comment-text{
	margin-bottom:20px;
}

.comment img.comment-user-icon{
	width:40px;
	height:40px;
	margin: 0 20px 20px 0 !important;
}

.comment .icon{
	position:absolute;
	left:0;
	top:20px;
}

.comment .comment-content{
	margin-left:60px;
}

.comment-content .btns  a{
	font-size:14px;
	color:#393c3d;
}

/* end blogposts */

/* faq */
.faq-group{
	margin:-30px 0 -30px -30px;
	padding:30px;
	border-right:1px solid #e5e5e5;
	float:left;
	width:200px;
}

.faq-group a{
	display:block;
	font-size:16px;
	padding:11px 0 11px 25px;
	margin-left:-20px;
	background:url(/img/icons/faq.png) left 10px no-repeat transparent;
}

.faq-group a:first-child{
	padding-top:0;
	background-position: left top;
}

.faq-group a:hover, .faq-group a.selected{
	color:#393c3d;
}

.faq-questions{
	margin:-30px -60px -30px -1px;
	padding:0;
	border-left:1px solid #e5e5e5;
	float:left;
	width:740px;
}

.faq-questions h1{
	margin:0;
}

.faq-questions .faq-block{
	padding-left:30px;
	padding:30px;
	border-bottom:1px solid #e5e5e5;
	cursor:pointer;
	background: url(/img/icons/open-faq.png) 690px 35px no-repeat transparent;
}

.faq-questions .faq-block.open{
	background-image:url(/img/icons/close-faq.png);
}

.faq-questions .faq-block.single-faq-block{
	background:none;
	cursor:default;
}

.faq-questions .faq-block.single-faq-block .question{
	display:none;
}

.faq-questions .faq-block.single-faq-block .answer{
	margin-top:0;
	display:block;
	text-align:justify;
}

.faq-questions .faq-block.single-faq-block .rating{
	display:block;
}

.faq-questions .faq-block:first-child{
	cursor:default;
	background:none;
}

.faq-questions .faq-block:last-child{
	border-bottom:0;
}

.faq-block .question a, .faq-block .answer{
	font-size:18px;
}

.faq-block .question{
	border-bottom: 1px solid #DDD;
	font-size: 18px;
	cursor: pointer;
	background: #1a1c1d;
	padding: 10px;
	line-height: 2;
}

.faq-block .answer{
	display:none;
	padding: 0 10px;
	font-size:17px;
	color:#393c3d;
	line-height:20px;
	transition: all .3s ease;
	box-sizing: border-box;
	background: #121518;
	line-height: 2;
	overflow: auto;
}

.faq-block .answer .button{
	display: block;
	margin: 20px auto;
	width: max-content;
}

.question .faq-arrow{
	opacity: .4;
	width: 20px;
	margin-right: 10px;
	transition: all .3s ease;
}

.question.open{
	font-weight: 700;
}

.question.open .faq-arrow{
	transform: rotate(180deg);
}



/* end faq */

/* footer */

.subscribe-footer{
	position:relative;
}

.subscribe-footer input[type=submit].subscribe-button{
	position:absolute;
	right:20px;
	top:5px;
	width:30px;
	height:22px;
	background:url(/img/subscribe.png) left top no-repeat transparent;
	border-radius:0;
	-moz-border-radius:0;
	-webkit-border-radius:0;
	border:0;
}

/* end footer */

/* other stuff */

input[type='text'].subscribe-input{
	width:140px;
	border:0;
	padding:8px 8px 9px 8px;
	font-size:14px;
	box-shadow:none;
}

.blogpost-paging{
	text-align: center;
	margin: 30px 0;
}

.paging{
	display: block;
	margin: 30px auto 0;
	width: max-content;
}

.paging .pages a, .paging .pages span{
	margin:0px 3px;
	font-size:16px;
	font-weight:bold;
}

.paging .pages a{
	border-bottom:0;
}

.paging .pages span.current, .paging .pages a:hover{
	color: #ef7a45;
}

.relative{
	position:relative;
}

.no-margin{
	margin:0 !important;
}

.margin-bottom{
	margin:0 0 15px 0;
}

p.big{
	margin:0 0 20px 0;
}

.full-page-div{
	margin:-30px;
	width:1080px;
}

.padding30{
	padding:30px;
}

table.block-page-4{
	width:1080px;
}


table.block-page-4 tr td{
	width:189px;
	border-right: 1px solid #E5E5E5;
	vertical-align:top;
	padding:30px;
}

table.block-page-4 tr td h2{
	font-size:24px;
	margin-top:0;
}

table.block-page-4 tr td img{
	margin:-30px -30px 30px -31px;
}

/* end other stuff */


/* lightbox */

.lightbox{
	border-radius:7px;
	position:fixed;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);
	background:#1c2024;
	padding:10px;
	z-index:1100;
	display:none;
	border: 1px solid #555;
	-webkit-box-shadow: 0px 0px 53px -9px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 53px -9px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 53px -9px rgba(0,0,0,0.75);
}

.body-overlay{
	background:rgba(0, 0, 0, .5);
	width:100%;
	position:fixed;
	left:0;
	top:0;
	z-index:1000;
	display:none;
}

.body-overlay.overlay-transparent{
	background:rgba(0, 0, 0, 0);
}


.lightbox.alert-lightbox{
	padding-bottom: 10px;
}



.lightbox .lightbox-close{
	width:38px;
	height:38px;
	position:absolute;
	right:0;
	top:0;
	background:url(../img/close.svg) center center no-repeat transparent;
	cursor:pointer;
	opacity: 0.5;
}

.lightbox .lightbox-content{
	width:100%;
	overflow:auto;
	margin-top:45px;
	font-family:Arial, Tahoma;
}

.lightbox .lightbox-content h3{
	margin-top: 0;
	font-weight: 300;
}

.lightbox .lightbox-arrow-left, .lightbox .lightbox-arrow-right{
	cursor:pointer;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    width: 70px;
    height: 50px;
    text-align: center;
    color: #dcd9d5;
	background:#121518;
	padding:20px 0px 0px 0;
	line-height:0;
    text-decoration: none;
    font: 90px/15px Arial, sans-serif;
	opacity:.5;
	border-radius:50px;
	-moz-border-radius:50px;
	-webkit-border-radius:50px;
}

.lightbox .lightbox-arrow-left:hover, .lightbox .lightbox-arrow-right:hover{
	opacity:1;
}

.lightbox .lightbox-arrow-right{
	right:30px;
}	

/* end lightbox */

/*products*/
.special-offer h2{
	padding-left: 10px;
}

.special-offer .product .product-price .price{
	font-size:27px
}

.special-offer .product .product-price .old-price{
	display: block;
	float: none;
	margin: 0;
}

.list-tools{
	border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
    padding: 0 0 10px;
	text-align: center;
	color: #777;
	font-size: 13px;
	min-height: 30px;
}

.list-tools .amount{
	float: left;
	padding-top: 2px;
	color: #777;
	font-size: 13px;
}

.list-tools .pages{
	margin: 0 135px;
}

.list-tools .limiter{
	float: right;
    min-width: 89px;
	color: #777;
	font-size: 13px;
}

.products-order-asc, .products-order-desc{
	cursor: pointer;
	padding: 0 10px;
}

.sorting{
	text-align: right;
	color: #777;
	font-size: 13px;
}

.products{
	width: 100%;
	-js-display: flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

.product{
	color: #282828;
	font-size: 13px;
    font-weight: 300;
	font-family: 'IBM Plex Sans',sans-serif;
	padding: 8px 10px;
	display: inline-block;
	vertical-align: top;
	max-width: 25%;
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
	box-sizing: border-box;
	position: relative;
}

.product:hover{
	background: #121518;
}

.product a{
	font-size: 13px;
	display: block;
	text-decoration:none;
	line-height: 1.4;
	color: #777;
}

.product a:hover .product-title{
	color: #ffc1d6 !important;
}

.product .product-image{
	background: #121518;
	width: 100%;
	height: 227px;
	width: 100%;
	margin-bottom: 7px;
	position: relative;
}

.product-image.add-margin{
	margin-bottom: 85px;
}

.product-image .small-thumb{
	width: 60px;
	height: 60px;
	background:url(/img/no-photo.png) center center no-repeat #121518;
	background-size: contain;
	z-index: 1000;
	cursor: pointer;
	border-radius: 64px;
	opacity: .5;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: transform 0.6s,opacity 0.6s;
	border: 2px solid #e9e9e9;
	margin-bottom: 10px;
}

.product-image .small-thumb.active{
	opacity: 1;
	box-shadow: 0 0 0 2px #6f6f6f;
}

.product .product-image{
	background: url(/img/camera.svg) center center no-repeat transparent;
	background-size: contain;
}

.product .product-image img{
	max-width: 100%;
	max-height: 247px;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.product .product-price{
	text-transform: none;
	padding: 0 5px 5px 5px;
	text-align: center;
}

.product .product-title{
	font-size: 14px;
	text-align: center;
	padding: 5px;
}

.product .product-price .price, .product .product-price .old-price{
	color: #dcd9d5;
    font-weight: 800;
	font-size: 15px;
    line-height: 20px;
	font-family: 'IBM Plex Sans',sans-serif;
	display: inline-block;
	margin: 0 7px;
}

.product .product-price .old-price{
	text-decoration: line-through;
    font-weight: 400;
    line-height: 20px;
	color: #888;
}

.product-data .product-info .product-price .old-price{
	text-decoration: line-through;
	opacity: .6;
	font-weight: 400;
	color: #111;
    font-size: 24px;
    font-weight: 400;
    line-height: 20px;
	margin-right: 15px;
}

.product .subproduct-bullets{
	position: absolute;
	right: 30px;
	top: 0px;
	height: auto;
	padding: 15px 13px;
	background: rgba(255,255,255,.4);
	border-radius: 10px;
}

.subproduct-bullets .subproduct-bullet-holder{
	border: 5px solid transparent;
	margin-bottom: 0px;
	cursor: pointer;
}

.subproduct-bullet-holder .subproduct-bullet{
	width: 14px;
	height: 14px;
	border-radius: 40px;
	overflow: hidden;
	border: 1px solid #adacad;
	box-sizing: border-box;
	transform: rotate(-45deg);
	position: relative;
}

.subproduct-bullet-holder.active .subproduct-bullet, .subproduct-bullet-holder:hover .subproduct-bullet{
	transform: scale(1.13) rotate(-45deg);
	border: 1px solid #dcd9d5;
	box-shadow: 0px 0px 0px 2px #222122;
}

.subproduct-bullet .subproduct-bullet1, .subproduct-bullet .subproduct-bullet2{
	width: 14px;
	height: 7px;
	background: #000;
	position: absolute;
	left: 0;
	top: 0;
	transition: all .3s ease;
}

.subproduct-bullet .subproduct-bullet2{
	top: 6px;
}

.product .product-overlay{
	background: url(/img/loading.svg) center center no-repeat rgba(0,0,0,.3);
	background-size: 32px;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index:100;
	display: none;
}


.per-page-dropdown, .ordering-dropdown{
	padding: 3px;
	width: 75px;
	border-radius: 0;
}

.ordering-dropdown{
	width: 125px;
}

.product-data{
	margin-bottom: 30px;
}

.product-data .product-image{
	height: 487px;
	vertical-align: middle;
	background: url(/img/icon.png) center center no-repeat #121518;
	background-size: contain;
	position: relative;
	display: inline-block;
	width: 510px;
	vertical-align: top;
}

.product-image .thumbs-holder{
	position: absolute;
	top: 33px;
	left: 0;
	width: 84px;
}

.product-data .product-image img{
	width: 100%;
}

.product-data .product-info{
	width: 75%;
	width: calc(100% - 550px);
	margin-left: 20px;
	display: inline-block;
	vertical-align: top;
}

.product-data .product-info h1, .product-data .product-info .pseudo-h1{
	color: #DDD;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
	text-transform: uppercase;
	text-align: left;
	padding: 0;
}

.product-data .product-info h3{
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 7px;
	color: #dcd9d5;
	font-weight: 700;
	font-size: 20px;
}

.product-data .product-info .product-price{
	font-size: 24px;
    font-weight: 800;
    line-height: 30px;
	color: #111;
	font-family: 'IBM Plex Sans',sans-serif;
    white-space: nowrap !important;
	margin-bottom: 30px;
	display: inline-block;
}

.product-data .product-info .product-tax, .product-data .product-info .product-descr{
	color: #777777;
    font-family: 'IBM Plex Sans',sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
}

.tab-contents .product-descr p{
	color: #dcd9d5;
}

.product-data .product-add-to-cart{
    padding: 10px 0;
    width: 100%;
	margin: 30px 0 10px;
}

.product-data .product-add-to-cart.no-margin{
	padding: 0;
}

.grey-block{
	padding: 10px 15px; 
	background-color: #f5f5f5; 
	margin-top: 0px; 
	margin-bottom: 10px;
	line-height: 1.6;
	color: #777;
}

.free-shipping {
	font-size: 13px;
	color: #545454;
	font-weight: 600;
}

.product-info .product-price .currency{
	font-weight: 800;
	margin-top: -5px;
	display: inline-block;
	font-size: 18px;
}

.product-info .product-price .old-price .currency{
	margin-top: 0;
	font-weight: normal;
}

.currency{
	vertical-align: top;
}

.product-data .added-to-cart{
	display: none;
}

.product-data .product-add-to-cart input[type=number]{
	width: 50px;
}

.product-data .product-add-to-cart input[type=button]{
	
	
	background: url(/img/icon-buy.svg) 26px center no-repeat #ff006a !important;
	font-size: 16px !important;
	text-transform: uppercase;
	padding: 2px 0;
	width: 100%;
	border-radius: 7px;
	height: 68px;
	font-weight: 600;
}

.product .special-product-image{
	height: 227px;
}

.product .special-product-image img{
	max-width: 100%;
	height: auto;
}

.product-combinations{
	margin-top: 30px;
}

.quantitiy-available-holder{
	margin-top: 20px;
}

h1.category-name{
	display: block;
}

.category-top-block{
	width: 100%;
	max-width: 540px;
	text-align: center;
	margin: 0 auto;
}

.category-top-block > p{
	font-size: 12px;
	color: #111;
	margin-bottom: 20px;
}

.block{
	padding: 13px 0 0 0;
}

.block h1, .block h2{
	font-size: 26px;
	font-weight: 700;
	color: #dcd9d5;
}

.cols-4{
	display: flex;
	-moz-column-count: 4;
	-webkit-column-count: 4;
	column-count: 4;
	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
}

.cols-4 div{
	display: inline-block;
	vertical-align: top;
	width: 100%;
}

.cols-4 h3{
	font-size: 20px;
	color: #111;
	font-weight: bold;
}

.cols-3{
	-moz-column-count: 3;
	-webkit-column-count: 3;
	column-count: 3;
	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
}

.cols-3 h3{
	font-size: 20px;
	font-weight: bold;
	color: #dcd9d5;
	margin-bottom: 10px;
}

.cols-2{
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
	-moz-column-gap: 15px;
	-webkit-column-gap: 15px;
	column-gap: 15px;
}

.cols-2 > div{
	display: inline-block;
	vertical-align: top;
	width: 100%;
}

.cols-2 img{
	max-width: 100%;
}

.green-back{
	background-color: #01daac;
	padding: 15px 15px 0 15px;
}

.tabs{
	margin-top: 50px;
}

.tabs .tab-buttons{
	border-top: 1px solid #ececec;
}

.tab-buttons .tab{
	padding: 12px 0;
	border-top: 3px solid transparent;
	margin-right: 14px;
	display: inline-block;
	transition: all .3s ease;
	cursor: pointer;
	color: #777;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
}

.tab-buttons .tab.active, .tab-buttons .tab:hover{
	border-top: 3px solid #000;
	color: #dcd9d5;
}

.tab-content{
	display: none;
}

.tab-content.active{
	display: block;
}

.p-review{
	padding: 24px 0;
	border-bottom: 1px dashed #ececec;
	line-height: 1.6;
}

.p-review .p-review-name{
	display: inline-block;
	color: #777;
	font-weight: 700;
}

.p-review .p-review-date{
	display: inline-block;
	color: #777;
}

.p-review .p-review-text{
	display: block;
	font-style: italic;
	color: #777;
}

.p-review .review-rating{
	margin: 10px 0;
}

.p-review-image{
	margin-top: 24px;
	color: #777;
	font-style: italic;
}

.p-review-image img{
	display: block;
	max-width: 200px;
	max-height: 200px;
	margin-top: 5px;
}

/*end products*/


/*home page css*/

.home-blocks{
	text-align: center;
}

.home-block{
	width: 25%;
	margin-right: 12%;
}

.home-block:last-child{
	margin-right: 0;
}

.home-block img{
	width: 100%;
	height: auto;
}

.home-block .home-block-title{
	font-size: 25px;
	padding: 30px 0;
	background: #4bb2e1;
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(243,220,114,1)), color-stop(100%, rgba(237,192,106,1)));
	background: -webkit-linear-gradient(90deg, rgba(243,220,114,1) 0%, rgba(237,192,106,1) 100%);
	background: -moz-linear-gradient(90deg, rgba(243,220,114,1) 0%, rgba(237,192,106,1) 100%);
	background: -ms-linear-gradient(90deg, rgba(243,220,114,1) 0%, rgba(237,192,106,1) 100%);
	background: -o-linear-gradient(90deg, rgba(243,220,114,1) 0%, rgba(237,192,106,1) 100%);
	background: linear-gradient(180deg, rgba(243,220,114,1) 0%, rgba(237,192,106,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3dc72', endColorstr='#edc06a', GradientType=0 );
}

/*end home page css */

/*referrers*/
.login-form{
	margin: 30px auto;
	max-width: 400px;
	text-align: center;
}

.login-form .button{
	margin: 0 auto !important;
}

.referrer-form-holder{
	width: 100%;
	margin-bottom: 30px;
}

.referrer-form-holder tr td{
	vertical-align: top;
}

.referrer-form{
	width: 100%;
}

.referrer-form td.label{
	width: 150px;
}

.referrer-form td.category-select{
	width: 200px;
}

.referrer-form td{
	padding: 10px;
}

.referrer-form select{
	max-width: 150px;
	display: inline-block;
}

.referrer-form select#category_id{
	max-width: 250px;
	height: 158px;
	background-image: none;
}

.referrer-form input[type=text]{
	max-width: 319px;
}

.referrer-form select[name=fromDay], .referrer-form select[name=toDay]{
	width: 70px;
}

.referrer-form select[name=fromYear], .referrer-form select[name=toYear]{
	width: 90px;
}
/*end referrers*/

.combination-title{
	width: 200px;
	padding: 10px;
	display: inline-block;
}

.combination-values{
	display: inline-block;
}

.combination-values select{
	max-width: 200px;
	margin-bottom: 20px;
}

.need-more{
	display: none;
}

.need-more-form table{
	margin: auto;
}

.need-more-form table tr td{
	padding: 10px;
	vertical-align: middle;
}

.need-more-form input[type="text"]{
	width: 80%;
	width: calc(100% - 32px);
}

.need-more-form .message{
	padding: 5px 0;
	margin: 5px 0;
	display: none;
}

.need-more-form .button{
	margin: auto;
	width: 150px;
	display: block;
}

/*input[type='button']:disabled, input[type='submit']:disabled, .button:disabled{
	background: url(/img/button-loading.svg) center center no-repeat #ff006a;
	background-size: cover;
}*/

.button.loading{
	background: url(/img/button-loading.svg) center center no-repeat #ff006a;
	background-size: cover;
}

.header-confirm{
	font-size: 42px;
	font-weight: 400;
	color: #65b749;
	text-align: center;
}

.binga-receipt{
	border: 7px solid #f5f5f5;
	border-radius: 4px;
	width: 100%;
	margin: 30px auto;
	max-width: 420px;
	padding: 35px;
	box-sizing: border-box;
}

.binga-logos-table{
	width: 100%;
	margin-bottom: 20px;
}

.binga-logos-table tr td{
	vertical-align: middle;
}

.binga-woopcase-logo{
	text-align: left;
}

.binga-wafacash-logo{
	text-align: right;
}

.binga-receipt ol li{
	margin-bottom: 10px;
}

.binga-receipt .binga-woopcase-logo img, .binga-receipt .binga-wafacash-logo img{
	width: 90%;
	max-width: 140px;
}

.binga-receipt, .binga-receipt a, .binga-receipt ul li, .binga-receipt ol li, .binga-receipt strong, .binga-receipt h4{
	font-size: 14px;
}

.binga-receipt ul{
	margin-left: 0;
}

.binga-receipt ul li{
	list-style: none;
}

.binga-receipt h2, .binga-receipt h3{
	font-size: 30px;
	color: #1b1b1b;
	margin: -10px 0;
}

#bingaBarCode{
	overflow: hidden !important;
	height: 136px;
	width: 100% !important;
	margin: 20px 0;
}

#bingaBarCode img{
	width: 100%;
}

.binga-receipt h4{
	margin: 10px 0;
	font-weight: bold;
}

.binga-receipt hr{
	width: 80%;
	margin: 29px auto;
	color: #e8e8e8;
	border: 1px solid #e8e8e8;
}

.tag{
	border-radius: 10px;
	padding: 5px 10px;
	background: #edeff0;
	margin: 10px 10px 0 0;
	display: inline-block;
}

.tag:hover{
	background: #121518;
	text-decoration: underline;
}

.subscribe-footer{
	padding:40px 0;
	margin-top:30px;
	background:url(/img/bg-slider.png) center top repeat transparent;
}

.subscribe-footer .content-container{
	font-size:24px;
	color:#735741;
	font-weight:bold;
}

.subscribe-footer .content-container form{
	margin-top:-5px;
}

.footer{
	background: #121518;
	padding-bottom: 0px;
	margin-top: 30px;
}

.footer .footer-holder{
	margin:0 auto;
	padding-top: 30px;
	border-top: 1px solid rgba(0,0,0,.05);
}


.content-container .footer-menu-list{
	width: 100%;
	max-width: 100vw;
	-ms-display: flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	box-sizing: border-box;
	margin-left: 0;
}



.footer-menu-list ul{
	margin-left: 0;
}

.footer-menu-list li{
	list-style: none;
}

.footer-menu-list > .level-1{
	max-width: 25%;
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
	position: relative;
	margin: 0;
	padding: 0 15px 30px;
	width: 100%;
	box-sizing: border-box;
}

.footer-menu-list > .level-1 > .menu-item, .footer-menu-list > .level-1 > .menu-item *{
	
	font-size: 16px;
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: .05em;
	color: #777;
}

.footer-menu-list > .level-1 > .menu-item img{
	max-width: 100%;
	margin: 0 auto 30px;
	display: block;
	border: 1px solid #d9ce2c;
}

.footer-menu-list > .level-1.last > .menu-item:after{
	display: none;
}

.footer-menu-list > .level-1 > .menu-item:after{
	content: "";
	display: block;
	height: 3px;
	display: block;
	background-color: rgba(0,0,0,.1);
	margin: 11px 0 16px;
	width: 100%;
	max-width: 30px;
}

.footer-menu-list > .level-1 > ul > .level-2 > .menu-item{
	display: block;
	line-height: 1.6;
	margin-bottom: 10px;
	border-bottom: 1px solid #ececec;
}

.footer-menu-list > .level-1 > ul > .level-2 > span.menu-item, .footer-menu-list > .level-1 > ul > .level-2 > span.menu-item *{
	color: #777;
}

.footer-menu-list > .level-1 > ul > .level-2.last > .menu-item{
	border-bottom: 0;
}

.underworld{
	margin:0px auto;
	padding:25px 0 40px;
	background: #121518;
}

.underworld .underworld-left{
	float: left;
}

.underworld .underworld-left, .underworld .underworld-left strong, .underworld .underworld-left a{
	color: rgba(255,255,255,.5);
	font-size: 14px;
}

.underworld .underworld-right{
	float: right;
	margin-top: -9px;
}

.payment-icon{
	display: inline-block;
	opacity: .6;
	transition: opacity .3s;
	border-radius: 5px;
	background-color: rgba(0,0,0,.1);
	padding-bottom: 0;
	padding: 5px;
	margin: 3px 3px 0;	
	line-height: 1;
}

.payment-icon img{
	height: 20px;
	vertical-align: middle;
}

.underworld .content-container{
	font-size: 12px;
	color: #777777;
}

.footer .list-icon {
    overflow: hidden;
    padding: 10px 0 0;
    position: relative;
}

.footer .list-icon li{
	display: inline-block;
}

.social-links{
	text-align: center;
	margin: 30px 0 10px 0;
}

.fa{
	width: 33px;
	height: 33px;
	background: url(/img/social.svg) left center no-repeat transparent;
	background-size: 104px 33px;
	margin-top: 0px;
	border-bottom: none;
	display: inline-block;
	text-indent: -10000px;
}

.fa.fa-instagram{
	background-position: center center;
}

.fa.fa-twitter{
	background-position: right center;
}

.footer .footer-col-content{
	min-width: 300px;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 30px;
}

.footer .footer-col-content p{
	color: #777777;
    font-family: "Tinos",serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
}

.footer .footer-col-content .email a{
    display: block;
    font-size: 26px !important;
    font-weight: 300;
    line-height: 26px;
    margin: 15px 0;
}

.footer .footer-col-content .tel .phone-icon {
    background: #f2f2f2 none repeat scroll 0 0;
    border-radius: 50px;
    display: inline-block;
    border: 10px solid #f2f2f2;
	margin-bottom: -10px;
}

.footer .footer-col-content .tel {
    color: #ef7a45;
    display: block;
    font-size: 26px !important;
    font-weight: 300;
    line-height: 26px;
    margin: 15px 0;
}

.footer .login-form{
	background: #121518;
	padding: 20px;
	-webkit-box-shadow: 0px 0px 14px 5px rgba(0, 0, 0, 0.12);
	-moz-box-shadow: 0px 0px 14px 5px rgba(0, 0, 0, 0.12);
	-ms-box-shadow: 0px 0px 14px 5px rgba(0, 0, 0, 0.12);
	-o-box-shadow: 0px 0px 14px 5px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 0px 14px 5px rgba(0, 0, 0, 0.12);
}

/* Finish */

/*flickity */

/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.gallery-cell{
	width: 100%;
}

.flickity-enabled {
	position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
	overflow: hidden;
	position: relative;
	height: 100%;
}

.flickity-slider {
	position: absolute;
	width: 100%;
	height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
	position: absolute;
	background: hsla(0, 0%, 100%, 0.75);
	border: none;
	color: #DDD;
}

.flickity-button:hover {
	background: #121518;
	cursor: pointer;
}

.flickity-button:focus {
	outline: none;
	box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
	opacity: 0.6;
}

.flickity-button:disabled {
	opacity: 0.3;
	cursor: auto;
	/* prevent disabled button from capturing pointer up event. #716 */
	pointer-events: none;
}

.flickity-button-icon {
	fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
	bottom: 6%;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	/* vertically center */
	transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 50px; }
.flickity-prev-next-button.next { right: 50px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
	left: auto;
	right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
	right: auto;
	left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
	position: absolute;
	left: 20%;
	top: 20%;
	width: 60%;
	height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
	position: absolute;
	width: 100%;
	bottom: -25px;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
	line-height: 1;
	display: none;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 8px;
	background: #DDD;
	border-radius: 50%;
	opacity: 0.25;
	cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
	opacity: 1;
}

.is-hiding-nav-ui .flickity-page-dots{
	display: none;
}

/* end flickity*/

img.alert{
	display: block;
	background: #ff9b00;
	border-radius: 50px;
	padding: 10px;
	width: 32px;
	height: 32px;
	position: absolute;
	left: 50%;
	top: -26px;
	transform: translateX(-50%);
	border: 3px solid #dcd9d5;
}



.button.alert-button{
	display: block;
	margin: 10px auto auto;
	width: 100%;
	background: #000 !important;
	font-weight: 800;
	color: #ff9b00;
}

.button.alert-button.button-yes, .button.alert-button.button-no{
	width: 48%;
	display: inline-block;
}

.button.alert-button.button-no{
	float: right;
	background-color: #333 !important;
}

.nowrap{
	white-space: nowrap;
}

@media screen and (max-width: 1150px) {
	.suggested-product-title{
		width: calc(100% - 226px);
	}
}

@media screen and (max-width: 1100px) {
	.table-holder{
		width: calc(100% - 20px);
	}
}

@media screen and (max-width: 1080px) {
	
	.displaymobile{
		display:block;
	}
	
	.mobile-search-form{
		padding: 20px;
		position: relative;
	}
	
	.mobile-search-form input[name=q]{
		border: 1px solid #494949;
		background: #373737;
		font-size: 13px;
		width: 100% !important;
	}
	
	.mobile-search-form .search-button{
		position: absolute;
		right: 24px;
		top: 19px;
		background: url(/img/lens-white.svg) center center no-repeat transparent;
		background-size: 18px;
		height: 33px;
		
	}
	
	.submenu{
		display: block;
		overflow: hidden;
	}
	
	.header-container .main-menu{
		position: absolute;
		left: -17px;
		top: 85px;
		display: none;
	}
	
	.header-container .main-menu a, .header-container .main-menu .menu-item.top-level{
		text-align: left;
	}
	

	.header .logo{
		display:block;
		margin:0 auto;
	}
		
	.header-container .main-menu ul li{
		display: block;
		float: none;
		clear: both;
		border-bottom: 1px solid #DDD;
	}
	
	.header-container .main-menu ul li .menu-l1{
		position: relative;
		top: 0;
		padding: 0 30px;
	}
	
	.mobile-menu-opener{
		position: absolute;
		right: 0;
		top: 0;
		display: block;
		width: 50px;
		height: 56px;
		cursor: pointer;
		background: url(/img/menu-arrow.svg) center center no-repeat transparent;
		background-size: 18px;
	}
	
	.header-container .main-menu-container{
		background-color: #000;
		width: max-content;
		margin: 0;
		width: 260px;
		height: 100vh;
		overflow-y: auto;
		overflow-x: hidden;
	}
	
	.header-container .main-menu-container *{
		color: #cdcdcd !important;
	}

	.header-container .main-menu ol, .header-container .main-menu ul{
		float: none;
	}
	
	.header-container .main-menu .menu-l1 ul li{
		width: 218px;
		vertical-align: top;
		border-bottom: 0;
	}
	
	.header-container .main-menu .menu-l1 ul li a{
		margin-top: 0;
	}
	
	
	.header-container .main-menu a.with-submenu, .header-container .main-menu .menu-item.with-submenu{
		text-align: left;
		background: none;
	}
	
	.header-container .main-menu .menu-item, .header-container .main-menu .menu-l1 ul li a{
		padding: 10px 20px;
	}

	.header-container .main-menu ul li:hover .menu-l1{
		display: none;
	}
	
	.header-container .main-menu .menu-l1 ul li:hover .menu-l2{
		display: none;
	}
	
	.header-container .main-menu .menu-l1 ul li .menu-l2 ul li:hover a{
		background: transparent;
	}
	
	.header .left-top-menu{
		position: absolute;    
		right: 80px;
		top: 106px;
	}
	
	.header-container .main-menu .menu-l1 ul li .menu-l2{
		position: relative;
		left: 0;
		top: 0;
	}
	
	.header-container .main-menu .menu-l1 ul li .menu-l2 ul{
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
		-moz-column-gap: 15px;
		-webkit-column-gap: 15px;
		column-gap: 15px;
	}
	
	.header-container .main-menu .menu-l1 ul li .menu-l2 ul li a{
		font-size: 15px;
	}
	
	.header-container .main-menu .menu-l1 ul li .menu-l2 ul li .menu-l3, .header-container .main-menu .menu-l1 ul li .menu-l2 ul li .menu-l3 ul li .menu-l4{
		position: relative;
		left: 0;
		box-shadow: none;
	}
	
	.header-container .main-menu ul li .menu-l1{
		background: transparent;
		border: 0;
		padding: 0;
	}
	
	.header-container .main-menu .menu-l1 ul li{
		border-bottom-color: #DDD;
	}
	
	.header-container .main-menu .menu-l1 ul li .menu-l2{
		background: #000;
		border: 0;
	}
	
	.header-container .main-menu ul li .menu-l1::after{
		display: none;
	}
	
	.top-search{
		display: none;
	}
	
	.header .cart{
		margin-right: 20px;
	}
	
	.header .lang-select{
		left: -80px;
	}
	
	.header-container .main-menu{
		position: fixed;
		left: 0;
		top: 0;
		margin: 0;
		z-index: 500;
		width: 100vw;
		height: 100vh;
		overflow: auto;
		max-width: 100vw;
		background: rgba(0,0,0,.6);
	}
	
	ul.row-cat.grid-clol-6 li.col-item8{
		width: calc(25% - 20px);
		margin-bottom: 15px;
	}
	
	.special-table-image-container{
		height: inherit;
	}
	
	.special-table tr td{
		display: block;
		text-align: center;
	}
	
	.profile-right, .userinfo{
		float: none;
		margin: 0 auto 30px;
		padding-right: 0;
		border-right-width: 0;
		text-align: center;
		width: 100%;
		max-width: 438px;
	}
	
	.profile-right .order{
		text-align: left;
	}
	
	.city-add{
		width: 100%;
	}

	.blogpost .content .full-content-left{
		/*width: 100%;*/
		margin:0 40px 40px 0;
		/*padding: 0px 200px;*/
	}
	
	select{
		width: 100%;
		max-width: 100%;
	}
	
	.btn.very-small.lnk_add_city, .btn.very-small#lnk_choose_cityshipping_country{
		margin-right: 0 !important;
	}
	
	#shippingAddressForm .left.btn.grey{
		display: none;
	}
	
	#shippingAddressForm #submitOrder.btn.right{
		width: 30%;
		float: none !important;
		margin: 30px auto 0 auto;
	}
	
	#discountCode{
		float: left;
	}
	
	.order-block{
		text-align: center;
	}
	
	.profile-right{
		padding-left: 0;
		border: 0;
	}
	
	.content-container{
		width:calc(100% - 60px);
	}
	
	.product .subproduct-bullets{
		right: 10px;
	}
}

@media screen and (max-width: 999px) {
	
	.header{
		padding-bottom:20px;
		position:relative;
		height:67px;
		margin:0;
	}
	
	.header .left-top-menu{
		position:absolute;
		right:10px;
		top:10px;
		float:none;
	}
	
	
	.header .right-top-menu{
		margin-top: -10px;
		bottom: -33px;
	}
	
	.header .left-top-menu{
		position: absolute;    
		right: 80px;
		top: 150px;
	}
	
	.header .content-container {
		height: 145px;
	}
	
	.header-container{
		min-height: 145px;
	}
	
	.header .top-search{
		width: calc(100% - 400px);
		max-width: 410px;
		margin-top: -25px;
		right: auto;
		left: 160px;
		bottom: auto;
		top: 42px;
	}
	
	.header .top-search input[type="text"]{
		width: calc(100% - 80px);
	}
	
	.header .right-top-menu{
		position:absolute;
		top:30px;
		right:10px;
	}
	
	.splash, .splash .splash-back, .splash .splash-content{
		height: calc(100vh - 190px);
	}
	
	.displaymobile{
		display:block;
	}
	
	.splash{
		width:100%;
	}
	
	.splash .splash-content{
		width:100%;
	}
	
	.product{
		width: calc(24% - 20px);
	}
	
	.product .product-image, .product .special-product-image{
		height: 180px;
	}
	
	

	.home-blocks.home-blocks-4{
		margin: 43px 0 0 0;
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
		-moz-column-gap: 23px;
		-webkit-column-gap: 23px;
		column-gap: 23px;
	}
	
	.home-blocks.home-blocks-4 .home-block{
		margin-bottom: 23px;
	}
	
	.full-text {
		padding: 0px;
	}
	
	.header-container .main-menu ul li.par{
		padding-left: 22px;
	}
	
	.content-container.products-container{
		margin: 0;
		width: 100%;
	}

}

@media screen and (max-width: 970px) {
	.cart-content .table-holder{
		width: 100%;
	}
	
	.cart-content .table-holder .holder-left, .cart-content .table-holder .holder-right{
		display: block;
		padding-left: 0;
		padding-right: 0;
		border: 0;
	}
	
	.cart-content .table-holder .holder-left .white-button{
		display: none;
	}
}

@media screen and (max-width: 940px) {
	.profile-right, .userinfo {
		display: block;
		float: none;
		margin: 0 auto;
		border-right: 0 solid transparent;
	}

	.blogpost .content .full-content-left{
		/*width: 100%;*/
		margin:0 40px 40px 0;
		padding: 0;
	}
	
	.referrer-form-holder > tbody > tr > td{
		display: block;
	}

	.referrer-form td.label{
		width: 150px !important;
	}
	
	

	.referrer-form td.category-select{
		width: auto;
	}

}

@media screen and (max-width: 900px) {
	.splash, .splash .splash-back, .splash .splash-content{
		height: 405px;
	}
	
	.splash .splash-content .splash-content-container{
		text-align:center;
	}
	
	.splash .splash-main-title{
		text-align: center;
		background: rgba(0, 0, 0, 0.5);
	}
	
	.splash .splash-title{
		font-size: 40px;
		margin-bottom: 20px;
		text-align: center;
		background: rgba(0, 0, 0, 0.5);
	}
	
	.splash .splash-title2{
		font-size: 30px;
		text-align: center;
		background: rgba(0, 0, 0, 0.5);
	}
	
	.splash .splash-title3{
		font-size: 20px;
		text-align: center;
		background: rgba(0, 0, 0, 0.5);
	}
	
	.block.auth-block.left, .block.auth-block.right{
		float: none !important;
		display: block;
		margin: 0 auto;
	}
	
	.service-bottom-line{
		text-align: center;
	}
	
	.profile-title{
		padding-top: 0;
	}
	
	.profile-content .col30, .profile-content .col70{
		margin-bottom: 30px;
	}
	
	.service-bottom-line input{
		float: none !important;
		display: block;
		margin: 10px auto !important;
	}
	
	.row-cat .content-center{
		top: 10%;
	}
	.blogpost {
		padding: 0px;
	}
	
	.footer{
		padding-bottom: 0;
	}
	
	.product-data .product-image{
		display: block;
		margin: 0 auto 40px;
	}
	
	.product-data .product-info{
		max-width: 540px;
		margin: 0 auto;
		width: 100%;
		box-sizing: border-box;
		display: block;
	}
	

	.product-data .product-info.product-info-mobile{
		display: block;
		margin-top: 0;
	}
	
	.product-data .product-info .pseudo-h1, .product-data .product-info .product-price .old-price, .product-data .product-info .product-price{
		font-size: 20px;
	}
	
	.product-data .product-info .info-big{
		display: none;
	}
	
	.product-data .review-rating-holder{
		margin-top: 3px;
	}
	
	.product-data .review-rating{
		margin: 4px 0 7px 0;
	}
	
	

	.product-info .product-price .currency{
		margin-top: 1px;
		color: #dcd9d5;
	}
	
	.flickity-prev-next-button.previous{
		left: 0;
	}
	
	.flickity-prev-next-button.next{
		right: 0;
	}
	
	.review-rating{
		margin-left: 0;
	}
	
	.thumbs-holder{
		display: none;
	}
	
	.flickity-prev-next-button{
		bottom: 42%;
	}
	
	.general-table tr th{
		display: none;
	}
	
	.traders-table tr td:first-child{
		display: block;
	}
	
	.traders-table tr, .trader-latest-operations-table tr, .trader-currencies-table tr, .trader-table tr{
		display: block;
		position: relative;
	}
	
	.trader-table tr{
		border-bottom: 1px solid #DDD;
		padding-bottom: 20px;
	}
	
	.traders-table tr td:nth-child(2),
	.traders-table tr td:nth-child(3),
	.traders-table tr td:nth-child(4),
	.traders-table tr td:nth-child(5)
	{
		display: inline-block;
		vertical-align: top;
		width: calc(25% - 5px);
		box-sizing: border-box;
		text-align: center;
	}
	
	
	.traders-table tr td:nth-child(6){
		display: block;
		position: absolute;
		right: 0;
		top: 0;
	}
	
	.traders-table .mobile-heading, .trader-latest-operations-table .mobile-heading, .trader-currencies-table .mobile-heading, .trader-table .mobile-heading{
		display: block;

	}
	
	.trader-latest-operations-table tr td:first-child, .trader-currencies-table tr td:first-child, .trader-table tr td:first-child{
		display: block;
		text-align: left;
		margin-bottom: 20px;
		margin-top: 20px;
	}
	
	.trader-latest-operations-table tr td, .trader-currencies-table tr td, .trader-table tr td{
		display: block;
		width: 100%;
		box-sizing: border-box;
		text-align: right;
		clear: both;
		padding-bottom: 0;
	}
	
	.trader-latest-operations-table .mobile-heading, .trader-currencies-table .mobile-heading, .trader-table .mobile-heading{
		background: transparent;
		float: left;
		min-height: 0;
		padding-top: 3px;
		padding-bottom: 0;
	}
	
	.trader-currencies-table .mobile-heading br{
		display: none;
	}
	
	.trader-latest-operations-table tr td:nth-child(7), .trader-currencies-table tr td:nth-child(7), .trader-table tr td:nth-child(5){
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		width: max-content;
		padding-top: 0;
	}
	
	.trader-table tr td:nth-child(6), .trader-table tr td:nth-child(7){
		display: inline-block;
		width: max-content;
		vertical-align: top;
	}
	
	.trader-table tr td:nth-child(7){
		float: right;
	}
}

@media screen and (max-width: 850px) {
	
	.product-data .product-info{
		margin-top: 0px;
	}
	
	.row-title{
		line-height: 30px;
	}
	
	.fa{
		display: inline-block;
	}
	
	.product-main .product-thumbnails{
		display: none;
	}

	.mobile-product-title, .mobile-product-price, .location-holder.location-holder-mobile, .location-holder.location-holder-big, .your-city-link.your-city-link-mobile{
		display: block;
	}
	
	.location-holder:not(.location-holder-mobile):not(.location-holder-big), .your-city-link:not(.your-city-link-mobile){
		display: none;
	}
	
	.mobile-product-title{
		margin-bottom: 30px;
	}
	
	.mobile-product-price{
		margin-top: -30px;
	}
	
	.product-info .product-title{
		display: none;
	}
	
	.next-prev-thumbs{
		display: none;
	}
	
	.product-short-description{
		display: none;
	}
	
	.flickity-page-dots{
		display: block;
	}
	
	#product-sidebar .flickity-button.flickity-prev-next-button{
		display: none !important;
	}
	
	.wccpf_fields_table tr td, .legend{
		border-bottom: 0;
	}
	
	.product-info .price-wrapper{
		display: none;
	}
	
	.custom-map-holder .zoomin{
		top: 24px;
	}
	
	.custom-map-holder .zoomout{
		top: 68px;
	}
	
	.reviews{
		
		-moz-column-count: 3;
		-webkit-column-count: 3;
		column-count: 3;
	}
	
	.product{
		max-width: 33.3%;
		-ms-flex-preferred-size: 33.3%;
		flex-basis: 33.3%;
	}
}

@media screen and (max-width: 810px) {
	ul.row-cat.grid-clol-6 li.col-item3{
		margin-right: 10px;
	}
	
	.padding25{
		padding-left: 0;
		padding-right: 0;
	}
	
	.footer-menu-list > .level-1{
		max-width: 50%;
		flex-basis: 50%;
	}
	
	.product{
		width: calc(33% - 23px);
	}
	
	.product .product-image, .product .special-product-image{
		height: 200px;
	}
	
	.underworld .underworld-right, .underworld .underworld-left{
		display: block;
		float: none;
		width: max-content;
		margin: 0 auto;
		max-width: 100%;
		box-sizing: border-box;
		text-align: center;
	}
	
	.underworld .underworld-right{
		margin-top: 0;
	}
}

@media screen and (max-width: 790px) {
	.title-row{
		font-size: 60px;
		line-height: 60px;
		padding-top: 20px;
	}
	
	.desc-row{
		font-size: 40px;
		line-height: 40px;
	}
	
	.box-2, .box-3{
		height: 250px;
	}
	
	.row-title{
		font-size: 20px;
	}
	
	.home-blocks {
		margin: 43px 0 43px 0;
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
		-moz-column-gap: 23px;
		-webkit-column-gap: 23px;
		column-gap: 23px;
	}
	
	.home-blocks .home-block{
		margin-bottom: 23px;
		margin-right: 0;
	}
	
	.product .subproduct-bullets{
		right: 10px;
	}
	
	.subproduct-bullets .subproduct-bullet{
		width: 12px;
		height: 12px;
	}
	
	.header-confirm{
		font-size: 33px;
	}
}

@media screen and (max-width: 690px) {
	ul.row-cat.grid-clol-6 li.col-item3{
		display: block;
		height: 250px;
		margin: 10px auto;
		max-width: 600px;
		overflow: hidden;
		width: calc(100% - 20px);
	}
	
	.product{
		width: calc(32% - 20px);
	}
	
	.product .product-image{
		height: 200px;
	}
	
	.product-data{
		margin-left: 0;
	}
	
	.product-data .product-image{
		width: 100%;
		max-width: 510px;
		margin-bottom: 30px;
		height: auto;
		min-height: 380px;
	}
	
	
	
	.product .subproduct-bullets{
		top: 8px;
	}
	
	.content-container{
		width: calc(100% - 40px);
	}

}

@media screen and (max-width: 670px) {
	
	.splash .splash-title{
		font-size: 21px;
	}
	
	.splash .splash-main-title{
		font-size: 32px;
	}
	
	.splash .splash-title2{
		font-size: 23px;
	}
	
	.splash .splash-title3{
		font-size: 14px;
		line-height: 1.2;
	}
	
	.splash .splash-button{
		width: 166px;
		height: 35px;
		padding-top: 12px;
	}
	
	
	.splash, .splash .splash-back, .splash .splash-content{
		height: 360px;
	}
	
	
	.flickity-page-dots {
		display: block;
	}
	
	.home-icons .home-icon img{
		width: 70%;
		height: auto;
	}
	
	.cart-table.big-cart-table tr td:nth-child(3), .wishlist-table.big-wishlist-table tr td:nth-child(3){
		min-width: 0;
	}
	
	.home-how-to .dots-1, .home-how-to .dots-2{
		display: none;
	}
	
	.home-how-to .main-back, .home-how-to .back-2{
		background-position: right top;
	}
	
	.home-how-to .what-is{
		font-size: 25px;
	}
}

@media screen and (max-width: 650px) {
	
	.content-container{
		width: calc(100% - 40px);
	}
	
	.header .right-top-menu{
		right: -6px;
	}
	
	.chart-button{
		float: none;
		display: block;
		margin: 20px auto;
		width: max-content;
	}
}

@media screen and (max-width: 600px) {
	
	
	.list-tools .amount, .list-tools .limiter{
		display: none;
	}
	
	.header .cart-content{
		width: 100%;
	}
	
	.main .block{
		padding: 0 0 30px 0;
	}
	
	.product-thumbnails{
		width: 90px !important;
	}
	
	.cart-table.big-cart-table .header-row{
		display: none;
	}
	
	.cart-table.big-cart-table .item-price-td{
		display: none;
	}
	
	.message.error p, .message.success p{
		font-size: 19px;
	}
	
	.mobile-menu{
		left: 0;
	}
}


@media screen and (max-width: 560px) {
	.header{
		height: 110px;
	}
	
	.header .logo{
		margin: -10px auto 0;
		text-align: center;
	}
	
	.header .left-top-menu{
		top: 190px;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 160px;
	}
	
	.header .top-search{
		position: absolute;
		top: 220px;
		left: 0;
		right: 0;
		margin: auto;
		width: 100%;
	}
	
	.splash, .splash .splash-back, .splash .splash-content{
		height: calc(100vh - 300px);
	}
	.full-text {
		padding: 0px;
	}
	
	.footer .footer-col-content{
		min-width: 100px;
	}
	
	.header .currency-select{
		right: 2px;
		top: 74px;
	}
	
	.header .cart{
		position: absolute;
		right: 4px;
		
	}
	
	.home-icons {
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
		-moz-column-gap: 15px;
		-webkit-column-gap: 15px;
		column-gap: 15px;
	}
	
	
	
	.home-icons .home-icon{
		margin-bottom: 30px;
	}

	.product{
		width: calc(50% - 25px);
	}
	
	.product .product-image img{
		max-height: 160px;
	}
	
	.reviews{
		
		-moz-column-count: 2;
		-webkit-column-count: 2;
		column-count: 2;
	}
	
	.photo-customizer.fixed, .sticker-customizer.fixed{
		max-width: calc(100% - 40px);
	}
	
	h1, h2{
		font-size: 21px;
	}
}

@media screen and (max-width: 550px) {
	.wp-post-image.hide-for-small{
		display: block !important;
	}
	
	.sp-lightbox{
		max-height: 95%;
	}
	
	.sp-lightbox .sp-image-holder{
		display: block;
		width: 100%;
		height: 400px;
	}
	
	.sp-lightbox .sp-image{
		height: 80%;
	}
	
	
	.sp-lightbox .sp-data{
		width: 100%;
	}
	
	.sp-lightbox .sp-thumbs{
		max-width: 240px;
		margin: 20px auto 0 auto;
		height: 20%;
	}
	
	.sp-lightbox .sp-price{
		position: absolute;
		top: 6px;
		left: 6px;
		background:	#dcd9d5;
		width: auto !important;
		border-radius: 3px;
		padding: 0 10px;
		font-size: 20px;
		font-weight: 600;
	}
	
	.sp-lightbox .sp-close{
		width: 90px;
		border-radius: 3px;
		padding: 7px;
		height: 33px;
		top: 16px;
		right: 16px;
	}
	
	.big-heading{
		font-size: 19px;
	}
	
	.header .cart-content {
		width: 100vw;
		box-sizing: border-box;
		right: -20px;
	}
	
		
	.home-blocks.home-blocks-4 {
		margin: 43px 0 0 0;
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
		-moz-column-gap: 23px;
		-webkit-column-gap: 23px;
		column-gap: 23px;
	}
	
	
	
	.product{
		max-width: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
	}
	
	.covid-message p{
		width: 100%
	}
	
	.cols-2, .cols-3, .cols-3, .cols-4{
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
		display: block;
	}
	
	.cols-3 > div, .cols-3 > div, .cols-4 > div{
		margin-bottom: 50px;
	}
	
	.cols-3 h3, .cols-4 h3{
		font-size: 15.5px;
	}
	
	.tracking-table tr th{
		font-size:13px;
	}

	.tracking-table{
		width: 100%;
	}

	.tracking-table tr td{
		font-size: 13px;
		padding: 5px 0;
		border-bottom: 1px solid #EEE;
	}

	.tracking-table tr th:nth-child(2), .tracking-table tr td:nth-child(2){
		text-align: right;
	}

	.tracking-table tr td:nth-child(2) strong{
		font-size: 13.5px;
	}

	.tracking-table tr td:first-child strong{
		color: #777;
		font-size: 13px;
	}

	.tracking-table tr td:nth-child(2) span{
		font-size: 10.5px;
	}	
	
	.product .subproduct-bullets{
		right: 20px;
		top: 20px;
	}
	
	.header-confirm{
		font-size: 26px;
	}
	
	.referrer-form tr td{
		display: block;
	}
	
	.traders-table .mobile-heading{
		height: 63px;
	}
}



@media screen and (max-width: 480px) {
	.profile-right, .userinfo {
		width: 100%;
		padding: 0;
	}
	
	.profile-right .row, .userinfo .row{
		text-align: center;
	}
	
	select{
		width: 100%;
	}
	
	.userinfo .row label, .profile-right .row label{
		float: left;
		margin-top: 0;
	}
	
	.userinfo .row .checkbox{
		clear: left;
	}

	
	.auth-block{
		width: 100%;
	}
	
	#btn_submit_reg{
		margin-top: 30px;
	}
	
	#reg_fname{
		width: 100% !important;
	}
	
	#reg_lname{
		float: none !important;
		margin-top: 10px;
		width: 100% !important;
	}
	
	.home-blocks-pink-columns {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
		-moz-column-gap: 15px;
		-webkit-column-gap: 15px;
		column-gap: 15px;
	}
	
	.home-block-pink{
		margin-bottom: 37px;
		font-size: 16px;
	}
	
	.footer-menu-list > .level-1{
		max-width: 100%;
		flex-basis: 100%;
	}
	
	.country-lang-select p{
		display: block;
	}
	
	.country-lang-select p:first-child{
		margin-bottom: 15px;
	}
	
	.grey-form label{
		text-align: center;
	}
	
	.review-file-cancel, .grey-form .review-file-placeholder{
		float: none;
		margin: 15px auto;
	}
	
	.grey-form .review-file-placeholder{
		max-width: max-content;
		display: block;
	}
	
	.photo-preview{
		background-size: 40px, 20px;
	}
	
}

@media screen and (max-width: 470px) {
	
	.cart-table.big-cart-table .cart-subtract-item, .cart-table.big-cart-table .cart-add-item{
		display: block;
	}
	
	.cart-table.big-cart-table tr th:nth-child(1){
		display: none;
	}
}

@media screen and (max-width: 450px) {
	.title-row, .desc-row{
		font-size: 30px;
		font-weight: bold;
	}
	
	.product{
		width: calc(49% - 20px);
	}
	
	.product-add-to-cart {
		text-align: center;
	}
	
	.product-data .product-add-to-cart input[type="button"] {
		display: block;
		margin: 15px auto;
		float: none;
	}
	
	#submitOrder{
		width: 100% !important;
	}
	.blogpost .content{
		padding:30px 30px 0 0px;
		width:100%;
		/*width: calc(100% - 450px);*/
		float:left;
		height:220px;
	}
	.blogpost .content h3.title{
		margin-bottom:0px;
	}

	.header .cart-content {
		padding: 0px;
	}
	
	.review{
		padding: 5px;
	}
	
	.review-simple{
		padding: 10px;
	}

	.cart-content-top .cart-footer{
		padding: 15px;
		margin-top: 0;
	}
	
	.cart-table.big-cart-table:not(.order-preview) tr.cart-item{
		display: block;
		border-bottom: 1px solid #EEE;
		position: relative;
	}
	
	.cart-table.big-cart-table:not(.order-preview) tr td{
		display: inline-block;
		border-bottom: 0;
		padding: 0;
		width: 0;
	}
	
	.cart-table.big-cart-table:not(.order-preview) tr td.big-cart-item-text{
		padding: 20px 0 20px 80px;
		width: calc(100% - 90px);
		min-height: 75px;
	}
	
	.cart-table.big-cart-table:not(.order-preview) .cart-remove-item{
		display: block;
		position: absolute;
		left: 0;
		top: 10px;
	}
	
	.cart-table.big-cart-table:not(.order-preview) .cart-price-td{
		border-bottom: 1px solid #EEE;
	}
	
	.cart-table.big-cart-table:not(.order-preview) .big-cart-image{
		position: absolute;
		left: 11px;
		top: 35px;
	}
	
	.cart-table.big-cart-table:not(.order-preview) .cart-item-amount, .cart-table.big-cart-table:not(.order-preview) .cart-price-td{
		display: none;
	}		
	
	.cart-table.big-cart-table:not(.order-preview) .big-cart-item-text{
		font-size: 13px;
	}
	
	.cart-table.big-cart-table:not(.order-preview) .big-cart-item-text .cart-item-description{
		font-size: 13px;
	}
	
	.cart-table.big-cart-table:not(.order-preview) tr td:nth-child(2){
		min-width: 0px;
	}
	
	.cart-table.big-cart-table:not(.order-preview) .mobile-cart-data{
		display: block;
		font-size: 20px;
		font-weight: 700;
		color: #dcd9d5;
	}
	
	.block.order-block{
		padding: 13px 0 0 0;
	}
	
	.cart-table.big-cart-table.order-preview tr.cart-item td{
		color: #111;
	}
	
	.pc-tool-rotate, .pc-tool-zoom, .sc-tool-rotate, .sc-tool-zoom{
		background-position: left 3px top 10px;
		padding-left: 40px;
	}
	
	.pc-tool > span, .sc-tool > span{
		display: none;
	}
	
	.pc-slider.ui-widget.ui-widget-content, .sc-slider.ui-widget.ui-widget-content{
		width: calc(100% - 17px);
	}
	
	.product .subproduct-bullets{
		right: 5px;
	}
	
	.traders-table tr td:nth-child(6){
		display: none;
	}
}

@media screen and (max-width: 400px) {
	
	.subproducts-holder{
		float: none;
	}
	
	.single_add_to_cart_button{
		background-image: none !important;
	}

	.product-images .badge-container{
		font-size: 12px;
	}
	.product-images .badge-container .badge-inner{
		height: 69px;
	}
	
	.header .cart-content table tr{
		display: block;
		text-align: center;
	}
	
	.header .cart-content table tr td{
		display: block;
		border-bottom: 0;
		text-align: center;
	}
	
	.header .cart-content table tr td.image-td{
		margin-top: 15px;
		border-top: 1px solid #EEE;
		padding-top: 20px;
	}
	
	.header .cart-content table tr td.subtract-td, .header .cart-content table tr td.add-td, .header .cart-content table tr td.cart-item-amount, .header .cart-content table tr td.total-td, .header .cart-content table tr td.delete-td{
		display: inline-block;
		margin: auto;
	}
	
	.header .cart-content table tr td.total-td{
		margin-left: 15px;
	}
	
	.product-data .product-image{
		margin-bottom: 30px;
		min-height: auto;
	}
}

@media screen and (max-width: 385px) {
	
	.forgotpass.right{
		float: left !important;
		clear: both;
		margin-top: 10px;
	}
	.blogpost .preview-image {
		width: 315px;
	}

	.blogpost .content{
		padding:30px 30px 0 0px;
		width:100%;
		/*width: calc(100% - 450px);*/
		float:left;
		height:220px;
	}
	.blogpost .content h3.title{
		margin-bottom:0px;
	}

	.product-atts{
		padding: 9px;
	}
	
	.header .right-top-menu{
		top: 82px;
	}
	
	.mobile-menu{
		top: 81px;
	}
	.header .currency-select{
		right: 101px;
		top: 9px;
	}
	
	.product .product-image{
		height: 145px;
	}
	
	.product .product-title{
		font-size: 13px;
		line-height: 1;
	}
	
	.review-simple {
		max-width: calc(100% - 20px);
		flex-basis: 100%;
	}
	
	.crumbs{
		text-align: center;
	}
	
	.legends-holder{
		margin: 15px 0 0 0;		
	}
	
	.header .cart{
		margin-right: 8px;
	}
	
	.grey-form{
		padding: 20px 5px;
	}
	
	.photo-preview{
		background-size: 33px, 20px;
	}

	.product .subproduct-bullets{
		padding: 10px;
		top: 5px;
	}
	
	.binga-receipt h2, .binga-receipt h3{
		font-size: 25px;
	}
	
	#bingaBarCode{
		height: 100px;
	}
}

@media screen and (max-width: 365px) {
	.product-add-to-cart{
		text-align: center;
	}
	
	.product-data .product-add-to-cart input[type="button"]{
		display: block;
		margin: 15px auto;
		float: none;
	}
}

@media screen and (max-width: 350px) {
	
	.custom-map-holder .zoomin{
		left: 0;
		top: 0;
		z-index: 510;
	}
	
	.custom-map-holder .zoomout{
		left: auto;
		right: 0;
		top: 0;
		z-index: 510;
	}
	
	.content-container{
		width: calc(100% - 20px);
	}
	
	.header .cart-content{
		min-width: 0;
	}
	
	.header .cart-content{
		right: -10px;
	}
	
	.photo-customizer.fixed, .sticker-customizer.fixed{
		max-width: calc(100% - 20px);
	}
}

@media screen and (max-width: 320px) {
	
	
	#discountCode{
		width: 100% !important;
	}
	
	.apply-discount-code{
		margin-top: 10px !important;
		width: 90%;
		width: calc(100% - 20px);
	}
	
	.product .subproduct-bullets{
		padding: 5px;
		top: 15px;
	}
	
	.binga-receipt h2, .binga-receipt h3{
		font-size: 20px;
	}
	
	#bingaBarCode{
		height: 80px;
	}
	
	.binga-receipt{
		padding: 20px;
	}
	
	.header-confirm{
		font-size: 23px;
	}
}

@media screen and (max-width: 300px) {
	.review {
		max-width: 100%;
		flex-basis: 100%;
	}
	
	.open-legends{
		width: 100%;
		box-sizing: border-box;
		text-align: center;
	}
	
	.open-legends .personalise-image{
		margin: 0 auto;
		display: block;
	}
	
	.home-icons .home-icon{
		font-size: 13px;
	}
	
	.suggested-product-image{
		display: block;
		margin: 0 auto;
	}
	
	.suggested-product-title{
		width: calc(100% - 150px);
	}
	
	.location-holder .newline, .location-holder.location-holder-big .newline{
		text-align: center;
	}
	
	.location-holder .newline .search-lens{
		display: block;
		margin: 0 auto;
	}
}

@media screen and (max-width: 230px) {
	.product .subproduct-bullets{
		right: 0;
	}
}

@media screen and (max-height: 800px) {
	.title-row{
		padding-top: 30px;
	}
}




@media screen and (max-height: 600px) {
	
	.splash .splash-title{
		font-size: 30px;
	}
	
	.splash .splash-main-title{
		padding-top: 15px;
	}
	
	.splash .splash-title2{
		font-size: 25px;
	}
	
	
	
	.splash .splash-button{
		width: 166px;
		height: 35px;
		padding-top: 12px;
		margin-top: 10px;
	}
}

@media screen and (max-height: 520px) {
	.splash .splash-main-title{
		font-size: 27px;
	}
	
	.splash .splash-title3{
		font-size: 25px;
	}
}