/*css variables .OK*/
:root {
	--gray: #787878;
	--browser-ui-dark-bg: rgba(61, 61, 61, 0.94);
	--white: #fff;
	--black: #000;
	--gray1: #747474;
	--gray-1: #747474;
	--red: #d70000;
	--pink: #fdb1b2;
	--blue: #2089ab;
	--baby-blue: #80c8e7;
	--yellow: #ffec8c;
	--bg: #fef9f1;
	--bg-2: #f9f9f9;
	--green: #49c055;
	--stroke-2: #cfcfcf;
	--stroke-1: #e7e7e7;
}

/*lazy load fix .OK*/
img.lazy:not([src]),
img:not([src]){
	opacity:0;
}

/*blue shadow fix .OK*/
*{
	outline: none !important;
}
.btn:focus {
	outline: 0 !important;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
[type="button"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* DEFAULT LINK .OK
-------------------------------------------------- */
a{
	font-family: 'Inter', sans-serif;
	color:var(--black);
	text-decoration:none;
	outline:none;
}
a:hover{
    color:var(--gray);
	text-decoration:none;
}
a:focus{
	color:inherit;
	text-decoration:inherit;
} 


/* BODY .OK
-------------------------------------------------- */
body{ 
	font-family: 'Inter', sans-serif;
    font-weight: 400;
	font-size:14px;
	color:var(--black);
}
body.transparent {
	padding-top:inherit !important;
}



/* HEADER .FALSE
-------------------------------------------------- */
/*header .OK*/
header{
	position:relative;
	background: var(--white);
	border-bottom: 1px solid var(--stroke-1);
}
/*navbar-custom .OK*/
header .navbar-custom {
	min-height: 70px;
	padding-top:0;
	padding-bottom:0;
	background: transparent !important;
	border:none;
}
/*navbar-brand .OK*/
header .navbar-custom .navbar-brand {
	display:block;
	margin:0;
	padding:0;
}
/*navbar-toggler .FALSE*/
header .navbar-toggler {
	display:none;
	border:none;
	padding-right:5px;
	padding-left:3px;
	height:30px;
}
header .navbar-toggler span {
	display: block;
	margin-top:6px;
	width: 20px;
	height: 1px;
	background-color: var(--black);
	-webkit-animation-timing-function: cubic-bezier(0.5, 10, 0.6, 0.1);
	animation-timing-function: cubic-bezier(0.5, 10, 0.6, 0.1);
	box-shadow: 1px 1px 4px darken(#9b59b6, 4%);
	transition: all 0.25s ease-out;
}
header .navbar-toggler span:nth-of-type(1){
	margin-top:0;
}
header .navbar-toggler:not(.collapsed) span:nth-of-type(1){
	 transform: rotate(45deg);
}
header .navbar-toggler:not(.collapsed) span:nth-of-type(2){
	display:none;
}
header .navbar-toggler:not(.collapsed) span:nth-of-type(3){
	margin-top: -1px;
	transform: rotate(-45deg);
}
/*nav-item .OK*/
header .navbar-custom .navbar-nav > .nav-item{
	position:relative;
	margin: 0 16px;
}
/*nav-link .OK*/
header .navbar-custom .navbar-nav > .nav-item > .nav-link{
	padding: 0;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
header .navbar-custom .navbar-nav > .nav-item:hover:before,
header .navbar-custom .navbar-nav > .nav-item.active:before{
	content:"";
	position:absolute;
	left:0;
	right:0;
	bottom:-22px;
	height:2px;
	background-color: var(--black);
}
/*dropdown-toggle .FALSE*/
.navbar-nav .dropdown-toggle::after{
	display:none;
}
/*dropdown .FALSE*/
header .navbar-custom .navbar-nav .dropdown-menu{
    padding: 30px 0 40px 0;
    margin-top: 0;
    background-color: var(--white);
    background-clip: inherit !important;
	border-radius: 0;
	border: none;
	border-top: solid 1px var(--stroke-1);
}
header .navbar-custom .navbar-nav .dropdown-menu .nav-link{
	margin-bottom: 14px;
    padding: 0;
	font-family: 'Calistoga', serif;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray);
}
header .navbar-custom .navbar-nav .dropdown-menu .nav-link:hover{
	color: var(--black);
}
/*btn-lg .OK*/
header .navbar-custom .btn-lg{
	margin-left: 20px;
}
/*dropdown.hover-open .OK*/
.dropdown.hover-open .dropdown-toggle::after{
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M.47.47a.75.75%200%200%201%201.06%200L6%204.94%2010.47.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06z%22%20fill%3D%22%23170A0F%22%2F%3E%3C%2Fsvg%3E') !important;
}
.dropdown.hover-open .dropdown-menu{
	margin-top:0; /*hover fix*/ 
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.03);
	border: solid 1px var(--stroke-1);
	border-top:none;
	background-color: var(--white);
	border-radius:0 0 10px 10px;
}
.dropdown.hover-open .dropdown-divider {
    border-top: solid 1px var(--stroke-1);
}
.dropdown.hover-open .dropdown-item{
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.dropdown.hover-open .dropdown-item:hover{
	background:none;
	color: var(--black);
}
/*my-account-hover*/
.my-accaount button{
	margin:10px 0;
	background:none;
}
.my-accaount figure{
	overflow:hidden;
	display:flex;
	justify-content: center;
	align-items: center;
	margin:0;
	width: 50px;
	height: 50px;
	border-radius:50px;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
.my-accaount .fullname{
	margin-left:10px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.my-accaount .dropdown-toggle::after{
	margin:2px 0 0 8px;
	width: 12px;
	height: 7px;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%227%22%20viewBox%3D%220%200%2012%207%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M.47.47a.75.75%200%200%201%201.06%200L6%204.94%2010.47.47a.75.75%200%201%201%201.06%201.06l-5%205a.75.75%200%200%201-1.06%200l-5-5a.75.75%200%200%201%200-1.06z%22%20fill%3D%22%23170A0F%22%2F%3E%3C%2Fsvg%3E') !important;
	border:none;
}
.my-accaount .dropdown-menu{
	min-width: 206px;
}
/*dropdown screen dark overlay. OK*/
span.overlay-dark{
	content: ''; 
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--black);
    pointer-events: none;
    z-index:1019;
	opacity:0.3; 
	visibility:visible;
	position: fixed;
}
/*header notifications .OK*/
header .notifications{
}
header .notifications .dropdown-toggle{
	position:relative;
	margin:23px 36px 23px 16px;
	background:none;
}
header .notifications .dropdown-toggle::after{
	display:none;
}
header .notifications sup {
    position:absolute;
    top: -8px;
	left: 11px;
    vertical-align: baseline;
}
header .notifications sup span{
	background-color: #f00;
	min-width:20px;
	height:20px;
	padding: 2px 0 0;
	border-radius:100%;
	font-family: Inter;
	font-size: 12px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	text-align: center;
	color: var(--white);
	border:2px solid var(--white);
}
header .notifications .dropdown-menu{
	min-width: 268px;
}
header .notifications .dropdown-menu h6{
	padding-top:6px;
	padding-bottom:6px;
	font-family: Inter;
	font-size: 16px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.63;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
header .notifications .dropdown-menu .message{
	padding-top:6px;
	padding-bottom:6px;
	font-family: Inter;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
	text-decoration:underline;
}
/*header instant survey .OK*/
header .instant-survey-link {
    position:relative;
	padding-right:6px;
}
header .instant-survey-link sup {
    position: absolute;
    top: -6px;
    right: -6px;
    vertical-align: baseline;
}
header .instant-survey-link .dropdown-item sup {
    top: auto;
    right: auto;
	margin:3px 0 0 2px;
}
header .instant-survey-link sup span {
    background-color: var(--blue) !important;
    min-width: 20px;
    height: 20px;
    padding: 2px 0 0;
    border-radius: 100%;
    font-family: Inter;
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    color: var(--white);
    border: 2px solid var(--white);
}


/* FOOTER .FALSE
-------------------------------------------------- */
footer{
	color: var(--black);
}
/*footer-top .FALSE*/
footer .footer-top{
	position:relative;
    padding: 100px 0 220px 0;
	border-top:1px solid var(--stroke-1);
	background: var(--bg) url('../images/footer-bg.png') no-repeat;
	background-size: cover;
	background-position: center;
}
/*footer-nav .OK*/
footer .footer-top ul {
    margin-bottom: 0;
    padding-left: 0;
}
footer .footer-top ul li {
    margin-bottom: 8px;
}
footer .footer-top h4{
    margin-bottom: 34px;
    font-size: 28px;
}
footer .footer-top h5{
    margin-bottom: 16px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.63;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
footer .footer-top ul li a{
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
footer .footer-top ul li a:hover{
	color: var(--black);
}
/*footer-bottom .FALSE*/
.footer-bottom{
	padding:28px 0;
	background-color: var(--background);
	border-top:1px solid var(--stroke-1);
}
.footer-bottom a,
.footer-bottom .copyright{
	margin-right:24px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
.footer-bottom a:hover{
	color: var(--gray);
}



/* FORM
-------------------------------------------------- */
/*custom .form-group .FALSE*/
.custom .form-group {
	margin-bottom: 36px;	
}
.custom .form-floating>label{
	padding:15px 20px;
}
.custom .form-floating>.form-control,
.custom .form-floating>.form-control-plaintext,
.custom .form-floating>.form-select{
	min-height:auto; /*form-floating height bug fix*/
}
.custom .form-control,
.custom .form-select {
	background-clip: padding-box;
	transition:none;
	height:50px;
	padding: 0 14px;
	border-radius: 6px;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
.custom .form-control.is-invalid {
	border: solid 1px var(--red);
	background-image:none !important;
}
.custom .form-select.is-invalid {
	border: solid 1px var(--red);
	--bs-form-select-bg-icon:none !important;
}
.custom .form-control,
.custom .form-label,
.custom .form-select {
	display:block;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.custom .form-control:disabled,
.custom .form-select:disabled {
	background-color:var(--bg-2) !important;
}
.custom .invalid-feedback{
	margin-top:10px;
	display:block;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--red);
}
.custom .form-control:focus,
.custom .form-select:focus {
	border: solid 1px var(--gray-1) !important;
	background-color: var(--white) !important;
	box-shadow:none !important;
}
.custom textarea.form-control {
	padding: 16px;
	min-height: 120px;
	border:1px solid #dedede;
}
.custom .form-select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: var(--white);
	--bs-form-select-bg-img: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20data-name%3D%22Group%203448%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214.148%22%20height%3D%227.545%22%20viewBox%3D%220%200%2014.148%207.545%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22ehqdr6ji6a%22%3E%3Cpath%20data-name%3D%22Rectangle%202364%22%20style%3D%22fill%3Anone%3Bstroke%3A%23b2b2b2%22%20d%3D%22M0%200h14.148v7.545H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg%20data-name%3D%22Group%203447%22%20style%3D%22clip-path%3Aurl(%23ehqdr6ji6a)%22%3E%3Cpath%20data-name%3D%22Path%204966%22%20d%3D%22m13.454.25-6.6%206.6L.25.25%22%20transform%3D%22translate(.222%20.222)%22%20style%3D%22stroke-linecap%3Around%3Bstroke-linejoin%3Around%3Bfill%3Anone%3Bstroke%3A%23b2b2b2%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat;
	background-position: right 18px top 50%, 0 0;
	background-size: 14.1px 7.5px;
}
.custom .form-floating .form-select{
	height:56px;
	padding-top: 1.625rem;
	padding-bottom: 0.625rem;
}
.custom #birthdayYear{
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}
/*custom radio and checkbox .OK*/
.custom .form-check{
	padding-left: 34px;
}
.custom .form-check .form-check-input {
	position:relative;
	margin-top:0;
	margin-left: -34px;
	width: 24px;
	height: 24px;
	background-color: var(--white);
	border-color: var(--stroke-1);
}
.custom .form-check .form-check-input[type=checkbox] {
	border-radius:6px;
}
.custom .form-check .form-check-input:checked {
    border-color: var(--black);
}
.custom .form-check .form-check-input.is-invalid {
    border-color: var(--red);
}
.custom .form-check .form-check-input:checked[type=checkbox] {
	border-color: var(--black);
	background-color: var(--white);
	background-size:10px 8px;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%228%22%20viewBox%3D%220%200%2010%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9.351.644a.5.5%200%200%201%20.005.707l-5.913%206a.5.5%200%200%201-.712%200L.644%205.233a.5.5%200%200%201%20.712-.702l1.731%201.757L8.644.649A.5.5%200%200%201%209.35.644z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E') !important;
}
.custom .form-check .form-check-input:checked[type=radio] {
	border-color: var(--black);
	background-color: var(--white);
	background-size:8px 8px;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%228%22%20height%3D%228%22%3E%3Ccircle%20cx%3D%224%22%20cy%3D%224%22%20r%3D%224%22%20style%3D%22filL%3A%23000000%3B%22%20%2F%3E%3C%2Fsvg%3E') !important;
}
.custom .form-check .form-check-label,
.custom .form-check .form-check-label a{
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.custom .form-check .form-check-label a{
	text-decoration:underline;
}
.custom .form-check .form-check-input[type=radio] {
	margin-top: 0.18em; /*radio label line height bug fix*/
}
/*input-group .FALSE*/
.custom .input-group-text {
	font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: var(--gray);
    background-color: var(--background);
    border-radius: .25rem;

}
/*file .FALSE*/
.custom input[type=file]{
	padding: 6px 12px;
	height:auto;
}
/*form custom button .FALSE*/
.custom .btn {

}
/*input-group .FALSE*/
.custom .input-group .btn{
	/*
	width:auto !important;
	min-width:122px !important;
	*/
}



/* BUTTONS .OK
-------------------------------------------------- */
.btn{
	display:inline-block;
	padding:0 30px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	text-align: center;
	border-radius:44px;
	transition: all .3s;	
}
.btn.focus, 
.btn:focus{
	box-shadow:none;
}
.btn:hover{
}
.btn.btn-lg{
	height: 44px;
	line-height:42px; /*vertical center*/
}
.btn.btn-sm{
	height: 40px;
	line-height:38px; /*vertical center*/
	font-size: 13px;
}
/*.btn-primary .OK*/
.btn-primary{
  	border: solid 1px var(--blue);
	color: var(--white);
	background-color: var(--blue);
}
.btn-primary:hover,
.btn-primary.btn:focus,
.btn-primary.btn:active,
.btn-primary.btn:disabled{
	border: solid 1px var(--blue);
	background-color: var(--white);
	color: var(--blue);
}
/*.btn-outline-primary .FALSE*/
.btn-outline-primary{
  	border: solid 1px var(--blue);
	color: var(--black);
    background-color: transparent;
}
.btn-outline-primary:hover,
.btn-outline-primary.btn:focus,
.btn-outline-primary.btn:active,
.btn-outline-primary.btn:disabled{
	border: solid 1px var(--black);
	background-color: var(--black);
	color: var(--blue);
}
/*.btn-outline-secondary .FALSE*/
.btn-outline-secondary{
  	border: solid 1px var(--stroke-1);
	color: var(--black);
	background-color: var(--white);
}
.btn-outline-secondary:hover,
.btn-outline-secondary.btn:focus,
.btn-outline-secondary.btn:active,
.btn-outline-secondary.btn:disabled{
  	border: solid 1px var(--black);
	color: var(--black);
	background-color: var(--white);
}
/*.btn-dark .OK*/
.btn-dark{
  	border: solid 1px var(--black);
	color: var(--white);
    background-color: var(--black);
}
.btn-dark:hover,
.btn-dark.btn:focus,
.btn-dark.btn:active,
.btn-dark.btn:disabled{
	border: solid 1px var(--black);
	background-color: var(--white);
	color: var(--black);
}
/*.btn-outline-dark .OK*/
.btn-outline-dark.btn{
	border: solid 1px var(--black);
	color: var(--black);
    background-color: transparent;
}
.btn-outline-dark.btn:hover,
.btn-outline-dark.btn:focus,
.btn-outline-dark.btn:active,
.btn-outline-dark.btn:disabled{
	border: solid 1px var(--black);
  	background-color: var(--black);
	color: var(--white);
}
/*.btn-outline-light .FALSE*/
.btn-outline-light.btn{
	border: solid 1px var(--blue);
	color: var(--white);
    background-color: transparent;
}
.btn-outline-light.btn:hover,
.btn-outline-light.btn:focus,
.btn-outline-light.btn:active,
.btn-outline-light.btn:disabled{
	border: solid 1px var(--blue);
	background-color: var(--blue);
	color: var(--black);
}
/*button save spinner. OK*/
button .spinner,
input[type=submit] .spinner{
	display: none !important;
}
button:disabled .spinner,
input[type=submit]:disabled .spinner{
	display: inline-block !important;
}


/* BANNER .FALSE
-------------------------------------------------- */
body .banner{
	background:none;
}
body .banner h1{
	display:none;
}
body .banner:not(.hidden-banner){
	position:relative;
	overflow:hidden;
	background-color: var(--bg);
	border-bottom:1px solid var(--bg-2);
}
body .banner:not(.hidden-banner)::before {
	display:none;
}
body .banner:not(.hidden-banner) .wrap {
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	display: flex;
	align-items: center;
}
body .banner:not(.hidden-banner) .row {
	height:200px;
    -ms-flex-align: center!important;
    align-items: center!important;
}
body .banner.lg-banner:not(.hidden-banner) .row {
	height:320px;
}
body .banner:not(.hidden-banner) h1 {
	display:inherit !important;
	margin:0;
    font-family: 'Calistoga', serif;
	font-size: 32px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.44;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
body.products.category .banner:not(.hidden-banner) h1 {
	font-size: 46px;
}
body .banner:not(.hidden-banner) p {
	display:inherit !important;
	margin:10px 0 0 0;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
body .banner:not(.hidden-banner) .nav-breadcrumb{
	position:absolute;
	bottom:22px;
}
body .banner:not(.hidden-banner) .nav-breadcrumb .breadcrumb{
	margin: 0;
}
body .banner.hidden-banner .nav-breadcrumb .breadcrumb{
	margin-top: 30px;
}


/* BREADCRUMB .FALSE
-------------------------------------------------- */
.nav-breadcrumb{
	margin-bottom:0;
	display:none;
}
.nav-breadcrumb .breadcrumb{
	padding:0;
	margin:0;
	background-color: transparent !important;
}
.nav-breadcrumb .breadcrumb .breadcrumb-item+.breadcrumb-item{	
	padding-left:10px;
}
.nav-breadcrumb .breadcrumb .breadcrumb-item,
.nav-breadcrumb .breadcrumb .breadcrumb-item.active,
.nav-breadcrumb .breadcrumb .breadcrumb-item > a{
	opacity: 0.6;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.83;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.nav-breadcrumb .breadcrumb .breadcrumb-item > a:hover{
	opacity: 1;
}
.breadcrumb-item+.breadcrumb-item::before {
	opacity: 0.6;
	color: var(--black);
	padding-right:10px;
}


/* SECOND MENU SCROLLER .FALSE
-------------------------------------------------- */
.nav-second{
    background-color:inherit;
	border-bottom: 1px solid var(--stroke-1);
	/*navbar scroller*/
	position: relative;
	height:58px;
	z-index: 2;
	overflow-y: hidden;
}
.nav-second .nav {
	/*navbar scroller*/
	display: flex;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: 0;
	overflow-x: auto;
	text-align: center;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}
.nav-second .nav .nav-item .nav-link,
.nav-second .nav .nav-item.active .nav-link {
	position:relative;
    margin-right: 24px;
    padding: 20px 0;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.nav-second .nav .nav-item .nav-link:hover,
.nav-second .nav .nav-item.active .nav-link {
	color: var(--black);
}
/*.nav-second .nav .nav-item .nav-link:hover:before,*/
.nav-second .nav .nav-item.active .nav-link:before {
	content:"";
	display:block;
	width: 100%;
	position:absolute;
	bottom:0;
	left:0;
	border-bottom:1px solid var(--black);
}
.nav-second .nav .nav-item:last-child .nav-link{
    margin-right: 0;
}
.nav-second .nav .nav-item .nav-link.logout-link svg{
    margin-top:-3px;
	margin-left:6px;
}
.nav-second .nav .nav-item .nav-link.logout-link:hover svg path{
    fill:var(--black);
}


/* WRAPPER .FALSE
-------------------------------------------------- */
main > .wrapper{
	margin-top:40px;
	margin-bottom:80px;
}


/* GALLERY CAROUSEL
-------------------------------------------------- */
.carousel.gallery{
	background-color: #f8f8f8; 
}
.carousel.gallery .carousel-control-next,
.carousel.gallery .carousel-control-prev{
	display:inherit;
	opacity: 1;
	top: inherit;
	width:40px;
}
.carousel.gallery .carousel-control-next{
	right: 20px;
	bottom: 20px;
}
.carousel.gallery .carousel-control-next svg,
.carousel.gallery .carousel-control-prev svg{
	width:40px;
	height:40px;
}
.carousel.gallery .carousel-control-next svg path,
.carousel.gallery .carousel-control-prev svg path{
	stroke:var(--blue);
}
.carousel.gallery .carousel-control-next:hover svg rect,
.carousel.gallery .carousel-control-prev:hover svg rect{
	fill:var(--blue);
}
.carousel.gallery .carousel-control-next:hover svg path,
.carousel.gallery .carousel-control-prev:hover svg path{
	stroke:var(--white);
}
.carousel.gallery .carousel-control-prev{
	left: inherit;
	right: 70px;
	bottom: 20px;
}


/* GENERAL TEXT .FALSE
-------------------------------------------------- */
h1{
	margin-bottom:45px;
	font-family: 'Calistoga', serif;
	font-size: 55px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	color: var(--black);
}
h2{
	margin-bottom:30px;
	font-family: 'Calistoga', serif;
	font-size: 40px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	color: var(--black);
}
h3{
	margin-bottom:15px; /*.FALSE*/
	font-family: 'Calistoga', serif;
	font-size: 32px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	color: var(--black);
}
h4{
	margin-bottom:15px;
	font-family: 'Calistoga', serif;
	font-size: 22px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	color: var(--black);
}
h5{
	margin-bottom:15px;
	font-family: 'Calistoga', serif;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	color: var(--black);
}
h6{
	margin-bottom:15px;
	font-family: 'Calistoga', serif;
	font-size: 15px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	color: var(--black);
}
.text,
.text a:not(.btn){
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.text a:not(.btn):hover{
	color: var(--blue);
}
.text .carousel.gallery{
	margin-top:60px;
}
.text .exp2{
	margin-top:45px;
}
.text ul{
	list-style:outside;
	padding-left: 14px;
}
.text ul li{
	margin-left:20px;
}
.text table{
	width:100%;
	border: solid 1px #e6e6e6;
}
.text table tr{
    border-bottom: 1px solid #e6e6e6;
}
.text table tr td,
.text table tr th{
	padding:14px 20px;
    border-right: 1px solid var(--stroke-1);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.text table thead{
	background-color: var(--stroke-1);
}
.text table thead tr th{
	padding-top:16px;
	padding-bottom:16px;
	font-weight: 600;
}



/* SCROLLBAR .FALSE
-------------------------------------------------- */
.scroll{
	overflow-y: hidden;
    overflow-x: auto;
	scrollbar-color: #fff rgba(153,153,153,1);
	scrollbar-width: thin;
}
.scroll::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
.scroll::-webkit-scrollbar-button {
	width: 0px;
	height: 0px;
}
.scroll::-webkit-scrollbar-thumb {
	background: #999;
	border: 10px none var(--white);
	border-radius: 61px;
}
.scroll::-webkit-scrollbar-thumb:hover {
 	background: #999;
}
.scroll::-webkit-scrollbar-thumb:active {
	background: #999;
}
.scroll::-webkit-scrollbar-track {
	background: #e6e6e6;
	border: 6px none var(--white);
	border-radius: 30px;
}
.scroll::-webkit-scrollbar-track:hover {
	background: #e6e6e6;
}
.scroll::-webkit-scrollbar-track:active {
	background: #e6e6e6;
}
.scroll::-webkit-scrollbar-corner {
	background: transparent;
}


/* MEMBERS. FALSE
-------------------------------------------------- */
/*general*/
.members main .content .custom .btn{
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.members main .content .custom .input-group .btn{
	width:auto; /*input-group btn bug fix*/
}
.members main .content h2{
	margin-bottom:20px;
	font-family: 'Calistoga', serif;
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--blue);
}
.members main .content .guest{
	margin-bottom:60px;
}
/*forgot*/
.forgot a{
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: var(--black);
	text-decoration:underline;
}
.forgot a:hover{
	color: var(--blue);
	text-decoration:none;
}
/*change password*/
.change-password{
	position:relative;
}
.change-password a{
	display:inline-block;
	position:absolute;
	z-index:1;
	right:16px;
	top:-71px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	text-align: left;
	color: var(--blue);
}
.change-password-btn:hover{
	color: var(--black);
}
.change-password input,
.change-password label{
	display:none !important;
}
.change-password input.visible,
.change-password label.visible{
	display:block !important;
}
/*back button*/
.members .back-button{
	display: -ms-flexbox!important;
    display: flex!important;
	-ms-flex-align: center!important;
    align-items: center!important;
	margin-bottom:30px;
	font-family: 'Calistoga', serif;
	font-size: 33px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.21;
	letter-spacing: -0.73px;
	text-align: left;
	color: var(--black);
}
.members .back-button span{
	padding-left:11px;
}
/*order details .FALSE*/
.members.order-details .cart-panel-left .card{
}
/*my-orders .OK*/
.members.my-orders .record{
	margin-bottom:24px;
}
.members.my-orders .record .card{
	height:100%;
}
.members.my-orders .record .card .card-header{
	padding: 15px 20px;
	font-family: Inter;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
	background-color: var(--bg);
}
.members.my-orders .record .card .card-header svg{
	margin-right:10px;
}
.members.my-orders .record .card .card-body{
	padding: 20px;
}
.members.my-orders .record .card .card-body p{
	margin-bottom:20px;
	font-family: Inter;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.members.my-orders .record .card .card-body .box-info{
	margin-bottom:20px;
	font-family: Inter;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.43;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.members.my-orders .record .card .card-body .box-info span{
	display:block;
}
.members.my-orders .record .card .card-body .box-info a{
	text-decoration:underline;
}
.members.my-orders .record .card .btn-dark{
	margin-top:10px;
}
/*order-details .OK*/
.members.order-details .card .card-body{
	padding:24px;
}
.members.order-details .card .card-header{
	padding: 15px 20px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
	background-color: var(--bg-2);
}
.members.order-details .card hr{
	opacity:1;
	margin:20px -24px;
	border-color: var(--stroke-1);
}
.members.order-details .stepper{
	margin: 30px 0 26px;
}
.members.order-details .box-info.alert{
	margin: -20px -24px;
	padding:20px 24px;
	border: none;
	border-radius: 0;
}
.members.order-details .box-info.alert a{
	text-decoration:underline;
}
/*order-details > products. OK*/
.members.order-details .products h3{
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.members.order-details .products .card hr{
	margin:0;
}
.members.order-details .products-image a{
	display:block;
	padding: 10px 23px;
	border-radius: 12px;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
.members.order-details .products-title{
	display:block;
	margin-bottom:14px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.members.order-details .products-attribute,
.members.order-details .products-personalized{
	display:block;
	font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.11;
    letter-spacing: normal;
    text-align: left;
    color: var(--gray);
}
.members.order-details .products-sku{
	display:block;
	margin-top:14px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: normal;
	text-align: left;
	color: #b4b4b4;
}
.order-details .cart-prices-info{
	top:104px; /*sticky bug fix*/
	z-index: 10; /*sticky bug fix*/
	background-color: var(--white);
}



/* ADDRESS BOOK .OK
-------------------------------------------------- */
.members.address-book .record-list .seperator{
	padding-bottom: 30px;
}
.members.address-book .record-list .card{
	height:100%;
	min-height:222px;
	margin-bottom:0;
	border-radius: 10px;
}
.members.address-book .record-list .card-body{
	padding: 23px 24px;
}
.members.address-book .record-list .card h5{
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.members.address-book .record-list .card p{
	margin-bottom:20px;
	height:124px;
	overflow:hidden;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.members.address-book .record-list .btn-outline-danger,
.members.address-book .record-list .btn-outline-primary{
	border:none;
	padding:0 24px 0 0;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.61;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
	text-decoration:underline;
}
.members.address-book .btn-outline-danger:hover,
.members.address-book .btn-outline-primary:hover{
	background:none;
	color: var(--gray);	
}
/*address modal .OK*/
#addressModal{
	border-radius: 16px;
    --bs-modal-width: 830px;
}
#addressModal .modal-body {
    padding: 20px 44px;
}
#addressModal h5{
	margin: 30px 0;
	font-family: 'Calistoga', serif;
	font-size: 28px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
#addressModal ul.info-list{
	margin-bottom:40px;
	padding-left:14px;
	list-style:disc;
}
#addressModal ul.info-list li{
	margin-bottom:10px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
#addressModal .btn-list{
	text-align:center;
}
#addressModal .btn-list button{
	display:block;
	margin:0 auto 20px auto;
}
#addressModal .btn-list button.btn-cancel{
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
	text-decoration:underline;
	background:none;
}



/*REVIEWS .OK
-------------------------------------------------- */
/*reviews-tabs .OK*/
.members.reviews .reviews-tabs{
}
.members.reviews .reviews-tabs .nav-underline {
	border-bottom:1px solid var(--stroke-1);
	--bs-nav-underline-gap: 30px;
}
.members.reviews .reviews-tabs .nav-underline .nav-link {
	padding-top:2px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.members.reviews .reviews-tabs .nav-underline .nav-link.active,
.members.reviews .reviews-tabs .nav-underline .show>.nav-link
{
	color: var(--blue);
}
.members.reviews .reviews-tabs .nav-underline .info {
	margin-left:2px;
	padding: 0 5px 1px;
	width: 20px;
	height: 20px;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
	border-radius:100%;
	line-height:1.22; /*vertical fix*/
}
/*reviews-tabs tab-content .OK*/
.members.reviews .reviews-tabs .tab-content{
	margin-top:24px;
}
/*.reviews-tabs .products*/
.members.reviews .reviews-tabs .products-view .record-list .card{
	height:auto;
	margin-bottom:24px;
}
.members.reviews .reviews-tabs .products-view .record-list .card .card-body{
	padding:0;
}
.members.reviews .reviews-tabs .products-view .record-list .products-image{
	border-right:solid 1px var(--stroke-1);
}
.members.reviews .reviews-tabs .products-view .record-list .products-image a{
	display:block;
	margin:10px 22px;
}
.members.reviews .reviews-tabs .products-view .record-list .reviews-status{
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.members.reviews .reviews-tabs .products-view .record-list .reviews-btn{
	background:none;
	transition: transform .25s ease-in-out;
}
.members.reviews .reviews-tabs .products-view .record-list .reviews-btn:not(.collapsed){
	transform: rotate(-180deg);
}
.members.reviews .reviews-tabs .products-view .record-list .collapse-reviews{
	padding: 40px 14px 50px 14px;
	border-top: solid 1px var(--stroke-1);
	background-color: var(--bg-2);
}
.members.reviews .reviews-tabs .products-view .record-list .collapse-reviews button[type="submit"]{
	margin:40px 0 0 0;
}
/*privacy-settings .OK*/
.members.reviews .reviews-tabs .privacy-settings-button{
	font-size: 14px;
	font-weight: normal;
	color: var(--gray1);
	background:none;
}
.members.reviews .reviews-tabs .privacy-settings-button.active{
	color: var(--black);
}
.members.reviews .reviews-tabs .privacy-settings-button.active svg g{
	fill: var(--black);
}
.members.reviews .reviews-tabs .privacy-settings-button svg{
	margin-right:4px;
}
.members.reviews .reviews-tabs .privacy-settings .card-body{
	padding:30px 24px 40px 24px;
}
.members.reviews .reviews-tabs .privacy-settings p.info{
	margin-bottom:22px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.members.reviews .reviews-tabs .privacy-settings .form-group{
	margin-bottom:20px;
}
.members.reviews .reviews-tabs .privacy-settings button[type="submit"]{
	margin:40px 0 0 0;
}
/*reviews modal .OK*/
#reviewsModal{
	--bs-modal-width: 736px;
}
#reviewsModal .modal-body{
	--bs-modal-padding: 74px 24px 40px 24px;
}
#reviewsModal .modal-body .btn{
	display:block;
	margin:52px auto 0 auto;
}
/*product+reviews. OK*/
.product-reviews .comment {
	margin-bottom:40px;
}
.product-reviews .card .card-header {
	background-color: var(--white);
	padding:16px 24px;
}
.product-reviews .card .card-body {
	padding:30px 24px !important;
}
.product-reviews .comment h5{
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.product-reviews .comment figure {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: solid 1px var(--stroke-1);
    background-color: var(--white);
}
.product-reviews .comment .profile .title {
	margin-left:12px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.product-reviews .comment .profile .country {
	margin-left:12px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.product-reviews .comment .right .date {
	margin: 4px 16px 0 0;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.product-reviews .comment .detail {
	margin-bottom:0;
}
/*products reviews images .OK*/
.products.detail .product-reviews .review-images{
}
.products.detail .product-reviews .review-images .img-container{
	position:relative;
	margin:20px 16px 0 0;
	max-width: 116px;
	max-height: 116px;
}
.products.detail .product-reviews .review-images .img-container a{
	display:inline-block;
}
.products.detail .product-reviews .review-images .img-thumbnail {
	border-radius: 8px;
	border: solid 1px var(--stroke-1);
	padding:0;
}
/*reviews-vote .OK*/
.product-reviews .comment .reviews-vote {
	padding:16px 24px;
	font-family: Inter;
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.product-reviews .comment .reviews-vote button{
	padding:0 10px;
	height:29px;
	line-height: 27px;
	border-radius: 33px;
	font-family: Inter;
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
/*members.reviews published .OK*/
.members.reviews #published{
	margin-top:40px;
}
.members.reviews #published .products-title{
	display:block;
	margin-bottom:22px;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.members.reviews #published .products-title:hover{
	color: var(--gray);
}
/*upload photo .OK*/
.members.reviews .upload ul {
    padding: 0;
    margin: 0;
    list-style: inside;
}
.members.reviews .upload ul li {
    font-family: Inter;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.86;
    letter-spacing: normal;
    text-align: left;
    color: var(--gray-1);
}
.members.reviews .reviews-add-photo{
	font-family: Inter;
	font-size: 15px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
	text-decoration:underline;
}
.members.reviews .reviews-add-photo:hover{
	text-decoration:none;
}
.members.reviews .reviews-add-photo span{
	margin-left:12px;
}
.members.reviews .preview-container{
	margin-top:20px;
}
.members.reviews .preview-container .img-container{
	position:relative;
	margin:0 16px 20px 0;
}
.members.reviews .preview-container .img-thumbnail {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 8px;
	border: solid 1px var(--stroke-1);
	padding:0;
}
.members.reviews .preview-container .remove-btn{
	position:absolute;
	top:-9px;
	right:-9px;
	width: 24px;
	height: 24px;
	padding: 2px 7px 7px 6px;
	background-color: var(--black);
	font-family: Inter;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: center;
	color: var(--white);
	border-radius: 100%;
}



/* TABS MENU .FALSE
-------------------------------------------------- */
.tabs-menu .nav{
	margin-bottom:40px !important;
	padding: 4px;
	border-radius: 6px;
	background: var(--background);
}
.tabs-menu .nav .nav-link{
	font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: normal;
	color:var(--blue);
	background: none;
}
.tabs-menu .nav .nav-link:hover{
	color:var(--black);
}
.tabs-menu .nav .nav-link.active{
	color: var(--black);
	background: var(--white);
}



/* LIST GROUP .FALSE
-------------------------------------------------- */
.list-group-item {
    padding-top:16px;
    padding-bottom:16px;
    border: 1px solid var(--stroke-1);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 1.33;
	color: var(--black);	
}
.list-group-item-action:focus,
.list-group-item-action:hover {
    color: var(--black);
    background-color: #fafafa;
}
.list-group-item.list-group-red{
	font-size:14px;
	color: var(--black);
	border:none;
	padding-bottom:0;
}
.list-group .list-group-header{
	font-weight:600;
}


/* HOME. FALSE
-------------------------------------------------- */
/* home carousel .FALSE*/
#homeCarousel{
	background-color: var(--bg);
}
/*carousel-caption .FALSE*/
#homeCarousel .caption {
	z-index:99;
}
#homeCarousel .caption {
	max-height:600px;
	overflow:hidden;
}
#homeCarousel .caption .info{
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.67;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
#homeCarousel .caption .info h3{
	margin: 0 0 4px;
	font-family: 'Calistoga', serif;
	font-size: 50px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.2;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
#homeCarousel .caption .info p{
	margin: 26px 0 0 0;
}
#homeCarousel .caption .btn{
	margin-top: 64px;
}
/*carousel prev+next .OK*/
#homeCarousel .carousel-control-next, 
#homeCarousel .carousel-control-prev{
	z-index:100;
	width: 9%;
}
#homeCarousel .carousel-control-next span, 
#homeCarousel .carousel-control-prev span{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: solid 1px var(--stroke-1);
	border-radius:50%;
	background-color: var(--white);
}
/*slider->new-year-2025*/
.new-year-2025:before,
.new-year-2025:after{
	content:"";
	z-index:1;
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:0;
	background-image: url(../images/home/slider/happy-new-year-2025-1.webp);
	background-size: cover;
	background-position: center;
}
.new-year-2025:after{
	z-index:3;
	background-image: url(../images/home/slider/happy-new-year-2025-2.webp);
}
.new-year-2025 .caption{
	position:relative;
	z-index:3;
}
.new-year-2025 .slider-image{
	position:relative;
	z-index:2;
}
.new-year-2025 .color-1{
	color:#f25738 !important;
}
.new-year-2025 .color-2{
	color:#288e5b !important;
}
.new-year-2025 .btn-dark{
	border: solid 1px #f25738;
    color: var(--white);
    background-color: #f25738;
}
.new-year-2025 .btn-dark:hover,
.new-year-2025 .btn-dark:focus{
	border: solid 1px var(--black);
	background-color: var(--black);
	color: var(--white);
}
/*home content .OK*/
.home .content .head h2{
	margin-bottom:16px;
	text-align: center;
}
.home .content .head p{
	margin-bottom:0;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.67;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
/*main-3step .OK*/
.main-3step{
	overflow:hidden;
	padding:68px 0 80px;
	border-top:1px solid var(--stroke-1);
}
.main-3step .head{
	z-index:2;
	margin-bottom:36px;
}
.main-3step .bottom{
	margin-top:60px;
	text-align:center;
}
.main-3step .card-1 .row{
	position:relative;
}
.main-3step .card-1 .row:before{
	content:"";
	z-index:1;
	position:absolute;
	left:-54px;
	bottom:-64px;
	width:173px;
	height:173px;
	background:url(../images/home/3step/bg1.png) no-repeat;
}
.main-3step .card-1 .row:after{
	content:"";
	z-index:1;
	position:absolute;
	top:-115px;
	right:-68px;
	width:296px;
	height:296px;
	background:url(../images/home/3step/bg2.png) no-repeat;
}
.main-3step .card-1 .row:before,
.main-3step .card-1 .row:after {
	animation: rotateAnim 48s infinite linear;
}
@keyframes rotateAnim {
  from {-webkit-transform:rotate(0deg);}
  to {  -webkit-transform:rotate(360deg);}
}
.main-3step .card-1 .card{
	z-index:2;
}
/*main-grid .OK*/
.main-grid{
	padding:68px 0 48px;
	border-top:1px solid var(--stroke-1);
	background-color: var(--bg);
}
.main-grid .head{
	z-index:2;
	margin-bottom:28px;
}
.main-grid .bottom h3{
	margin:26px 0 0;
	text-align:center;
	color: var(--blue);
}
.main-grid .card-1 .row{
	position:relative;
}
.main-grid .card-1 .separator{
	margin-bottom:24px;
}
.main-grid .card-1 .card{
	z-index:2;
	padding:0;
	background-color: var(--white);
	text-align:left;
}
.main-grid .card-1 .card .card-body{
	padding:16px 26px 100px 20px;
}
.main-grid .card-1 .col-md-6 .card .card-body{
	padding-right:180px;
}
.main-grid .card-1 .card .card-body h4{
	margin-bottom: 12px;
}
.main-grid .card-1 .card .card-text{
	font-size:15px;
	line-height: 1.8;
}
.main-grid .card-1 .card .card-icon{
	position:absolute;
	bottom:16px;
	right:16px;
}
/*main-card .OK*/
.main-card{
	padding:80px 0;
	border-top:1px solid var(--stroke-1);
}
.main-card .card-1 .card{
	padding:0;
}
.main-card .card-1 .card .card-body{
	padding:40px 50px;
	text-align:left;
}
.main-card .card-1 .card h3,
.main-card .card-1 .card .card-text{
	text-align:left;
}
.main-card .card-1 .card .btn-lg{
	margin-top:40px;
}
/*main-products .OK*/
.main-products{
	overflow:hidden;
	padding:68px 0 80px;
	border-top:1px solid var(--stroke-1);
	background-color: var(--bg);
}
.main-products .head{
	margin-bottom:48px;
}
.main-products .bottom{
	margin-top:60px;
	text-align:center;
}
/*main-products tablist .OK*/
.main-products .nav-scroll {
    margin: 0 0 40px 0;
    position: relative;
    height: 36px;
    z-index: 2;
    overflow-y: hidden;
}
.main-products .nav-scroll .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 10px; /*x-scroll hide*/
    margin-top: 0;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.main-products .nav-scroll .nav .nav-link{
	display:block;
	margin-right:20px;
	padding: 0 16px;
	height:36px;
	line-height:34px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	text-align: center;
	color: var(--gray-1);  
	border-radius: 36px;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
.main-products .nav-scroll .nav .nav-link:hover,
.main-products .nav-scroll .nav .nav-link.active{
	color: var(--black);  
	border: solid 1px var(--black);
}
.main-products .nav-scroll .nav .nav-link:last-child{
	margin-right:0;
}
/*main-products slider .OK*/
.main-products .slick-list{
	overflow:inherit;
}
.main-products .slick-track{
	min-width:100%;
}
.main-products .item,
.related-products .item{
	padding:0 12px; /*slick slider bs5 fix*/
}
.main-products .slick-prev,
.main-products .slick-next{
	z-index:2;
	margin-top: -18px;
	display:flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 34px;
	border-radius:50%;
	border: solid 1px var(--stroke-1);
	background: var(--white) url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%227%22%20height%3D%2212%22%20viewBox%3D%220%200%207%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.53.47a.75.75%200%200%201%200%201.06L2.06%206l4.47%204.47a.75.75%200%201%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200z%22%20fill%3D%22%23170A0F%22%2F%3E%3C%2Fsvg%3E") center center no-repeat;
	opacity:1;
}
.main-products .slick-prev{
	left: -4px;
}
.main-products .slick-next{
	right: -4px;
	margin-top: -36px;
	transform:rotate(-180deg);
}
.main-products .slick-prev:hover,
.main-products .slick-next:hover,
.main-products .slick-prev:focus,
.main-products .slick-next:focus{
	border-color: var(--black);
	background: var(--black) url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%227%22%20height%3D%2212%22%20viewBox%3D%220%200%207%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.53.47a.75.75%200%200%201%200%201.06L2.06%206l4.47%204.47a.75.75%200%201%201-1.06%201.06l-5-5a.75.75%200%200%201%200-1.06l5-5a.75.75%200%200%201%201.06%200z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3C%2Fsvg%3E") center center no-repeat;
}
.main-products .slick-prev:before,
.main-products .slick-next:before{
	display:none
}



/* RECORD LIST .OK
-------------------------------------------------- */
.record-list .item{
	margin-bottom:40px;
}
.record-list .card{
	overflow:hidden;
	display:block;
	height:100%;
	border-radius: 16px;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.03);
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
.record-list .card .card-body{
	padding:23px 15px;
}
.products.category .record-list .card .card-body{
	padding-top:16px ;
}
.record-list .card figure{
	overflow:hidden;
	margin:0 16px 0 0;
}
.products.category .record-list .card figure{
	padding-bottom:12px;
	border-bottom:1px solid var(--stroke-1);
}
.record-list .card figure img{
	image-rendering: -webkit-optimize-contrast; /*chrome fix*/
}
.record-list .card .card-title{
	margin:2px 0 10px;
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.record-list .card .card-text{
	margin-bottom:10px;
	height:52px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow:hidden;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.record-list .card .reviews{
	margin-left: auto !important;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.08;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
/*card footer*/
.record-list .card .card-footer{
	padding:18px 18px 12px;
	background-color: var(--bg-2);
	border-top: solid 1px var(--stroke-1);
}
.record-list .card .card-footer .avatar{
	overflow:hidden;
	display:flex;
	justify-content: center;
	align-items: center;
	margin-right:12px;
	width: 50px;
	height: 50px;
	border-radius:50px;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
.record-list .card .card-footer .profile .title{
	margin-bottom:3px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.record-list .card .card-footer .profile .country{
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.record-list .card .card-footer .date{
	margin-top:4px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: right;
	color: var(--gray-1);
}
.record-list .card .card-footer .detail{
	margin:10px 0 0;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}



/* RATING STAR .OK
-------------------------------------------------- */
.rating{
	display:flex;
	justify-content: flex-start;
	align-items: center;
	line-height:1;
}
.rating .stars{
	display:block;
}
.rating .stars span{
	float:left;
	margin:-2px 0 0 4px;
}
.rating .stars span:first-child{
	margin-left:0;
}
.rating .vote{
	margin-left:10px;
	padding: 5px 9px 4px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: center;
	color: var(--gray-1);
	border-radius: 28px;
	border: solid 1px var(--stroke-1);
	background-color: var(--bg-2);
}


/*RECORD LIST GRID .FALSE
-------------------------------------------------- */
.record-list-grid .text .wrap{
	width:100%;
	max-width:520px;
	text-align:center !important;
}
.record-list-grid h3{
	margin-bottom: 12px !important;
	text-align:center !important;
}
.record-list-grid p{
	margin-bottom: 16px !important;
	text-align:center !important;
}
.record-list-grid .readmore{
	font-family: 'Outfit', sans-serif !important;
	font-size:18px !important;
}


/*PRODUCTS DETAIL .FALSE
-------------------------------------------------- */
.products.detail main > .wrapper {
    margin-top:-80px;
    margin-bottom:0;
}
/*breadcrumb .OK*/
.products.detail .banner:not(.hidden-banner) .nav-breadcrumb{
	display: inherit;
	top:22px;
	bottom:inherit;
}
.products.detail .nav-breadcrumb .breadcrumb{
}
/*banner .OK*/
.products.detail .banner {
    background-repeat: no-repeat !important;
    background-size: center center !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}
/*product-wrapper .OK*/
.products.detail .product-wrapper{
	padding-bottom:80px;
	background-color: var(--bg-2);
}
/*left box .OK*/
/*products images .OK*/
.products.detail .product-img {
	border-right: solid 1px var(--stroke-1);
}
.products.detail .product-img .wrap{
	padding:14px 48px 14px 62px;
}
/*img zoom+thumbnails .OK*/
.products.detail .large-img {
	position:relative;
	overflow:hidden;
}
.products.detail .large-img a{
	display:block;
}
.products.detail .thumbnails {
	padding-left:0;
}
.products.detail .thumbnails a{
	display:block;
}
/*products right .OK*/
.products.detail .right .wrap{
	padding:14px;
}
.products.detail .right .reviews{
	margin-left: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.08;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.products.detail .right h1{
	margin-bottom: 30px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.products.detail .right h3{
	margin-bottom: 16px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.products.detail .marketplaces{
	margin-top: 30px;
}
/*information .OK*/
.products .product-description{
	margin-top:24px;
}
.products .product-description{
	margin-top:24px;
}
.products .product-description .card-body{
	padding: 26px 24px;
}
.products .product-description h5{
	margin-bottom: 20px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.63;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.products .product-description .card-text{
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.products .product-description .read-more{
	display:inline-block;
	margin-top:32px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
	text-decoration:underline;
}
/*product-prices .FALSE*/
.products .information .product-prices{
	margin-bottom:32px;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.44;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
/*product attribute .FALSE*/
.products .information .attribute{
	margin-top: 4px;
	margin-bottom: 26px;
}
.products .information .attribute p{
	margin-bottom: 12px;
	font-family: 'Calistoga', serif;
	font-size: 14px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.products .information .products-msgbox .alert{
	margin-top: 1rem;
	margin-bottom: 1rem;
}
/*products -> quantity + cart -> quantity .FALSE*/
.products .quantity,
.cart .quantity{
	display:inline-block;
	width:100%;
}
.products .quantity .btn,
.cart .quantity .btn{
	padding:0;
	min-width: 46px;
	height: 46px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
	color: var(--black);
	border-radius: 0;
}
.products .quantity .btn:hover,
.cart .quantity .btn:hover {
    border: solid 1px var(--blue);
}
.products .quantity .bootstrap-touchspin-down,
.cart .quantity .bootstrap-touchspin-down {
	border-top-right-radius: 0; /*bug fix*/
    border-bottom-right-radius: 0; /*bug fix*/
}
.products .quantity .bootstrap-touchspin-up,
.cart .quantity .bootstrap-touchspin-up {
    border-top-left-radius: 0; /*bug fix*/
    border-bottom-left-radius: 0; /*bug fix*/
}
.products .quantity .form-control,
.cart .quantity .form-control {
	height: 46px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
/*products -> cart-add-button .FALSE*/
.products.detail .cart-add-button{
	width:100%;
}
/*products detail tablist .FALSE*/
.products.detail .product-tabs{
	margin-top: 60px;
	border-top: 1px solid var(--stroke-1);
}
.products.detail .product-tabs .nav-item .nav-link{
	opacity:1;
	margin-left:0;
	padding:13px 0 ;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.22;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray);
	border-radius:0;
	border:none !important;
	border-bottom:1px solid var(--stroke-1) !important;
	background-color:transparent;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%228%22%20height%3D%2214%22%20viewBox%3D%220%200%208%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.293%207%20.646%201.354l.708-.708L7.707%207l-6.353%206.354-.708-.707L6.293%207z%22%20fill%3D%22%23787878%22%2F%3E%3C%2Fsvg%3E%0A');
	background-repeat: no-repeat, repeat;
	background-position: center right 10px;
	transition: all 0.2s ease-in-out;
}
.products.detail .product-tabs .nav-item .nav-link:hover {
	padding-left:4px;
	color: var(--black);
	background-position:center right 6px;
}
.products.detail .product-tabs .tab-content{
	display:none !important;
}
.products.detail .product-tabs .tab-content{
	display:none !important;
}
/*productAjaxModal .FALSE*/
#productAjaxModal .modal-body ul{
	padding-left: 20px;
}
#productAjaxModal .modal-body ul > li{
	list-style:disc;
}
#productAjaxModal .modal-body .info img{
	max-width: 100% !important;
	height: auto !important;
}
/*product social .FALSE*/
.products .product-social ul{
	margin-top:20px;
	padding-left:0 !important;
}
.products .product-social ul li{
	margin-bottom:5px;
	list-style:none !important;
}
.products .product-social ul li a{
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray);
}
.products .product-social ul li a{
	transition:all .4s;
}
.products .product-social ul li a:hover{
	color: var(--black);
}
/*related-products .FALSE*/
.products.detail main .content .related-products h3{
	margin-bottom: 40px;
	font-family: 'Calistoga', serif;
	font-size: 28px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.36;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
/*products reviews .OK*/
.products.detail .product-reviews{
	padding: 78px 0 74px;
	background-color: var(--bg);
	border-top:1px solid var(--stroke-1);
}
.products.detail .product-reviews h4{
	margin-bottom:0;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.56;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}



/* CART .FALSE
-------------------------------------------------- */
.quantity input{
	text-align:center;
}
.cart-products:after{
	content:"";
	display:inline-block;
	width:100%;
	margin-left:15px;
	margin-right:15px;
	margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}
.cart-products:last-child{
	margin-bottom:0 !important;
} 
.cart-products:last-child:after{
	display:none;
}  
.cart-products .products-image a{
	display:block; /*safari fix*/
}
.cart-products .right{
	width:100px;
	min-width:100px;
}
/*credit card modal*/
#creditCardModal .spinner-wrap{
	position:relative;
}
#creditCardModal .spinner-wrap .spinner-center{
	position: absolute;
    top: 34px;
	width:100%;
    text-align:center;
}
#creditCardModal .modal-body{
	min-height:100px;
}


/* CATEGORY+SEARCH .FALSE
-------------------------------------------------- */
.products.category main{
	background-color: var(--bg-2);
}
.products.category .hidden-banner .nav-breadcrumb{
	display:inherit;
}
/*search .OK*/
.products.category .search-form.custom .search-input {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
	border-radius: 10px;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.03);
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
.products.category .search-form .search-input:focus {
	border-color: #d8d8d8 !important;
}
/*submit button*/
.products.category .search-form.custom .form-group {
	position:relative;
}
.products.category .search-form.custom input[type=submit] {
    display: inherit !important;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23ser1t3u92a)%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M2%209a7%207%200%201%201%2012.042%204.856%201.012%201.012%200%200%200-.186.186A7%207%200%200%201%202%209zm12.618%207.032a9%209%200%201%201%201.414-1.414l3.675%203.675a1%201%200%200%201-1.414%201.414l-3.675-3.675z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22ser1t3u92a%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat, repeat;
    background-size: 20px 20px;
    color: transparent;
    background-color: transparent !important;
    outline: none;
    border: none;
}
/*left-menu > .menu-item(products) .OK */
.left-menu .menu-item{
	margin-bottom:28px;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.03);
}
.left-menu .menu-item h3{
	display: flex!important;
	align-items: center!important;
	justify-content: start!important;
	padding:24px 16px;
	height:61px;
	margin-bottom:0;
	font-family: Inter;
	font-size: 16px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.63;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
	border-radius: 10px 10px 0  0;
	border: solid 1px var(--stroke-1);
	background-color: var(--bg);
}
.left-menu .menu-item .nav{
	border-radius: 0  0 10px 10px;
	border-right: solid 1px var(--stroke-1);
	border-left: solid 1px var(--stroke-1);
	border-bottom: solid 1px var(--stroke-1);
	background-color: var(--white);
}
.left-menu .menu-item .nav-item{
	display: block;
	width:100%;
	padding:20px 16px 18px;
	border-bottom:1px solid var(--stroke-1);
}
.left-menu .menu-item .nav-item:last-child{
	border-bottom:none;
}
.left-menu .menu-item .nav-item,
.left-menu .custom .form-check .form-check-label,
.left-menu .custom .form-check .form-check-label a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: normal;
    text-align: left;
    color: var(--black);
}
/*
.left-menu .menu-item .filter-btn{
	width:100%;
	padding:24px 0 22px 0;
	text-align:center;
}
.left-menu .menu-item .filter-btn .btn{
	min-width:auto !important;
	max-width:196px;
	width:100%;
}
*/


/* MODAL .FALSE
-------------------------------------------------- */
.modal-backdrop.show {
    opacity: .8;
}
.modal .close:not(.btn-close){
	background:none;
}
.modal button.close[data-bs-dismiss="modal"] {
	z-index:9999;
	position:fixed;
	top:20px;
	right:20px;
	background:none;
	float:inherit;
	font-size:inherit;
}
.modal .modal-content {
	border-radius:16px;
	background-color: var(--white);
}
/*modal as left/right sidebar .FALSE */
.modal.left .modal-dialog,
.modal.right .modal-dialog {
	position: fixed;
	margin: auto;
	max-width: inherit;
	width: 400px;
	height: 100%;
	-webkit-transform: translate3d(0%, 0, 0);
		-ms-transform: translate3d(0%, 0, 0);
		 -o-transform: translate3d(0%, 0, 0);
			transform: translate3d(0%, 0, 0);
}
.modal.left .modal-content,
.modal.right .modal-content {
	border-radius:0;
	height: 100%;
	overflow-y: auto;
}
.modal.left .modal-body,
.modal.right .modal-body {
	padding-left:30px;
	padding-right:30px;
}
/*Left*/
.modal.left.fade .modal-dialog{
	left: -400px;
	-webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
	   -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
		 -o-transition: opacity 0.3s linear, left 0.3s ease-out;
			transition: opacity 0.3s linear, left 0.3s ease-out;
}
.modal.left.fade.show .modal-dialog{
	left: 0;
}  
/*Right*/
.modal.right.fade .modal-dialog {
	right: -400px;
	-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
	   -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
		 -o-transition: opacity 0.3s linear, right 0.3s ease-out;
			transition: opacity 0.3s linear, right 0.3s ease-out;
}
.modal.right.fade.show .modal-dialog {
	right: 0;
}
/*model center wrap*/
.modal.sidebar .modal-body .wrap{
	width:100%;
}
/*model sidebar style*/
.modal.sidebar .modal-content{
	border-radius: 0;
	border: none;
	background-color: var(--white);
}
.modal.sidebar .modal-body{
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.87;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray);
}
.modal.sidebar h4{
	font-family: 'Calistoga', serif;
	font-size: 24px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.28;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.modal.sidebar h5{
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.28;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
/*modal language+currency .FALSE*/
.modal.sidebar .language,
.modal.sidebar .currency{
	margin:50px 20px 0 20px;
}
.modal.sidebar .currency{
	margin-top:70px;
}
.modal.sidebar .language h4,
.modal.sidebar .currency h4{
	margin-bottom:60px;
}
.modal.sidebar .language h5,
.modal.sidebar .currency h5{
	font-size: 15px;
	font-weight: 500;
}
.modal.sidebar .language ul,
.modal.sidebar .currency ul{
	display:inline-block;
	width:100%;
	padding-left:0;
	margin-top:7px;
	margin-bottom:0;
}
.modal.sidebar .language ul > li,
.modal.sidebar .currency ul > li{
	float:left;
	width:50%;
	margin-top:15px;
}
.modal.sidebar .language ul > li a,
.modal.sidebar .currency ul > li a{
    -ms-flex-align: center!important;
    align-items: center!important;
    display: -ms-flexbox!important;
    display: flex!important;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.71;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.modal.sidebar .language ul > li a.active,
.modal.sidebar .language ul > li a:hover,
.modal.sidebar .currency ul > li a.active,
.modal.sidebar .currency ul > li a:hover{
	color: var(--black);
}
.modal.sidebar .language ul > li a img,
.modal.sidebar .currency ul > li a figure{
	opacity:0.5;
}
.modal.sidebar .currency ul > li a figure{
	display:inline-block;
	margin:0;
	width: 48px;
	height: 48px;
	line-height:47px;
	border-radius:48px;
	border: solid 1px var(--blue);
	background-color: var(--white);
	font-size:18px;
	text-align:center;
}
.modal.sidebar .language ul > li a.active img,
.modal.sidebar .language ul > li a:hover img,
.modal.sidebar .currency ul > li a.active figure,
.modal.sidebar .currency ul > li a:hover figure{
	opacity:1;
}
.modal.sidebar .language ul > li a span,
.modal.sidebar .currency ul > li a span{
	margin-left:16px;
}
/*fullscreen modal*/
.modal .modal-fullscreen .modal-body{
	padding: 58px 0 !important;
}
/*modal centered*/
.modal .modal-dialog-centered:not(.modal-fullscreen) button.close[data-bs-dismiss="modal"]{
	position: absolute;
}
/*login modal .FALSE*/
#loginModal .modal-body h5{
	margin: 40px auto 14px auto;
	max-width: 240px;
	font-family: 'Calistoga', serif;
	font-size: 28px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	text-align: center;
	color: var(--black);
}
#loginModal .modal-body p{
	max-width: 240px;
	margin: 0 auto 28px auto;
	font-family: 'Calistoga', serif;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
#loginModal .modal-body .btn{
	width:100%;
}
#loginModal .modal-body .register-wrap{
	margin-bottom: 20px;
}
#loginModal .modal-body .register-wrap h5{
	margin: 52px auto 18px auto;
}
/*header search modal .FALSE*/
#searchModal{
	padding:0 !important;
}
#searchModal .modal-dialog{
	width: 100% !important;
	max-width:inherit !important;
	margin: 0 !important;
	padding: 0 !important;
}
#searchModal .modal-content{
	height: 310px;
	background-color: var(--white);
	border:none;
	border-radius:0;
}
#searchModal .modal-body{
	padding:0 !important;
}
#searchModal .logo{
	margin-top:34px;
	margin-bottom:50px;
	/*width:282px;*/
}
#searchModal form {
	max-width: 736px;
	margin:0 auto;
}
#searchModal form.custom .form-group {
	margin-bottom:50px;
	position:relative;
}
#searchModal .custom .search-input {
	height: 46px;
	padding: 0;
	font-family: 'Calistoga', serif;
	font-size: 20px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
	border-radius: 0;
	border:none;
	border-bottom: solid 1px var(--stroke-1) !important;
	background-color: transparent;
}
#searchModal .custom .search-input:focus {
	border:none !important;
	border-bottom: solid 1px var(--blue) !important;
}
#searchModal form.custom input[type=submit] {
	display:inherit !important;
    position: absolute;
    width: 22px;
    height: 22px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9.889%201.5a8.389%208.389%200%201%200%200%2016.778%208.389%208.389%200%200%200%200-16.778zM.5%209.889a9.389%209.389%200%201%201%2018.778%200%209.389%209.389%200%200%201-18.778%200z%22%20fill%3D%22%231D252D%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22m16.52%2015.813%204.834%204.833-.707.708-4.834-4.834.707-.707z%22%20fill%3D%22%231D252D%22%2F%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat, repeat;
	background-size: 22px 22px;
	background-color: transparent !important;
    color: transparent;
    outline: none;
    border: none;
}
/*info-modal .FALSE*/
.modal.info-modal .modal-body{
	padding-top:60px;
	padding-bottom:100px;
}
.modal.info-modal.thanks .info-svg{
	display:block;
	margin:0 auto 30px auto;
	width: 80px;
	height: 80px;
	padding: 21px;
	background-color: #7cba19;
	border-radius:80px;
}
.modal.info-modal .info-title{
	margin-bottom:14px;
	font-family: 'Inter', sans-serif;
	font-size: 34px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
.modal.info-modal .info-text{
	font-family: Inter;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.75;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
/*modal(fullscreen+center)*/
.modal.full-center .modal-body .text h3{
	margin-bottom:28px;
}
.modal.full-center .modal-body .text p{
	margin-bottom:28px;
}
.modal.full-center .modal-body .text .btn{
	display:block;
	margin:0 auto;
}
.modal.full-center .modal-body .text .success{
	display:block;
	margin:0 auto 30px;
	padding: 19px;
	width: 78px;
	height: 78px;
	border-radius:78px;
	background-color: var(--green);
}
/*modal(border-radius)*/
.modal .border-radius .modal-content{
	border-radius: 16px;
}



/*CONFIRMATION .FALSE*/
.confirmation main .content .text{
	text-align:center;
	margin-top:40px;
	margin-bottom:30px;
}
.confirmation main .content .text h3{
	font-family: 'Calistoga', serif;
	font-size: 28px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.21;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
.confirmation main .content .text p{
	margin-bottom:40px;
	font-family: 'Calistoga', serif;
	font-size: 30px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.23;
	letter-spacing: -0.66px;
	text-align: center;
	color: var(--black);
}
.confirmation main .content .text .order-code h4{
	font-family: 'Calistoga', serif;
	font-size: 20px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.21;
	letter-spacing: -0.28px;
	text-align: center;
	color: var(--black);
}
.confirmation main .content .text .order-code .text-success{
	margin-bottom:40px;
	padding: 10px 35px !important;
	border: solid 1px var(--stroke-1) !important;
	background-color: var(--background) !important;
	font-family: 'Inter', sans-serif;
	font-size: 20px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.21;
	text-align: center;
	color: var(--black) !important;
}


/*CART .FALSE*/
.cart h5{
	margin-bottom:0;
	font-family: 'Calistoga', serif;
	font-size: 28px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.21;
	letter-spacing: -0.62px;
	text-align: left;
	color: var(--black);
}
.cart .cart-products h5{
	font-size: 30px;
	line-height: 1.23;
	letter-spacing: -0.99px;
	color: var(--black);
}
/*basket empty*/
.cart .basket-empty figure{
	display:block;
	margin:22px auto;
	width: 100px;
	height: 100px;
	border-radius:100px;
	padding: 31.1px 33.2px 30.2px 28.1px;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
.cart .basket-empty p{
	margin-bottom:30px !important;
	font-family: 'Calistoga', serif;
	font-size: 30px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.23;
	letter-spacing: -0.66px;
	text-align: center;
	color: var(--black);
}
/*products*/
.cart .cart-products-wrap{
	margin-bottom:80px;
}
.cart .cart-products-wrap .list-group-flush>.list-group-item:last-child,
.cart .cart-address .list-group-flush>.list-group-item:last-child  {
    border-bottom-width: 1px !important;
}
.cart .products-title{
	display:block;
	margin-bottom:14px;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.24;
	letter-spacing: -0.34px;
	text-align: left;
	color: var(--black);
}
.cart .products-attribute,
.cart .products-personalized{
	display:block;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray);
}
.cart .products-sku{
	display:block;
	margin-top:14px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: normal;
	text-align: left;
	color: var(--blue);
}
/*cart -> cart-remove*/
.cart .cart-remove{
	position:absolute;
	margin-top:11px;
	margin-left:12px;
}
/*order types*/
.cart-order-types,
.cart-address .shipping-address,
.cart-address .billing-address,
.cart-payment-methods{
	margin-bottom:65px;
}
/*address*/
.cart-address .btn-cart-address{
	margin-left:30px;
	padding: 9px 19px 8px 19px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.68;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
	background:none;
	white-space:nowrap;
}
.cart-address .btn-cart-address svg{
	margin-right:6px;
}
.cart-address .btn-cart-address svg rect{
	fill: var(--blue);
}
.cart-address .btn-cart-address:hover,
.cart-address .btn-cart-address:active{
	color: var(--gray) !important;
}
.cart-address .edit-remove-bar{
	margin-top:10px;
}
.cart-address .edit-remove-bar a{
	margin-left:24px !important;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.21;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.cart-address .edit-remove-bar a:hover{
	color: var(--black);
}
.cart-address .edit-remove-bar a svg{
	display:none;
}
/*billing address*/
.cart-address .billing-address .same-delivery-address{
	margin-top:25px;
}
.cart-address .list-group-item {
    padding-top: 30px;
    padding-bottom: 30px;
}
/*payment methods*/
.cart-payment-methods .credit-card{
	margin-top:30px;
}
.cart-payment-methods .credit-card .credit-card-bank .form-group{
	margin-bottom:15px;
}
.cart-payment-methods .credit-card .credit-card-bank .credit-card-image{
	display:none;
}
.cart-payment-methods .credit-card .credit-card-bank .installment-header [class*=col-]{
	font-weight:600;
}
.cart-payment-methods .credit-card .credit-card-bank .card-installment-values{
	text-align:center;
}
.cart-payment-methods .credit-card .credit-card-bank .card-installment label{
	margin-bottom:0;
}
/*bank account*/
.cart-payment-methods .bank-account{
	margin-top:30px;
}
.cart-payment-methods .bank-account .accordion .accordion-header .form-check{
  margin-bottom:30px;
  margin-right: 13px;
}
.cart-payment-methods .bank-account .accordion .accordion-header .form-check:last-child{
  margin-right: 0;
}
.cart-payment-methods .bank-account .accordion .accordion-header .form-check img{
  border: solid 1px var(--stroke-1);
}
.cart-payment-methods .bank-account .accordion .accordion-header .form-check-label{
  top: 50%;
  transform:translateY(-50%);
}
.cart-payment-methods .bank-account .accordion .collapse-content{
	margin-bottom:30px;
	opacity: 1;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.46;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray);
}
.cart-payment-methods .bank-account .accordion .collapse-content b {
	font-weight: normal;
}
.cart-payment-methods .bank-account textarea.form-control {
    margin-top: 0 !important;
}
/*order notes*/
.cart-order-notes h5{
	margin-bottom:20px;
}
.cart-order-notes{
	margin-bottom:28px;
}
.cart-order-notes #orderNotes{
}
/*policy*/
.cart .policy{
	margin-bottom:60px;
}
/*submit*/
.cart input[type="submit"]{
	width:100%;
}
/*prices info*/
.cart-prices-info{
	margin-bottom:30px;
	padding:1rem;
	border: solid 1px var(--stroke-1);
	background-color: var(--background);
	border-radius: 0;
}
.cart-prices-info .list-group-item{
	background:none;
	border-color:var(--stroke-1) !important;
}
.cart-prices-info h5 {
    border-bottom: 1px solid var(--stroke-1) !important;
    padding-bottom: 15px;
    margin-bottom: 0 !important;
}
.cart-prices-info a:hover{
	color: var(--black) !important;
}
.cart-prices-info a:hover svg path{
	fill: var(--black) !important;
}
.cart-prices-info a.coupon-remove-button svg{
	display:inline-block;
	margin-top:-3px;
}
.cart-prices-info .cart-grand-total{
	margin-top:1rem;
}
/*points*/
.points-grand-total{
	color:#b4b4b4;
	font-weight:bold;
}
/*coupon code*/
.cart-coupon-code{
	margin: 0 -17px -17px;
	padding: 17px;
	background: var(--blue);
	border-radius: 0;	
}
.cart-coupon-code hr{
	display:none;
}
.cart-coupon-code a{
	color: var(--white) !important;
}
.cart-coupon-code a:hover{
	color: var(--black) !important;
}
.cart-coupon-code [name=couponCode]{
	margin:20px 0 15px 0;
}
.cart-coupon-code .coupon-add-button{
	width:100%;
	margin-bottom:5px;
	border: 1px solid var(--blue);
}
.cart-coupon-code .coupon-add-button:hover{
	border: 1px solid var(--white);
}


/* COUPONS .FALSE
-------------------------------------------------- */
.members.coupons .record-list .item {
	margin-bottom:30px;
}
.members.coupons .record-list .item .card {
    border: 1px solid #dedede;
    border-radius: 0;
}
.members.coupons .record-list .item .card .card-left{
	border-right:1px dashed #dedede;
}
.members.coupons .record-list .item.active .card,
.members.coupons .record-list .item.active .card .card-left {
    border-color: var(--blue) !important;
}
.members.coupons .record-list .card .card-left .discount{
	/*
	height: 68px;
    overflow: hidden;
	*/
    font-family: 'Calistoga', serif;
    font-size: 32px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
    letter-spacing: normal;
    text-align: center;
    color: var(--black);
	margin-bottom:16px;
}
.members.coupons .record-list .card .card-left .discount small{
	display:block;
	font-size:60%;
}
.members.coupons .record-list .btn{
	width:100%;
	min-width:inherit !important;
}
.members.coupons .record-list .card .card-right h5.card-title {
	margin-bottom: 15px;
	font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.21;
    letter-spacing: normal;
    text-align: left;
    color: var(--black);
}
.members.coupons .record-list .card .card-right .card-text {
	font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: var(--black);
}
.members.coupons .record-list .card .card-right .card-text small:after{
	content:"";
	display:block;
	width:100%;
}



/*TABLIST (scroll) .FALSE*/
.nav-scroll {
    z-index: 2;
    position: relative;
    height: 24px;
	margin-bottom:20px;
    overflow-y: hidden;
}
.nav-scroll .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: 0;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.nav-scroll .nav-item{
	min-height:24px;
}
.nav-scroll .nav-item .nav-link{
	padding:0;
	margin-right:24px;
	font-family: 'Calistoga', serif;
	font-size: 15px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.23;
	letter-spacing: -0.43px;
	text-align: left;
	color: var(--black);
	opacity: 0.4;
}
.nav-scroll .nav-item:last-child .nav-link{
	margin-right:0;
}
.nav-scroll .nav-item .nav-link.active{
	color: var(--black);
	opacity: 1;
	position:relative;
}
.nav-scroll .nav-item .nav-link.active:after{
	content: "";
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--black);
}


/* PAGINATION .FALSE
-------------------------------------------------- */
.pagination {
	margin-top:30px;
}
.page-link {
	padding: 12px 16px;
	background-color: var(--white);
	border: 1px solid var(--stroke-1);
	font-family: 'Calistoga', serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.21;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
}
.page-link:hover {
	color: var(--black);
	background-color: #e9ecef;
	border-color: var(--stroke-1);
}
.page-item.active .page-link {
	color: var(--black);
	background-color: #e9ecef;
	border-color: var(--stroke-1);
}


/* WP .FALSE
-------------------------------------------------- */
/*wp btn*/
.wp-btn {
    display: block;
    z-index: 200;
    position:fixed;
	right:20px;
	bottom:20px;
	font-family: 'Calistoga', serif;
    overflow: hidden;
    border: 0px;
}
.popover{
	z-index:999 !important;
}
.wp-popover{
	position:fixed !important;
}



/* INFO BOX .FALSE
-------------------------------------------------- */
body.info-box-open {
	/*padding-top: 38px;*/
}
body.info-box-open header .info-box{
	display:flex !important;
}
body header .info-box{
	display:none !important;
	z-index:1031;
	/*
	position:fixed;
	left:0;
	top:0;
	*/
	width:100%;
	height:38px;
	background:#f8f8f8;
	border-bottom:1px solid var(--stroke-1);
	
}
body.info-box-open header .info-box .close{
	position:absolute;
	right:15px;
	margin-top:2px;
}
body.info-box-open header .info-box span{
	font-family: 'Calistoga', serif;
	font-size: 15px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	line-height: 36px;
	letter-spacing: -0.26px;
	color: var(--black);
}
body.info-box-open header .info-box.blink span{
	animation: blinker 1s linear infinite;
}
@keyframes blinker {
	33%{opacity: 1;}
	66%{opacity: .75;}
	99%{opacity: 1;}
}
body.info-box-open header nav.navbar-custom{
	/*margin-top:38px;*/
}



/* CAMPAING MODAL .FALSE
-------------------------------------------------- */
#campaignModal .modal-dialog {
    max-width: 720px;
}
#campaignModal .modal-content {
	border:none;
	border-radius:0;
}
#campaignModal .modal-body {
	padding:0;
}
#campaignModal .close:not(.btn-close) {
	position:absolute;
	top:10px;
	right:15px;
}
#campaignModal .close svg{
	width:16px;
}
#campaignModal .modal-body .right {
	padding: 36px;
	position:relative;
}
#campaignModal .modal-body .left {
}
#campaignModal .modal-body .text h4 {
	margin-bottom:15px;
	font-family: 'Calistoga', serif;
	font-size: 32px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.2;
	letter-spacing: normal;
	text-align: center;
	color: var(--blue);
}
#campaignModal .modal-body .text hr {
	border: none;
	height: 1px;
	width: 100%;
	margin-bottom:20px;
	background: var(--blue);
}
#campaignModal .modal-body .text p {
	font-family: 'Calistoga', serif;
	font-size: 17px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.59;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
#campaignModal .modal-body .modal-newsletter-form {
	margin:20px 0;
}
#campaignModal .modal-body .modal-newsletter-close {
	position:absolute;
	left:0;
	right:0;
	bottom:16px;
	text-align:center;
}



/* COKIEE .FALSE
-------------------------------------------------- */
.cokiee-alert{
	z-index:199;
	position:fixed;
	padding: 18px 0;
	bottom:0;
	left:0;
	right:0;
	font-family: 'Calistoga', serif;
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.4;
	letter-spacing: normal;
	color: var(--white);
	background-color: var(--black);
	opacity:0.8;
}
.cokiee-alert a{
	color: var(--white);
}
.cokiee-alert a:not(.btn):hover{
	text-decoration:underline;
}
.cokiee-alert .close-btn{
	display: block;
	margin: 0 auto;
	height: 38px;
	min-width: auto;
	max-width: 150px;
	line-height: 38px;
	font-size: 13px;
}
.cokiee-alert .close-btn:hover{
	color: var(--black);
}


/* ALERTS .FALSE
-------------------------------------------------- */
#Msgbox,
#Msgbox a{
	font-size:14px;
	line-height:1.33;
	text-align:left;
	border-radius:0;
}
#Msgbox .btn-close{
	text-indent:-10000px;
}


/* POINTS .FALSE
-------------------------------------------------- */
.points .currency-symbol{
	min-width:60px;
	text-align:center;
	-ms-flex-pack: center;
	justify-content: center;
} 
.points .create-coupon{
	min-width:140px !important;
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}
.points .colored-1-text{
	color: var(--black);
}
/*points modal*/
.points #pointsCuponModal .info-text{
	margin-top:22px;
	margin-bottom:22px;
	font-family: Proxima Nova;
	font-size: 18px;
	line-height: 1.23;
	color: var(--black);
}
.points #pointsCuponModal .gift-coupon{
	font-family: Proxima Nova;
	font-size: 24px;
	line-height: 1.23;
	color: var(--black);
}
/*points toast*/
.points .coupon-toast{
	z-index:9999;
	position: fixed;
	bottom: 20px;
	right: 20px;
	opacity: 0.9;
}



/* CARD .OK*/
.card{
	overflow:hidden;
	width:100%;
	border-radius:10px;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.03);
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
.card.card-bg{
	background-color: var(--bg);
}
.card .card-header{
	font-family: 'Calistoga', serif;
	font-size: 22px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
	border-bottom: solid 1px var(--stroke-1);
	background-color: var(--bg-2);
}



/* CARD-1.OK
-------------------------------------------------- */
.card-1 .card{
	overflow:hidden;
	padding: 48px 22px;
	height:100%;
	border-radius: 16px;
	border: solid 1px var(--stroke-1);
	background-color: var(--bg);
	text-align: center;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.03);
}
.card-1 .card .card-body{
	padding:40px 0 0;
}
.card-1 .card figure{
	overflow:hidden;
	margin: 0 auto;
	display:flex;
	align-items:center;
	justify-content:center;
	width: 156px;
	height: 156px;
	border-radius: 50%;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.03);
}
.card-1 .card h4{
	margin-bottom: 12px;
}
.card-1 .card .card-text{
	overflow:hidden;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.75;
	letter-spacing: normal;
	color: var(--black);
}



/* CARD-2.OK
-------------------------------------------------- */
.card-2 .card .card-header,
.card-2 .card .card-body{
	padding: 26px 30px;
}



/*PROFILE .OK
-------------------------------------------------- */
/*profile-card .OK*/
.profile-card {
}
.profile-card:before{
	z-index:1;
	content:"";
	height: 77px;
	position:absolute;
	left:0;
	right:0;
	top:0;
	border-bottom: solid 1px var(--stroke-1);
	background-color: var(--bg);
}
.profile-card .card-body{
	padding:30px 14px;
}
.profile-card .card-avatar{
	position:relative;
	z-index:2;
	overflow:hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 10px;
	width: 91px;
	height: 91px;
	border-radius:50%;
	border: solid 1px var(--stroke-1);
    background-color: var(--white);
}
.profile-card h4{
	margin-bottom:4px;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.33;
}
.profile-card .profile-country{
	margin-bottom:18px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: center;
	color: var(--gray-1);
}
.profile-card .profile-box-group{
	margin:0 -6px 24px -6px;
}
.profile-card .btn-box{
	width:100%;
	margin-left:10px;
	padding: 12px 6px 10px;
	border-radius: 10px;
	border: solid 1px var(--stroke-1);
	background-color: var(--bg-2);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
.profile-card .btn-box:first-child{
	margin-left:0;
}
.profile-card .btn-box b{
	font-size: 16px;
	font-weight: bold;
}
.profile-card .progress{
	--bs-progress-height: 9px;
	border-radius: 22px;
	background-color: rgba(116, 116, 116, .3);
}
.profile-card .progress-bar {
    background-color: var(--green);
}
.profile-card .progress-text {
	margin-top:6px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
.profile-card .complete-profile-btn{
	margin-top:16px;
}
/*feed-menu .OK*/
.feed-menu {
	margin-top:24px;	
}
.feed-menu .nav {
	overflow:hidden;
	border-radius: 10px;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.03);
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
.feed-menu .nav .nav-item .nav-link{
	padding:18px 14px 19px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
	border-bottom: solid 1px var(--stroke-1);
}
.feed-menu .nav .nav-item .nav-link span{
	padding-left:12px;
	vertical-align:middle;
}
.feed-menu .nav .nav-item .nav-link:hover,
.feed-menu .nav .nav-item .nav-link.active{
	background-color: var(--bg);
}
.feed-menu .nav .nav-item:last-child .nav-link{
	border:none;
}



/*MY FEED .OK*/
/*my-feed-head-card*/
.my-feed-head-card{
	min-height: 322px;
	position:relative;
}
.my-feed-head-card:before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 28px;
    width: 249px;
    height: 229px;
    background: url(../images/my-feed/head-card-bg-1.png) no-repeat;
}
.my-feed-head-card:after {
    content: '';
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 246px;
    height: 227px;
    background: url(../images/my-feed/head-card-bg-2.png) no-repeat;
}
.my-feed-head-card .radial-progress{
	margin-bottom:30px;
	width:200px;
	height:200px;
}
.my-feed-head-card .card-body{
	position:relative;
    z-index: 2;
	padding:20px 20px 30px;
}
/*how-to-work*/
.my-feed .how-to-work{
	margin-top:66px;
}
.my-feed .how-to-work .head h3{
	margin-bottom:26px;
	text-align:center;
}
.my-feed .how-to-work .card-1 .card{
	padding: 24px 12px;
}
.my-feed .how-to-work .card-1 .card .card-body {
    padding-top: 20px;
}
.my-feed .how-to-work .card-1 .card figure {
    width: 94px;
    height: 94px;
    border-radius: 50%;
}
.my-feed .how-to-work .card-1 .card h4 {
	font-size: 18px;
	line-height: 1.56;
}
.my-feed .how-to-work .card-1 .card .card-text {
	font-size: 13px;
	line-height: 1.77;
}
/*user-activation-alert*/
.user-activation-alert{
	margin-bottom:24px;
}
.user-activation-alert a{
	text-decoration:underline;
}



/*CONTACT .OK
-------------------------------------------------- */
/*contact-info .OK*/
.contact-info,
.contact-info a{
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--blue);
}
.contact-info a:hover{
	color: var(--black);
}
/*contact social .OK*/
.contact-social ul{
	margin:34px 0 0 0;
	padding:0;
}
.contact-social ul li{
	float:left;
	margin:0 14px 0 0;
}
.contact-social ul li a{
	display:inline-block;
	width: 46px;
	height: 46px;
	padding: 10px;
	border-radius: 10px;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
.contact-social ul li a svg path{
	fill:var(--black);
}
.contact-social ul li a
.contact-social ul li a svg g,
.contact-social ul li a svg path{
	transition:all .4s;
}
.contact-social ul li a:hover{
	border: solid 1px var(--black);
	background: var(--black);
}
.contact-social ul li a:hover svg path{
	fill:var(--white);
}



/* FAQ .OK
-------------------------------------------------- */
/*search*/
.faq-search {
	position:absolute;
	bottom:-25px;
	left:15px;
	right:15px;
}
.faq-search form {
	max-width: 540px;
	margin:0 auto;
}
.faq-search form.custom .form-group {
	margin-bottom:0;
	position:relative;
}
.faq-search .custom .search-input {
	border-radius: 10px;
}
.faq-search form.custom input[type=submit] {
	display:inherit !important;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23zjjfn8xsva)%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M2%209a7%207%200%201%201%2012.042%204.856%201.012%201.012%200%200%200-.186.186A7%207%200%200%201%202%209zm12.618%207.032a9%209%200%201%201%201.414-1.414l3.675%203.675a1%201%200%200%201-1.414%201.414l-3.675-3.675z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22zjjfn8xsva%22%3E%20%20%20%20%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat, repeat;
	background-size: 20px 20px;
	background-color: transparent !important;
    color: transparent;
    outline: none;
    border: none;
}



/* LANDINGPAGE .ok
-------------------------------------------------- */
.landingpage main .content h2{
	margin-bottom:16px;
	font-family: 'Calistoga', serif;
	font-size: 40px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.35;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
.landingpage main .content p{
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
/*slider .OK*/
#homeCarousel .animate-svg-text-1{
    animation: svgFillAnim 4s infinite steps(1);
}
@keyframes svgFillAnim {
	0% {
		fill: var(--blue);
	}
	25%{    
		fill: var(--baby-blue);
	}
	50% {
		fill: var(--pink);
	}
	75%{
		fill: var(--yellow);
	}
}
/*top-card .OK*/
.landingpage .top-card{
	margin:-30px 0 80px 0;
}
.landingpage .top-card .card{
	border-radius: 16px;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.03);
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
	text-align:center;
}
.landingpage .top-card .card .card-body{
	padding: 60px 58px 50px 54px;
}
.landingpage .top-card .card .card-title{
	margin-bottom:28px;
	font-family: 'Calistoga', serif;
	font-size: 28px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: normal;
	color: var(--black);
}
.landingpage .top-card .card .card-text{
	margin-bottom:28px;
}
.landingpage .top-card .card .card-text p{
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.75;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
/*LP Newsletter .OK*/
.landingpage .newsletter{
	padding: 68px 0;
	position:relative;
	min-height: 560px;
	/*background: var(--bg) url('../images/landingpage/img2.png') top center no-repeat; */
	background-color: var(--bg); 
	text-align:center;
	border-top:1px solid var(--stroke-1);
	border-bottom:1px solid var(--stroke-1);
}
/*
.landingpage .newsletter:before{
	content:"";
	z-index:1;
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	height: 307px;
	background: url('../images/landingpage/img4.png') bottom center no-repeat; 
}
*/
.landingpage .newsletter .wrap{
	width:100%;
	background: url('../images/landingpage/img3.png') center center no-repeat; 
}
.landingpage .newsletter form.custom{
	position:relative;
	z-index:2;
}
.landingpage .newsletter h2{
	margin-bottom:44px;
}
.landingpage .newsletter .form-policy{
	margin-top:30px;
}
.landingpage .newsletter .form-policy a{
	text-decoration:underline;
}
/*invite-friends .OK*/
.landingpage .invite-friends{
	padding:68px 0 80px;
}
.landingpage .invite-friends .copy-wrap{
	margin-top:34px;
}
/*invite-dropdown*/
.landingpage .invite-friends .invite-dropdown .dropdown-menu {
    padding: 0;
    border: none;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
}
.landingpage .invite-friends .invite-dropdown .dropdown-toggle::after{
	display:none;
}
.landingpage .invite-friends .invite-dropdown ul{
	padding:0;
	margin:0;
}
.landingpage .invite-friends .invite-dropdown ul > li{
	margin-left:18px;
}
.landingpage .invite-friends .invite-dropdown ul > li:first-child{
	margin-left:0;
}
.landingpage .invite-friends .invite-dropdown ul > li > a{
	display:inline-block;
	width:54px;
	height:54px;
	padding: 12px;
	border-radius: 6px;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
	text-align:center;
}
.landingpage .invite-friends .invite-dropdown ul > li > a:hover {
    border: solid 1px var(--black);
}
/*LP contact .OK*/
.landingpage .main-contact{
	padding: 68px 0 80px;
	background-color: var(--blue);
	text-align:center;
    animation: contactBgAnim 4s infinite steps(1);
}
@keyframes contactBgAnim {
	0% {
		background-color: var(--blue);
	}
	25%{    
		background-color: var(--baby-blue);
	}
	50% {
		background-color: var(--pink);
	}
	75%{
		background-color: var(--yellow);
	}
}
.landingpage main .content .main-contact h2,
.landingpage main .content .main-contact p{
	color: var(--white);
}
.landingpage main .content .main-contact a{
	color: var(--white);
}
.landingpage main .content .main-contact a:hover{
	text-decoration:underline;
}
.landingpage main .content .main-contact .btn{
	margin-top:44px; 
}
/*social .OK*/
.landingpage .main-contact .social{
	margin-top:30px;
}
.landingpage .main-contact .social ul{
	padding:0;
	margin:34px 0 0 0;
}
.landingpage .main-contact .social ul > li{
	display:inline-block;
	margin-left:18px;
}
.landingpage .main-contact .social ul > li:first-child{
	margin-left:0;
}
.landingpage .main-contact .social ul > li > a{
	display:inline-block;
	text-align:center;
}
.landingpage .main-contact .social ul > li > a:hover svg path{
	fill: var(--black);
}
.landingpage .main-contact .social ul > li > a:hover svg path.linkedin_path_1{
	fill: var(--black);
}
.landingpage .main-contact .social ul > li > a:hover svg path.linkedin_path_2,
.landingpage .main-contact .social ul > li > a:hover svg path.linkedin_path_3{
	fill: var(--white);
}
/*LP main-3step*/
.landingpage .content .head p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: normal;
    text-align: center;
    color: var(--black);
}
.landingpage .main-3step{
	background-color: var(--bg);
}
.landingpage .main-3step .card-1 .card{
	background-color: var(--white);
}
.landingpage .main-3step .card-1 .card figure{
	background-color: var(--bg);
}
/*LP thankyou .OK*/
.thankyou{
	background-color:var(--bg);
}
.thankyou .row.d-flex{
	padding-top:60px;
	padding-bottom:60px;
	min-height:100vh;
}
.thankyou .text h3{
	margin-bottom:6px;
	text-align:center;
}
.thankyou .text p{
	margin-bottom:28px;
}
.thankyou .text,
.thankyou .text p{
	text-align:center;
}
.thankyou .text .btn{
	display:inline-block;
	margin-top:44px;
}
.thankyou .text .btn{
	margin:0 auto;
}
.thankyou .text .success{
	display:block;
	margin:0 auto 30px;
	padding: 19px;
	width: 78px;
	height: 78px;
	border-radius:78px;
	background-color: var(--green);
}



/* ANIMATE .OK
-------------------------------------------------- */
.animate-color{
    animation: colorAnim 4s infinite steps(1);
}
@keyframes colorAnim {
	0% {
		color: var(--blue);
	}
	25%{    
		color: var(--baby-blue);
	}
	50% {
		color: var(--pink);
	}
	75%{
		color: var(--yellow);
	}
}


/* RADIAL PROGRESS .OK
-------------------------------------------------- */
.radial-progress text.percentage{
	font-family: 'Calistoga', serif;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.35;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
.radial-progress text.complete{
	font-family: 'Calistoga', serif;
	font-size: 9.3px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.35;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}



/* STEPPER .OK
-------------------------------------------------- */
.stepper {
	display: flex;
	justify-content: space-between;
	margin-bottom:20px;
	padding:0;
}
.stepper li {
	width:100%;
	position:relative;
}
.stepper li:before,
.stepper li:after{
	content:"";
	position:absolute;
	top:20px;
	height:1px;
	border-top:1px solid var(--stroke-1);
}
.stepper li:before{
	left:0;
	right:50%;
}
.stepper li:after{
	right:0;
	left:50%;
}
.stepper li:first-child:before,
.stepper li:last-child:after {
	display:none;
}
.stepper li .circle {
	z-index:2;
	position:relative;
	margin:0 auto;
	width:42px;
	height:42px;
	line-height:42px;
	font-family: 'Calistoga', serif;
	font-size: 22px;
	text-align: center;
	border: solid 1px var(--stroke-1);
	background-color: var(--bg);
	border-radius: 50%;
}
.stepper li.active .circle {
	background-color: var(--blue);
	color:var(--white);
}
.stepper li .title {
	margin-top:14px;
	font-family: 'Inter';
	font-size: 14px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
.stepper li .title,
.stepper li .optional {
	text-align: center;
	color:var(--black);
}
.stepper li.active .title {
	color: var(--black);
}
.stepper li .optional {
	margin-top:4px;
	font-family: 'Inter';
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: center;
	color: var(--gray-1);
}
.stepper li.active .optional {
	color:var(--gray);
}
/* stepper > completed .OK */
.stepper.completed li:before,
.stepper.completed li:after{
	top:13px;
	height:1px;
	border-top:2px solid var(--stroke-1);
}
.stepper.completed li.active:before,
.stepper.completed li.active:not(.last-active):after{
	border-top:2px solid var(--green);
}
.stepper.completed li .circle {
	width:28px;
	height:28px;
	line-height:28px;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
	border-radius: 50%;
}
.stepper.completed li.active .circle {
	border: solid 1px var(--green);
	background: var(--green) url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M16.744%204.704a1.48%201.48%200%200%201%200%202.02l-8.163%208.571a1.315%201.315%200%200%201-1.924%200l-3.402-3.571a1.48%201.48%200%200%201%200-2.02%201.315%201.315%200%200%201%201.925%200l2.439%202.56%207.201-7.56a1.315%201.315%200%200%201%201.924%200z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') center center no-repeat;
}



/* PROFILE .OK
-------------------------------------------------- */
/*complete-tabs .OK*/
.complete-tabs{
	overflow:hidden;
	border-radius: 10px;
	box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.03);
	border: solid 1px var(--stroke-1);
	background-color: var(--bg);	
}
.complete-tabs ul.nav{
	display:flex;
	justify-content:center;
	border-bottom: solid 1px var(--stroke-1);
	background-color: var(--white);	
	--bs-nav-underline-gap: 40px;
}
.complete-tabs ul.nav .nav-link{
	display:flex;
	align-items: center;
	padding:16px 0 14px;
	font-family: Inter;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.complete-tabs ul.nav .nav-link.active{
	color: var(--blue);
}
.complete-tabs ul.nav .nav-link svg{
	margin-right:6px;
}
.complete-tabs ul.nav .nav-link.active svg path{
	fill: #2089AB;
}
.complete-tabs .tab-content{
	padding:40px 15px;
}
/*complete-tabs -> membership*/
.complete-tabs .profile-picture figure{
	overflow:hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 58px;
	height: 58px;
	margin: 4px 12px 4px 0;
	border-radius:50%;
	border: solid 1px var(--stroke-1);
	overflow:hidden;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
.complete-tabs .profile-picture a{
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
	text-decoration:underline;
}
.complete-tabs .profile-picture a:hover{
	text-decoration:none;
}
/*accordion*/
.complete-tabs .accordion-header button{
	display:flex;
	justify-content:center;
	align-items:center;
}
.complete-tabs .accordion-header .ok{
	display:flex;
	justify-content:center;
	align-items:center;
	width: 20px;
	height: 20px;
	margin: -2px 0 0 10px;
	padding: 3px;
	background-color: var(--green);
	border-radius:50%;
}
.complete-tabs .accordion-body .ok:after{
	content:"";
	display:inline-block;
	margin-left:8px;
	width:16px;
	height:15px;
	background: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2014%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M11.721%203.293c.372.39.372%201.024%200%201.414l-5.714%206a.92.92%200%200%201-1.347%200l-2.381-2.5a1.036%201.036%200%200%201%200-1.414.92.92%200%200%201%201.347%200l1.707%201.793%205.041-5.293a.92.92%200%200%201%201.347%200z%22%20fill%3D%22%233eb64a%22%2F%3E%3C%2Fsvg%3E') no-repeat;
}
/*profile image modal .OK*/
#profileImageModal{
	--bs-modal-width: 736px;
}
#profileImageModal .modal-body{
	--bs-modal-padding: 54px;
	text-align:center;
}
#profileImageModal .profile-picture{
	margin:40px;
}
#profileImageModal .modal-avatar{
	overflow:hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom:0;
	width: 113px;
	height: 113px;
	border-radius:50%;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
#profileImageModal .modal-avatar img{
	width: 113px; /*upload size fix*/
	height: 113px; /*upload size fix*/
}
#profileImageModal .profile-picture .upload{
	margin-left:20px;
}
#profileImageModal .profile-picture ul{
	padding:0;
	margin:0;
	list-style:inside;
}
#profileImageModal .profile-picture ul li{
	font-family: Inter;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}



/*INSTANT SURVEY .OK
-------------------------------------------------- */
/*surveys-tabs .OK*/
.instant-surveys .surveys-tabs{
}
.instant-surveys .surveys-tabs .nav-underline {
	border-bottom:1px solid var(--stroke-1);
	--bs-nav-underline-gap: 30px;
}
.instant-surveys .surveys-tabs .nav-underline .nav-link {
	padding-top:2px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
.instant-surveys .surveys-tabs .nav-underline .nav-link.active,
.instant-surveys .surveys-tabs .nav-underline .show>.nav-link
{
	color: var(--blue);
}
.instant-surveys .surveys-tabs .nav-underline .info {
	margin-left:2px;
	padding: 0 5px 1px;
	width: 20px;
	height: 20px;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
	border-radius:100%;
	line-height:1.22; /*vertical fix*/
}
/*surveys-tabs tab-content .OK*/
.instant-surveys .surveys-tabs .tab-content{
	margin-top:24px;
}
/*surveys-tabs record-list .OK*/
.instant-surveys .surveys-tabs .record-list .record{
	margin-bottom:28px;
}
.instant-surveys .surveys-tabs .record-list .card-highlight{
	min-height: 164px;
	background-color: var(--bg);
	border-bottom: solid 1px var(--stroke-1);
}
.instant-surveys .surveys-tabs .record-list .card-highlight .card-title{
	font-family: Calistoga;
	font-size: 20px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.55;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
.instant-surveys .surveys-tabs .record-list .info-box-wrap{
	margin-top:-22px;
	margin-bottom:30px;
}
.instant-surveys .surveys-tabs .record-list .info-box {
	padding: 7px 16px;
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	border: 1px solid var(--stroke-1);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: left;
	color: var(--black);
	background-color: var(--white);
}
.instant-surveys .surveys-tabs .record-list .card-footer {
	padding:0 20px 36px;
	text-align:center;
	background:none;
	border:none;
}
/*survey modal .OK*/
#instantSurveyModal button.close {
	top:24px;
    right:32px;
}
#instantSurveyModal .modal-content{
	background-color: var(--bg);
	border-radius:0;
}
#instantSurveyModal .modal-content:before{
	content:"";
	z-index:2;
	position:absolute;
	left:0;
	bottom:100px;
	width:278px;
	height:161px;
	background: url(../images/instant-surveys/left.webp) no-repeat;
}
#instantSurveyModal .modal-content:after{
	content:"";
	z-index:2;
	position:absolute;
	right:0;
	top:120px;
	width: 262px;
	height: 307px;
	background: url(../images/instant-surveys/right.webp) no-repeat;
}
#instantSurveyModal .modal-body{
	z-index:4; /*bg scroll bug fix*/
}
#instantSurveyModal .carousel-item{
	z-index:3; /*bg scroll bug fix*/
}
#instantSurveyModal .slide-next,
#instantSurveyModal .send-survey{
	text-align:center;
	margin-top:20px;
}
#instantSurveyModal .slide-prev {
    z-index: 9999;
    position: fixed;
    top: 24px;
    left: 24px;
	background:none;
}
#instantSurveyModal .carousel-counter{
	margin-bottom:28px;
	font-family: 'Outfit', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	text-align: center;
	color: var(--gray);
}
#instantSurveyModal .carousel-counter{
	margin-bottom:32px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.86;
	letter-spacing: normal;
	text-align: center;
	color: var(--gray-1);
}
#instantSurveyModal .modal-body h4{
	margin-bottom:80px;
	font-family: Calistoga;
	font-size: 28px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
/*text options .OK*/
#instantSurveyModal .text-options .survey-options{
	display:block; /*label fix*/
	margin-bottom:24px;
	padding: 24px 24px 22px;
	border-radius: 6px;
	border: solid 1px var(--stroke-1);
	background-color: var(--white);
}
#instantSurveyModal .text-options .survey-options:has(input:checked){
	border: solid 1px var(--black);
}
#instantSurveyModal .text-options .survey-options.custom .form-check .form-check-label{
	padding-left:12px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: normal;
	text-align: left;
	color: var(--gray-1);
}
#instantSurveyModal .text-options .survey-options.custom .form-check .form-check-label:has(input:checked){
	color: var(--black);
}
/*instant-survey-results .OK*/
#instantSurveyModal .modal-body .instant-survey-results .success{
	display:block;
	margin:0 auto 30px;
	padding: 19px;
	width: 78px;
	height: 78px;
	border-radius:78px;
	background-color: var(--green);
}
#instantSurveyModal .modal-body .instant-survey-results p.info{
	margin-bottom:50px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.75;
	letter-spacing: normal;
	text-align: center;
	color: var(--black);
}
/*image options .OK*/
#instantSurveyModal .img-options .survey-options{
	position:relative;
	display:block; /*label fix*/
	margin-bottom: 24px;
    border: solid 1px var(--stroke-1);
    background-color: var(--white);
	border-radius:0;
}
#instantSurveyModal .img-options .survey-options:has(input:checked){
	border: solid 1px var(--black);
}
#instantSurveyModal .img-options .survey-options figure{
	position:relative;
	margin-bottom:0;
}
#instantSurveyModal .img-options .survey-options .form-check{
	padding-left: 0;
}
#instantSurveyModal .img-options .survey-options .form-check .form-check-input{
	position:absolute;
	top:10px;
	right:6px;
	padding:0;
	margin:0;
}
#instantSurveyModal .img-options .survey-options .form-check .form-check-label{
	margin:14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: normal;
    text-align: center;
    color: var(--gray-1);
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}



/* TOAST MESSAGE .OK
-------------------------------------------------- */
.toast-message{
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0.9;
}
.toast-message .btn-close{
	position:absolute;
	top:8px;
	right:8px;
	color:#fff;
}
.toast-message .btn-close{
	position:absolute;
	top:8px;
	right:8px;
}



/*RESPONSIVE*/
/* Medium devices(md) (tablets, less than 992px)*/
@media (max-width: 991.98px) {
	/*body .FALSE*/
	body{
	}
	body.opened {
		overflow-y:hidden;
	}
	/*header .FALSE*/
	header{
		background-color: var(--white) !important;
		border-bottom:none;
	}
	/*header-top btn-svg .FALSE*/
	header .header-top .btn-svg {
		margin: 0;
	}
	/*navbar .FALSE*/
	/*navbar-toggler .FALSE*/
	header .navbar-toggler {
		display:block !important;
		box-shadow:none!important;
	}
	/*navbar-custom .FALSE*/
	header .navbar-custom {
		padding-left:0;
		padding-right:0;
		min-height:inherit !important;
		border-bottom:1px solid var(--stroke-1);
	}
	body.opened header .navbar-custom {
		max-height:inherit !important;
		background:#fff !important;
		-webkit-box-shadow:none;
		-moz-box-shadow: none;
		box-shadow: none;
	}
	header .navbar-custom .navbar-brand {
		margin:15px 0;
	}
	/*navbar-collapse .FALSE*/
	header .navbar-custom .navbar-collapse{
		overflow-x:auto;
		width: 100%;
		margin-left:-15px;
		margin-right:-15px;
	}
	/*navbar-nav .FALSE*/
	header .navbar-custom .navbar-nav{
		margin-top: 0;
	}
	header .navbar-custom .navbar-nav > .nav-item {
		position:relative;
		display:block;
		padding:0 !important;
		margin: 0;
		border-top:1px solid var(--stroke-1);
	}
	header .navbar-custom .navbar-nav > .nav-item:hover:before,
	header .navbar-custom .navbar-nav > .nav-item.active:before{
		display:none;
	}
	header .navbar-custom .navbar-nav > .nav-item > .nav-link{
		display:block;
		padding: 20px 12px;
		font-family: 'Calistoga', serif;
		font-size: 20px;
		font-weight: 500;
		font-stretch: normal;
		font-style: normal;
		line-height: normal;
		letter-spacing: normal;
		text-align: left;
		color: var(--black);
	}
	header .navbar-custom .navbar-nav > .nav-item:hover > .nav-link{
		background:none;
		color: var(--black);
	}
	header .navbar-custom .navbar-nav .dropdown-menu {
		display:none;
    	background-color: none;
		padding: 0 0 22px 0;
		width: 100%;
		border-top: none;
		border-bottom: none;
		box-shadow: none;
	}
	header .navbar-custom .navbar-nav .dropdown-menu.show {
		display:block;
	}
	header .navbar-custom .navbar-nav .dropdown-menu::before{
		display:none;
	}
	header .navbar-custom .navbar-nav .dropdown-menu .nav-link {
		margin-bottom:0;
		padding: 12px 0 !important;
		font-family: 'Calistoga', serif;
		font-size: 16px;
		font-weight: normal;
		font-stretch: normal;
		font-style: normal;
		line-height: normal;
		letter-spacing: normal;
		text-align: left;
		color: var(--gray);
	}
	header .navbar-custom .navbar-nav .dropdown-menu .nav-link:hover {
		color: var(--black);
	}
	header .navbar-custom .navbar-nav .dropdown-menu .nav-link.link-title {
		font-size: 20px;
		font-weight: 500;
		color: var(--black);
	}
	header .navbar-custom .navbar-nav > .nav-item:not(.dropdown):hover > .nav-link::before,
	header .navbar-custom .navbar-nav > .nav-item:not(.dropdown).active > .nav-link::before{
		display:none !important;
	}
	header .navbar-custom .navbar-nav > .nav-item.dropdown > .nav-link::before{
		position:absolute;
		top:42px !important;
		right:20px !important;
		left:inherit !important;
		width: 14px !important;
		height: 14px !important;
		margin:0;
		padding:0;
		vertical-align:inherit;
		content: "";
		border: none !important;
		background-color: var(--black);
		-webkit-mask: url(../images/svg/navbar-down.svg) no-repeat 50% 50%;
		mask: url(../images/svg/navbar-down.svg) no-repeat 50% 50%;
	}
	header .navbar-custom .navbar-nav > .nav-item.dropdown > .nav-link.show::before{
		transform: rotate(180deg);
	}
	header .navbar-custom .btn-lg {
		margin-left:14px;
		padding-left:15px;
		padding-right:15px;
		height: 34px;
		line-height:34px;
	}
	/*header instant survey .OK*/
	header .instant-survey-link sup {
		top: auto;
		right: auto;
		margin:3px 0 0 2px;
	}
	/*FOOTER .FALSE*/
	footer {}
	footer .black-container {
		padding-top: 20px;
		padding-bottom: 42px;
	}
	footer .block-2,
	footer .block-3,
	footer .block-4,
	footer .block-5 {
		margin-top: 30px;
	}
	/*footer-bottom .FALSE*/
	.footer-bottom {
		margin-top: 0px;
	}
	/*products detail .FALSE*/
	.products .information .wrap {
		padding-left: 0;
	}
	.products .information h1 {
		margin-bottom: 12px;
		font-size: 28px;
	}
	.products .quantity {
		margin-bottom:24px;
	}
	.products.detail .product-tabs {
		margin-top: 40px;
	}
	.products.detail main .content .related-products h3{
		margin-bottom:30px;
		font-size: 24px;
		text-align: center;
	}
	/*products thumb slick slider .FALSE*/
	.products .product-img .wrap{
		overflow: hidden;
		top: 0;
		margin-bottom:0;
	}
	.products .large-img {
		margin-bottom: 0;
	}
	.products .product-img .slick-dots {
		z-index:99;
		bottom:26px;
	}
	.products .product-img .slick-dots li {
		width: 10px;
		height: 10px;
		padding: 0;
		margin:0 7px;
		cursor: pointer;
		border: solid 1px var(--blue);
	}
	.products .product-img .slick-dots li.slick-active{
		border: solid 1px var(--black);
		background-color: var(--black);
	}
	.products .product-img .slick-dots li button,
	.products .product-img .slick-dots li button:before,
	.products .product-img .slick-prev,
	.products .product-img.slick-next,
	.products .product-img .slick-prev:before,
	.products .product-img.slick-next:before {
		display:none !important;
	}
	/*products search .FALSE*/
	body.products.search .banner:not(.hidden-banner) h1{
		font-size:24px;
	}
	/*cart -> quantity .FALSE*/
	.cart .quantity .btn {
		min-width: 30px;
	}
	.cart .quantity .form-control {
		max-width: 45px;
		padding: 0 10px;
	}
	/*prices info .FALSE*/
	.cart-prices-info{
		margin-bottom: 60px;
	}
	/*cart register guest .FALSE*/
	.cart .register-form-guest button{
		min-width: 160px;
	}
	.cart .register-form-guest .guest-login-wrap{
		text-align:right;
	}
	.cart .register-form-guest .guest-login-wrap a{
		white-space:nowrap;
		display:block;
	}
	/*points .FALSE*/
	.points .create-coupon-info{
		margin-bottom:10px;
	}
	/*navbar-filter .FALSE*/
	.navbar-filter{
		padding-top:10px;
		height:auto;
		border-bottom:0;
	}
	.navbar-filter .btn-navbar-filter{
		width: 100%;
		border: 1px solid var(--stroke-1);
		background:none;
		padding: 12px;
		font-size: 15px;
		text-align: center;
		color: var(--black);
	}
	.navbar-filter .container{
		display: block !important;
		padding-right: 15px;
		padding-left: 15px;
	}
	.navbar-filter .navbar-nav{
		display:none;
	}
	.navbar-filter.active .navbar-nav{
		display:block;
	}
	.navbar-filter .navbar-nav > .nav-item{
		border-bottom: 1px solid var(--stroke-1);
		border-left: 1px solid var(--stroke-1);
		border-right: 1px solid var(--stroke-1);
	}
	.navbar-filter .navbar-nav > .nav-item > .nav-link{
		padding:14px 12px !important;
	}
	.navbar-filter .dropdown .dropdown-toggle::after {
		display: inline-block;
		margin: 8px 0 0 5px;
		float: right;
		width: 7.6px;
		height: 4.5px;
		vertical-align: 2px;
		content: "";
		background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%227.562%22%20height%3D%224.489%22%20viewBox%3D%220%200%207.562%204.489%22%3E%3Cg%3E%3Cpath%20d%3D%22M3.78%204.488L0%20.707.707%200%203.78%203.074%206.854%200l.707.707z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
		background-repeat: no-repeat;
		border: none;
	}
	.navbar-filter .dropdown .dropdown-menu {
		padding: 15px 0;
		border-bottom:none;
	}
	.navbar-filter .sort-filter ul.filter-items {
		float:inherit;
	}
	.navbar-filter ul.filter-items > li {
		float:inherit;
		display:block;
		text-align:left;
	}
	.navbar-filter .price-range .dropdown-menu{
		text-align:center;
	}
	.navbar-filter .price-range-wrap {
		display:inline-block;
		width:100%;
		height:40px;
	}
	.navbar-filter .price-range-slider-wrap {
		max-width: 140px;
	}
	.navbar-filter .price-range-min,
	.navbar-filter .price-range-max,
	.navbar-filter .price-range-slider-wrap {
		float:inherit;
		display: inline-block;
	}
	.navbar-filter .price-range button {
		margin-left: 0;
		width: 100%;
	}
	.navbar-filter .price-range-slider .ui-state-default, .ui-widget-content .ui-state-default {
		margin-top:-1px;
		width: 14px !important;
		height: 14px !important;
	}
	/*product+reviews. OK*/
	.product-reviews .comment .reviews-vote button{
		margin-top: 6px;
	}
}
/* Small devices(sm) devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
	/* general text FALSE*/
	main .content .text{
		line-height: 1.59;
	}
	main .content .text h1, 
	main .content .text h2, 
	main .content .text h3, 
	main .content .text h3, 
	main .content .text h5{
		line-height: 1.3;
	}
	main .content .text h1{
		font-size: 28px;
	}
	main .content .text h2{
		margin-bottom:32px;
		font-size: 26px;
	}
	main .content .text h3 {
		font-size: 24px;
	}
	main .content .text h4 {
		font-size: 22px;
	}
	main .content .text h5 {
		font-size: 20px;
	}
	main .content .text .carousel.gallery {
		margin-top: 35px;
	}
	main .content .text .exp2 {
		margin-top: 30px;
	}
	/* contact .OK */
	.contact .content .card-2{
		margin-bottom:40px;
	}
	/*separator .FALSE*/
	hr.separator:before{
		width:55px;
	}
	/*CART .FALSE*/
	.cart .products-title {
		margin-top:15px;
		margin-bottom: 10px;
	}
	.cart .products-sku {
		margin-top: 10px;
		margin-bottom:15px;
	}
	.cart .quantity .btn {
		min-width: 42px;
	}
	/*order types*/
	.cart-payment-methods .form-check{
		display:block !important;
	}
	/*CATEGORY+SEARCH .FALSE*/
	.category h1,
	.products.search h1{
		margin: 0 0 15px 0;
	}
	.category .filter .form-group,
	.products.search .filter .form-group {
		float: left;
		margin: 0;
		padding: 0 24px 15px 0;
	}
	/* MEMBERS .FALSE
	-------------------------------------------------- */
	.members main .content .register h2{
		margin-top:45px;
	}
	/*HOME .FALSE*/
	/*home carousel .OK*/
	#homeCarousel .caption {
		margin-bottom:40px;
		max-height:inherit;
	}
	#homeCarousel .caption .info {
		margin-top:40px;
	}
	#homeCarousel .caption .info h3 {
		font-size: 32px;
		display:inline;
	}
	#homeCarousel .caption .lp-svg-1{
		width:232px;
		height:auto;
	}
	#homeCarousel .caption .btn{
		margin-top:22px;
	}
	/*carousel prev+next .OK*/
	#homeCarousel .carousel-control-next, 
	#homeCarousel .carousel-control-prev{
		top:inherit;
		width: 48px;
		margin-bottom:38px;
		right:16px;
	}
	#homeCarousel .carousel-control-prev{
		left:inherit;
		right:76px;
	}
	.new-year-2025:after{
		margin-right: -110px;
	}
	/*main-3step .OK*/
	.main-3step{
		padding: 38px 0 50px;
	}
	.main-3step .head {
		z-index: 2;
		margin-bottom: 16px;
	}
	.main-3step .card-1 .card {
		margin-bottom:30px;
		height:auto;
	}
	.main-3step .card-1 .row:before {
		left: -28px;
	}
	/*main-products .OK*/
	.main-products .nav-scroll .nav .nav-item{
		width:100%; /*only one tab*/
	}
	.main-products .slick-prev{
		left: 2px;
	}
	.main-products .slick-next{
		right: 2px;
	}
	/*main-grid .OK*/
	.main-grid {
		padding: 70px 0 70px 0;
		background-color: var(--background);
	}
	.main-grid .card-1 .col-md-6 .card .card-body{
		padding-right:26px;	
	}
	/*footer-top .FALSE*/
	footer .footer-top {
		padding-top:30px;
		padding-bottom: 135px;
	}
	/*MODAL .FALSE*/
	.modal button.close[data-bs-dismiss="modal"] {
		top: 14px;
		right: 14px;
	}
	/*landingpage .OK*/
	.landingpage .top-card {
		margin-bottom:30px;
	}
	.landingpage .top-card .card .card-body {
		padding: 20px;
	}
	.landingpage .top-card .card .card-title {
		margin-bottom: 10px;
		font-size: 22px;
	}
	.landingpage .top-card .card .card-text{
		margin-bottom:16px;
	}
	.landingpage .top-card .card .card-text p {
		margin-bottom: 12px;
		font-size: 14px;
		line-height: 1.33;
	}
	.landingpage .newsletter {
		padding: 26px 0;
		min-height:inherit;
	}
	.landingpage .invite-friends,
	.landingpage .main-contact,
	.main-3step{
		padding:38px 0 50px;
	}
	/*product+reviews. OK*/
	.product-reviews .comment .right {
		margin-top: 8px;
	}
}
/* Extra small(xs) devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	/*wrapper .FALSE*/
	main > .wrapper {
		margin-top: 33px;
		margin-bottom: 58px;
	}
	/*modal as left/right sidebar .FALSE */
	.modal.left .modal-body,
	.modal.right .modal-dialog {
		width: 360px;
	}
	/*contact .FALSE*/
	input[name=captcha]{
		width: 140px !important;
	}
	/*points toast .FALSE*/
	.points .coupon-toast{
		z-index:9999;
		position: fixed;
		bottom: 20px;
		right: 20px;
		opacity: 0.9;
	}
	/*cart .FALSE*/
	.cart .quantity .form-control {
		max-width: inherit;
	}
	.cart-products .products-image{
		padding-right:0;
	}
	/*banner .FALSE*/
	body .banner:not(.hidden-banner) .row {
		height:161px;
	}
	body .banner:not(.hidden-banner) h1,
	body.products.category .banner:not(.hidden-banner) h1 {
		display:inherit !important;
		font-size: 32px;
		line-height: 1.33;
		text-align:center;
	}
	body .banner:not(.hidden-banner) p {
		margin:20px 0 30px;
	}
	/*banner+breadcrumb .FALSE*/
	body .banner:not(.hidden-banner) .nav-breadcrumb {
    	position: absolute;
		top: 16px;
		bottom:unset;
	}
}
/*#new add only for desktop screens*/
@media all and (min-width: 992px) {
}
/* Large(lg) devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
}
/*Extra large(xl) devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) and (max-width: 1399.98px) {
}
/*Extra extra large (xxl) devices (large desktops, 1200px and up)*/
@media (min-width: 1400px) and (max-width: 1919.98px) {
} 
/*#new add (full hd, 1920px and up)*/
@media all and (min-width: 1920px) {
	/*container .FALSE*/
	.container {
		max-width: 1640px;
	} 
}