@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap');


/* CSS Document */

/* --------------------
		Reset Styles
-------------------- */

html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, a, em, img, q, strong, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

input, textarea {

}

/* --------------------
		Standard Styles
-------------------- */

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;	
}

ol, ul {
	list-style-position: inside;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: inherit;
}

a:hover {
	text-decoration: underline;
}

strong {
	font-weight: bold;	
}

em {
	font-style: italic;	
}

p {
	padding-bottom: 1em;	
}

.clear {
	clear: both;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.aligncenter {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

input[type="text"], input[type="tel"], input[type="email"], input[type="password"], input[type="number"], textarea, select {
	color: #000;
	border: 1px solid #dadce0;
	padding: 7px 10px;
	border-radius: 5px;
	box-shadow: none;
	outline: none;
	display: inline-block;
	width: 100%;
}

input:focus:not(.details input), textarea:focus, select:focus {
	border-color: #000;
}

/* --------------------
		Main Styles
-------------------- */

html, body {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	font-family: 'Roboto', sans-serif;
	overflow-x: hidden;
}

.wrapper {
	position: relative;
	width: calc(100% - 40px);
	max-width: 1300px;
	margin: 0 auto;
}

header .topbar {
	color: #dadce0;
	padding: 10px 0;
	line-height: 20px;
	font-size: 15px;
	text-align: right;
}

header .topbar .wrapper {
	display: flex;
	justify-content: flex-end;
	gap: 30px;
}

header .topbar .section {
	flex-flow: row wrap;
}

.search {
	position: relative;
}

.search [type="submit"] {
	width: 30px;
	position: absolute;
	right: -8px;
    top: 2px;
	background: url(images/search.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 60% auto;
	border: none;
	cursor: pointer;
}

.topbar .profile {
	display: inline-block;
	background-image: url(images/user.svg);
	background-repeat: no-repeat;
	background-position: 12px center;
	background-size: auto 60%;
	border: 1px solid #dadce0;
	border-radius: 20px;
	padding: 5px 10px 5px 40px;
	font-size: 14px;
	color: #000;
}

.topbar .profile:hover {
	text-decoration: none;
	border-color: #000;
}

.topbar .cart {
	display: inline-block;
	background-image: url(images/cart.svg);
	background-repeat: no-repeat;
	background-position: 12px center;
	background-size: auto 60%;
	border: 1px solid #dadce0;
	border-radius: 20px;
	padding: 5px 10px 5px 40px;
	font-size: 14px;
	color: #000;
	position: relative;
}

.topbar .cart:hover {
	text-decoration: none;
	border-color: #000;
}

.topbar .cart .products {
	display: none;
}

.topbar .cart .items:not(.selectize-input) {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	padding-right: 1px;
	line-height: 20px;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	background-color: #3F81D8;
	color: #fff;
	border-radius: 100%;
}

.topbar .cart:hover .items:not(.selectize-input) {
	animation: pop .4s normal forwards ease-in-out;
}

@keyframes pop {
	from {
		width: 20px;
		height: 20px;
		line-height: 20px;
	}
	50% {
		width: 26px;
		height: 26px;
		line-height: 26px;
	}
	to {
		width: 20px;
		height: 20px;
		line-height: 20px;
	}
}

.navigation {
	border-bottom: 2px solid #3F81D8;
	padding-left: 200px;
	position: relative;
}

.navigation ul:before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	width: 100vw;
	height: 1px;
	background-color: #dadce0;
}

.navigation ul:after {
	content: '';
	clear: both;
	display: block;
}

.navigation li {
	list-style: none;
	display: inline-block;
	position: relative;
	float: left;
}

.navigation .label {
	position: absolute;
	top: -8px;
	left: 5px;
	height: 16px;
	line-height: 14px;
	padding: 0 8px;
	color: #fff;
	background-color: #3F81D8;
	border-radius: 7px;
	font-size: 9px;
	border: 1px solid #fff;
}

.navigation li:hover .label {
	animation: labelpop .4s normal forwards ease-in-out;
}

@keyframes labelpop {
	from { transform: scale(1); }
	50% { transform: scale(1.2); }
	to { transform: scale(1); }
}

.navigation .wrapper > ul > li {
	border-right: 1px solid #dadce0;
}

.navigation .wrapper > ul > li:last-child {
	border: none;
}

.navigation li a {
	font-size: 15px;
	font-weight: 700;
	color: #000;
	text-transform: uppercase;
	display: inline-block;
	height: 60px;
	line-height: 20px;
	padding: 20px 15px;
	text-decoration: none !important;
	transition: background-color .2s, color .2s;
	float: left;
}

.navigation li a.home {
	background-image: url(images/home.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px auto;
	height: 60px;
	width: 60px;
}

.navigation li:hover > a, .navigation li.selected > a {
	background-color: #3F81D8;
	color: #fff;
}

.navigation li:hover > a.home, .navigation li.selected > a.home {
	background-image: url(images/home-white.svg);
}

.navigation li.hasdropdown > a {
	padding-right: 40px;
	background-image: url(images/arrow-down.svg);
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: 10px auto;
}

.navigation li.hasdropdown:hover > a, .navigation li.hasdropdown.selected > a {
	background-image: url(images/arrow-down-white.svg);
}

.navigation ul ul {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	padding: 20px 15px 5px 15px;
	background-color: #fff;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
	border-radius: 0 5px 5px 5px;
	border-top: 2px solid #3F81D8;
}

.navigation ul li:hover > ul {
	display: block;
}

.navigation ul ul li {
	padding: 0;
	border-bottom: 1px solid #dadce0;
	float: none;
	display: block;
}

.navigation ul ul li:last-child {
	border: none;
}

.navigation ul ul li a {
	white-space: nowrap;
	height: auto;
	font-size: 15px;
	text-transform: none;
	height: auto;
	padding: 10px 0;
	font-weight: normal;
	float: none;
	display: block;
}

.navigation ul ul li:hover > a, .navigation ul ul li.selected > a {
	background: none;
	color: #3F81D8;
}

main {
	padding: 50px 0;
}

footer {
	clear: both;
	background-color: #808080;
	padding: 40px 0 30px 0;
	color: #fff;
	font-size: 14px;
	line-height: 17px;
}

footer a {
	color: #fff;
}

footer .sections {
	display: flex;
	justify-content: space-evenly;
}

footer .sections .column {
	width: 20%;
}

footer h3 {
	font-weight: bold;
	font-size: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #3F81D8;
	margin-bottom: 20px;
}

footer li {
	color: #ccc;
	list-style: none;
	padding-bottom: 5px;
}

footer li a {
	color: #ccc;
}

footer strong {
	color: #fff;
	font-weight: normal;
}

.breadcrumbs {
	padding-bottom: 40px;
	margin-top: -20px;
	font-size: 13px;
}

.breadcrumbs a {
	color: #666;
}

h1 {
	font-size: 25px;
	padding-bottom: 20px;
}

main .items:not(.selectize-input) {
	display: grid;
	grid-template-columns: repeat(auto-fill, calc((100% - 90px) / 4));
	grid-gap: 10px;
	justify-content: space-between;
}

main .items:not(.selectize-input) .item {
	display: block;
	margin-bottom: 20px;
	background-color: rgba(0, 0, 0, 0.03);
	padding: 15px;
	color: #000;
	border-radius: 10px;
	transition: all 0.2s;
	font-size: 14px;
	text-align: left;
	text-decoration: none !important;
	padding-bottom: 60px;
	position: relative;
}

main .items:not(.selectize-input) .item:hover {
	transform: scale(1.05);
	background-color: rgba(0, 0, 0, 0.05);
}

main .items:not(.selectize-input) .item .thumb {
	height: 250px;
	overflow: hidden;
	display: block;
	margin-bottom: 20px;
}

main .items:not(.selectize-input) .item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: top center;
}

main .items:not(.selectize-input) .item .name {
	display: block;
	font-weight: bold;
	padding-bottom: 5px;
}

main .items:not(.selectize-input) .item .price {
	float: left;
	clear: both;
	font-size: 19px;
	bottom: 20px;
	left: 20px;
	position: absolute;
}

main .items:not(.selectize-input) .item .price strike {
	font-size: 11px;
	color: #D55B43;
}

main .items:not(.selectize-input) .item .buy {
	float: right;
	background-color: #3F81D8;
	color: #fff;
	font-weight: bold;
	font-size: 15px;
	display: inline-block;
	padding: 5px 10px;
	transition: transform 0.2s;
	bottom: 20px;
	right: 20px;
	position: absolute;
}

main .items:not(.selectize-input) .item .buy:hover {
	transform: scale(1.20);
}

.product:after {
	content: '';
	clear: both;
	display: block;
}

.product .images {
	float: left;
	width: 50%;
	padding-right: 50px;
}

.product .images .image {
	padding-bottom: 25px;
	float: right;
	width: calc(100% - 120px);
}

.product .images .image img {
	width: 100%;
}

.product .images .thumbs {
	clear: both;
	overflow: hidden;
	float: left;
	width: 100px;
	height: 460px;
}

.banners .swiper-container {
    width: 100%;
    height: 400px;
}

.product .swiper-container {
    width: 100px;
    height: 460px;
}

.swiper-button-prev, .swiper-button-next {
	bottom: 0 !important;
	top: auto !important;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
	left: 0;
	transform: none;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
	display: none !important;
}

.product .images .thumbs a {
	float: left;
	width: 100%;
	margin-bottom: 10px;
	overflow: hidden;
}

.product .images .thumbs a:last-child {
	margin-right: 0;
}

.product .images .thumbs a img {
	display: inline-block;
	width: 100%;
	height: 100px;
	object-fit: cover;
	object-position: center center;
	vertical-align: top;
}

.product .details {
	float: right;
	width: 50%;
}

dl {
	display: block;
	font-size: 14px;
}

dl dt {
	display: inline-block;
	width: 200px;
	padding-bottom: 10px;
	clear: both;
}

dl dd {
	display: inline-block;
	font-weight: bold;
	width: calc(100% - 210px);
	padding-bottom: 10px;
}

.green {
	color: green;
}

.product .details .price {
	padding: 30px 0;
	border-top: 1px solid #dadce0;
}

.product .details .price big {
	font-size: 60px;
	font-weight: bold;
}

.product .details .price strike {
	font-size: 21px;
	color: #D55B43;
	display: inline-block;
	margin-left: 15px;
}

.product .details form {
	border: 1px solid #dadce0;
	padding: 30px;
	border-radius: 7px;
}

.product .details form label {
	font-weight: normal;
	font-size: 20px;
	padding-bottom: 10px;
	display: block;
}

.product .details form input {
	width: 70px;
	height: 40px;
	font-size: 16px;
}

.product .details form input[type="submit"] {
	margin-left: 20px;
	border: none;
	padding: 0 20px;
	width: auto;
	text-transform: uppercase;
	font-weight: bold;
	background-color: #3F81D8;
	border: none;
	cursor: pointer;
	transition: transform 0.2s;
	color: #fff;
}

.product .details form input[type="submit"]:hover {
	transform: scale(1.25);
}

.product .tags {
	clear: both;
	padding-top: 60px;
	color: #777;
}

.product .tags label {
	display: block;
	font-size: 18px;
	padding-bottom: 10px;
	font-weight: bold;
	color: #000;
}

.product .tags a {
	font-size: 15px;
}

.product .description {
	clear: both;
	padding-top: 50px;
}

h2 {
	border-bottom: 1px solid #dadce0;
	padding-bottom: 10px;
	margin-bottom: 25px;
	font-size: 25px;
}

.description h2 + h2 {
	border: none;
	margin: 0;
	font-size: 20px;
}

.related {
	clear: both;
	margin-top: 100px;
}

.selectize input {
	height: auto !important;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1em;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
}

.table-bordered {
    border: 1px solid #ddd;
}

.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td {
    border: 1px solid #ddd;
}

.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

.text-center {
    text-align: center;
}

.text-right {
	text-align: right;
}

.totals {
	text-align: right;
}

.totals table {
	max-width: 350px;
	width: 100%;
	margin: 0 0 1em auto;
}

.totals table td {
	padding: 10px 20px;
}


.deliveryMethod {
	border: 1px solid #ccc;
	clear: both;
}

.deliveryMethod:after {
	content: '';
	clear: both;
	display: block;
}

.deliveryMethod + .deliveryMethod {
	border-top: none;
}

.deliveryMethod .title {
	padding-left: 50px;
	height: 40px;
	line-height: 40px;
	font-weight: bold;
	position: relative;
	background-color: rgba(0, 0, 0, 0.1);
	margin: 0;
	cursor: pointer;
}

.deliveryMethod .title:hover, .deliveryMethod.selected .title {
	background-color: rgba(0, 0, 0, 0.2);
}

.deliveryMethod .title:before {
	content: '';
	position: absolute;
	left: 20px;
	top: 50%;
	margin-top: -7px;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	border: 1px solid #000;
}

.deliveryMethod.selected .title:before {
	background-color: #000;
	box-shadow: inset 0 0 0 1px #fff;
}

.deliveryMethod .content {
	display: none;
	padding: 20px;
}

.deliveryMethod.selected .content {
	display: block;
}

.deliveryMethod.selected .content:after {
	content: '';
	clear: both;
	display: block;
}

.deliveryMethod input, .deliveryMethod select {
	width: 100%;
    /*height: 34px;*/
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
}

.half {
	float: left;
	width: 50%;
	padding-right: 20px;
}

.half + .half {
	width: calc((100% - 20px) / 2);
	padding: 0;
}

.hasQuantityControls {
	width: 64px;
	display: inline-block;
}

.line {
	padding-bottom: 1em;
}

.line label {
	display: block;
	font-size: 15px;
	font-weight: bold;
	padding-bottom: 5px;
}

.table-orders td {
	vertical-align: middle !important;
}

form#orderform {
	border: 3px solid #ccc;
	padding: 20px;
}

form#orderform:after {
	content: '';
	clear: both;
	display: block;
}

form#orderform h2 {
	background-color: #ccc;
	border: none;
	padding: 10px 20px;
	color: #fff;
	margin: -21px -20px 20px -21px;
}

.anyTownHolder {
	float: left;
	width: calc(70% - 10px);
	margin: 0 10px 15px 0;
}

.anyTownPostCodeHolder {
	float: left;
	width: calc(30% - 10px);
	margin: 0 0 15px 0;
}

.addressHolder {
	float: left;
	width: calc(60% - 110px);
	margin: 0 10px 0 0;
}

.addressNumHolder {
	float: left;
	width: 90px;
	margin: 0 10px 0 0;
}

.addressMoreHolder {
	float: left;
	width: calc(40% - 110px);
	margin: 0 0 0 0;
}

a.button, input[type="submit"] {
	display: inline-block;
    transition: all 0.2s;
	padding: 6px 15px;
	font-size: 13px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	-moz-border-radius: 5px;
	border: 1px solid #000;
	color: #000;
	margin-right: 10px;
	width: auto;
}

a.button:hover, input[type="submit"]:hover {
	background-color: #3F81D8;
	border-color: #3F81D8;
	color: #fff;
	text-decoration: none;
}

form#orderform input[type="submit"] {
	float: none;
	background-color: #3F81D8;
	border-color: #3F81D8;
	color: #fff;
	padding: 15px 25px;
	font-size: 16px;
	vertical-align: bottom;
	cursor: pointer;
}

form#orderform input[type="submit"]:hover {
	transform: scale(1.1);
}

.errors {
	padding: 15px;
	margin: 0 0 20px 0;
	border: 1px solid #3F81D8;
	color: #3F81D8;
	font-weight: bold;
}

.success {
	padding: 15px;
	margin: 0 0 20px 0;
	border: 1px solid #157a17;
	color: #157a17;
	font-weight: bold;
}

.nowrap {
	white-space: nowrap;
}

.dropdownItem {
	display: block;
	padding: 3px 10px;
}

.topbar .line {
	padding-bottom: 0;
}

.description ul {
	list-style-position: outside;
	margin-left: 12px;
}

.loading {
	background-image: url(images/loader-spinner.svg);
	width: 40px;
	height: 40px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	margin: 50px auto;
	clear: both;
}

.nomore {
	clear: both;
	margin: 50px 0;
	padding-top: 50px;
	font-weight: bold;
	font-size: 20px;
	text-align: center;
}

.credentials {
	display: none;
}

.credentials:after {
	clear: both;
	content: '';
	display: block;
}

.selectize-dropdown-content > div {
	padding: 5px 10px;
}

header .logo {
	position: absolute;
	top: 0px;
	left: 0;
	z-index: 5555;
}

header .logo img {
	height: 80px;
}

.mobile-nav-trigger {
	display: none;
}

header .contactus {
	color: #000;
	line-height: 32px;
}

header .contactus strong {
	color: #D55B43;
}

.callus {
	display: none;
}

.mobile-checkout {
	display: none;
}

.oneclickorder {
	display: inline-block;
    border: none;
    padding: 10px 20px;
    width: auto;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #3F81D8;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    color: #fff;
	margin: 20px 0 0 0;
	text-decoration: none !important;
}

.popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 25px;
	box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
	color: #000;
	text-align: center;
	z-index: 11000;
	border-radius: 10px;
	font-size: 15px;
}

.layer {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#oneclick h2 {
	font-size: 20px;
	border: none;
}

#oneclick form {
	max-width: 300px;
	margin: 0 auto;
	display: block;
}

.text-aligncenter, .aligncenter {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.hidden {
	display: none !important;
}

.combined {
	padding-bottom: 25px;
}

.comboitem {
	clear: both;
	display: flex;
	align-items: center;
	padding: 12px 0 0 0;
}

.comboitem img {
	width: 60px;
	margin: 0 10px;
	vertical-align: top;
}

.comboitem h4 {
	font-size: 30px;
	padding-bottom: 7px;
}

.comboitem big {
	font-size: 40px;
	font-weight: bold;
}

.comboitem strike {
	color: #f00;
}

.comboitem .buycombo {
    display: inline-block;
    border: none;
    padding: 10px 20px;
    width: auto;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #3F81D8;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    color: #fff;
    margin: 20px 0 0 0;
    text-decoration: none !important;
	font-size: 17px;
	margin-left: 20px;
}



.item-quantity {
	display: inline-block;
}

.item-quantity:has(.qradios) {
	display: block;
}

.qradios {
	display: flex;
	gap: 10px;
	vertical-align: middle;
	margin-bottom: 20px;
	padding-top: 25px;
}

.qradio {
	border: 1px solid #ccc;
	padding: 5px 10px;
	color: #000;
	font-size: 17px;
	position: relative;
	cursor: pointer;
}

.qradio.selected, .qradio:has(input:checked) {
	border-color: #0E6AC7;
	background-color: #0e6ac770;
}

.qradio strong {
	font-size: 20px;
}

.qradio small {
	font-size: 12px;
}

.qradio input {
	display: none;
}

.qradio:nth-child(2):before {
	content: 'Най-продаван продукт';
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(calc(-100% - 1px));
	font-size: 10px;
	text-align: center;
	background-color: #eee;
	text-transform: uppercase;
	font-variant: small-caps;
	font-weight: bold;
	color: #555;
	padding: 4px 2px;
}

@media (max-width: 1360px) {
	.navigation {
		position: relative; 
		width: 100%; 
		transition: all 0.2s;
		padding: 0;
	}
	.navigation .wrapper { width: 100%; }
	.navigation ul { border: none; background-color: #666; display: none; }
	.navigation .wrapper > ul > li { border: none; }
	.navigation ul li { border: none; display: block; padding: 0; width: 100%; clear: both; border-bottom: 1px solid #999 !important; }
	.navigation ul li .home { display: none; }
	.navigation ul li a { padding: 15px 20px; color: #fff; height: auto; display: block; width: 100%; }
	.mobile-nav-trigger {
		display: block;
		padding: 10px 20px;
		position: relative;
		background-color: #eee;
		border-top: 1px solid #888;
		height: 60px;
		font-size: 15px;
		text-transform: uppercase;
		font-weight: bold;
		line-height: 40px;
		text-align: center;
	}
	.navopened .mobile-nav-trigger { background-color: #3F81D8; }
	.hamburger {
		position: absolute;
		width: 20px;
		height: 20px;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		z-index: 10000;
	}
	.hamburger:before, .hamburger:after, .hamburger span {
		content: '';
		position: absolute;
		left: 0;
		top: 3px;
		width: 100%;
		height: 2px;
		border-radius: 1px;
		background-color: #666;
	}
	.hamburger:after { top: auto; bottom: 3px; }
	.hamburger span { top: 50%; margin-top: -1px; }
	
	main .items:not(.selectize-input) { grid-template-columns: repeat(auto-fill, calc((100% - 20px) / 3)); }
	main .items:not(.selectize-input) .item .thumb { height: 150px; margin: 0 -5px 10px -5px; }
}

@media (max-width: 900px) {
	.wrapper { width: calc(100% - 20px); max-width: 700px; }
	.labelOffset .half { width: 100%; padding: 7px 0 7px 0; clear: both; float: none; }
	.anyTownHolder, .anyTownPostCodeHolder, .addressHolder { width: 100%; margin: 0 0 10px 0; clear: both; }
	.addressNumHolder { width: 100px; margin: 0 10px 0 0; }
	.addressMoreHolder { width: calc(100% - 110px); }
	.hideOnMobile { display: none !important; }
	footer .sections { display: block; }
	footer .sections .column { width: 100%; padding-bottom: 40px; }
	
	.mobile-nav-trigger { text-align: left; }
	
	header .topbar { height: 285px; border-bottom: 1px solid #dadce0; }
	header .logo { top: 40px; left: 50%; transform: translateX(-50%); }
	header .logo img { height: 100px; }
	.topbar .cart { position: absolute; height: 40px; top: 215px; right: 70px; line-height: 30px; padding-left: 50px; min-width: 120px; }
	.topbar .profile { position: absolute; padding-left: 35px; height: 40px; left: 70px; top: 215px; text-indent: -9999px; font-size: 0; }
	.topbar .search { position: absolute; top: 160px; left: 50%; transform: translateX(-50%); }
	.topbar .search input { height: 40px; }
	.topbar .search input[type="text"] { width: 230px; }
	
	main .items:not(.selectize-input) { grid-template-columns: repeat(auto-fill, calc((100% - 10px) / 2)); }
	main .items:not(.selectize-input) .item .thumb { height: 150px; margin: 0 -5px 10px -5px; }
	main .items:not(.selectize-input) .item { font-size: 13px; text-align: center; padding: 0 5px 45px 5px; overflow: hidden; }
	main .items:not(.selectize-input) .item .thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
	main .items:not(.selectize-input) .item .price { float: none; display: block; font-size: 14px; letter-spacing: -0.5px; left: 10px; bottom: 10px; }
	main .items:not(.selectize-input) .item .buy { display: block; float: none; max-width: 50%; margin: 7px auto 0 auto; right: 10px; bottom: 10px; padding: 5px 7px; font-size: 14px; }
	
	.product .images { float: none; width: 100%; padding-right: 0; }
	.product .details { float: none; width: 100%; clear: both; padding-top: 50px; }
	.product .images .thumbs { height: auto; }
	.product .swiper-container { height: 220px; }
	.swiper-wrapper { display: block !important; max-height: 300px; }
	.swiper-button-next, .swiper-button-prev { display: none !important; }
	.product .details .price big { font-size: 40px; }
	.product .details form { padding: 15px; }
	.product .details form label { font-size: 16px; }
	.product .description { font-size: 15px; }
	.product .details form input[type="submit"] { padding-left: 50px; padding-right: 50px; opacity: 1 !important; -webkit-appearance: none; border-radius: 0; }
	
	form#orderform h2 { font-size: 19px; }
	
	.callus {
		display: block;
		background: none;
		border-radius: 50%;
		bottom: 10pt;
		display: inline;
		height: 40pt;
		padding: 0px;
		position: fixed;
		left: 10pt;
		top: auto;
		width: 40pt;
		z-index: 2147483646;
		background-image: url(images/phone.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
		-webkit-animation:pop-in 0.5s;
		-moz-animation:pop-in 0.5s;
		-ms-animation:pop-in 0.5s;
		animation:pop-in 0.5s;
	}
	.page-product .callus { bottom: 60px; }
	..page-product .order { display: none; }
	
	.mobile-checkout {
		display: block;
		position: fixed;
		width: 100%;
		bottom: 0;
		left: 0;
		padding: 5px;
		background-color: #444;
		color: #fff;
		font-size: 15px;
		z-index: 8000;
		height: 50px;
		line-height: 30px;
		padding: 10px 30px;
	}
	.mobile-checkout .buyone {
		border: none;
		padding: 0 20px;
		width: auto;
		text-transform: uppercase;
		font-weight: bold;
		background-color: #3F81D8;
		border: none;
		cursor: pointer;
		transition: transform 0.2s;
		color: #fff;
		position: absolute;
		font-size: 20px;
		top: 10px;
		right: 30px;
		height: 30px;
		line-height: 30px;
	}
	.mobile-checkout big { font-size: 25px; font-weight: bold; }
	
	.popup { left: 20px; transform: translateY(-50%); width: calc(100% - 40px); padding: 15px; font-size: 14px; }
	#oneclick h2 { font-size: 17px; }
	
	.qradio { font-size: 13px; padding: 5px; }
	.qradio strong { font-size: 14px; }
	.qradio small { font-size: 10px; }

	.product .details form .item-quantity:has(.qradio) + input[type="submit"] { width: 100%; }
}

.cc-revoke.cc-bottom {
	bottom: 90px !important;
	right: 0 !important;
	left: auto !important;
	transform: rotate(-90deg) translateY(99%) !important;
}