 /* =CSS Reset
--------------------------------------------------------------------------------------------------*/

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
	margin: 0;padding: 0;border: 0;outline: 0;font-size: 100%;vertical-align: baseline;background: transparent;
}
/* Tell the browser to render HTML 5 elements as block */  
header, footer, aside, nav, article, section, figure, hgroup { display: block; }  

/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
   img,object,embed {max-width: 100%;}

   /* force a vertical scrollbar to prevent a jumpy page */

/* we use a lot of ULs that aren't bulleted. 
don't forget to restore the bullets within content. */
ul {list-style: none;}

blockquote, q {quotes: none;}

blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none;}

a {margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;}

del {text-decoration: line-through;}

abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: bold; vertical-align: bottom;}
td {font-weight: normal; vertical-align: top;}

hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}

input, select {vertical-align: middle;}

pre {
	white-space: pre; /* CSS2 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word; /* IE */
}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom; *vertical-align: baseline;}
.ie6 input {vertical-align: text-bottom;}

select, input, textarea {font: 99% sans-serif;}

table {font-size: inherit; font: 100%;}

/* Accessible focus treatment people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active, a:focus {outline: none;}

small {font-size: 85%;}

strong, th {font-weight: bold;}

td, td img {vertical-align: top;} 

/* Make sure sup and sub don't screw with your line-heights
gist.github.com/413930 */
sub, sup {font-size: 75%; line-height: 0; position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable, label, input[type=button], input[type=submit], button {cursor: pointer;}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {margin: 0;}

/* make buttons play nice in IE */
button {width: auto; overflow: visible;}

/* Micro Clearfix Hack */
.cf:before, .cf:after { content: "\0020"; display: block; height: 0; overflow: hidden; }  
.cf:after { clear: both; }  
.cf { zoom: 1; }  

img {
	image-rendering: -webkit-optimize-contrast;
}

body {
    font-family: 'Geologica', sans-serif;
}

input, textarea, select {
    font-family: 'Geologica', sans-serif !important;
    -webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* End CSS Reset
--------------------------------------------------------------------------------------------------*/

/* Start Basic CSS
--------------------------------------------------------------------------------------------------*/
input,
textarea,
button,
select,
a,
span,
div {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	color: #0060c0;
}

html {
	height: 100%;
}

body {
	height: 100%;
}

html.canvas-opened {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    overflow-y: scroll;
}

.wrapper {
	position: relative;
	width: 100%;
	min-height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
}

select, input, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0px 15px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance:textfield;
}

.btn {
	display: inline-block;
	outline: none;
	text-decoration: none;
}

i.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.yellow-border-btn {
	width: 100%;
	height: 50px;
    margin-top: 20px;
	color: #0060c0;
	text-transform: uppercase;
	line-height: 46px;
    font-size: 14px;
    border: 2px solid #ffe000;
    border-radius: 25px;
    font-weight: 700;
    background: transparent;
    outline: none;
    font-family: 'Geologica', sans-serif;
	text-align: center;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.yellow-btn:hover {
	background: #F07B00;
	color: #fff;
}

.yellow-btn {
	max-width: 280px;
	width: 100%;
	height: 60px;
    margin-top: 20px;
	border: 0px;
	background: #ffe000;
	color: #0060c0;
	border-radius: 30px;
	line-height: 60px;
	font-size: 20px;
	font-family: 'Geologica', sans-serif;
	font-weight: 700;
	text-align: center;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.yellow-btn-smallfont {
	font-size: 16px;
}

.yellow-btn.call-btn {
	position: relative;
	text-align: left;
	padding-left: 60px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.yellow-btn.call-btn:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	height: 60px;
	background: url('../img/bgi/phone-blue.svg') no-repeat center center;
}

.yellow-btn.call-btn:before {
	content: '';
	opacity: 0;
	visibility: hidden;
	z-index: 2;
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	height: 60px;
	background: url('../img/bgi/phone-ylw.svg') no-repeat center center;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.yellow-btn.place-order {
	position: relative;
	max-width: 100%;
	width: 100%;
	text-transform: uppercase;
}

.yellow-btn.place-order:hover {
	background: #92c800;
	color: #fff;
}

.yellow-btn.place-order:after {
	content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: #fff url('../img/bgi/check-blue.svg') no-repeat center center;
}

.yellow-btn:hover {
	background: #0060c0;
	color: #fff;
}

.yellow-btn.call-btn:hover:before {
	opacity: 1;
	visibility: visible;
}

.whatsapp-btn {
	max-width: 280px;
	width: 100%;
	position: relative;
	height: 60px;
    margin-top: 20px;
	border: 0px;
	background: #92c800;
	color: #fff;
	border-radius: 30px;
	border: 2px solid #92c800;
	line-height: 56px;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.whatsapp-btn:hover {
	background: #fff;
	color: #92c800;
}

.whatsapp-btn:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	height: 60px;
	background: url('../img/bgi/whatsapp-white.svg') no-repeat center center;
}

.whatsapp-btn:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 2;
	width: 60px;
	height: 60px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	background: url('../img/bgi/whatsapp-green.svg') no-repeat center center;
}

.whatsapp-btn:hover:before {
	opacity: 1;
	visibility: visible;
}

.blue-btn {
	width: 100%;
	position: relative;
	height: 60px;
    margin-top: 20px;
	border: 0px;
	background: #0060c0;
	color: #fff;
	border-radius: 30px;
	line-height: 60px;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.blue-btn:After {
	content: '';
	position: absolute;
	right: -1px;
	top: -1px;
	width: 62px;
	height: 62px;
	border-radius: 30px;
	background: #ffe000 url('../img/bgi/cart-blue.svg') no-repeat center center;
}

.add-to-cart-scroll.blue-btn,
.yellow-btn.place-order {
  	-webkit-animation: pulse 1.5s infinite;
  	animation: pulse 1s infinite;
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.05);
  }
    100% {
    transform: scale(1);
  }
}

.blue-btn:hover {
	background: #ffe000;
	color: #0060c0;
}

.bordered-btn {
	min-width: 160px;
	height: 50px;
    margin-top: 30px;
	border: 1px solid #f0f0f0;
	background: #f9f9f9;
	color: #000;
	line-height: 50px;
    font-family: "Geologica", system-ui !important;
    font-size: 8px;
    font-weight: 400;
	text-align: center;
	border-radius: 25px;
	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.bordered-btn:hover {
    border-color: #fbbc40;
    background: #fff;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* Customized default radio
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
[type="radio"]:not(:checked),
[type="radio"]:checked {
	position: absolute;
	left: -6669px;
}

[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
	display: inline-block;
	position: relative;
	margin: 0px 0px;
	padding: 0px 0px 0px 30px;
	cursor: pointer;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
}

[type="radio"]:not(:checked) + label {
	color: #666;
}

[type="radio"]:checked + label {
	color: #000;
}

/* checkbox aspect */
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0px;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	border: 1px solid #f0f0f0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
}

/* checked mark aspect */
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
	content: "\f111";
	width: 20px;
	height: 20px;
	border-radius: 10px;
    padding: 5px 0px;
	position: absolute;
	top: 0px;
	left: 0px;
	font-size: 20px;
	background: #fbbc40;
	border: 1px solid #fbbc40;
	text-align: center;
	font-size: 8px !important;
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font: normal normal normal 14px/1 FontAwesome;
	color: #000;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
}

/* checked mark aspect changes */
[type="radio"]:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}

[type="radio"]:checked + label:after {
	opacity: 1;
	transform: scale(1);
}

/* disabled checkbox */
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}

[type="radio"]:disabled:checked + label:after {
	color: #666;
}

[type="radio"]:disabled + label {
	color: #aaa;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* Customized default checkbox
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
	position: absolute;
	left: -6669px;
}

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
	position: relative;
	margin: 0px 0px;
	padding: 0px 0px 0px 30px;
	cursor: pointer;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
}

[type="checkbox"]:not(:checked) + label {
	color: #666;
}

[type="checkbox"]:checked + label {
	color: #000 !important;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0px;
	width: 20px;
	height: 20px;
	border: 1px solid #f0f0f0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
}

/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
	content: "\f00c";
	opacity: 1;
	padding: 4px 0px;
	visibility: visible;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 20px;
	height: 20px;
	background: #fbbc40;
	border: 1px solid #fbbc40;
	text-align: center;
	font-size: 10px !important;
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font: normal normal normal 14px/1 FontAwesome;
	color: #000;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}

[type="checkbox"]:checked + label:after {
	opacity: 1;
	transform: scale(1);
}

/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}

[type="checkbox"]:disabled:checked + label:after {
	color: #666;
}

[type="checkbox"]:disabled + label {
	color: #aaa;
}

.form-row.woocommerce-mailchimp-opt-in {
	padding: 0px !important;
	margin: 0px !important;
}

.woocommerce-mailchimp-opt-in label.checkbox {
	display: block !important;
	position: relative;
	margin: 0px 0px;
	padding: 0px 0px 0px 30px;
	cursor: pointer;
	font-size: 12px;
	color: #666;
	line-height: 20px !important;
}

.woocommerce-mailchimp-opt-in label:before {
    content: '';
	position: absolute;
	left: 0;
	top: 0px;
	width: 20px;
	height: 20px;
	border: 1px solid #DDDDDD;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
}

.woocommerce-mailchimp-opt-in label:after {
   content: "\f00c";
	opacity: 1;
	padding: 5px 0px;
	visibility: visible;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 20px;
	height: 20px;
	background: #000;
	text-align: center;
	font-size: 10px !important;
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font: normal normal normal 14px/1 FontAwesome;
	color: #fff;
	opacity: 0;
    visibility: hidden;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.woocommerce-mailchimp-opt-in label.active:after {
	opacity: 1;
    visibility: visible;
}
/* End Basic CSS
--------------------------------------------------------------------------------------------------*/

/* Start header CSS
--------------------------------------------------------------------------------------------------*/
header {
	padding: 10px 0px;
	background: #0060c0;
}

.logo-img,
.logo-img a, {
	display: block;
	width: 200px;
	font-size: 0px;
}

.header-contact {
	color: #ffe000;
	position: relative;
	background: #fff;
	line-height: 40px;
	padding: 0px 40px 0px 10px;
	text-align: right;
	font-size: 14px;
	border-radius: 25px;
	font-weight: 700;
}

.header-contact a {
	text-decoration: none;
}

.header-contact:after {
	content: '';
	position: absolute;
	right: 5px;
	top: 5px;
	width: 30px;
	height: 30px;
	border-radius: 20px;
	background: #0060C0 url('../img/bgi/phone-ylw.svg') no-repeat center center;
}

.header-contact .mobile {
	color: #0060C0;
	font-size: 16px;
}

.header-contact span {
	display: block;
}

.header-wrapp {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
	background: none;
	border-radius: 0px;
	padding: 0px;
}

.search-wrapper {
	position: absolute;
	left: 50%;
	max-width: 600px;
	margin-left: -300px;
}

.search-wrapper .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit,
.search-wrapper .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:hover {
	right: 0 !important;
	top: 0;
	left: auto;
	width: 50px;
	height: 50px;
	background: #ffe000 url('../img/bgi/search-blue.svg') no-repeat center center;
	box-shadow: none !important;
}

.search-wrapper .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit svg {
	display: none;
}


.search-wrapper .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:hover {
	background: #fff;
}

.search-wrapper .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
	display: block;
	width: 600px;
	color: #000;
	border: 0px;
	padding: 0px 60px 0px 20px;
	height: 50px;
	background: #fff !important;
	outline: none;
	border-radius: 25px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.search-wrapper .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus {
	border: 2px solid #ffe000 !important;
    box-shadow: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}
.dgwt-wcas-open .search-wrapper .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input,
.dgwt-wcas-open .search-wrapper .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus {
	background: #fff;
}
.dgwt-wcas-open .search-wrapper .dgwt-wcas-sf-wrapp input[type=search] {
	border-radius: 25px 25px 0px 0px !important;
}

.dgwt-wcas-preloader.dgwt-wcas-close {
	display: none !important;
}

.search-title {
    padding: 0px 20px 10px;
    display: block;
    font-weight: 600;
    border-bottom: 1px solid #e5e5e5;
}
.search-inner .container {
	position: relative;
}
.search-result-content {
	display: none;
    position: absolute;
    background: #fff;
    top: 40px;
    width: 100%;
    padding: 20px 0px;
    z-index: 9999;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}
.result-block a {
    text-decoration: none;
    display: flex;
    padding: 5px 20px;
    align-items: center;
    color: #000;
}
.result-block a:hover {
	background: #000;
}
.result-content {
	display: flex;
	align-items: center;
	width: calc(100% - 60px);
	justify-content: space-between;
}
.result-title {
	display: block;
    height: 40px;
    overflow: hidden;
    color: #000;
    line-height: 20px;
}
.result-block a:hover .result-title,
.result-block a:hover {
	color: #fff;
}
.result-block a:hover .normal-price, .result-block a:hover .promo-price {
	color: #fff;
}
.result-block a .normal-price,
.result-block a .promo-price {
	color: #000;
}
.search-price {
    display: flex;
    width: 140px;
    height: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.normal-price,
.promo-price {
	display: block;
    color: #000;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0px;
    width: 100%;
    text-align: right;
    font-weight: 600;
    color: #50BBBB;
}
.promo .normal-price {
	font-size: 12px;
	line-height: 16px;
	text-decoration: line-through;
	color: #000;
	font-weight: 400;
}
.result-block figure {
	width: 50px;
	margin-right: 10px;
	background: #fff;
	overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.search-results-head {
	padding-top: 15px;
}
.result-title {
	font-size: 12px;
}
.opened .search-inner {
	-webkit-transform: translateY(0%);
    transform: translateY(0%);
}
.search-text {
	width: 100%;
	position: relative;
}
.search-text-inner {
	position: relative;
}
.search-button {
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	opacity: .7;
	top: 0;
	left: 0;
	background: url('../img/bgi/search-black.svg') no-repeat center center;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.search-button:hover {
	opacity: 1;
}
.spinner {
	display: none;
	position: absolute;
	right: 50px;
	top: 50%;
  	width: 40px;
  	line-height: 10px;
  	text-align: center;
  	-webkit-transform: translateY(-50%);
  	transform: translateY(-50%);
}
.spinner > div {
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
.search-text-inner ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Geologica', sans-serif;
}
.search-text-inner ::-moz-placeholder { /* Firefox 19+ */
  color: #000;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Geologica', sans-serif;
}
.search-text-inner :-ms-input-placeholder { /* IE 10+ */
  color: #000;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Geologica', sans-serif;
}
.search-text-inner :-moz-placeholder { /* Firefox 18- */
  color: #000;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Geologica', sans-serif;
}
.total-show {
	display: none;
	text-align: center;
	padding-top: 20px;
}
.total-show a {
	display: inline-block;
	text-decoration: none;
	color: #000;
	-webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.total-show a:hover {
	color: #ff3333;
}
/* End header CSS
--------------------------------------------------------------------------------------------------*/

/* Start footer CSS
--------------------------------------------------------------------------------------------------*/
.faq-section {
	margin: 50px 0px 0px;
	padding: 50px 0px;
	background: #f9f9f9;
}

.faq-section h2 {
	position: relative;
	margin-bottom: 40px;
    text-decoration: none;
    color: #0060c0;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
}

.faq-row {
	display: flex;
	justify-content: space-between;
}

.faq-col {
	width: calc(50% - 20px);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.question-content {
	margin-bottom: 10px;
	background: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.active.question-content {
	border-color: #ffe000;
}

.question-title:after {
	content: '+';
	position: absolute;
	right: 10px;
	top: 13px;
	width: 34px;
	color: #0060c0;
	text-align: center;
	line-height: 34px;
	font-weight: 700;
	font-size: 18px;
	height: 34px;
	border-radius: 17px;
	background: #ffe000;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.question-answer {
	display: none;
	padding: 20px 20px 20px 20px;
	color: #0060c0;
	font-size: 16px;
}

.question-title {
	display: block;
	position: relative;
	font-size: 16px;
	padding: 20px 50px 20px 20px;
	color:#0060c0;
	font-weight: 700;
	cursor: pointer;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.active .question-title {
	background: #ffe000;
}

.active .question-title:after {
	content: '—';
}

.faq-contact-col {
	background: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 30px;
	overflow: hidden;
	padding: 60px 30px;
	text-align: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.faq-contact-icon {
	display: block;
	width: 160px;
	height: 160px;
	margin: 0 auto 50px;
	border-radius: 80px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, .1);
    background: url('../img/bgi/benefit-suport-clienti-blue.svg') no-repeat center center;
}

.faq-contact p {
	font-size: 16px;
	color: #0060c0;
	font-weight: 700;
}

.faq-button-wrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.faq-button-wrap .btn {
	max-width: 49%;
}

.footer-top {
	padding: 30px 0px;
	text-align: center;
	background: #0060c0;
}

.footer-bottom {
	padding: 30px 0px;
	background: #004ba0;
}

.footer-terms-conditions {
	text-align: center;
}

.footer-terms-conditions li {
	display: inline-block;
	margin: 0px 30px;
}

.footer-terms-conditions li a {
	display: block;
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	padding-bottom: 5px;
	position: relative;
	font-size: 16px;
}

.footer-terms-conditions li a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #ffe000;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.footer-terms-conditions li a:hover:after {
	width: 100%;
}

.anpc {
	text-align: center;
	margin: 20px 0px;
}

.anpc a {
	display: inline-block;
	margin: 0px 10px;
	background: #fff;
	border-radius: 20px;
}

.copyright {
	text-align: center;
	color: #fff;
}
/* End footer CSS
--------------------------------------------------------------------------------------------------*/

/* Start category CSS
--------------------------------------------------------------------------------------------------*/
.category-top-bar {
	text-align: center;
	margin: 30px 0px;
}

.category-top-bar h1 {
	position: relative;
    text-decoration: none;
    color: #0060C0;
    font-size: 26px;
    font-weight: 700;
    line-height: 38px;
    text-transform: uppercase;
}

.benefits-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -5px;
	margin-bottom: 40px;
}

.benefits-row > div {
	width: calc(20% - 10px);
	padding: 0px 5px;
}

.benefit-box {
	padding: 30px 15px;
	text-align: center;
	background: #ffe000;
	border-radius: 20px;
	color: #0060c0;
	height: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.benefit-box p {
	font-size: 14px;
}

.benefit-box p br {
	display: none;
}

.benefit-box .benefit-name {
	display: block;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 700;
}

.benefit-box figure {
	margin: 0 auto 30px;
	background: #fff;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	padding: 20px;
	box-shadow: 0px 10px 30px 0px rgba(0,0,0, .1);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.category-list-nav ul li a:hover {
	border-color: #fbbc40;
	background: #fff;
}

.categories-section ul.products {
	display: flex;
	flex-wrap: wrap;
}

.categories-section ul.products li {
	width: calc(25% - 30px) !important;
	margin-right: 40px !important;
	margin-bottom: 40px;
}

.categories-section ul.products li:nth-child(4n) {
	margin-right: 0px !important;
}

.woocommerce ul.products li a,
.woocommerce-page ul.products li a {
	position: relative;
	display: block;
	text-decoration: none;
	text-align: center;
	border: 1px solid #f0f0f0;
	border-radius: 20px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.categories-section figure {
	position: relative;
}

.woocommerce-page ul.products li a figure {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	overflow: hidden;
}

.woocommerce ul.products li a .promo-badges {
	position: absolute;
	left: 0;
	top: 0px;
}

.woocommerce ul.products li a .promo-badge {
	display: block;
	background: #ffa200;
	color: #fff;
	width: 50px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-weight: 700;
	font-size: 14px;
}

.woocommerce ul.products li a:hover {
	box-shadow: 0px 10px 30px 0px rgba(0,0,0, .1);
}

.woocommerce ul.products li a:hover h3 {
	color: #000;
}

.woocommerce ul.products li a:hover .yellow-border-btn {
	background: #ffe000;
}

.category-page-list li a {
	color: #000;
}

.promo-product-page-list .single-promo a {

}
/* End category CSS
--------------------------------------------------------------------------------------------------*/

/*Start product CSS
-------------------------------------------------------------------------------------------------- */
.product-image {
	float: left;
    width: 500px;
    margin-right: 40px;
}

.product-inner-page {
	margin-top: 45px;
}

.woocommerce-product-gallery__wrapper {
	display: block;
}

.woocommerce-page div.product .product-image div.images {
	width: 100%;
}

.product-image .main-image-wrapper {
	width: 100% !important;
	margin-bottom: 10px;
}

.thumbnail-container {
	margin: 0px -5px;
}

.woocommerce-page div.product div.summary.default-summary {
	float: left;
	width: calc(100% - 540px);
}

.thumbnail-container .slick-slide {
	margin: 0px 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

img {
	height: auto !important;
}

.thumbnail-container .slick-slide:hover {
	border-color: #000;
}

.thumbnail-container .slick-slide a {
	display: block;
	width: 100%;
}

.thumbnail-container .slick-arrow {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 0px;
	padding: 0px;
	border: 0px;
	z-index: 2;
	outline: none;
	width: 30px;
	height: 30px;
	background: #fff;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.thumbnail-container .slick-arrow:hover {
	background: #ffe000;
}

.thumbnail-container .slick-prev {
	left: 5px;
}

.thumbnail-container .slick-next {
	right: 5px;
}

.thumbnail-container .slick-arrow:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.thumbnail-container .slick-prev:after {
	background: url('../img/bgi/arrow-left-blue.svg') no-repeat center center;
}

.thumbnail-container .slick-next:after {
	background: url('../img/bgi/arrow-right-blue.svg') no-repeat center center;
}

.fancybox-show-thumbs .fancybox-inner {
	right: 0;
	bottom: 95px;
}

.fancybox-thumbs__list {
	margin: 0 auto;
}

.fancybox-bg,
.fancybox-is-open .fancybox-bg {
	opacity: 1;
	background: #fff;
}

.fancybox-thumbs__list a:before {
	border: 1px solid #000;
}

.fancybox-infobar {
	font-size: 16px;
	color: #333545;
	opacity: 1;
	visibility: visible;
	mix-blend-mode: unset;
}

.fancybox-toolbar {
	opacity: 1;
	visibility: visible;
}

.fancybox-button.fancybox-button--close {
	background: transparent;
	width: 60px;
	height: 50px;
	color: #666;
	opacity: 1;
	visibility: visible;
}

.fancybox-button.fancybox-button--close:hover {
	color: #000;
}

.fancybox-navigation .fancybox-button {
	opacity: 1;
	visibility: visible;
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left,
.fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
	border: 0px;
	top: calc(50% - 25px);
	width: 50px;
	height: 50px;
	padding: 0px;
	font-size: 0px;
	line-height: 0px;
	opacity: 1;
	outline: none;
	background: #fff;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left:after,
.fancybox-navigation .fancybox-button.fancybox-button--arrow_right:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.fancybox-navigation .fancybox-button.fancybox-button--arrow_left:hover,
.fancybox-navigation .fancybox-button.fancybox-button--arrow_right:hover {
	background: #fff;
}

.fancybox-button.fancybox-button--arrow_left div,
.fancybox-button.fancybox-button--arrow_right div {
	display: none;
}

.fancybox-button.fancybox-button--arrow_left:after {
    background: url('../img/bgi/arrow-left-blue.svg') no-repeat center center;
}

.fancybox-button.fancybox-button--arrow_right:after {
    background: url('../img/bgi/arrow-right-blue.svg') no-repeat center center;
}


.fancybox-button.fancybox-button--zoom {
	display: none !important;
}

.fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 95px;
    padding: 10px 10px 5px 10px;
    box-sizing: border-box;
    background: #fff;
}

figure .onsale {
	display: none !important;
}

.product-review-top {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.product-review-top .stars {
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle;
	width: 110px;
	height: 20px;
	background: url('../img/bgi/star-orange.svg') repeat-x center center;
}

.product-review-top a {
	display: inline-block;
	text-decoration: none;
	vertical-align: middle;
}

.product-review-top p,
.product-review-top p a {
	color: #888888;
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
}

.product-title-mobile {
	display: none;
}

.product-title .product_title {
	display: block;
	margin-bottom: 20px;
    text-decoration: none;
    color: #000;
    font-family: "Geologica", system-ui;
    font-size: 32px;
    line-height: 36px;
    font-weight: 700;
}

.motive-title-main {
	display: block;
	color: #000;
	font-weight: 700;
	margin-bottom: 10px;
}

.motive-info-inner li {
	position: relative;
	padding: 10px 0px 10px 30px;
	border-top: 1px solid #f0f0f0;
}

.motive-info-inner li:after {
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -10px;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: 17px;
	background: #92c800 url('../img/bgi/check-white.svg') no-repeat center center;
	background-size: 12px;
}

.product-image .main-image-wrapper {
	display: none;
}

.motive-info-inner li:last-child {
	border-bottom: 1px solid #f0f0f0;
}

.motive-info-inner li span {
	font-weight: 700;
}

.motive-info-inner li p {
    color: #000;
    font-size: 20px;
    margin-top: 5px;
    font-weight: 300;
}

.motive-info-inner li span {
	font-size: 20px;
}

.product-basic-info {
	padding: 40px 0px;
}

.product-basic-info ul {
	display: flex;
	flex-wrap: wrap;
}

.product-basic-info ul li {
	position: relative;
	width: 180px;
	padding-left: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.product-basic-info ul li:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -15px;
	width: 50px;
	height: 30px;
}

.product-basic-info ul li.transport-mode:after {
	background: url('../img/bgi/mod-livrare-orange.svg') no-repeat left center;
}

.product-basic-info ul li.transport-time:after {
	background: url('../img/bgi/livrare-rapida-orange.svg') no-repeat left center;
}

.product-basic-info ul li.transport-estimate:after {
	background: url('../img/bgi/dara-orange.svg') no-repeat left center;
}

.product-basic-info ul li span {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #888;
}

.product-basic-info ul li span.value {
	font-weight: 700;
	font-size: 16px;
	color: #0060c0;
}

.quantity-wrapper {
	display: none;
}

.bottom-product .product-promo-price,
.woocommerce div.product .woocommerce-variation-price span.price,
.woocommerce div.product .woocommerce-variation-price .product-promo-price {
	font-size: 36px;
	display: block;
    line-height: 36px;
    font-weight: 700;
	color: #E40E40;
}

.bottom-product .product-price {
	font-size: 36px;
	display: block;
	margin-left: 20px;
	font-family: "Geologica", system-ui;
    line-height: 36px;
    font-weight: 200;
    color: #E40E40;
    text-decoration: line-through;
    opacity: .5;
}

.product-simple-price .product-data-price {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.percentage-product-inner {
	margin-left: 20px;
	color: #f07b00;
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.inner-percentage {
	display: block;
	margin-left: 20px;
	width: 50px;
	height: 30px;
	line-height: 30px;
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 14px;
	border-radius: 5px;
	background: #ffa200;
}

a.main-image {
	display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product-promo {
	margin-top: 40px;
	padding: 10px;
	border: 1px solid #f9f9f9;
	border-radius: 10px;
}

.product-promo p {
	position: relative;
	line-height: 20px;
	padding: 5px 0px 5px 40px;
	font-weight: 400;
	color: #888;
}

.product-promo p:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0%;
    width: 30px;
    height: 30px;
    background: url('../img/bgi/gift-red.svg') no-repeat center center;
}

.product-inner-description {
	background: #f9f9f9;
	padding: 30px 0px 60px;
	margin: 30px 0px 0px;
}

.product-inner-description-2 {
	padding: 50px 0px;
}

.product-inner-description h2,
.product-inner-description-2 h2 {
    position: relative;
    margin-bottom: 20px;
    text-decoration: none;
    color: #0060c0;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
}

.description-col-text {
	text-align: center;
	padding: 50px 30px;
}

.product-inner-description-2 .description-col > div {
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
}

.description-col-text h3 {
    display: block;
    font-weight: 700;
    margin: 0px 0px 20px;
    font-size: 20px;
}

.description-col-text p {
	color: #000;
}

.description-text {
	margin-bottom: 30px;
	text-align: center;
	color: #000;
}

.description-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.description-col {
	width: calc(50% - 20px);
}

.motive-info-inner.about-info-inner li:after {
    background: #ffe000 url('../img/bgi/check-blue.svg') no-repeat center center;
    background-size: 12px
}

.description-col .motive-title-main {
	color: #0060c0;
}

.video-col {
	border-radius: 30px;
	overflow: hidden;
}

.product-about-video video {
	display: block;
	width: 100%;
	height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.benefits-product {
	padding: 50px 0px;
	background: #ffe000;
}

.product-benefits-description {
	margin-bottom: 30px;
	text-align: center;
}

.product-benefits-description h2 {
    position: relative;
    margin-bottom: 20px;
    text-decoration: none;
    color: #0060c0;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
}

.benefits-product .benefit-box {
	border: 1px solid #fff;
}

.benefits-product .blue-btn {
	display: block;
	max-width: 700px;
	margin: 0 auto;
}

.benefits-product .blue-btn:after {
    background: #fff url('../img/bgi/cart-blue.svg') no-repeat center center;
}

.benefits-product .blue-btn:after {

}

@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  93% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.add-to-cart-scroll.blue-btn:after {
    animation: rotating 5s infinite;
    transition: 1s ease-in-out;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
}

.benefits-product .blue-btn:hover {
	background: #fff;
	color: #0060c0;
}

.review-section {
	background: #f9f9f9;
	padding: 50px 0px;
}

.review-description h2 {
    position: relative;
    text-decoration: none;
    color: #0060c0;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
}

.review-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.review-box figure {
	margin-bottom: 30px;
}

.review-list > div {
	width: calc(100% / 3 - 10px);
	margin-bottom: 15px;
}

.review-box {
	padding: 40px;
	background: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 10px;
}

.review-description {
	margin-bottom: 40px;
}

.review-description p {
	text-align: center;
	color: #000;
}

.review-box .stars {
    display: block;
    margin-right: 15px;
    width: 110px;
    height: 20px;
    background: url('../img/bgi/star-orange.svg') repeat-x center center;
}

.review-name {
	display: block;
	font-weight: 700;
	margin: 20px 0px;
	font-size: 20px;
}

.review-box p {
 	color: #888;
}

.review-box p br {
	display: none;
}

.slick-dots {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    margin: 0px 5px;
}

.slick-dots li button {
    display: block;
    padding: 0;
    outline: none;
    font-size: 0px;
    width: 10px;
    border: 0px;
    height: 10px;
    background: #ffe000;
    border-radius: 15px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.benefits-product .slick-dots li button {
	background: #0060c0;
}

.slick-dots li.slick-active button {
    width: 20px;
    background: #0060c0;
}

.product-list-content {
	padding: 0px 20px 20px 20px;
}

.product-list-content .btn {
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	font-size: 16px;
    text-transform: uppercase;
}

.product-list-content h3 {
	color: #000;
	line-height: 18px;
	margin-bottom: 10px;
	height: 54px;
	overflow: hidden;
	-webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.product-data-price {
	color: #E40E40;
	margin: 20px 0px 0px;
	font-weight: 700;
}

.product-price {
	margin-left: 5px;
	opacity: .5;
	font-weight: 400;
	text-decoration: line-through;
}

body .woocommerce-error {
	margin-top: 10px;
	padding: 20px 0px;
	border-top: 0px;
	border: 0px;
	color: #F04900;
	background: transparent;
}
body .woocommerce-error a {
	color: #F04900;
}
body .woocommerce-error li {
	line-height: 24px;
	font-size: 14px;
	color: #F04900;
	text-transform: uppercase;
}
body .woocommerce-error li strong {
	font-weight: 700;
}
body .woocommerce-error::before,
body .woocommerce-message::before {
	display: none;
}
body .woocommerce-message {
	padding: 20px;
	border-top: 0px;
	line-height: 24px;
	border: 0;
	background: #89B000;
	font-size: 14px;
	color: #fff;
	font-weight: 400;
	margin: 70px 0 10px;
}

body .woocommerce-message a {
	min-width: 160px;
    height: 20px;
    border: 0px;
    border-radius: 0px !important;
    background: #fff !important;
    color: #000 !important;
    line-height: 20px !important;
    font-family: "Geologica", system-ui;
    font-size: 8px !important;
    font-weight: 400 !important;
    text-align: center;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.checkout-section {
	padding: 60px 0px;
	background: #0060c0;
	color: #ffe000;
}

.woocommerce-additional-fields {
	display: none;
}

.woocommerce-checkout-payment ul {
	display: none;
}

.default-checkout-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.default-customer-details,
.default-review-order {
	width: calc(50% - 20px);
}

.checkout-title {
	display: block;
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: 700;
}

.woocommerce-billing-fields .form-row {
	display: flex;
	position: relative;
	margin-bottom: 10px;
	padding-left: 60px;
	width: 100%;
	background: #fff;
	height: 60px;
	border-radius: 5px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.woocommerce-billing-fields .form-row label {
	display: block;
	line-height: 60px;
	color: #0060c0;
	font-weight: 700;
	padding: 0px 10px;
	width: 170px;
}

.woocommerce-billing-fields .form-row.error label {
	color: #E40E40;
}

.woocommerce-billing-fields .form-row label span {
	color: #ffa200;
}

.woocommerce-billing-fields .form-row > span {
	display: block;
	width: calc(100% - 170px);
}

.woocommerce-billing-fields .form-row input,
.woocommerce-billing-fields .form-row select {
	display: block;
	border: 0px;
	outline: none;
	height: 60px;
	width: 100%;
	background: #fff !important;
	padding-right: 10px;
	color: #888;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.woocommerce-billing-fields .form-row:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	height: 100%;
}

.woocommerce-billing-fields .name-row:after {
	background: #ffe000 url('../img/bgi/user-blue.svg') no-repeat center center;
}

.woocommerce-billing-fields .phone-row:after {
	background: #ffe000 url('../img/bgi/phone-blue.svg') no-repeat center center;
}

.woocommerce-billing-fields .address-row:after {
	background: #ffe000 url('../img/bgi/address-blue.svg') no-repeat center center;
}

.woocommerce-billing-fields .city-row:after {
	background: #ffe000 url('../img/bgi/address-blue.svg') no-repeat center center;
}

.woocommerce-billing-fields .state-row:after {
	background: #ffe000 url('../img/bgi/address-blue.svg') no-repeat center center;
}

.review-order-inner th,
.review-order-inner td {
	padding: 20px 0px;
	color: #fff;
	border-top: 1px solid #ffe000;
	vertical-align: middle;
	text-align: right;
}

.review-order-inner td.product-total {
	text-align: right;
}

.review-order-inner th {
	text-align: left;
	font-weight: 400;	
}

.product-sku-checkout {
	color: #ffe000;
	font-weight: 700;
}

.product-name {
	width: 70%;
	font-weight: 400;
	text-align: left !important;
}

.product-total th,
.product-total td,
td.product-total  {
	font-weight: 700;
	color: #ffe000;
}

.product-total td {
	font-size: 24px;
	text-align: right;
}

.cart-cadou .product-total {
	color: #92c800;
	text-align: right;
}

.woocommerce-terms-and-conditions-wrapper {
	display: none;
}

.woocommerce-checkout-payment-gateways {
	display: none;
}

.woocommerce-shipping-fields {
	display: none;
}

.woocommerce-shipping-methods {
	font-size: 0px;
}

.woocommerce-shipping-methods label > span {
	display: block;
	width: 100%;
	font-size: 16px;
    font-weight: 700;
    color: #ffe000;
    text-align: right;
}

.invalid-text {
	max-width: 300px;
	height: 60px;
	line-height: 60px;
	border-radius: 5px;
	background: #fff;
	margin: 20px auto 0px;
	text-align: center;
	color: #E40E40;
}

.quantity-sale-wrapper {
	max-width: 800px;
	margin: 0 auto 50px;
}

.checkout-section-text {
	margin-bottom: 30px;
	text-align: center;
}

.checkout-section-text p {
	color: #fff;
}

.checkout-section-text h2 {
    position: relative;
    margin-bottom: 10px;
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
}

.quantity-sale-content {
	margin: 0px -15px;
}

.quantity-sale-content .slick-slide {
	padding: 0px 15px;
}

.quantity-sale-box {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
}

.quantity-sale-box figure {
	position: relative;
}

.quantity-sale-box figure span {
	position: absolute;
	left: 10px;
	top: 10px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-weight: 700;
	border-radius: 5px;
	background: #ffe000;
	color: #0060c0;
}

.quantity-sale-box.active figure span {
	color: #fff;
	background: #92c800;
}

.quantity-sale-inner {
	padding: 20px 20px 20px 20px;
	text-align: center;
}

.quantity-sale-inner h3 {
	display: block;
	font-size: 18px;
	color: #888;
	text-transform: uppercase;
}

.active .quantity-sale-inner h3 {
	color: #92c800;
}

.one-piece-price {
	display: block;
	margin: 5px 0px;
	color: #ffa200;
	font-weight: 700;
	font-size: 14px;
}

.total-pice-price {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #0060c0;
}

.quantity-sale-box.active .btn {
	background: #92c800 url('../img/bgi/check-white.svg') no-repeat center center;
	border-color: #92c800;
	font-size: 0px;
}
/*End product CSS
-------------------------------------------------------------------------------------------------- */

.sent-checkout-container {
	text-align: center;
}

.sent-checkout-container h1 {
    position: relative;
    margin: 60px 0px 30px;
    text-decoration: none;
    color: #92c800;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
}

.sent-checkout-container .failed-title h1 {
	color: #E40E40;
}

.cart-empty-text > p {
	color: #000;
}

.order-info-box {
	position: relative;
	max-width: 400px;
	width: 100%;
	margin: 50px auto;
	padding: 40px;
	border: 1px solid #92c800;
	border-radius: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.order-info-box:after {
	content: '';
	position: absolute;
	left: 50%;
	top: -20px;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	border-radius: 20px;
	background: #92c800 url('../img/bgi/check-white.svg') no-repeat center center;
}

.order-info-box p {
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
}

.order-info-box p span {
	display: block;
	font-size: 32px;
	line-height: 32px;
	text-transform: lowercase;
}

.order-info-box p:last-of-type {
	margin: 0px;
}

.thank-you-crossell {
	padding: 40px 0px;
	background: #0060c0;
}

.thank-you-crossell h2 {
    position: relative;
    padding: 0px 0px 30px;
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    color: #ffe000;
    text-align: center;
}

.crossell-products {
	margin: 0px -20px;
}

.thank-you-crossell .slick-slide {
	padding: 0px 20px;
}

.thank-you-crossell .slick-slide a {
	display: block;
	background: #fff;
	position: relative;
	border-radius: 20px;
    text-align: center;
    text-decoration: none;
}

.thank-you-crossell a .promo-badges {
    position: absolute;
    left: 0;
    top: 0px;
}

.thank-you-crossell .slick-slide a figure {
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	overflow: hidden;
}

.thank-you-crossell a .promo-badge {
    display: block;
    background: #ffa200;
    color: #fff;
    width: 50px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    font-size: 14px;
}

.thank-you-crossell .slick-dots li.slick-active button {
	background: #ffa200;
}

.thank-you-crossell a:hover h3 {
    color: #000;
}

.thank-you-crossell a:hover .yellow-border-btn {
    background: #ffe000;
}

.contact-info {
	margin: 50px 0px;
	text-align: center;
}

.contact-info h2 {
    position: relative;
    text-decoration: none;
    color: #0060c0;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.terms-section {
	margin: 50px 0px;
}

.default-page-header h1 {
	position: relative;
    text-decoration: none;
    margin-bottom: 30px;
    text-align: center;
    color: #0060c0;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
}

.terms-inner {
	max-width: 840px;
	width: 100%;
	margin: 0 auto;
	text-align: justify;
}

.terms-inner p {
	color: #888;
	margin-bottom: 15px;
	line-height: 24px;
}

.terms-inner p strong {
	color: #000;
}

.terms-inner p a,
.terms-inner li a {
	color: #0060c0;
	text-decoration: none;
	font-weight: 700;
}

.terms-inner ul {
	margin-bottom: 15px;
}

.terms-inner li {
	position: relative;
	padding-left: 10px;
	color: #888;
}

.terms-inner li:after {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 4px;
	height: 4px;
	border-radius: 2px;
	background: #888;
}

.error-section {
	text-align: center;
}

.error-section {
	margin: 50px 0px;
}

.error-section h1 {
    position: relative;
    margin-bottom: 20px;
    text-decoration: none;
    color: #0060c0;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
}

.woocommerce .product-page-list nav.woocommerce-pagination {
	margin: 30px 0px 60px;
	text-align: center !important;
}


.woocommerce .product-page-list nav.woocommerce-pagination ul li {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border: 0px;
	text-align: center;
}

.woocommerce .product-page-list nav.woocommerce-pagination ul {
	border: 0px;
}

.woocommerce .product-page-list nav.woocommerce-pagination ul li {
	display: inline-block;
	vertical-align: middle;
}

.woocommerce .product-page-list nav.woocommerce-pagination ul li a,
.woocommerce .product-page-list nav.woocommerce-pagination ul li span {
	display: block;
	padding: 0px;
	line-height: 40px;
	font-size: 16px;
	font-weight: 700;

}

.woocommerce .product-page-list nav.woocommerce-pagination ul li a {
	color: #0060c0;
	text-decoration: none;
	border: 1px solid #ffe000;
	line-height: 38px;
}

.woocommerce .product-page-list nav.woocommerce-pagination ul li a:hover {
	color: #0060c0 !important;
	background: #ffe000 !important;
}

.woocommerce .product-page-list nav.woocommerce-pagination ul li span.current {
	color: #ffe000 !important;
	background: #0060c0 !important;
}

.woocommerce .wrapper nav.woocommerce-pagination ul li a.next,
.woocommerce .wrapper nav.woocommerce-pagination ul li a.prev{
	font-size: 0px;
	position: relative;
}

.woocommerce .wrapper nav.woocommerce-pagination ul li a.next:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: url(../img/bgi/arrow-right-blue.svg) no-repeat center center;
}

.woocommerce .wrapper nav.woocommerce-pagination ul li a.prev:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: url(../img/bgi/arrow-left-blue.svg) no-repeat center center;
}

.woocommerce-checkout-review-order-table {
	width: 100%;
}

#billing_country_field {
	display: none !important;
}

.custom-checkout-row {
	position: relative;
}

.hidden-submit-overlay {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255, 0);
	z-index: 2;
}

.woocommerce-order-received .woocommerce-Price-currencySymbol {
	display: inline-block;
}

.promo-number-field {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}

.quantity-promo-shape {
    color: #fff;
    background: #0060c0;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
    line-height: 16px;
    margin-top: 1px;
}

.quantity-promo-shape span {
	display: block;
}

.plus-separator {
    color: #ffa200;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    line-height: 20px;
    text-align: center;
    font-weight: 700;
}

.gift-promo-box {
	display: block;
    width: 42px;
    height: 42px;
    background: url('../img/bgi/gift-red.svg') no-repeat center center;
    background-size: 100%;
}

.quantity-sale-box .btn {
	margin-top: 10px;
}

.quantity-sale-inner {
    padding: 10px 20px 5px 20px;
    text-align: center;
}