:root {
	--main-color: #FF7C33;
    --main-color-alpha: rgba(255, 124, 51, 0.64);
	--dark-main-color: #E55200;
    --sub-color: #FF9400;
	--dark-color: #333333;
	--dark-bg-color: #252525;
	
	--bg-color: #F4F4F5;
	--yellow-bg-color: #ffe7ca;
	--bg-grey-color: #F4F4F5;
	--bg-color-alpha: rgba(250, 250, 250, 0.48);
	
	--text-color: #333333;
	--light-text-color: #898989;	    
	--lightest-text-color: #D3D3D3;	    
    
	--main-gradient: linear-gradient(180deg, #FF9400 0%, #FF7C33 100%);	 
    --light-gradient: linear-gradient(180deg, rgba(255, 124, 51, 0.08) 0%, rgba(246, 103, 24, 0.08) 100%);
    --vrt-light-gradient: linear-gradient(180deg, rgba(255, 124, 51, 0.16) 0%, rgba(246, 239, 232, 0.16) 100%);
    --white-line-gradient: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 100%);

	--bg-input: #FFFFFF;
	--bg-error-input: rgba(156, 20, 33, 0.08);
	--bg-focus-input: #FED7AD;
	
	--white-color: #FFFFFF;
    --color-white-rgb: 255, 255, 255;
	--dark-grey-color: #414244;
	--grey-color: #949A9E;
	--light-grey-color: #D9D9D9;
	
	--border-color: #EBEFF1;	
	
	--dark-red-color: #9C1421;
	--red-color: #FF4C4C;
    --light-red-color: rgba(156, 20, 33, 0.08);
	--green-color: #0C9A00;
	--highlight-green-color: #1ED76B;
	--light-green-color: #B3E838;
	--pink-color: #FF31FC;
	--blue-color: #08B2FA;
	--turquoise-color: #47B7AD;
	
	--main-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
	--light-shadow: 0px 0px 8px rgba(0, 0, 0, 0.04);
    --text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.16);
	
	--border-radius: 5px;
    --med-border-radius: 11px;
	--lg-border-radius: 15px;
	--input-border-radius: 13px;
	--xl-border-radius: 25px;
	
	--xxs-pad: 4px;
	--xs-pad: 8px;
	--sm-pad: 12px;
	--mid-pad: 16px;
	--20-pad: 20px;
	--main-pad: 24px;
	--med-pad: 32px;
	--40-pad: 40px;
	--lg-pad: 48px;
	--xl-pad: 72px;
	--xxl-pad: 96px;
	--120-pad: 120px;
	--max-pad: 160px;
	--full-pad: 240px;
	--lg-neg: -48px;
	--main-neg: -24px;
	
	--lg-font: 22px;
    --med-font: 18px;
	--main-font: 14px;
	--sm-font: 14px;
	--xs-font: 12px;
	--input-font: 14px;
	--btn-font: 14px;
	--icon-font: 20px;
	--sm-icon: 18px;
	--main-icon: 32px;
	--large-icon: 96px;
	
	--doc-height: 100%;    
    --sidebar-width: 480px; 
    --lg-container-width: 1408px;  
    --med-container-width: 1128px; 
    --container-width: 928px; 
    --offset-width: calc(100% - (((100% - var(--container-width)) / 2 ) + 24px)); 
	
}

html{
	scroll-behavior: smooth;
}
body {
    width: 100%;
    height: 100%;
    font-size: var(--main-font);
	color: var(--text-color);
    font-family: 'Jost', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    font-weight: 300;
	background: var(--white-color);
	background: url(../images/bkk-bg-test.jpg) center top no-repeat var(--white-color);
	background-size: cover;
    background-attachment: fixed;
    
}
h1, h2, h3, h4, h5, h6 {
	color: var(--text-color);
	font-family: 'Signika', Arial, Helvetica, sans-serif;
}
h1{
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--xs-pad);
}
h2{
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--xs-pad);
}
h3{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--xs-pad);
}
h4{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--xs-pad);
}

a {
    color: var(--text-color);
    text-decoration: none;
}
a:hover {
    color: var(--sub-color);
}
p{
    margin-bottom: 24px;
}
:focus {
	-moz-outline-style: none;
	outline: 0;
}
::-moz-selection {
	background-color: var(--dark-color);
	color: var(--white-color);
}
::selection {
	background-color: var(--dark-color);
	color: var(--white-color);
}

/* FORM STYLES */


legend {
    padding: 7px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}
label {
    font-size: 12px;
    font-weight: normal;
}

.form-group {
	position: relative;
	display: block;
	margin-bottom: var(--mid-pad);
}
.form-group.no-error {
	margin-bottom: var(--main-pad);
}
.sticky-error .form-group {
	margin-bottom: 24px;
}

.form-cols{
	display: flex;
    flex-wrap: wrap;
    column-gap: var(--mid-pad); 
	margin-bottom: var(--med-pad);
}
.accordion-block .form-cols{
	margin-bottom: var(--mid-pad);    
    margin-bottom: 0;
}
.form-col{
	width: calc(50% -  var(--xs-pad));
	display: flex;
	flex-direction: column;
}
.form-col.form-col-lg{
	width: 70%;
}
.form-col.form-col-sm{
	width: 30%;
}
label {
	font-size: var(--main-font);
	font-weight: normal;
	margin: 0px;
}
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
	font-size: 16px;
	font-size: var(--main-font);
}
input[type=text], input[type=search], input[type=password] {   
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input:focus-visible {
    outline:none!important;
}
/*div.required .col-form-label:before, */
/*
div.required .form-label:before {
    content: "* ";
    color: var(--red-color);
    font-weight: bold;
}
*/
div.required label:after {
    content: "*";
    display: inline-flex;
    color: var(--red-color);
    font-weight: 700;
    margin-left: 2px;
}
.form-control {
    padding: var(--xs-pad) var(--mid-pad);
	height: var(--40-pad);
	line-height: var(--mid-pad);
	border-radius: var(--20-pad);
	color: var(--text-color);
	font-size: var(--main-font);
	background: transparent;
	background: var(--bg-input);
	font-weight: 600;
	border: none;
	transition: all 0.2s ease;
}

.form-floating .form-control {
    padding: var(--20-pad) var(--mid-pad) var(--xs-pad) var(--mid-pad);
}
.form-control:focus {
	color: var(--text-color);
	background: var(--bg-focus-input);
	border-color: var(--border-color);
	border: none;
	box-shadow: none;
	transition: all 0.4s ease-in-out;
}
.form-control[readonly]{
	background: var(--bg-input);
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 48px var(--bg-input) inset !important;
	background-color: var(--bg-input)!important;
	color: var(--text-color)!important;
}

.form-control::-webkit-input-placeholder {
	color: var(--light-text-color);
}

.form-control::-moz-placeholder {
	color: var(--light-text-color);
}

.form-control:-ms-input-placeholder {
	color: var(--light-text-color);
}

.form-control::placeholder {
	color: var(--light-text-color);
}
.form-floating > .form-control, 
.form-floating > .form-control-plaintext, 
.form-floating > .form-selectric {
    height: 40px;
    min-height: 40px;
    line-height: 16px;
}
.form-floating > .form-control:focus, 
.form-floating > .form-control:not(:placeholder-shown), 
.form-floating > .form-control-plaintext:focus, 
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
/*
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
*/
    padding: var(--20-pad) var(--mid-pad) var(--xs-pad) var(--mid-pad);
}

.form-floating > .form-control:-webkit-autofill, 
.form-floating > .form-control-plaintext:-webkit-autofill,
.form-floating .form-control {
    padding: var(--20-pad) var(--mid-pad) var(--xs-pad) var(--mid-pad);
	border-radius: var(--input-border-radius);
	background: var(--bg-input);
	line-height: var(--sm-pad);
	border:none;
}

.accordion-block .form-control,
.accordion-block .form-floating .form-control,
.accordion-block .form-floating > .form-control:not(:placeholder-shown){
    background: var(--bg-color);
}
.accordion-block input:-webkit-autofill, 
.accordion-block input:-webkit-autofill:hover, 
.accordion-block input:-webkit-autofill:focus, 
.accordion-block input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 48px var(--bg-color) inset !important;
	background-color: var(--bg-color)!important;
	color: var(--text-color)!important;
}
.accordion-block .form-control.is-invalid, 
.accordion-block .form-floating .form-control.is-invalid, 
.accordion-block .form-floating > .form-control.is-invalid:not(:placeholder-shown),
.form-control.is-invalid{    
    background: var(--bg-error-input);
}

.form-floating > label,
.form-floating .control-label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    height: initial;
    line-height: var(--main-pad);
    padding: var(--xs-pad) var(--mid-pad);
    margin: 0;
    overflow: hidden;
    font-weight: 400;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: none;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out, color .1s ease-in-out;
    color: var(--text-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-selectric ~ label {
    color: var(--text-color);
/*    transform: scale(0.75) translateY(-0.4rem) translateX(0.25rem);*/
    transform: scale(0.75) translateY(-4px) translateX(5px);
}
.form-floating > .form-control.is-invalid ~ label,
.form-floating > .form-control-plaintext.is-invalid ~ label,
.form-floating > .form-control.is-invalid:focus ~ label,
.form-floating > .form-control.is-invalid:not(:placeholder-shown) ~ label,
.form-floating > .form-selectric.is-invalid ~ label {
    color: var(--red-color);    
}
.form-floating > .form-control:focus ~ label::after, 
.form-floating > .form-control:not(:placeholder-shown) ~ label::after, 
.form-floating > .form-control-plaintext ~ label::after, 
.form-floating > .form-selectric ~ label::after {
    position: absolute;
    inset:initial;
    z-index: -1;
    content: "";
    background-color: transparent;
    border-radius: 11px;
    width: 100%;
    height: 65%;
    left: 0;
    top: 11%;
}

.form-textarea{
    overflow: hidden;
}

.form-floating > textarea.form-control ~ label::after{
	transition: all 0.2s ease;    
}
.form-floating > textarea.form-control:not(:placeholder-shown) ~ label{
    overflow: initial;
}

.form-floating > textarea.form-control:not(:placeholder-shown) ~ label::after {
    width: 300%;
    background: var(--white-color);
    transition: all 0.2s ease;
}

.accordion-block .form-floating > textarea.form-control:not(:placeholder-shown) ~ label::after {
    background: var(--bg-color);
    transition: all 0.2s ease;
}
.form-floating > textarea.form-control:focus:not(:placeholder-shown) ~ label::after {
    background: var(--bg-focus-input);
    transition: all 0.4s ease-in-out;
}

.form-floating > .form-control:not(:placeholder-shown){
    background: var(--bg-focus-input);	
	background: var(--white-color);
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown):focus{
	background: var(--bg-focus-input);
}
.form-floating > textarea.form-control:focus ~ label.control-label{
	background: var(--bg-focus-input);	
}
.form-floating .form-control::-webkit-input-placeholder {
	color: transparent;
}
.form-floating .form-control::-moz-placeholder {
	color: transparent;
}
.form-floating .form-control:-ms-input-placeholder {
	color: transparent;
}
.form-floating .form-control::placeholder {
	color: transparent;
}
textarea.form-control{
	padding: 12px 16px;
	line-height: 1.6;
}
.form-floating > textarea.form-control{
    min-height: 120px;
}
.textarea-amout{
	position: relative;
	display: block;
	line-height: 24px;
	color: var(--light-text-color);
}

.form-control.is-invalid,
.form-floating.form-control.is-invalid{
    background: var(--light-red-color);
}

.was-validated .form-control:invalid:focus, 
.form-control.is-invalid:focus {
    border-color: transparent;
    box-shadow: none;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--red-color);
}

.input-group:not(.has-validation)>.form-control:not(:last-child) {
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
	font-size: 16px;
}
.input-group .input-group-addon {
	font-size: 16px;
	height: 30px;
}

.grecaptcha-badge {
    visibility: hidden;
}

.form-inline-button{
    position: relative;
}
.form-inline-btn{
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px;
    z-index: 2;
}
.form-inline-btn .btn{
    height: 36px;
    line-height: 20px;  
}
.form-inline-btn .btn span{
    line-height: 20px;  
}
.form-inline-btn .btn,
.form-inline-btn .btn:after{
    border-radius: var(--med-border-radius);
}
.form-inline-btn .i-btn-single{
    margin: 2px;
}

.form-group .text-danger,
.form-selectric .text-danger{
	position: absolute;
	position: relative;
	display: block;
	font-weight: 400;
	min-height: 20px;	
	min-height: 12px;	
	font-size: 12px;
	line-height: 1.2;
	padding-top: 4px;
	color: var(--green-color)!important;
}
.form-floating .text-danger,
.form-selectric .text-danger{
	padding-left: 16px;
	padding-left: 24px;
}

.form-check{
    min-height: 32px;
    padding-left: 32px;
    margin-bottom: 8px;
}

.form-check-label{
    cursor: pointer;
}
.form-static-label{
    position: relative;
    margin-bottom: 4px;
    font-weight: 400;
}

.form-switch {
    padding-left: var(--lg-pad); 
    padding-left: 56px; 
}
.form-switch .form-check-input {
    margin-left: -56px;
    width: 2em;
    --bs-form-switch-bg: url(../images/switch-circle.svg);
    background-image: var(--bs-form-switch-bg);
    cursor: pointer;
/*
    background-position: left center;
    border-radius: 2em;
    transition: background-position 0.15s ease-in-out;
*/
}
.form-check .form-check-input {
    background: var(--bg-color);
    border: 1px solid var(--bg-color);
}

.form-check-input:focus {
    border-color: var(--main-color);
    outline: 0;
    box-shadow: none;
}
.form-switch .form-check-input:focus{
    --bs-form-switch-bg: url(../images/switch-circle-white.svg);
    background-image: var(--bs-form-switch-bg);
    background-color: var(--dark-main-color);
}
.form-check-input:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.form-check label{
    line-height: var(--med-pad); 
}
.form-check .form-check-input {
    margin-top: 8px;  
    margin-left: -32px;
    width: 16px;
    height: 16px;
}
.form-switch .form-check-input {
    margin-top: 8px;  
    margin-left: -56px;
    float: left;
}
.form-switch-lg {
    font-size: 20px;
    min-height: 30px;
    line-height: 30px;
}
.form-radio-button.form-check .form-check-input {
    margin-top: 8px;  
    margin-left: -32px;
}
.form-radio-button.form-check label{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.form-radio-button.form-check label:hover{
    cursor: pointer;
}
.form-radio-button.form-check label span{
    display: flex;
    align-self: flex-end;
    text-align: right;
    padding: 0 0 0 8px;
    font-weight: 400;
}
.form-radio-button label{
    font-weight: 400;
}
.form-radio-button .form-check-input:checked ~ label{
    font-weight: 600;
}
 
/* FORM SELECT */

.form-selectric {
    position: relative;
    display: block;
/*	min-width: 240px;*/
	max-width: 100%;
}

.form-selectric .selectric-wrapper {
	position: relative;
	margin-left: -1px;
	margin-right: -1px;
	height: 40px;
}

.form-selectric .selectric {
	border: none;
	background: var(--bg-input);
	background: var(--bg-focus-input);
	border-radius: var(--border-radius);
	border: 1px solid var(--bg-focus-input);
	height: 48px;
/*	padding-top: 22px;*/
}
.form-selectric.select-empty .selectric {
    background: var(--white-color);
}

.form-selectric:has(select.is-invalid) .selectric {
    background: var(--light-red-color);
}

.form-selectric .selectric-open {
    z-index: 8;
}

.form-selectric .selectric-open.selectric-below .selectric {
	border-radius: var(--border-radius);
/*
	background: var(--bg-input);
	border: 1px solid var(--bg-input);
*/
}

.form-selectric .selectric-open.selectric-above .selectric {
	border-radius: var(--border-radius);
/*
	background: var(--bg-input);
	border: 1px solid var(--bg-input);
*/
}

.accordion-block .form-selectric .selectric {
	background: var(--bg-color);
	border: 1px solid var(--bg-color);
}
.accordion-block .form-selectric.select-empty .selectric {
    background: var(--bg-color);
}

.accordion-block .form-selectric:has(select.is-invalid) .selectric {
    background: var(--light-red-color);
}

.form-selectric .selectric-open.selectric-above .selectric-items {
	border-radius: 0 0 var(--border-radius) var(--border-radius);
	border-bottom: none;
	border-top: 1px solid var(--bg-input);
	margin-bottom: -1px;
}

.form-selectric .selectric-open {
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.08);
	box-shadow: none;
}

.form-selectric .selectric-items {
	display: block;
	opacity: 0;
	border: 1px solid var(--bg-input);
	overflow: hidden;
	transform-origin: 50% 0%;
	transform: scaleY(0);
	transition: transform 0.15s ease-out, opacity 0.1s;
}

.form-selectric .selectric-open.selectric-above .selectric-items {
	transform-origin: 50% 100%;
	transform: scaleY(1);
	opacity: 1;
	transition: transform 0.3s ease, opacity 0.2s;
	box-shadow: 0px -6px 12px rgba(0, 0, 0, 0.08);
	box-shadow: none;
}

.form-selectric .selectric-open.selectric-below .selectric-items {
	transform-origin: 50% 0%;
	transform: scaleY(1);
	opacity: 1;
	transition: transform 0.3s ease, opacity 0.2s;
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.08);
	box-shadow: none;
}
.selectric-items .selectric-scroll{
	scrollbar-color: rgba(0, 0, 0, 0.24) rgba(0, 0, 0, 0.08);
	scrollbar-width: thin;
}

.selectric-scroll::-webkit-scrollbar {
	width: 8px;
	border-radius: 4px;
	cursor: pointer;
}
.selectric-scroll::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.08);
	cursor: pointer;
	border-radius: 4px;
}
.selectric-scroll::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.24);
	border-radius: 4px;
	cursor: pointer;
	transition: background 300ms ease;
}
.selectric-scroll::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.32);
	cursor: pointer;
}

.form-selectric .selectric .label {
	height: 38px;
	line-height: 16px;
	margin-right: 40px;
	padding: 8px 0px 8px 16px;
	font-size: 14px;
	color: var(--text-color);
	font-weight: 600;
}

.form-selectric .selectric .button {
	height: 40px;
	width: 40px;
	right: 4px;
	top: 0;
	text-align: center;
	z-index: 3;
	transform: rotate(0deg);
	transition: all 0.1s ease;
}

.selectric-open .selectric .button {
	transform: rotate(-180deg);
	transition: all 0.3s ease;
}

.form-selectric .selectric .button:after {
	line-height: 40px;
	height: 40px;
	width: 40px;
	text-align: center;
	top: 0px;
	font-weight: 300;
	color: var(--text-color);
}

.form-floating .selectric {
	height: 40px;
	border-radius: var(--input-border-radius);
	border: 1px solid transparent;	
/*    border-bottom: 1px solid var(--border-color);*/
}
.form-floating .selectric-items, .form-selectric.form-floating .selectric-items {
    background: var(--bg-input);
}
.form-floating .selectric-wrapper{
	height: 40px;
	border-radius: var(--input-border-radius);
}
.form-floating .selectric-open.selectric-above .selectric, 
.form-floating .selectric-open.selectric-below .selectric {
    border-radius: var(--input-border-radius);
    background: var(--bg-input);
	border: 1px solid var(--bg-input);	
/*    border-bottom: 1px solid var(--border-color);*/
	box-shadow: 0px 8px 10px rgba(112, 112, 112, 0.16);
}
.form-floating .selectric-open.selectric-above .selectric-items {
	border-radius: var(--input-border-radius) var(--input-border-radius) 0px 0px;
	box-shadow: 0px -8px 10px rgba(112, 112, 112, 0.16);
}
.form-floating .selectric-open.selectric-below .selectric-items {
	border-radius: 0px 0px var(--input-border-radius) var(--input-border-radius);
	box-shadow: 0px 8px 10px rgba(112, 112, 112, 0.16);
}
.form-floating .selectric-items{
    border-radius: var(--input-border-radius);
    background: var(--bg-input);
	border: 1px solid transparent;		
}
.form-floating.form-selectric .selectric-open.selectric-below .selectric, 
.form-floating.form-selectric .selectric-open.selectric-above .selectric-items{
	border-radius: var(--input-border-radius) var(--input-border-radius) 0px 0px;
}
.form-floating.form-selectric .selectric-open.selectric-above .selectric, 
.form-floating.form-selectric .selectric-open.selectric-below .selectric-items{
	border-radius: 0px 0px var(--input-border-radius) var(--input-border-radius);
}

.form-floating .selectric-items ul,
.form-floating .selectric-items li{
	font-size: 14px;
}
.form-floating .selectric .label {
	height: 40px;
	padding: 12px 8px 12px 16px;
	line-height: 16px;
}
/*
.form-floating .selectric .button {
	top: 2px;
}
*/
.selectric-items,
.form-selectric .selectric-items {
	background: var(--bg-input);
}
.selectric-items li {
	color: var(--text-color);
	padding: 12px 32px 12px 16px;
    line-height: 16px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.selectric-items li.highlighted, 
.form-selectric .selectric-items li.highlighted {
	color: var(--text-color);
	background: var(--bg-focus-input);
	font-weight: 400;
}
.selectric-items li:hover,
.form-selectric .selectric-items li:hover {
	color: var(--hover-color);
	background: transparent;
	background: var(--bg-focus-input);
	font-weight: 400;
}
.form-selectric .selectric-items li.selected:after {
	content: "\f00c";
	position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
	text-align: center;
    top: 8px;
    right: 6px;
    height: 24px;
    width: 24px;
	line-height: 24px;
	font-size: 14px;
	font-weight: 400;
	font-family: "Font Awesome 6 Pro";	
}
.form-selectric .selectric-items li[data-index="0"]:after{
	display: none;
}
.selectric-disabled {
	opacity: 1;
}
.selectric-disabled .button:after {
	display: none;
}



.form-buttons{
    position: relative;
    display: flex;
    flex-direction: column;    
    align-items: center;
    margin-top: var(--med-pad); 
}
.form-btn-margin{
    margin-bottom: var(--main-pad);    
}
.form-buttons.form-btns-row{
    flex-direction: row;
    justify-content: space-between;
    column-gap: var(--mid-pad); 
}
.form-buttons .btn{
    z-index: 1;
    width: 100%;
}
.form-buttons.single-btn{
    justify-content: center;
}
.form-buttons.single-btn .btn{
    z-index: 1;
    width: initial;
    min-width: 160px;
}

.form-inline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.form-inline-btn-right{
    position: relative;
    display: flex;   
    justify-content: flex-end;
}

.form-copyright{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    margin-top: var(--lg-pad); 
    margin-bottom: -24px;
    
    display: none;
}


/* BUTTON STYLES */

.btn, .btn-primary {
	position: relative;
	display: flex;
	justify-content: center;
	padding:var(--xs-pad) var(--main-pad);
	line-height: var(--main-pad);
	background: transparent;
	border: none;
	color: var(--white-color);
	border-radius: 20px;
	font-size: var(--btn-font);
    font-family: 'Signika', Arial, Helvetica, sans-serif;
	font-weight: 700;
	box-shadow: none;
	text-decoration: none;
	outline: 0;
	min-width: 120px;
	transition: all 0.2s ease;
}
.btn > *, .btn span, .btn-primary span {
	position: relative;
    z-index: 2;
}
.btn:after, .btn-primary:after {
    content: '';
    position: absolute;
    display: block;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
	border-radius: 20px;
	background: var(--main-gradient);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.btn:hover, .btn:focus, .btn:active, 
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, 
.btn.active:hover, .btn.active:focus, .btn.active:active {
	outline: 0;
	box-shadow: none;
	border: none;
	background: var(--dark-main-color);
	color: var(--white-color);
    transition: all 0.4s ease-in-out;
}

.btn-check:checked + .btn, 
:not(.btn-check) + .btn:active, 
.btn:first-child:active, 
.btn.active, 
.btn.show{
	background: var(--dark-main-color);
	color: var(--white-color);    
}
.btn:hover:after, .btn-primary:hover:after {
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
.btn:focus-visible {
    outline: none;
	outline: 0;
}

.btn:disabled, .btn.disabled, fieldset:disabled .btn{
    opacity: 0.32;
}

.btn.active.focus, .btn.active:focus, .btn.focus, 
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.focus, 
.btn:active.focus, .btn:active:focus, .btn:focus {
	outline: 0;
	box-shadow: none;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: var(--white-color);
    background: var(--dark-main-color);
}
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}
.btn-primary.disabled, .btn-primary:disabled {
    color: var(--white-color);
	background: var(--main-color);
    border-color: var(--main-color);
}
.btn.disabled, .btn:disabled {
    cursor: default;
	pointer-events: none;
}
.btn-link:focus, .btn-link:hover {
	text-decoration: none;
	background-color: transparent;
	background: transparent;
}
.btn.light-btn{
	background: var(--bg-color);
	color: var(--text-color);    
}
.btn.light-btn:after{
    display: none;
}
.btn.dark-btn{
	background: var(--text-color);
	color: var(--white-color);    
}
.btn.dark-btn:after{
    display: none;
}

.btn i {
	font-size: 14px;
	font-weight: 300;
	width: var(--main-pad);
	height: var(--main-pad);
	line-height: var(--main-pad);
	margin: 0;
}
.btn span {
	line-height: var(--main-pad);
	padding: 0;
    white-space: nowrap;
}
.btn-icon-left.btn{
    padding-left: 16px;
}
.btn-icon-left > i{
	margin-right: 8px;
}
.btn-extra-icon.btn{
    padding-right: 16px;
}
.btn-extra-icon div{
    display: flex;
    line-height: var(--main-pad);
}
.btn-extra-icon div i{
	margin-left: 8px;
    color: var(--text-color);
}
.btn.btn-sm{
    display: inline-flex;
    padding: 4px 16px;
    min-width: initial;
    font-size: 12px;
}
.btn.btn-sm.btn-icon-left{
    padding: 4px 16px 4px 8px;
}

.l-btn {
/*    padding:var(--xs-pad) var(--main-pad);*/
    padding:7px var(--main-pad);
	background: var(--white-color);
	color: var(--text-color);
    border: 1px solid rgba(51, 51, 51, 0.08);
}
.l-btn:after{
    display: none;
}
.l-btn.i-left{
	padding: 8px 24px 8px 56px;
/*	padding: 12px 24px 12px 56px;*/
}
.l-btn:hover, .l-btn:focus, .l-btn:active {
	background: var(--dark-main-color);
	color: var(--white-color);
    border: 1px solid var(--dark-main-color);
    transition: all 0.4s ease-in-out;
}
.l-btn i{
	color: var(--light-text-color);	
}
#switch-store-btn.l-btn > i{
    font-size: 18px;
	color: var(--main-color);	
}
.i-color i{
	width: 24px;
	height: 24px;
	padding: 0px;
	line-height: 24px;	
 	color: var(--main-color);
	transition: all 0.2s ease;
}
.l-btn:hover i, .l-btn:focus i, .l-btn:active i,
#switch-store-btn.l-btn:hover > i, #switch-store-btn.l-btn:focus > i, #switch-store-btn.l-btn:active > i,
.l-btn.i-color:hover i, .l-btn.i-color:focus i, .l-btn.i-color:active i{
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.btn-label-main{
    display: flex;
}
.btn-label-mob{
    display: none;
}

.i-btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: var(--40-pad);
	height: var(--40-pad);
	line-height: var(--40-pad);
	padding: 0px;
	text-align: center;
    font-size: 14px;
	border: none;
	background: var(--white-color); 
	color: var(--text-color);
    border-radius: 50%;
	cursor: pointer;
	transition: all 0.2s ease;
}
.i-btn i,
.i-btn-single i{
	margin: auto;
	text-align: center;
}
.i-btn:hover, 
.i-btn:focus, 
.i-btn:active {
	background: var(--main-color);
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.i-btn.i-btn-clear {
    background: transparent;
}
.i-btn.i-btn-clear:hover, 
.i-btn.i-btn-clear:focus, 
.i-btn.i-btn-clear:active {
    color: var(--dark-main-color);
}

.i-btn-sm{
	width: var(--main-pad);
	height: var(--main-pad);
	line-height: var(--main-pad);    
}
.i-btn-med{
	width: var(--med-pad);
	height: var(--med-pad);
	line-height: var(--med-pad);    
}

.i-btn-single {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: var(--med-pad);
	height: var(--med-pad);
	line-height: var(--med-pad);
	padding: 0px;
	text-align: center;
    font-size: 14px;
	border: none;
    box-shadow: none;
	background: var(--main-color); 
	color: var(--white-color);
    border-radius: var(--med-border-radius);
	cursor: pointer;
	transition: all 0.2s ease;
}
.i-btn-single:hover, 
.i-btn-single:focus, 
.i-btn-single:active {
	background: var(--white-color);
	color: var(--text-color);
	transition: all 0.4s ease-in-out;
}

.chip-btn{
    position: relative;
    display: inline-flex; 
    align-self: flex-start;
    padding:var(--xxs-pad) var(--mid-pad); 
    border-radius: var(--mid-pad);
    line-height: var(--mid-pad); 
    background: var(--dark-color); 
    font-weight: 600;
    font-size: var(--xs-font);
    white-space: nowrap;
    color: var(--white-color);
	transition: all 0.2s ease;
}
.chip-btn:hover, 
.chip-btn:focus, 
.chip-btn:active {
	background: var(--dark-main-color);
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.info-chip{
    position: relative;
    display: inline-flex; 
    align-self: flex-start;
    padding:var(--xxs-pad) var(--mid-pad); 
    border-radius: var(--main-pad);
    line-height: var(--main-pad); 
    background: var(--dark-color); 
    font-weight: 600;
    font-size: var(--main-font);
    white-space: nowrap;
    color: var(--white-color);
	transition: all 0.2s ease;
}

.txt-btn{
    color: var(--text-color);
    font-weight: 300;
}
.txt-btn:hover,
.txt-btn:active,
.txt-btn:focus{
    color: var(--main-color);
/*    font-weight: 700;*/
}

.inline-link{
    color: var(--main-color);
    font-weight: 700;
}


#alert {
    z-index: 9999;
    position: fixed;
    top: initial;
    bottom: 24px;
    left: 24px;
    width: 30%;
    margin: 0;
}

#alert .alert {
	position: relative;
	display: block;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-align: left;
	margin: 0;
	max-width: 100%;
    width: 320px;
	background: var(--white-color);
	color: var(--text-color);
	border-radius: var(--border-radius);  
	border-radius: 28px;  
    border: none;
    box-shadow: var(--main-shadow);      
	overflow: hidden;
	line-height: 20px;
	min-height: 56px;
	padding: var(--mid-pad) var(--lg-pad) var(--mid-pad) var(--xl-pad);
	padding:var(--xs-pad) var(--mid-pad);
	opacity: 0;
	animation: alert-animate 0.5s ease-out forwards;
}
#alert .alert:before,
#alert .alert:after{
    pointer-events: none;
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0%;
    border-radius: 28px;
}
#alert .alert:before {
    z-index: 1;
    border-radius: 28px;
    border: 1px solid transparent;
    background: linear-gradient(
            112deg,
            rgba(var(--color-white-rgb), 0.8) 0%,
            rgba(var(--color-white-rgb), 0) 40%
        )
        border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
#alert .alert:after{
    z-index: -1;
}
/*
#alert .alert-primary {
    box-shadow: 0 0 0 5px rgb(var(--bs-primary-rgb), 0.1);
}
#alert .alert-secondary {
    box-shadow: 0 0 0 5px rgb(var(--bs-secondary-rgb), 0.1);
}
#alert .alert-success {
    box-shadow: 0 0 0 5px rgb(var(--bs-success-rgb), 0.1);
}
#alert .alert-warning {
    box-shadow: 0 0 0 5px rgb(var(--bs-warning-rgb), 0.1);
}
#alert .alert-danger {
    box-shadow: 0 0 0 5px rgb(var(--bs-danger-rgb), 0.1);
}
#alert .alert-info {
    box-shadow: 0 0 0 5px rgb(var(--bs-info-rgb), 0.1);
}
#alert .alert-light {
    box-shadow: 0 0 0 5px rgb(var(--bs-light-rgb), 0.1);
}
#alert .alert-dark {
    box-shadow: 0 0 0 5px rgb(var(--bs-dark-rgb), 0.1);
}
*/
.alert-icon{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: var(--med-pad); 
    height: var(--med-pad); 
    color: var(--light-text-color);
    font-size: var(--icon-font);
    border-radius: 50%;
}
.alert-text{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 88px);
    padding: 0 var(--sm-pad); 
    line-height: var(--mid-pad); 
}
.alert-text > div{
    display: block;
    overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: left;
    font-weight: 600;	
	color: var(--text-color);
}
.alert-text > span{
	display: block;	
    overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: left;
	color: var(--text-color);
}

.alert-dismissible .btn-close{
    height: 100%;
    padding: 0 16px;
    font-size: 12px;
}

#alert .alert-success:after{
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(12, 154, 0, 0.16) 100%);    
}
#alert .alert-success .alert-icon{
    background: rgba(12, 154, 0, 0.16);
    color: var(--green-color);        
}
#alert .alert-warning:after,
#alert .alert-danger:after{
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(156, 20, 33, 0.16) 100%);  
}
#alert .alert-warning .alert-icon,
#alert .alert-danger .alert-icon{
    background: rgba(156, 20, 33, 0.16);
    color: var(--red-color);        
}

@keyframes alert-animate {
	0% {
		transform: translateY(50%);
		opacity: 0.5;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

@media (min-width: 1140px) and (max-width: 1320px) {
    #alert {
        width: 70%;
        left: 15%;
    }
}
@media (min-width: 992px) and (max-width: 1139px) {

}

@media (max-width: 991px){
    
    #alert {
        bottom: initial;
        top: 72px;
        left: 0%;
        width: 100%;
        margin: 0;
        padding: 0 16px;
    }
    #alert .alert {
        width: 100%;    
    }
    
}

.show-mob{
    display: none;
}
.hide-mob{
    display: flex;
}


/* MAIN WRAPPERS */

html.no-scroll {
	overflow: hidden;
}

#main-wrapper{
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding-top: 72px;
}

#main-content{
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 60dvh;
    padding: 64px 0px;
}

/*
#container {
    width: 100%;
    min-height: 100%;
    position: absolute;
    margin-bottom: 300px;
}
*/


/* HEADER MAIN */

#header-main {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 12;
    background: transparent;
    transition: background 0.2s ease;
}

.header-main {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 99;
}

.header-container{
    position: relative;
    display: flex;    
    width: var(--offset-width);
/*    margin-left: auto;*/
}
.header-logo{
    position: relative;
    display: flex;
    justify-content: flex-start;    
    padding: 20px 0px;
/*    width: 25%;*/
}
.nav-main {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 16px 0px;
/*    width: 25%;*/
    margin-left: auto; 
}
.nav-btn{
    position: relative;
    display: flex; 
    margin-left: var(--mid-pad);
}
.header-nav-mob-btn,
.mobile-nav{
    display: none;
}

#header-main.sticky {
    background: var(--white-color);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.04);
    transition: background 0.2s ease-out;
}
#header-main.sticky .nav-btn > .i-btn,
#header-main.sticky #nav-cart > .i-btn,
#header-main.sticky .nav-btn > .l-btn{
    background: var(--bg-color);
    transition: background 0.2s ease-out;    
}
#header-main.sticky .nav-btn > .l-btn{
    border: 1px solid var(--bg-color);
}
#header-main.sticky .nav-btn > .i-btn:hover,
#header-main.sticky #nav-cart > .i-btn:hover,
#header-main.sticky .nav-btn > .l-btn:hover,
#header-main.sticky .nav-btn > .i-btn:focus,
#header-main.sticky #nav-cart > .i-btn:focus,
#header-main.sticky .nav-btn > .l-btn:focus,
#header-main.sticky .nav-btn > .i-btn:active,
#header-main.sticky #nav-cart > .i-btn:active,
#header-main.sticky .nav-btn > .l-btn:active
{
    background: var(--bg-color);
    background: var(--main-color);
    transition: background 0.2s ease-out;    
}
#header-main.sticky .nav-btn > .l-btn:hover,
#header-main.sticky .nav-btn > .l-btn:focus,
#header-main.sticky .nav-btn > .l-btn:active{
    border: 1px solid var(--main-color);
}
.home-page #header-main:not(.sticky) .nav-btn > .i-btn:hover,
.home-page #header-main:not(.sticky) #nav-cart > .i-btn:hover,
.home-page #header-main:not(.sticky) .nav-btn > .l-btn:hover,
.home-page #header-main:not(.sticky) .nav-btn > .i-btn:focus,
.home-page #header-main:not(.sticky) #nav-cart > .i-btn:focus,
.home-page #header-main:not(.sticky) .nav-btn > .l-btn:focus,
.home-page #header-main:not(.sticky) .nav-btn > .i-btn:active,
.home-page #header-main:not(.sticky) #nav-cart > .i-btn:active,
.home-page #header-main:not(.sticky) .nav-btn > .l-btn:active
{
    color: var(--text-color);
    background: var(--white-color);
    opacity: 0.6;
    transition: opacity 0.2s ease-out;    
} 
.home-page #header-main:not(.sticky) #switch-store-btn.l-btn:hover i, 
.home-page #header-main:not(.sticky) #switch-store-btn.l-btn:focus i, 
.home-page #header-main:not(.sticky) #switch-store-btn.l-btn:active i{
    color: var(--text-color);
}


.home-page #header-main:not(.sticky) .nav-btn > .dark-btn:hover,
.home-page #header-main:not(.sticky) .nav-btn > .dark-btn:active{
    background: var(--text-color);
    color: var(--white-color);
    opacity: 0.6;
    transition: opacity 0.2s ease-out; 
}

.nav-home-btn,
.account-page .nav-cart-btn,
.account-page .nav-account-btn,
.account-page .search > *,
.login-page .nav-cart-btn,
.login-page .nav-account-btn,
.login-page .search,
.login-page .search > *,
/*.empty-page .nav-cart-btn,*/
.empty-page .search > *,
.home-page .search > *,
.empty-checkout .nav-cart-btn,
.empty-checkout .search > *,
.contact-page .search > *,
/*.contact-page .nav-cart-btn,*/
/*.checkout-page .nav-cart-btn,*/
.checkout-page .search > *{
    display: none;
}
/*.contact-page .nav-home-btn,*/
.login-page .nav-home-btn,
.account-page .nav-home-btn{
    display: flex;
}

/*
#header-main.sticky .nav-btn .l-btn:after{
    opacity: 0;
}
*/
#header-main.sticky .search .form-control,
#header-main.sticky input.form-control:-webkit-autofill, 
#header-main.sticky input.form-control:-webkit-autofill:hover, 
#header-main.sticky input.form-control:-webkit-autofill:focus, 
#header-main.sticky input.form-control:-webkit-autofill:active{
    background: var(--bg-color);
    background-color: var(--bg-color)!important;
    -webkit-box-shadow: 0 0 0 48px var(--bg-color) inset !important;
}

#logo {
    position: relative;
    display: flex;
    padding: 0;
    margin: 0px;
}
#logo img {
    height: 32px;
    width: auto;
    max-width: 100%;
}
.logo-dark{
    display: flex;
}
.logo-light{
    display: none;
}

.home-page #header-main:not(.sticky) .logo-dark{
    display: none;
}
.home-page #header-main:not(.sticky) .logo-light{
    display: flex;
}

/* search */
.search {
    position: relative;
    display: flex; 
    padding: 16px 0px;
    max-width: 50%;
    min-width: 400px;
    width: 30%;
}
.search-form{
    position: relative;
    display: flex; 
    width: 100%;
}
.header-search-main{
/*    position: relative;*/
    width: 100%;
}
.search .form-control {
    padding-left: 48px;
}
.search .form-control:focus {
    background: var(--bg-color);
}
.header-search-main > .i-btn {
    position: absolute;
    top:0;
    left: 0;
    background: transparent;
}
.header-search-main > .i-btn:hover,
.header-search-main > .i-btn:focus,
.header-search-main > .i-btn:active
{
    color: var(--main-color);
}
.search-extra-btn{
    position: absolute;
    top:0;
    right: 0;
    padding: 4px;
}
.search-extra-btn .i-btn{
    background: var(--dark-color);
    color: var(--white-color);
}
.search-extra-btn .i-btn:hover{
    background: var(--main-color);
}
#header-search-toggle,
.search-btn-close{
    display: none;
}

/* cart */

#cart {
    margin:0;
/*    height: calc(100dvh - 96px);*/
}
.header-cart{
    
}
#mobile-cart,
.cart-main-icon,
.cart-store-location{
    display: none;
}

#nav-cart > .btn{
	position: relative;
	transition: all 0.2s ease;
}

.header-btn-label{
	display: block;
	white-space: nowrap;
}

#cart #cart-main {
	position: fixed;
	height: auto;
	bottom: 24px;
	right:24px;
	left: initial;
	min-width: initial;
	width: 376px;
	padding: 0px;
	margin: 0;
	float: none;
	border: none;
	background: var(--white-color);
	z-index: 1001;
/*    height: calc(100% - 96px);*/
    max-height: 100%;
	border-radius: 0;
	transform: none!important;
	box-shadow: var(--main-shadow);
	border-radius: var(--xl-border-radius);
/*	transition: 0.2s ease-out right;*/
}

#cart #cart-main {
	display: none;
    opacity: 0;    
}

body:not(.cart-hidden) #cart #cart-main{
    opacity: 1;
    display: block;
    transition: 0.4s ease-in opacity;
/*    animation: opac-in-animate 0.4s ease-in forwards;*/
}

/*
body.cart-hidden #cart #cart-main{
    display: none;
}
*/

/*
.cart-open #cart.show #cart-main,
#cart.show #cart-main,
#cart.show.cart-ani-open #cart-main {
    display: block;
}
*/


.cart-main-header {
	position: relative;
	display: block;
	line-height: 24px;
	padding: var(--mid-pad);
	font-size: 16px;
    font-family: 'Signika', Arial, Helvetica, sans-serif;
	font-weight: 700;
    cursor: pointer;
}
.cart-main-title{
	position: relative;
	display: block;	
    overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: left;
	color: var(--text-color);
	padding-right: var(--lg-pad);
}
.cart-total-indicator {
    position: relative;
	display: inline-flex;
    color: var(--main-color);
}
.cart-main-header .i-btn {
	position: absolute;
	right: var(--mid-pad);
	top: var(--mid-pad);
    transform: rotate(0deg);
    transition: 0.2s ease all;
	z-index: 2;
}
#cart.show .cart-main-header .i-btn {
    transform: rotate(180deg);
}
#cart.show.cart-ani-open .cart-main-header .i-btn {
    transition: 0.4s ease-out all;    
}

#cart .cart-dropdown-menu {
	position: relative;
	display: flex;
	flex-direction: column;
	top: 0;
	left: initial;
	right: initial;
	max-height: 0px;
	min-width: initial;
	width: 100%;
	padding: 0 var(--mid-pad);
	margin: 0;
	float: none;
	border: none;
	box-shadow: none;
	background: var(--white-color);
	z-index: 1001;
	border-radius: 0;
	overflow: hidden;
    
	transition: 0.2s ease all;
}
#cart.show .cart-dropdown-menu {
    max-height: calc(100dvh - 144px);
    opacity: 1;
    transition: none;
}
.cart-products {
	display: flex;
	flex-direction: column;
    padding-top: 8px;
    margin-right: -12px;
    padding-right: 12px;
    max-height: 40dvh;
    overflow-y: auto;
    scrollbar-color: var(--main-color) var(--white-color);
    scrollbar-width: thin;
	margin-bottom: var(--main-pad);
}
.cart-products,
.cart-bottom{
    opacity: 0;
    transition: 0.2s ease all;    
}
#cart.show .cart-products,
#cart.show .cart-bottom {
    opacity: 1;
    transition: none;
}
#cart.show.cart-ani-open .cart-products,
#cart.show.cart-ani-open .cart-bottom{

	transition: all 0.4s ease-out;    
    transition-delay: 0.2s;    
}
#cart.show.cart-ani-open .cart-dropdown-menu {
	transition: all 0.4s ease-out;
}

#cart .cart-products {
	-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 8px, rgba(0, 0, 0, 1) 94%, rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 8px, rgba(0, 0, 0, 1) 94%, rgba(0, 0, 0, 0) 100%);
}

.cart-product-header {
	display: flex;
	width: 100%;
	padding: var(--mid-pad) 0px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 1px;
	color: var(--grey-color);
}
.cart-header-product {
	width: 60%;
}
.cart-header-amount, 
.cart-header-price {
	width: 20%;
	text-align: right;
}

.cart-product-line {
    
    position: relative;
	display: flex;
	padding: var(--xxs-pad);
	margin: 0;
	margin-bottom: var(--xs-pad);
	box-shadow: none;
    border-radius: var(--lg-border-radius);
	background: var(--bg-color);
	transition: 0.2s ease all; 
}
.cart-product-line:hover {
    background: transparent; 
	transition: 0.3s ease-out background;
}
.cart-product-line:after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--lg-border-radius);
    background: var(--light-gradient); 
    opacity: 0;
	transition: 0.2s ease all; 
    z-index: -1;
}
.cart-product-line:hover:after {
    opacity: 1;
	transition: 0.3s ease-out all;
}

.cart-products-inline .cart-product-line a {
	color: var(--text-color);
}

.cart-products-inline .cart-product-line a:hover {
	color: var(--main-color);
}

.cart-product-product {
	display: flex;
    flex-grow: 1;
    min-width: 0;
/*    max-width: 60%;*/
/*	width: 60%;*/
/*	width: calc(100% - 120px);*/
}

.cart-product-text {
    position: relative;
	display: block;
    max-width: 100%;
	text-align: left;
	padding: 0 var(--sm-pad);
}

.cart-product-title {
    position: relative;
	display: block;
    width: 100%;
    overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: 300;
	line-height: var(--med-pad);

}
.cart-product-text .togo-icon{
    position: relative;
    display: inline-flex;
    float: left;
    width: 30px;
    height: 20px;
    margin: 6px 8px 6px 0px;
    background: url(/image/icons/BKK-ToGo-logo.svg) center center no-repeat;
}
.cart-product-options {
	font-size: 12px;
	color: var(--grey-color);
}
.cart-product-options span{
	
}
.cart-product-right {
	position: relative;
	display: flex;
	justify-content: flex-end;
	text-align: right;
}
.cart-product-price {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: right;
	padding-right: var(--xs-pad);
    font-weight: 600;
}

.cart-product-amount{
	position: absolute;
	display: flex;
	padding: 0px;
    margin-left: var(--xs-pad);
}

.cart-product-amount span,
.cart-product-amount input{
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	min-width: 32px;
	height: 32px;
	vertical-align: top;
	border-radius: var(--border-radius);
	padding: 0 8px;
	font-weight: 600;
	font-size: var(--sm-font); 
	background: var(--bg-color); 
	line-height: var(--main-pad); 
}
.cart-product-amount span{
    background: var(--white-color);
    border-radius: 50%;
	transition: 0.2s ease all; 
}
.cart-product-line:hover .cart-product-amount span{
	background: var(--white-color);
	transition: 0.4s ease-out background;
}
.cart-product-amount input{
	border: none;
	box-shadow: none;
}
.cart-product-remove {
    position: relative;
    z-index: 1;
}
.cart-product-remove .i-btn{
	color: var(--light-text-color);    
    background: transparent;
}
.cart-product-line:hover .cart-product-remove {
	opacity: 1;
}
.cart-product-option{
	color: var(--light-text-color);
	padding-right:var(--xs-pad);
}

.product-cart-btn{
	position: relative;
	display: flex;
/*	overflow: hidden;*/
/*	margin-left: auto;*/
	line-height: var(--med-pad);
}
.cart-product-right .product-cart-btn{
/*
	position: absolute;
	top: 0px;
	right: 0px;
*/
    line-height: var(--med-pad);
}
.cart-btn{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-size: 14px;
	background: none;
	min-width: initial;
	margin: 0;
	padding: 0;
    border: 0px;
    box-shadow: none;
	background: var(--dark-color);
	color: var(--white-color);
}
.cart-main-btn{
	position: absolute;
	display: flex;
	overflow: hidden;
	right: 0;
	top: 0;    
    z-index: 3;
}
.cart-main-btn .cart-btn{
	position: relative;
	display: flex; 
	background: var(--white-color);
	color: var(--dark-color);
}
.product-block-btns:hover .cart-main-btn .cart-btn{
	background: var(--dark-color);
	color: var(--white-color);
}
.product-block-btns .cart-main-btn .cart-btn:focus{
    color: var(--white-color);
}
.product-block-btns:hover .cart-main-btn .cart-btn:focus:not(:focus-visible){
    color: var(--white-color);
}
.btn.disabled.cart-btn{
	opacity: 0.24;
}
.cart-btn:hover,
.cart-btn:focus,
.cart-btn:active{
	background: var(--dark-color);
}
.product-cart-btns{
	position: relative;
	display: flex;
	overflow: hidden;
	width: 32px;
	border-radius: 16px;
	background: var(--dark-color);
	opacity: 0;
	z-index: 1;
	transition: all 0.2s ease;
}

/*
.product-cart-btns{
	position: absolute;
	display: flex;
	overflow: hidden;
	right: 0;
	top: 0;
	width: 32px;
	border-radius: 16px;
	background: var(--dark-color);
	opacity: 0;
	z-index: 1;
	transition: all 0.2s ease;
}
*/

.product-block-btns{
    position: relative;
	display: flex;
    margin-left:var(--main-pad); 
}
.product-block-btns form{
    margin: 0;    
}
.product-cart-btn:hover .product-cart-btns,
.product-block-btns:hover .product-cart-btns{
/*	display: flex;*/
	width: 96px;
	width: 112px;
	padding-right: 32px;
	opacity: 1;
	transition: all 0.4s ease-out, opacity 0.1s ease-out;
}
.product-cart-amount-input{
	display: flex;
	text-align: center;
	justify-content: center;
	padding: 0 8px;
	color: var(--white-color);
	font-size: 14px;
	font-weight: 600;
	width: 48px;
	user-select: none;
    line-height:var(--med-pad); 
}
.product-cart-amount{
	position: absolute;
	display: none;
    flex-direction: column;
    justify-content: center;
	top: 0;
	right: 0;
    text-align: center;
    min-width: 48px;
    height: 32px;
    vertical-align: top;
    border-radius: 20px;
    padding: 0 8px;
    font-weight: 600;
    font-size: var(--sm-font);
    background: var(--bg-color);
	box-shadow: 0px 0px 1px 1px var(--bg-color);
    line-height: var(--main-pad);
	z-index: 3;		
}
.cart-plus-btn{
    position: absolute;
    display: flex;
    top: 0;
	right: 0;
    opacity: 0;
    z-index: 2;
}
.product-in-cart.product-cart-amount{
	display: flex;
}
.product-cart-btn:hover .product-cart-amount{
	z-index: 0;
}
.product-cart-btn:hover .cart-plus-btn{
    opacity: 1;
}

.cart-animation{
    position: fixed;
    display: block;
    top: 24px;
    right:24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--dark-color);
    z-index: 4;
    opacity: 0; 
    pointer-events: none;
}

/*
.cart-anim .cart-animation{
    animation: cart-btn-animate 0.4s ease-in forwards;     
}
*/

@keyframes cart-btn-animate {
	0% {
		transform: scale(1) translateY(0%) translateX(0%);
		opacity: 1;
	}
	100% {
		transform: scale(0.5) translateY(1250%) translateX(1350%);
		opacity: 0;
	}
}

.cart-bottom {
	display: flex;
	flex-direction: column;
	align-self: flex-end;
	width: 100%;
	margin-top: auto;
}

.cart-totals {
	display: block;
	padding: 8px 0px;
	border-top: 1px solid var(--border-color);
}
.cart-bottom .cart-totals{
	padding: 16px 0px 0px 0px;
	margin-bottom: var(--mid-pad);	
}
.cart-total-line {
	display: flex;
	line-height: var(--med-pad);
    font-size: 300;
    color: var(--light-text-color); 
}

.cart-totals .cart-total-line:last-child {
/*	font-size: var(--lg-font);*/
    color: var(--text-color); 
	font-weight: 600;
}

.cart-total-text {
	width: 56%;
	text-align: left;
}

.cart-total-total {
	width: 44%;
	text-align: right;
}
.cart-buttons {
	display: flex;
    padding: 0 var(--mid-pad) var(--mid-pad) var(--mid-pad);
}
.cart-buttons .btn {
	display: block;
	width: 100%;
}
.cart-buttons .btn i{
    font-weight: 400;
}

.cart-payment{
    position: relative;
	display: flex;
    flex-direction: row;
    justify-content: center;
    line-height: var(--main-pad); 
    padding-bottom: var(--mid-pad);
}
.cart-payment-title{
    font-size: 12px;
    font-weight: 300;
    color: var(--light-text-color); 
    padding: 0 var(--xxs-pad);
}
.cart-payment-img{
    position: relative;
	display: flex;
    padding: var(--xxs-pad) var(--xs-pad);
    margin: 0 var(--xxs-pad);
    border-radius: 12px;
    background: var(--bg-grey-color); 
}
.cart-payment-img img{
    height: var(--mid-pad); 
    width: auto;
}

.cart-empty {
	display: flex;
	flex-direction: column;
	height: 280px;
	justify-content: center;
	text-align: center;
}
.cart-empty-icon,
.category-info-icon{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 64px;
	height: 64px;
	text-align: center;
    padding: 4px;
	margin: 0 auto var(--mid-pad) auto;
	font-size: 28px;
    border-radius: 50%;
	color: var(--main-color);
    background: var(--vrt-light-gradient);        
}
.cart-empty-img{
    display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto 0 auto;
}
.cart-empty-img img{
    width: 54%;
    height: auto;
}
.cart-empty-icon span,
.category-info-icon span{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
    border-radius: 50%;
    background: var(--vrt-light-gradient);        
}
.cart-empty-header h3{
    font-size: 16px;
	font-weight: 600;
	margin: 0;
}
.cart-empty-text {
    color: var(--light-text-color);
	margin-bottom: var(--lg-pad);
}

.category-info-block{
    position: relative;
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-self: center;
    text-align: center;  
    min-height: 40dvh;
    max-width: 60%;
    margin: 0 auto;
}
.content-info-block{
    position: relative;
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-self: center;
    text-align: center; 
}

.category-info-block h3{
	font-weight: 600;
	margin: 0;
    margin-bottom: var(--xs-pad);
}
.category-info-block p{
    margin: 0 10%;
}
.category-info-block .btn{
    margin-top: var(--lg-pad);
    align-self: center;
}

.inline-blocks{
    position: relative;
    display: flex;
    justify-content: space-between;
}

.content-inline-block{
    position: relative;
    display: flex; 
    flex-direction: column;
    padding: var(--mid-pad); 
    background: var(--white-color);  
    background: var(--light-gradient);
    margin-bottom: var(--main-pad); 
    border-radius: var(--lg-border-radius);
}
.content-inline-block h4{
    margin-bottom: 4px;
}
.inline-blocks .content-inline-block{
    width: calc(50% - 12px);
}
.content-inline-full{
    margin-top: var(--main-pad);  
}

/*
.cart-empty .btn {
	display: inline-block;
	align-self: center;
}
*/
.table-responsive{
    border-radius: var(--lg-border-radius);
    background: var(--light-gradient);
    overflow: hidden;
}
.table-responsive .table{
    border-radius: var(--lg-border-radius);
    background: var(--light-gradient);
    margin: 0;
}
.table-responsive .table tbody tr:last-child{
    border-bottom-color: transparent;
}
.table-responsive .last-row:last-child{
    font-size: 16px;
    font-weight: 700;
}
.table{
    border-color: transparent;
}
.table > :not(caption) > * > *{
    padding: 8px 16px;
    background: transparent;
}
.table-responsive .last-row{
    position: relative;
}
.table-responsive tr.last-row:not(.last-row ~ .last-row)::after {
    content: '';
    position: absolute;
    display: block;
    top: -1px;
    left: 0px;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0.12) 50%, rgba(51, 51, 51, 0) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.64) 50%, rgba(255, 255, 255, 0) 100%);
    background-position: top, bottom;
    background-size: 100% 1px, 100% 1px;
    background-repeat: no-repeat;
    z-index: 1;
}


/* CLOSED */

.store-closed{
    padding-top: 40px;
}
.store-closed #header-main{
    top: 40px;
}
.sticky-header .store-closed{
    padding-top: 0px;
}
.sticky-header.store-closed #header-main{
    top: 0px;
}

.closed-message{
    position: fixed;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 8px;
    line-height: 24px;
    font-size: 14px;    
    background: var(--text-color);
    color:var(--white-color); 
    z-index: 99;
}
.closed-message p{
    margin: 0;
}
.sticky-header.store-closed .closed-message{
    display: none;
}

/* GENERAL CONTENT */

#content{
/*    padding-bottom: 192px;*/
/*    min-height: 90dvh;*/
}

.content-center{
    position: relative;
    display: flex;
/*    flex-direction: column;*/
    justify-content: center;
}
.content-block-wrap{
    position: relative;
    display: flex;    
}
.center-block-wrap{
    position: relative;
    display: flex;
/*    flex-direction: column;*/
    justify-content: center;
    width: 100%;
    max-height: 1080px;
}
.content-center.content-center-info .center-block-wrap{
    min-height: 60dvh;
}
.content-block{
    position: relative;
    display: flex;
    padding:  var(--lg-pad);
    background: var(--light-gradient);
    background: url(../images/bkk-popup-bg.jpg) center top no-repeat var(--white-color);
	background-size: cover;
    border-radius: var(--xl-border-radius);
    opacity: 0;
    animation: btm-in-animate 0.5s ease-out forwards;    
/*    margin-bottom: var(--xs-pad); */
}
.content-center-block{
    flex-direction: column;
    width: 40%;    
    min-width: 640px;
}
.content-center-block.center-block-sm{
    width: 30%;    
    min-width: 480px;
}
.empty-page .content-center-block,
.empty-checkout .content-center-block{
    min-width: 480px;
    width: 50%;    
}
.content-block-clean{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;   
    background: none;
}
/*
.empty-page .content-center-block.center-block-sm{
    min-width: 480px;
    width: 50%;    
}
*/
.content-block .content-form{
    width: 100%;    
}
.content-block-img{
    position: relative;
    display: flex;
    flex-direction: column;    
}
.content-block-img img{
    width: 60%;
    height: auto;
}
.content-block-title{
    position: relative;
    display: flex;
    flex-direction: column;  
    margin-bottom: var(--main-pad); 
}
.content-block-title .info-chip{
    position: absolute;
    top: 0; 
    right: 0;
}
.content-block-title h1 b{
    color: var(--main-color);
}

/*
.content-block-title h1{
    margin: 0;
}
*/
.content-block-title p{
    margin: 0;
}
.content-block-text{
    position: relative;
    display: flex;
    flex-direction: column;  
    margin-bottom: var(--main-pad);     
}

.empty-checkout .content-block,
.no-bg.content-block{
    background: none;
    text-align: center;
}

/* HOME CONTENT */


.home-page #main-wrapper,
.home-page #main-content{
    padding-top: 0px;
}
.home-page #main-wrapper{
    overflow: hidden;    
}
#home-top{
    position: relative;    
    padding-top: 48px;
    padding-bottom: 48px;
    margin-bottom: var(--lg-pad); 
    background: url(../images/bkk-bg.jpg) left top no-repeat, linear-gradient(180deg, #FF9400 0%, #F66718 100%);
    background-size: cover;
}
/*
#home-top .container{
    position: relative;
    z-index: 1;
}
*/
#home-top:after{
    
    content: '';
    position: absolute;
    display: block;
    bottom: -1px;
    left: 0px;
    height: 2px;
    width: 100%;    
    background: linear-gradient(90deg, rgba(51, 51, 51, 0.48) 0%, rgba(51, 51, 51, 0.48) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0.64) 100%, rgba(255, 255, 255, 0.64) 100%);
    background-position: top, bottom;
    background-size: 100% 1px, 100% 1px;
    background-repeat: no-repeat;
    z-index: -1;
}

.home-main-block{
    position: relative;
}
    

.home-content-block{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: var(--lg-pad);
/*
    
    background: radial-gradient(85.96% 139.13% at 23.1% -100.64%, rgba(255, 94, 244, 0.32) 0%, rgba(255, 94, 244, 0.00) 100%), radial-gradient(64.07% 180.09% at 97.55% -44.74%, rgba(108, 255, 101, 0.24) 0%, rgba(108, 255, 101, 0.00) 100%), radial-gradient(200.88% 143.13% at -16.68% 165.38%, rgba(255, 105, 40, 0.16) 0%, rgba(255, 105, 40, 0.00) 100%), rgba(255, 241, 234, 0.48);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
*/    
}

.home-block-main{
    position: relative;
    display: flex;
    flex-direction: column;  
    color: var(--white-color);
}
.home-block-main-text{
    position: relative;
    display: flex;
    flex-direction: column;      
}
.home-block-main h1{
    font-size: 36px;
    color: var(--white-color);    
}
.home-block-main p{
    font-size: var(--med-font);
    padding-right: 30%;
    margin-bottom: var(--main-pad);   
}
.home-block-buttons{
    position: relative;
    display: flex;
}
.home-block-buttons .btn{
/*    min-width: 176px;*/
    margin-right: var(--mid-pad); 
}
.home-block-buttons .dark-btn:hover{
    opacity: 0.6;
    transition: opacity 0.2s ease-out;
/*
    color: var(--dark-color);  
    background: var(--white-color);  
*/
}

.home-postcode-block{
    position: relative;
    display: inline-flex;
    flex-direction: column; 
}

.home-content-image{
    position: absolute;
    width: 56%;
    right: -8%;
    bottom: -45%;
}
.home-content-image img {
    max-width: 100%;
}

.main-code-input{
    width: max-content;
/*    margin-bottom: var(--lg-pad);  */
}

.form-code-input{
    display: flex;
    margin-left: -6px;
    margin-right: -6px;
    margin-bottom: 48px;
}
.form-code-input .form-input-sm {
    width: 16.6666%;
    width: 48px;
    height: 72px;
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
    border-radius: var(--input-border-radius);
    padding: var(--sm-pad) var(--xs-pad);
    margin: 0 6px;
    color: var(--main-color);
    border: none;
    background: var(--white-color);
    opacity: 0.5;
    font-weight: 600;
}

.form-code-input .form-input-sm:focus {
    background: var(--white-color);
    opacity: 1;
}

.form-code-input .form-input-sm.filled {
    color: var(--text-color);
    background: var(--white-color);
    opacity: 1;
}
.input-error .form-code-input .form-input-sm{
    color: var(--dark-red-color);
    background: #FFBCC2;
    opacity: 1;
}

.form-input-sm::-webkit-input-placeholder {
	color: var(--light-text-color)!important;
}
.form-input-sm::-moz-placeholder {
	color: var(--light-text-color)!important;
}
.form-input-sm::-ms-input-placeholder {
	color: var(--light-text-color)!important;
}
.form-input-sm::placeholder {
	color: var(--light-text-color)!important;
}

#post-error{
    display: none;
    position: absolute;
    left: 0;
    bottom: var(--xs-pad);
    width: 100%;
    padding: 7px 8px;
    border-radius: 20px;
    line-height: var(--mid-pad);
    border: 1px solid rgba(255, 188, 194, 0.24);
    background: linear-gradient(90deg, rgba(156, 20, 33, 0.32) 0.29%, rgba(156, 20, 33, 0.48) 100%);
    backdrop-filter: blur(2px);
}
#post-error span{
    padding: 0 var(--mid-pad) 0px var(--xs-pad);
}
#post-error i{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: var(--main-pad);
    height: var(--mid-pad);
    padding: 0px;
    text-align: center;
    font-size: 14px;
    color: var(--white-color);
}
.input-error #post-error{
    display: flex;
}

.home-banners{
    position: relative;
    display: flex;
    column-gap: var(--mid-pad);
    margin: var(--lg-pad) 0 var(--xl-pad) 0;
}

.banner-block-small{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 33.3333%;
    transform: translateY(0);
    transition: all 0.2s ease;
}
/*
.banner-block-small:hover{
    transform: translateY(-10%);
    transition: all 0.5s ease-in-out;
}
*/

.banner-block-small > a{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: var(--main-pad);
    background: var(--light-gradient); 
	box-shadow: var(--main-shadow);
	border-radius: var(--xl-border-radius);
    flex: 1;
    transform: translateY(0);
    transition: all 0.2s ease;
}

.banner-block-small > a:before {
    content: '';
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
	border-radius: var(--xl-border-radius);
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.48) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.banner-block-small > a:hover{
    transition: all 0.5s ease-in-out;
}
.banner-block-small:hover > a{
    transform: translateY(-8%);
    transition: all 0.4s ease-in-out;
}
.banner-block-content{
    position: relative;
    display: flex;
    flex-direction: column;    
}
.banner-small-chip{
    position: absolute;
    right: 0;
    top: 0;
    display: inline-flex; 
    align-self: flex-start;
    padding:var(--xxs-pad) var(--sm-pad); 
    border-radius: var(--mid-pad);
    line-height: var(--mid-pad); 
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.32);
    box-shadow: var(--main-shadow);
    color: var(--text-color);    
}
.banner-block-icon{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: var(--lg-pad);
    height: var(--lg-pad);
    line-height: var(--lg-pad);
    padding: 0px;
    text-align: center;
    font-size: 16px;
    border: none;
    background: var(--white-color);
    background: var(--vrt-light-gradient);
    background: linear-gradient(135deg, rgba(255, 148, 0, 0.20) 0%, rgba(255, 148, 0, 0.00) 100%), rgba(255, 255, 255, 0.04);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);    
    
    color: var(--main-color);
    font-size: 24px;
    border-radius: 50%;    
}

.banner-block-icon i{
    font-size: 0;
}
.banner-block-icon i:before{
    font-size: 24px;    
}

.banner-block-icon:before {
    content: '';
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(
            135deg,
            rgba(var(--color-white-rgb), 0.8) 0%,
            rgba(var(--color-white-rgb), 0) 80%
        )
        border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
.banner-block-small.bb-dark .banner-block-icon:before {
    background: linear-gradient(
        135deg,
        rgba(var(--color-white-rgb), 0.16) 0%,
        rgba(var(--color-white-rgb), 0) 80%
    )
    border-box;
}

.banner-block-text{
    position: relative;
    display: flex;
    flex-direction: column;    
    color: var(--text-color);
    margin-top: var(--main-pad); 
}
.banner-small-subtitle{
    position: relative;
    display: flex;
}
.banner-small-title{
    position: relative;
    display: flex;
    font-size: 16px;
    font-weight: 600;
}

.banner-block-image{
    position: absolute;
    width: 52%;
    right: -13%;
    bottom: 0%;
    transition: all 0.2s ease;
}
.banner-block-image img{
    max-width: 100%;
}

.banner-block-small.bb-orange > a{
    background: url(../images/bkk-bonus-home.png) center no-repeat;
    background-size: cover;
}

.banner-block-small.bb-green > a{
    background: url(../images/bkk-bio-home.png) center no-repeat;
    background-size: cover;
}
.banner-block-small.bb-dark > a{
    background: var(--dark-color); 
    color: var(--white-color);   
}
.banner-block-small.bb-dark .banner-block-text{
    color: var(--white-color);  
}
.banner-block-small.bb-dark .banner-block-content{
    padding-right: 20%;
}
.banner-block-small.bb-orange .banner-block-icon{
    color: var(--pink-color);
    background: linear-gradient(135deg, rgba(255, 49, 252, 0.20) 0%, rgba(255, 49, 252, 0.00) 100%), rgba(255, 255, 255, 0.04);
}
.banner-block-small.bb-green .banner-block-icon{
    color: var(--green-color);
    background: linear-gradient(135deg, rgba(12, 154, 0, 0.20) 0%, rgba(12, 154, 0, 0.00) 100%), rgba(255, 255, 255, 0.04);

}

/* Slider Carousel */

.main-slider.carousel{
    border: none;
    box-shadow: none;
    margin-bottom: var(--main-pad);
    opacity: 0;
	animation: btm-in-animate 0.7s ease-out forwards;
}

.carousel-item{
}
.carousel-item-block{
    position: relative;
    display: flex; 

}
.carousel-item-content{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--white-color);
    text-shadow: var(--text-shadow); 
    z-index: 2;
}
.carousel-item-content .container{
    padding-right: 40%;
}
.carousel-item-title{
    position: relative;
    display: flex;
    flex-direction: column;  
    opacity: 0;
    animation: left-in-animate 0.7s ease-out forwards;
    animation-delay: 0.3s;
}
.carousel-item-title h2{
    font-size: 36px;
    color: var(--white-color);
}
.carousel-item-text{
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0;
    animation: left-in-animate 0.5s ease-out forwards;
    animation-delay: 0.5s;
}
.carousel-item-content .btn{
    margin-top: var(--mid-pad);  
    align-self: flex-start;
}
.carousel-item-image{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;    
    width: 100%;
    border-radius: var(--xl-border-radius);
    overflow: hidden;
    z-index: 1;
    
}
.carousel-item-image img{
    max-width: 100%;
}

/* HEADER CATEGORY MODULE */

#header-categories .header-category-content {
    position: fixed;
    /* display: none; */
    height: 100%;
    top: 0;
    right: -520px;
    left: initial;
    min-width: initial;
    width: 512px;
    padding: var(--main-pad) var(--lg-pad) var(--lg-pad) var(--lg-pad);
    margin: 0;
    background: var(--white-color);
    z-index: 1001;
    border-radius: 0;
    transform: none !important;
/*    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);*/
    transition: 0.2s ease-out right;
}
#header-categories.show .header-category-content {
    right: 0;
    transition: 0.4s ease-out right;
}
.header-category-header {
    position: relative;
    display: block;
    line-height: var(--main-pad);
    padding: var(--main-pad) 0;
    text-align: left;
    color: var(--text-color);
    opacity: 0;
    transition: 0.2s ease-out opacity;
}
.header-category-header h3{
    margin: 0;
    line-height: var(--main-pad);
}
.header-category-header .i-btn{
    position: absolute;
    top: var(--main-pad);
    right: 0;
}
.header-category-header .i-btn:hover, 
.header-category-header .i-btn:focus, 
.header-category-header .i-btn:active {
	background: transparent;
	color: var(--m ain-color);
	transition: all 0.4s ease-in-out;
}
#header-categories .header-category-content > * {
    opacity: 0;
}
#header-categories.show .header-category-content > * {
    animation: opac-in-animate 0.6s ease-in forwards;
}

.header-category-bg,
.cart-main-bg{
	content: '';
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
	z-index: -1;
/*	transition: 0.2s ease-out opacity;*/
}
#header-categories.show .header-category-bg{
	display: block;
    opacity: 1;
	z-index: 99;
	animation: opac-in-animate 0.5s ease-out forwards;
}
.header-category-blocks{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
}
.category-block{
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 var(--xxs-pad);
    width: 33.3333%;
    width: 50%;
    margin-bottom: var(--xs-pad); 
}
.category-block-link{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--sm-pad) var(--xs-pad); 
    border-radius: var(--lg-border-radius);
	background: var(--bg-color);
    transition: all 0.2s ease;
}
.category-block-icon{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: var(--med-pad); 
    height: var(--med-pad); 
    margin-bottom: var(--xxs-pad); 
    color: var(--light-text-color);
    font-size: var(--icon-font);
    font-weight: 300;
    transition: all 0.2s ease;
    transform: translateY(0);
}
.category-block-icon i{
    font-weight: 300;
}
.category-block-link span{
    position: relative;
    display: block;
    white-space: nowrap;
    font-weight: 600;
    font-size: var(--btn-font);
    line-height: var(--20-pad);
    color: var(--text-color);
    transition: all 0.2s ease;
}
.category-block-link.active,
.category-block-link:hover{
    color: var(--white-color);
	background: var(--sub-color);
    transition: all 0.3s ease-out;    
}
.category-block-link.active .category-block-icon i{
    font-weight: 700;
}
.category-block-link:hover .category-block-icon{
    transform: translateY(-8%);
}

.category-block-link.active .category-block-icon,
.category-block-link.active span,
.category-block-link:hover .category-block-icon,
.category-block-link:hover span{
    color: var(--white-color);
    transition: all 0.3s ease-in-out; 
}


.category-block-link .togo-icon{
    position: relative;
    display: inline-flex;
    width: auto;
    height: 24px;
    margin: 0px 0px;
    background: url(/image/icons/BKK-ToGo-logo.svg) center no-repeat;
    transition: background 0.2s ease;
}
.category-block-link.active .togo-icon,
.category-block-link:hover .togo-icon{ 
    background: url(/image/icons/BKK-ToGo-logo-white.svg) center no-repeat;
    transition: background 0.3s ease-out; 
}


/* SINGLE BANNER IMAGE */

.single-banner{
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--lg-pad);
}
.single-banner-image{
    position: relative;
    display: flex;
    border-radius: var(--lg-border-radius);
    overflow: hidden;
    animation: btm-in-animate 0.7s ease-out forwards;
}


/* MAIN CATEGORY VIEW */

#category-list{
    position: relative;
    background: transparent;
}
#category-list .container{
    position: relative;
}
#category-list.sticky{
    position: fixed;
    top: 72px;
    width: 100%;
    transition: all 0.3s ease-out;
    z-index: 14;
}
/*extra room for store closed message*/
/* .store-closed #category-list.sticky{
    top: 112px;
} */

.category-list-placeholder{
    position: relative;
    display: block;
    margin-bottom: var(--main-pad); 
}
.category-sticky .category-list-placeholder{
    height: 64px;
}
#category-list.sticky:before{
    content: '';
    position: absolute;
    display: block;
    width:100%;
    height: 100%;
    top: 0%;
    left: 0;
    z-index: 0;
    background: var(--white-color);
    opacity: 0;
    animation: opac-in-animate 0.2s ease-out forwards;
}
#category-list.sticky:after{
    content: '';
    position: absolute;
    display: block;
    width:100%;
    height: 50%;
    top: 50%;
    left: 0;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.04);
    z-index: -1;
}

#category-list-slider{
    position: relative;    
    display: flex;
    padding: 16px 120px 16px 20px;
    margin-left: -24px;
	-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 1) 24px, rgba(0, 0, 0, 1) calc(100% - 136px), rgba(0, 0, 0, 0) calc(100% - 120px));
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 1) 24px, rgba(0, 0, 0, 1) calc(100% - 136px), rgba(0, 0, 0, 0) calc(100% - 120px));
}

#category-list.sticky #category-list-slider{
    margin-bottom: 0;
}
.category-list{
    position: relative;
    display: flex;
}
/*
#category-list.sticky .category-list{
    margin-bottom: 0;
    z-index: 1;
}
*/

.category-list-item{
    position: relative;
    display: flex;
    margin: 0 var(--xxs-pad);
}
.swiper-slide.category-list-item{
    width: auto;
}
.category-list-link{
    position: relative;
    display: flex; 
    padding:var(--xxs-pad) var(--mid-pad) var(--xxs-pad) var(--sm-pad); 
    border-radius: var(--mid-pad);
    line-height: var(--main-pad); 
    background: rgba(255, 255, 255, 0.32);
    box-shadow: 1px 2px 8px 0px rgba(0, 0, 0, 0.04);
    color: var(--text-color); 
}
#category-list.sticky .category-list-link{
    background: var(--bg-color);  
}
.category-list-link:after {
    content: '';
    position: absolute;
    display: block;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
	border-radius: 20px;
	background: var(--main-gradient);
    z-index: -1;
    opacity: 0;
    transition: all 0.2s ease;
}
#category-list.sticky .category-list-link:hover,
#category-list.sticky .active.category-list-link,
.category-list-link:hover,
.active.category-list-link{
    background: transparent; 
    color: var(--white-color);
    transition: all 0.4s ease-out;
}
.category-list-link:hover:after,
.active.category-list-link:after{
    opacity: 1;
    transition: all 0.4s ease-out;
}

.category-list-link span{
    position: relative;
    display: block;
    white-space: nowrap;
    font-size: var(--main-font);
    font-weight: 600;
    margin-left: var(--xxs-pad);
}
.active.category-list-link span{

}
.category-list-link i{
    position: relative;
    display: flex; 
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: var(--main-pad); 
    height: var(--main-pad); 
}
.active.category-list-link i{
    font-weight: 700;
}
.category-list-link .togo-icon{
    position: relative;
    display: inline-flex;
    width: 30px;
    height: 24px;
    margin: 0px 0px;
    background: url(/image/icons/BKK-ToGo-logo.svg) center center no-repeat;
}
.category-list-link.active .togo-icon,
.category-list-link:hover .togo-icon{ 
    background: url(/image/icons/BKK-ToGo-logo-white.svg) center center no-repeat;
}

.category-top,
.module-header{
    position: relative;
    display: flex;
    margin-bottom: var(--mid-pad);      
}
.category-top{
    visibility: hidden;
    position: absolute;
}
.category-top h1,
.module-header h2{
    line-height: var(--main-pad);  
    font-size: 16px;
    margin-bottom: 0;
}
.category-title{
    position: relative;
    display: flex;
    margin: var(--main-pad) 0 var(--mid-pad) 0;      
}
.category-title h2{
    line-height: var(--main-pad);  
    font-size: 16px;
    margin-bottom: 0;
}
.category-info-bottom{
    display: none;
}
.product-module{
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--main-pad);     
}


/* PRODUCTS */

.product-list {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--lg-pad);         
}

.product-block {
    position: relative;
    display: flex;    
    width: 100%;
    padding: var(--mid-pad) var(--main-pad);
    margin-bottom: var(--xs-pad); 
    background: var(--light-gradient); 
    border-radius: var(--lg-border-radius); 
}

.cat-animate{
    opacity: 0;    
}

.product-list .cat-animate {
    animation: product-block-animate 0.2s ease-in-out forwards;    
}
/*
@for $i from 1 through 50 {
    .product-list .product-block:nth-child(#{$i}) {
        animation-delay:calc((#{$i*0.1s}) + 0.2s);
    }
}
*/

@keyframes product-block-animate {
	0% {
		transform: translateY(10%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

.product-block-content{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 70%;   
}
.product-block-title{
    position: relative;
    display: flex;   
}
.product-block-title h3{
    display: inline-flex;
    font-weight: 600;
    font-size: 16px;
    line-height: var(--main-pad);
    font-family: 'Signika', Arial, Helvetica, sans-serif;
    color: var(--text-color);
    margin: 0;
    margin-right: var(--mid-pad);
}
.product-block-title .togo-icon{
    position: relative;
    display: inline-flex;
    width: 30px;
    height: 20px;
    margin: 2px 0px 2px 8px;
    background: url(/image/icons/BKK-ToGo-logo.svg) center center no-repeat;
}

.product-block-chip{
    display: none;
}
.show-bestseller .product-block-chip,
#bestseller-products .product-block-chip{
    display: inline-flex;
    align-self: flex-start;
    padding: var(--xxs-pad) var(--sm-pad);
    border-radius: var(--mid-pad);
    line-height: var(--mid-pad);
    font-size: 12px;
    font-weight: 600;
    background: var(--green-color);
    color: var(--white-color);
}
.product-block-description{
    position: relative;
    display: block; 
    font-weight: 300;
    font-size: var(--main-font);
    line-height: var(--main-pad);
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-block-right{
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 30%;   
}
.product-block-right .button{
    margin-left: var(--main-pad); 
}

/*
.product-thumb .image {
    text-align: center;
}
.product-thumb .image a:hover {
    opacity: 0.8;
}
.product-thumb .description {
    padding: 15px;
    margin-bottom: 45px;
}
.product-thumb .description h4 {
    font-weight: bold;
}
.product-thumb .button {
    display: flex;
    position: absolute;
    width: 100%;
    bottom: 0;
}
.product-thumb .button button {
    width: 33.33%;
    border: none;
    border-top: 1px solid var(--bs-border-color);
    background-color: var(--bs-tertiary-bg);
    color: var(--bs-gray-600);
    line-height: 38px;
    text-align: center;
}
.product-thumb .button button:hover {
    color: var(--bs-gray-600);
    background-color: #ddd;
    text-decoration: none;
    cursor: pointer;
}
.product-thumb .button button + button {
    border-left: 1px solid var(--bs-border-color);
}
@media (min-width: 960px) {
    .product-list .product-thumb {
        display: flex;
    }
    .product-list .product-thumb .image {
        flex-direction: column;
        margin-bottom: 0px;
    }
    .product-list .product-thumb .content {
        flex-direction: column;
        flex: 75%;
        position: relative;
    }
    .product-list .product-thumb .button {
        border-left: 1px solid #ddd;
        width: calc(100% -  15px);
        margin-left: 15px;
    }
}
*/

/* SEARCH */

.search-page #main-content{
    padding: var(--main-pad) 0;
}


/* CHECKOUT */

.checkout-btn-link.is-disabled {
  pointer-events: none;
  opacity: .5;
}
#button-confirm {
    /* display: none !important; */
}


.checkout-page #main-content {
    padding-top: var(--main-pad); 
    min-height: 90dvh;
    justify-content: center;
}

.checkout-page .content-center-block{
    min-width: 640px;
    width: 50%;    
}

.checkout-main-content{
	display: flex;
	flex-direction: column;	
/*
	max-height: 70%;
	overflow: hidden;
	overflow-y: auto;
*/
/*	padding: 0 var(--lg-pad); */
}

.checkout-main-content .accordion-block{
	display: flex;
	flex-direction: column;	
	background: var(--white-color);
	margin-bottom: 16px;
	border-radius: var(--lg-border-radius);  
}

.checkout-main-content .accordion-heading{
	
}
.checkout-main-content .accordion-collapse{

}

.checkout-main-content .accordion-body{
	display: flex;
	flex-direction: column;		
    padding: var(--xs-pad) var(--mid-pad) var(--xs-pad) var(--mid-pad);
    padding: var(--xs-pad) var(--mid-pad) 0 var(--mid-pad);
}

.checkout-mobile-bar{
    display: none;
}

.checkout-btn-link{
	position: relative;
	display: flex;
	border: none;
	box-shadow: none;
	padding: 0;
	height: 48px;
	background: var(--white-color);
	width: 100%;
	border-radius: var(--lg-border-radius);
}
.checkout-btn-link:after{
	content: "\f078";
	display: block;
	position: absolute;
	padding: 0;
	top: 0px;
	right: 0px;
	width: var(--lg-pad);
	height: var(--lg-pad);
	line-height: var(--lg-pad);
	text-align: center;
	color: var(--light-text-color);
	font-family: "Font Awesome 6 Pro";
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	transform: rotate(-180deg);
	vertical-align: middle;
	transition: all 0.3s ease;
}
.checkout-btn-link.collapsed:after {
	transform: rotate(0deg);
	transition: all 0.3s ease;
}
.checkout-btn-nr{
	position: relative;
	display: flex;
	padding: 0;
	flex-direction: column;	
	align-items: center;
	width: var(--lg-pad);
	height: var(--lg-pad);
	justify-content: center;
}
.checkout-btn-nr span{
	position: relative;
	display: flex;
	flex-direction: column;	
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 600;
    line-height: 14px;
	background: var(--main-color);
	background: var(--text-color);
	color: var(--white-color);
}
.checkout-step-complete .checkout-btn-link.collapsed .checkout-btn-nr span{
    background: var(--white-color);
}
.checkout-step-complete .checkout-btn-link.collapsed .checkout-btn-nr span:after{
    content: "\f058";
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    line-height: 16px;
    color: var(--highlight-green-color);
    background: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    font-family: "Font Awesome 6 Pro";	
}
.checkout-btn-title{
	position: relative;
	display: flex;
	flex-direction: column;	
	justify-content: center;
	width: calc(100% - 48px);
    padding-right:  var(--lg-pad); 
	height: 48px;
}
.checkout-btn-link h4{
	position: relative;
	display: flex;
	font-size: 14px;
	font-weight: 600;
	padding: 0;
	width:100%;
	margin: 0;
	color: var(--text-color); 
	line-height: 20px;
}
.checkout-btn-link .checkout-btn-subtitle{
	position: relative;
	display: block;
	font-size: 14px;
	font-weight: 600;
	padding: 0;
	width:100%;
	line-height: 20px;
	color: var(--text-color);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
}
.checkout-btn-link:not(.collapsed) .checkout-btn-subtitle{
	display: none;
}
.checkout-btn-link.collapsed h4{
	line-height: 20px;
	font-weight: 300;
	font-size: 12px;
	color: var(--light-text-color);
}
.checkout-warning{
    position: relative;
	display: flex;    
    color: var(--dark-red-color);
    background: var(--light-red-color);
    padding: var(--xs-pad) var(--mid-pad) var(--xs-pad) var(--lg-pad); 
    border-radius: var(--lg-border-radius); 
    margin-bottom: var(--mid-pad);
}
.checkout-warning:before{
    content: "\f05a";
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    top: 8px;
    left: 8px;
    height: 24px;
    width: 24px;
    line-height: 24px;
    font-size: 14px;
    font-weight: 300;
    font-family: "Font Awesome 6 Pro";
}
.checkout-buttons{
	position: relative;
	display: flex; 
    justify-content: space-between;
    margin-top: var(--main-pad);
}
.checkout-button-confirm,
.checkout-buttons .l-btn{
	position: relative;
	display: flex;    
    width: calc(50% - 8px);
}
.checkout-button-confirm .btn{
    width: 100%;
}
.checkout-form{
	position: relative;
	display: flex;
    flex-direction: column;
    margin-bottom: var(--mid-pad);    
}

.checkout-main-content .accordion-body h4 span{
    color: var(--green-color);
}

#delivery-time{
    margin-top: 8px;
}

#form-payment-method p{
    margin-bottom: 0;
}
#form-payment-method .form-radio-button label{
    position: relative;
    padding-left: 24px;
}

#form-payment-method .form-radio-button label:before{
    content: '';
    position: absolute;
    display: block;
    width: 16px;
    height: 24px;
    left: 0;
    top: 4px;
    background: url(/image/icons/payment-ideal.svg) center center no-repeat;    
}


/* SWIPER STYLES */

.swiper-buttons{
    position: absolute;
    display: flex;
    right: var(--main-pad); 
    top: var(--mid-pad); 
    z-index: 2;
}
.swiper-i-btn{
    position: relative;    
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: var(--med-pad);
    height: var(--med-pad);
    line-height: var(--med-pad);
    padding: 0px;
    text-align: center;
    font-size: 14px;
    border: none;
    background: var(--light-grey-color);
    color: var(--text-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;    
}
.category-toggle.swiper-i-btn{
    background: var(--dark-color); 
    color: var(--white-color);
}
.swiper-buttons .swiper-i-btn{
    margin-left:var(--xs-pad); 
}
.swiper-button-prev,
.swiper-button-next{
    left:initial;
    right:initial;
    margin: 0;
}
.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.24;
}

.swiper-button-prev:after,
.swiper-button-next:after{ 
    display: none;
}

/* breadcrumb */
.breadcrumb {
    display: none;
    margin: 0 0 20px 0;
    padding: 8px 0;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    background-color: var(--bs-tertiary-bg);
}
.breadcrumb i {
    font-size: 15px;
}
.breadcrumb > li.breadcrumb-item {
    text-shadow: 0 1px 0 #FFF;
    padding: 0 20px;
    position: relative;
    white-space: nowrap;
}
.breadcrumb > li.breadcrumb-item > a {
    text-decoration: none;
}
.breadcrumb > li.breadcrumb-item:after {
    content: "";
    display: block;
    position: absolute;
    top: -3px;
    right: -5px;
    width: 29px;
    height: 29px;
    border-right: 1px solid var(--bs-border-color);
    border-bottom: 1px solid var(--bs-border-color);
    transform: rotate(-45deg);
}
.breadcrumb > li.breadcrumb-item + li:before {
    content: "";
    padding: 0;
}

.rating .fa-stack {
    width: 20px;
}
.rating .fa-star {
    color: #999;
    font-size: 15px;
}
.rating .fa-star {
    color: #FC0;
    font-size: 15px;
}
.rating .fa-star + .fa-star {
    color: #E69500;
}
/* product list */
.price {
    color: #444;
}
.price-new {
    font-weight: 600;
}
.price-old {
    color: #dc512c;
    text-decoration: line-through;
}
.price-tax {
    color: #999;
    font-size: 12px;
    display: block;
}
/* blog */
.blog-thumb {
    border: 1px solid #ddd;
    margin-bottom: 15px;
}
.blog-thumb h4 {
    font-weight: bold;
}
.blog-thumb .image {
    text-align: center;
    margin-bottom: 15px;
}
.blog-thumb .image a:hover {
    opacity: 0.8;
}
.blog-thumb .description {
    padding: 15px;
}
/* Theme Custom CSS */
#cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 9999;
    opacity: 0.95;
    color: #ecf0f1;
    background: #343a40;
}
#cookie div {
    font-size: 16px;
    color: #FFFFFF;
}

/* INFO PAGE */

.info-page{
    position: relative;
    display: flex;
    flex-direction: column;
}

.info-page-header{
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--main-pad);
}

.info-page-header h1{
    margin: 0;
}
.info-page-text b{
    font-weight: 700;    
}

.info-page-line{
    position: relative;
    display: block;
}
.info-page-line span {
    font-weight: 700;
    color: var(--main-color); 
}


/* ACCOUNT PAGE */

.account-page #main-wrapper{
    padding: 0;
}

.account-page #main-content{
    min-height: 100dvh;
    height: 100%;
    padding: 0px;
/*    justify-content: flex-start;*/
}
.account-page .account-page-wrap{
    display: flex;
    flex-grow: 1;
}

.account-page .account-menu-wrapper{
    position: relative;
    display: flex;
    flex-direction: column;
    width: var(--sidebar-width);    
    padding: var(--main-pad);
    padding-top: 120px;
    background: var(--light-gradient);
    box-shadow: var(--main-shadow);
}

.account-page #content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - var(--sidebar-width)); 
    padding: 144px 0;
}

.account-menu-header{
    position: relative;
    display: flex;
    padding: var(--main-pad);    
}
.account-menu-header h2{
    margin: 0;
}
.account-menu-header h2 span{
    color: var(--main-color); 
}
.account-menu-info{
    position: relative;
    display: flex;
    flex-direction: row;
    margin:0 var(--main-pad) var(--main-pad) var(--main-pad); 
    padding: var(--main-pad);     
    background: url(../images/bkk-spaarpunten-bg.png) center no-repeat var(--white-color);
	background-size: cover;
    border-radius: var(--xl-border-radius);
}
.am-info-left{
    position: relative;
    display: flex;
    flex-direction: column; 
    width: 55%;
}
.am-info-right{
    position: relative;
    display: flex;
    flex-direction: column; 
    align-items: flex-end;
    width: 45%;
}
.points-info-title{
    font-weight: 700;
    color: var(--green-color); 
}
.am-info-left .chip-btn{
    margin-top: auto;
}

.info-chart{
    position: relative;
    display: flex;
/*    width: 100%;*/
    margin-left: var(--lg-pad);
    padding-bottom: var(--sm-pad);
    margin-top: -8px;
}
#rewardpoints{
    position: relative;
    display: flex;
    width: 100%;
    width: 104px;
    height: 104px;
    aspect-ratio: 1/1;
}
.info-chart-center{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.info-chart-center > div{
    color: var(--text-color);
	font-family: 'Signika', Arial, Helvetica, sans-serif;
    font-weight: 600;
}
.info-chart-center > div span{
    font-size: 20px;
}

.account-menu-buttons{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
    padding: var(--main-pad);
}

.account-menu-btn-header{
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 var(--xxs-pad);
    width: 100%;    
}
.account-menu-btn-header h1,
.account-menu-btn-header h4{
    margin-bottom: var(--mid-pad);    
}

.account-menu-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 var(--xxs-pad);
    width: 33.3333%;
    margin-bottom: var(--xs-pad);
}

.account-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--sm-pad) var(--xs-pad);
    border-radius: var(--lg-border-radius);
    background: var(--bg-color);
    transition: all 0.2s ease;
    border: none;
}
/*
.content-center-block .account-btn {
    padding: var(--main-pad) var(--xs-pad);
    box-shadow: var(--main-shadow);
}
*/
.account-btn.active, 
.account-btn:hover {
    color: var(--white-color);
    background: var(--sub-color);
    transition: all 0.3s ease-out;
}
.account-btn span{  
    position: relative;
    display: block;
    white-space: nowrap;
    font-weight: 600;
    line-height: var(--20-pad);
    font-size: var(--btn-font);
}
.account-btn-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: var(--med-pad);
    height: var(--med-pad);
    line-height: var(--med-pad);
    margin-bottom: var(--xxs-pad);
    color: var(--main-color-alpha);
    font-size: var(--icon-font);
    font-weight: 400;
    transition: all 0.2s ease;
    transform: translateY(0);
}
.account-btn.active .account-btn-icon i{
    font-weight: 400;
}

/*
.red-btn .account-btn-icon{
    color: var(--red-color);
}
.pink-btn .account-btn-icon{
    color: var(--pink-color);
}
.blue-btn .account-btn-icon{
    color: var(--blue-color);
}
.green-btn .account-btn-icon{
    color: var(--highlight-green-color);
}
.red-btn .account-btn-icon{
    color: var(--red-color);
}
.orange-btn .account-btn-icon{
    color: var(--main-color);
}
.turq-btn .account-btn-icon{
    color: var(--turquoise-color);
}
*/
.account-btn:hover .account-btn-icon{
    color: var(--white-color);
    transform: translateY(-8%);
    transition: all 0.3s ease-out;
}
.account-btn.active .account-btn-icon i{
    font-weight: 700;
}

.account-menu-list,
.account-list{
    position: relative;
    display: flex;
    flex-direction: column;    
    margin-bottom: var(--main-pad);       
}

.account-menu-list-btn,
.account-list-item{
    position: relative;
    display: flex;
    width: 100%;
}
.account-menu-list:before,
.account-menu-list-btn:before,
.account-menu-list-btn:after,
.account-list:before,
.account-list-item:before,
.account-list-item:after{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    height: 1px;
}
.account-menu-list:before,
.account-list:before{
    top: -1px;
    background: linear-gradient(90deg, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0.12) 50%, rgba(51, 51, 51, 0) 100%); 
}
.account-menu-list-btn:before,
.account-list-item:before{
    top: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.64) 50%, rgba(255, 255, 255, 0) 100%);    
}
.account-menu-list-btn:after,
.account-list-item:after{
    bottom: 0;
    background: linear-gradient(90deg, rgba(51, 51, 51, 0) 0%, rgba(51, 51, 51, 0.12) 50%, rgba(51, 51, 51, 0) 100%); 
}

.account-menu-list .account-menu-list-btn:last-child:after,
.account-list .account-list-item:last-child:after{
    display: none;
}

.account-list-btn{
    position: relative;
    display: flex;    
    width: 100%;
    transition: all 0.2s ease;
}
.account-list-btn-icon{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: var(--lg-pad);
    height: var(--lg-pad);
    line-height: var(--lg-pad);
    color: var(--sub-color);
    font-size: var(--main-font);    
}
.account-list-btn-content,
.account-list-content{
    position: relative;
    display: flex;    
    line-height: var(--lg-pad);
    width: calc(100% - var(--lg-pad));
}
.account-list-start{
    position: relative;
    display: flex;    
    line-height: var(--lg-pad);
    width: 144px;    
}
.account-list-content{
    width: calc(100% - 144px); 
/*
    flex-direction: column;
    justify-content: center;
*/
}
.account-list-btn-content span,
.account-list-content span{
    display: flex;
    text-align: left;
    width: 50%;
}
.account-list-content span{
    line-height:var(--main-pad);
    margin: 12px 0px;
    width: 75%;
}
.account-list-btn-content div,
.account-list-content div{
    display: flex;
    justify-content: flex-end;
    text-align: right;
    width: 50%;
    font-weight: 600;
}
.account-list-content div{
    width: 25%;
}

/* BIG BUTTONS */

.big-button-list{
    position: relative;
    display: flex;
    flex-direction: column;    
    margin-bottom: var(--main-pad);    
}
.big-button{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: var(--sm-pad) var(--mid-pad);
    background: var(--light-gradient);
    border-radius: var(--lg-border-radius);
    font-size: 14px;
    margin-bottom: var(--xs-pad);
    color: var(--text-color); 
    transition: all 0.2s ease;
}
.modal-big-buttons .big-button{
    flex-direction: row;
}
.big-button-content{
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(100% - 32px); 
    padding-left: 8px;
}
.big-button-img{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 32px;
}
.big-button-img svg{
    height: 24px;
    width: auto;
    transition: all 0.2s ease;
}

.big-button-title{
    font-size: 16px;
    font-weight: 600;
    line-height: var(--20-pad);
}
.big-button-title span{
    font-weight: 300;    
}
.big-button-text{
    font-weight: 300;
    line-height: var(--mid-pad);
    margin-top: var(--xxs-pad);
}
a.big-button:hover,
.big-button.active-btn{
    color: var(--green-color);
    background: rgba(12, 154, 0, 0.08);
    transition: all 0.3s ease-in-out;
}
a.big-button:hover .big-button-title,
.active-btn .big-button-title{
    color: var(--green-color);
}
.big-button:hover .big-button-img svg{
    fill: var(--green-color);
    transition: all 0.3s ease-in-out;
}
a.big-button:hover .big-button-text,
.active-btn .big-button-text{
    color: var(--text-color);
}

.big-button-chip {
    position: absolute;
    right: var(--mid-pad); 
    top: 20px; 
    display: inline-flex;
    align-self: flex-start;
    padding: var(--xxs-pad) var(--mid-pad);
    border-radius: var(--mid-pad);
    line-height: var(--mid-pad);
    font-size: 12px;
    background: var(--green-color);
    box-shadow: var(--main-shadow);
    color: var(--white-color);
}
.big-button-list .big-button{
    padding: var(--mid-pad) var(--mid-pad);    
}
.big-button-list .big-button-chip {
    right: 64px; 
    top: var(--main-pad); 
}
.big-button-btns{
    position: absolute;
    right: var(--mid-pad); 
    top: var(--mid-pad);      
}
.big-button-info{
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    right: var(--mid-pad); 
    top: 0;     
}
.big-button-info-text{
    font-size: 16px;
    font-weight: 600;
    padding: 0 var(--mid-pad);
}
.big-button-info .i-btn + .i-btn{
    margin-left: var(--xs-pad); 
}
/* EMPTY PAGE */

.pagination-centered{
    position: relative;
    display: flex;
    justify-content: center;
}
.pagination{
    --bs-pagination-color: var(--main-color);
    --bs-pagination-bg: transparent;
    --bs-pagination-border-width: 0px;
    --bs-pagination-border-color: var(--bs-border-color);
    --bs-pagination-border-radius: 20px;
    --bs-pagination-hover-color: var(--white-color);
    --bs-pagination-hover-bg: var(--dark-main-color);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: none;
    --bs-pagination-active-color: var(--white-color);
    --bs-pagination-active-bg: var(--main-color);
    --bs-pagination-active-border-color: var(--main-color);
    --bs-pagination-disabled-color: var(--main-color);
    --bs-pagination-disabled-bg: var(--main-color);
    --bs-pagination-disabled-border-color: var(--bs-border-color);    
}
.page-link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    width: var(--med-pad);
    height: var(--med-pad);
    border-radius:var(--bs-pagination-border-radius); 
    padding: var(--xs-pad);
    padding-top: 10px;
    margin: 0 var(--xxs-pad); 
    font-size: var(--bs-pagination-font-size);
    color: var(--bs-pagination-color);
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.page-link:focus {
    z-index: 3;
    color: var(--white-color);
    background-color: var(--dark-main-color);
    outline: 0;
    box-shadow: none;
}
/*

.page-item:first-child .page-link {
    border-top-left-radius: var(--bs-pagination-border-radius);
    border-bottom-left-radius: var(--bs-pagination-border-radius);
}
*/


/* LOGIN PAGE */

.login-page #main-wrapper{
    padding-top: 0;    
}

.login-page #main-content{
    min-height:100dvh;
    justify-content: center;
    background: url(../images/bkk-login-bg.jpg) center top no-repeat var(--white-color);
	background-size: cover;
}

.login-page .content-block-wrap{
    width: 100%;
    justify-content: space-between;
}
.login-page .content-center-block{
    min-width: initial;
    max-width: 480px;
}

.content-block-clean{
    position: relative;
    opacity: 0;
    animation: left-in-animate 0.7s ease-out forwards;
    animation-delay: 0.3s;
}
.content-block-clean h1{
    font-size: 40px;
}
.content-block-clean h1 span{
    font-size: 52px;
    display: block;
}
.content-block-clean h1 span b{
    color: var(--main-color);
}
.content-block-clean p{
    font-size: 18px;
}

/* CONTACT PAGE */

.contact-page #main-wrapper{
    padding-top: 0;
    overflow: hidden;
}

.contact-page #main-content{
/*
    min-height: 100dvh;
    padding: 192px 0px;
*/
    min-height: initial;
    padding: 96px 0px;
    justify-content: center;
}
/*
.contact-page #main-content:after{
    content: '';
    position: absolute;
    display: block;
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--light-gradient);
    z-index: 0;
}
*/
.contact-bg-color{
    content: '';
    position: absolute;
    display: block;
    height: 200%;
    width: 200vw;
    bottom: 50%;
    left: -50vw;
    background: var(--light-gradient);
    z-index: -1;
}
.contact-bg-color:after{    
    content: '';
    position: absolute;
    display: block;
    bottom: -1px;
    left: 0px;
    height: 2px;
    width: 100%;    
    background: linear-gradient(90deg, rgba(51, 51, 51, 0.12) 0%, rgba(51, 51, 51, 0.12) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0.64) 100%, rgba(255, 255, 255, 0.64) 100%);
    background-position: top, bottom;
    background-size: 100% 1px, 100% 1px;
    background-repeat: no-repeat;
    z-index: -1;
}
#information-contact{
    position: relative;
    z-index: 2;
}

#information-contact .content-center{
    flex-direction: column;
    align-items: center;
}
#information-contact .center-block-wrap{
    flex-direction: column;
    align-items: center;
    width: 580px;
}
#information-contact .content-center-block{
    width: 100%;
    min-width: 100%;
    z-index: 2;
}

#information-contact .content-block-small{
    align-items: center;
    text-align: center;
    padding: 0 10%;
}
#information-contact .content-block-small h1{
    font-size: 36px;
}

.contact-info{
    position: relative;
    display: flex;
    width: 140%;
    margin-left: -40%;
    margin-right: -40%;
    margin-top: 96px;
}
.contact-info-block{
    position: relative;
    display: flex;
    width: 25%;
    padding: 0 var(--xs-pad);
}
.contact-info-icon{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: var(--lg-pad);
    height: var(--lg-pad);
    line-height: var(--lg-pad);
    color: var(--main-color);
    background: var(--white-color);
    font-size: var(--icon-font);
    border-radius: var(--lg-border-radius);
}
.contact-info-content{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - var(--lg-pad));
    padding: 0 0 0 var(--mid-pad);
}
.contact-info-title{
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.contact-bg-img{
    position: absolute;
    display: block;
    width: 100%;
    bottom: 50%;
    z-index: 0;
}
.contact-bg-img:before,
.contact-bg-img:after{
    content: '';
    position: absolute;
    display: block;
    width: 40%;
    bottom: 0;
    aspect-ratio: 1/1;
}
.contact-bg-img:before{
    opacity: 0;
    right: 100%;
    background: url(../images/bkk-contact-left.png) center no-repeat;
    background-size: cover;
    animation: contact-bg-left-animate 0.6s ease-out forwards;
    animation-delay: 0.4s;
}
.contact-bg-img:after{
    opacity: 0;
    left: 100%;
    background: url(../images/bkk-contact-right.png) center no-repeat;
    background-size: cover;
    animation: contact-bg-right-animate 0.6s ease-out forwards;
    animation-delay: 0.4s;
}

@keyframes contact-bg-left-animate {
	0% {
		transform: translateX(40%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}
@keyframes contact-bg-right-animate {
	0% {
		transform: translateX(-40%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}


/* EMPTY PAGE */

.empty-page #main-content,
.empty-checkout #main-content{
    min-height: calc(100dvh - 72px);
    padding-bottom: 168px;
    justify-content: center;
}
/*
.empty-page .content-block-icon{
    display: none;
}
*/

/*
.empty-page #main-content > .container{
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
*/

/* FOOTER */
footer {
    position: relative;
    display: flex;
    flex-direction: column;
    bottom: initial;
    width: 100%;
    padding: 0px;
    border-top: none;
    margin-top: auto;
    font-size: 14px;
    font-weight: 300;
    color: var(--white-color); 
    background: var(--dark-bg-color); 
}
footer .container{
    display: flex;
}
footer a {
    color: var(--white-color); 
    text-decoration: none;
    transition: all 0.2s ease;
}
footer a:hover {
    color: var(--main-color);
}
footer h2,
footer h4 {
    color: var(--sub-color); 
}
.footer-main{
    position: relative;
    padding:var(--main-pad) 0;
}

.footer-main .container{
    flex-direction: column;
}

.footer-top{
    position: relative;
    display: flex;
    flex-direction: column;
    padding:var(--main-pad) 0;    
}
.footer-line{
    position: relative;
    display: flex;
    width: 100%;
    height: 1px;
    background:  var(--white-line-gradient); 
    margin:var(--main-pad) 0; 
}

.footer-locations{
    position: relative;
    display: flex;
    padding:var(--main-pad) 0;
    column-gap:var(--mid-pad); 
}
.footer-address{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 33.3333%;
}
.footer-address address{
    margin: 0;
}
.footer-address ul{
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style: none;
}
.footer-address li{
    position: relative;
    display: flex; 
}

.footer-menu{
    position: relative;
    display: flex;
    flex-direction: column;
}
.footer-logo{
    position: relative;
    display: flex; 
    margin-bottom: var(--main-pad); 
}
.footer-logo img{
    height: 24px;
}
.footer-menu-list{
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 0;
    list-style: none;
}
.footer-menu-list li{
    position: relative;
    display: flex; 
    margin-right: var(--main-pad);
}
.footer-menu-list li a{
    font-size: 12px;
}

.footer-bottom{
    position: relative;
    display: flex;
    background: rgba(0, 0, 0, 0.24);
    padding: var(--sm-pad) 0;
}
.footer-copyright{
    position: relative;
    display: flex;
    width: 50%;
}
.footer-payment{
    position: relative;
	display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 50%;
    line-height: var(--main-pad); 
}
.footer-payment-img{
    position: relative;
	display: flex;
    padding: var(--xxs-pad) var(--xs-pad);
    margin: 0 0 0 var(--xs-pad);
/*    background: var(--bg-grey-color); */
}
.footer-payment-img img{
    height: var(--mid-pad); 
    width: auto;
}

/* MODAL STYLING */

html:has(body.modal-open){
    scrollbar-gutter: stable;
}
body.modal-open{
    padding-right: 0!important;
}
.modal-backdrop.show{
    opacity: 1;
}
.modal-backdrop{
    background: transparent;
}
.modal-backdrop:after{
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
	background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
    z-index: 0;
}
.modal-content{
	background: url(../images/bkk-popup-bg.jpg) center top no-repeat var(--white-color);
	background-size: cover;
    border-radius: var(--xl-border-radius);
    border: 0px;
    padding: var(--main-pad);
}
.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: var(--main-pad);
    padding-bottom: 0px;
    border-bottom: 0px;
    border-radius: 0px;
}
.modal-header h2{
    line-height: 1;
    margin: 0;
}
.btn-close {
    --bs-btn-close-color: var(--light-text-color);
    --bs-btn-close-bg: transparent;
    --bs-btn-close-opacity: 1;
    --bs-btn-close-hover-opacity: 1;
    --bs-btn-close-focus-shadow: 0;
    --bs-btn-close-focus-opacity: 1;
    --bs-btn-close-disabled-opacity: 1;
    --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
    box-sizing: content-box;
    width: var(--main-pad);
    height: var(--main-pad);
    padding: 0;
    color: var(--light-text-color);
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 16px;
    opacity: 1;
    transition: all 0.2s ease;
}
.btn-close:hover {
    color: var(--text-color);
    transition: all 0.4s ease-in-out;
}
.modal-header .btn-close{
    position: absolute;
    top: 24px;
    right: 24px;
}

.modal-header-icon{
    flex-direction: column;
}

.modal-info-icon{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 64px;
	height: 64px;
	text-align: center;
    padding: 4px;
	margin: var(--mid-pad) auto var(--mid-pad) auto;
	font-size: 28px;
    border-radius: 50%;
	color: var(--main-color);
    background: var(--vrt-light-gradient);        
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--main-pad);
}
.modal-content-center .modal-body {
    text-align: center;
}
.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: var(--main-pad);
    background-color: none;
    border-top: 0px;
    border-radius: 0px;
}
/*.modal-footer > **/
.modal-footer .btn{
    z-index: 1;
    margin: 0;
}
.modal-footer.multi-btns{
    justify-content: space-between;
}
.modal-footer.multi-btns .btn{
    width: calc(50% - 12px);
}
.modal-footer.single-btn .btn{
    width: 100%;
}

.modal-big-buttons{
    
}


/* ANIMATION STYLES *****************************/

@keyframes opac-in-animate {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


@keyframes opac-out-animate {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes btm-in-animate {
	0% {
		transform: translateY(10%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}
@keyframes btm-in-sm-animate {
	0% {
		transform: translateY(5%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}
@keyframes left-in-animate {
	0% {
		transform: translateX(-20%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@keyframes btm-up-animate {
	0% { opacity: 0;
		transform: translateY(50%);
	}
	100% { opacity: 1;
		transform: translateY(0%);
	}
}

@keyframes alert-animate {
	0% {
		transform: translateY(50%);
		opacity: 0.5;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}


/* RESPONSIVE STYLES *****************************/

/* Container sizes */

.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl{
    padding-left: var(--main-pad);
    padding-right: var(--main-pad); 
    margin-right: auto;
    margin-left: auto;
}

.row{
    margin-left: var(--main-neg);
    margin-right: var(--main-neg);
}
.row > * {
    padding-left: var(--main-pad);
    padding-right: var(--main-pad);    
}


@media (min-width: 1921px) {
    .content-block-clean h1 span {
        font-size: 56px;
    }
    
}


@media (min-width: 1400px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: var(--container-width);
    }
    .container-lg{
        max-width: var(--lg-container-width);
    }
    .container-md{
        max-width: var(--med-container-width);
    }
    
    .content-center-block {
        max-width: 720px;
    }
    
    
}

@media (min-width: 1200px) and (max-width: 1399px) {   
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: var(--container-width);
    }
    
    .container-lg{
        max-width: var(--lg-container-width);
    }    
    .container-md{
        max-width: var(--med-container-width);
    }
    
    #main-content {
        overflow: hidden;
    }
    
    
}
@media (min-width: 992px) and (max-width: 1199px) {
    
    :root{    
        --container-width: 928px; 
    }  
    
    .container, .container-sm, .container-md, .container-lg {
        max-width: var(--container-width);
    }
    
    #main-content {
        overflow: hidden;
    }
    
    .search{
        min-width: 320px;
        margin-left: auto;
    }
    .nav-main{
        margin-left: 8px;
    }
    .carousel-item-content .container{
        padding-left: 48px;
    }
    .carousel-item-title h2 {
        font-size: 32px;        
    }
    
    .account-page .account-menu-wrapper{
        width: 400px;
        padding: 0;
        padding-top: 120px;
    }
    .account-page #content{
        width: calc(100% - 400px);
    }
    .center-block-wrap{
        max-width: 100%;
        padding: 0 24px;
    }
    .content-center-block{
        min-width: 536px;
        max-width: 100%;
    }
    
}

@media (min-width: 768px) and (max-width: 991px) {
    
    :root{    
        --container-width: 100%; 
    }  
    
    .container, .container-sm, .container-md, .container-lg {
        width:  var(--container-width);
        max-width: var(--container-width);
    }
    
    #main-content {
        overflow: hidden;
        padding: 48px 0px;
    }
    .search{
        min-width: 280px;
        margin-left: auto;
    }
    .nav-main{
        margin-left: 8px;
    }
    .carousel-item-title h2 {
        font-size: 28px;        
    }
    .carousel-item-image{
        height: 200px;
    }
    .carousel-item-image img{
        width: auto;
        height: 100%;
        object-fit: cover;
    }
}

/*MOBILE*/

@media (max-width: 767px) {
    :root{    
        --container-width: 100%; 
        --xl-border-radius: 15px;
        --lg-border-radius: 15px;
        
        --sidebar-width: 100%; 
        --container-width: 100%; 
        
    }
    .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl{
        padding-left: var(--mid-pad);
        padding-right: var(--mid-pad); 
    }
    .container, .container-sm, .container-md, .container-lg  {
        max-width: 100%;
    }
    
    h1{
        font-size: 18px;
    }    
    h2{
        font-size: 18px;
    }
    h3{
        font-size: 16px;
    }
    h4{
        font-size: 14px;
    }
    
    .show-mob{
        display: flex;
    }
    .hide-mob{
        display: none;
    }
    
    .i-btn {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 16px;
    }
    .cart-product-remove .i-btn{
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 16px;
    }
    
    .btn, .btn-primary{
        padding: 12px var(--main-pad);
        line-height: var(--main-pad);
    }
    .btn, .btn-primary,
    .btn:after, .btn-primary:after{
        border-radius: 24px;
    }
    .l-btn.btn:first-child:active,
    .l-btn:hover, .l-btn:focus, .l-btn:active {
        background: var(--white-color);
        color: var(--text-color);
        border: 1px solid var(--white-color);
        transition: all 0.4s ease-in-out;
    }
    .l-btn:hover i, .l-btn:focus i, .l-btn:active i,
    #switch-store-btn.l-btn:hover > i, #switch-store-btn.l-btn:focus > i, #switch-store-btn.l-btn:active > i,
    .l-btn.i-color:hover i, .l-btn.i-color:focus i, .l-btn.i-color:active i{
        color: var(--main-color);
        transition: all 0.4s ease-in-out;
    }
    
    .form-cols{
        flex-direction: column;
    }
    .form-col {
        width: 100%;
    }
    .form-floating > label, .form-floating .control-label{
        height: 48px;
        padding: 12px var(--mid-pad);
    }
    .form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-selectric{
        height: 48px;
        min-height: 48px;
    }
    .form-floating .selectric,
    .form-floating .selectric-wrapper{
        height: 48px;
    }
    .form-floating .selectric .label{
        hanging-punctuation: 48px;
        line-height: 24px;
    }
    .form-selectric .selectric .button,
    .form-selectric .selectric .button:after{
        height: 48px;
        line-height: 48px;
        width: 48px;
    }
    .form-floating > textarea.form-control:focus, 
    .form-floating > textarea.form-control:not(:placeholder-shown),
    .form-floating > textarea.form-control{
        padding-top: 28px;
    }
    .i-btn-single {
        width: 40px;    
        height: 40px;    
    }
/*
    .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown) 
    {
        padding: var(--20-pad) var(--mid-pad) var(--xs-pad) var(--mid-pad);
    }
    .form-floating > .form-control:-webkit-autofill, .form-floating > .form-control-plaintext:-webkit-autofill, .form-floating .form-control{
        line-height: 20px;
    }
*/
    
    .cat-sticky #header-main.sticky {
        box-shadow: none!important;
    }
        
    #header-categories{
        position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
        right: 0;
        top: 100%;
        z-index: 1001;
        transition: 0.2s ease-out top;
    }
    #header-categories.show{
        top: 0;
        transition: 0.4s ease-out top;
    }
    
    #header-categories .header-category-content{
        position: relative;
        display: flex;
        flex-direction: column;
        height: initial;
        right: initial;
        top: initial;
        width: 100%;
        padding: var(--main-pad) var(--lg-pad) var(--lg-pad) var(--lg-pad);
        padding: 0 var(--mid-pad) var(--mid-pad) var(--mid-pad);
        border-radius: 10px 10px 0px 0px;
        transition: none;
    }
    #header-categories.show .header-category-content {
        right: initial;
        top: initial;
        transition: none;
    }
    .header-category-header{
        text-align: center;
        align-items: center;
    }
    .header-category-header h3{
        font-size: 18px;
    }
    .category-block-link{
        flex: 1;
    }
    .category-block-link span{
        width: 100%;
        font-size: 12px;
        white-space: wrap;
    }
    
    #home-top {
        padding-top: 56px;
        padding-bottom: 96px;
        margin-bottom: 96px;
        background: url(../images/bkk-bg-mob.jpg) left top no-repeat, linear-gradient(180deg, #FF9400 0%, #F66718 100%);
        background-size: cover;
    }
    .home-page #main-content{
        padding-top: 0px;
    }
    .home-content-block{
        position: relative;    
        padding: 32px 0px;
    }
    .home-block-main{
        width: 100%;
    }
    .home-block-main h1{
        font-size: 26px
    }
    .home-block-main h1,
    .home-block-main p{
        padding-right: 40%;
        padding: 0;
        text-shadow: var(--text-shadow); 
    }
    .home-block-main p{
        font-size: 18px;
    }
    .home-block-buttons{
        width: 100%;
        flex-direction: column;
/*        justify-content: space-between;*/
    }
    .home-block-buttons .btn {
        min-width: initial;
        margin-right: 0;
        width: 100%;
        margin-bottom: 16px;
        
        height: 48px;
        padding-top: 12px;
        padding-bottom: 12px;
        border-radius: 24px;
    }
    .home-block-buttons .dark-btn:hover {
        opacity: 1;
    }
    .home-block-buttons .btn:last-child {
        margin-bottom: 0px;
    }
    .home-content-image {
        width: 220px;
        right: -24px;
        bottom: -44%;
    }
    .main-code-input {
        width: 100%;
/*        margin-bottom: 48px;*/
    }
    #post-error{
        bottom: 4px;
    }
/*
    #post-error span,
    #post-error i{
        height: 16px;
        line-height: 16px;
    }
*/
    .form-code-input .form-input-sm{
        width: 40px;
        width: calc(16.666% - 12px);
        height: 56px;
        font-size: 24px;
        border-radius: 9px;
    }
    
    .home-banners{
        flex-direction: column;
        margin: 0px;
        margin-bottom: 24px;
    }
    .banner-block-small {
        width: 100%;
        margin-bottom: 24px;
    }
    .banner-block-small > a{
        padding: 16px;
    }
    .banner-block-image {
        position: absolute;
        width: 50%;
        right: -12%;
    }
    .banner-block-small.bb-dark .banner-block-content {
        padding-right: 30%;
    }
    .banner-block-small:hover > a {
        transform: translateY(0%);
    }
    
    
    #main-content {
        overflow: hidden;
        padding: 16px 0 16px 0;
    }
    .content-block{
        padding: 16px;
    }
    
    .product-block {
        padding: 12px 16px;
        margin-bottom: var(--xs-pad);
        border-radius: var(--lg-border-radius);
        opacity: 0;
    }
    .product-block-content{
        display: flex;
        flex-grow: 1;
        min-width: 0;
        width: initial;
    }
    .product-block-right{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 56px;
        padding-right: 48px;
        padding: 0px;
    }
    .product-block-right .price{
        line-height: 24px; 
        margin-bottom: 36px;
    }
    .product-block-title h3 {
        display: block;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 4px;
    }
    .product-block-title .togo-icon{
        display: inline-block;
        vertical-align: middle;
        margin: 2px 0px 2px 8px;
    }
    .product-block-description {
        font-size: 14px;        
        white-space: wrap;
        overflow: initial; 
        text-overflow: ellipsis;
        line-height: 1.4;
        padding-right: 16px;
    }
    .product-block-btns{
        position: absolute;
        right: 0;
        bottom: 0px;
        margin-left: 0px; 
    }
    .product-block-right .button{
        margin-left: 16px; 
    }  
    
    .product-cart-btn:hover .product-cart-btns,
    .product-block-btns:hover .product-cart-btns{
        width: 96px;
    }
    .cart-open-btn .product-cart-btns {        
        width: 112px;
        width: 96px;
        padding-right: 32px;
        opacity: 1;
        transition: all 0.4s ease-out, opacity 0.1s ease-out;
    }
    .product-cart-amount-input{
        width: 36px;
    }
    .cart-open-btn  .cart-main-btn .cart-btn{
        background: var(--dark-color);
        color: var(--white-color);
    }
    .cart-open-btn .product-cart-btn .product-cart-amount,
    {
        z-index: 0;
    }
    .product-cart-btn:hover .cart-plus-btn{
        opacity: 1;
    }
    .cart-open-btn .cart-plus-btn{
        opacity: 1;
    }
    
    #bestseller-products .product-block-chip {
        display: none;
    }
    
    #category-list.sticky{
        top: 56px;
        z-index: 10;
    }
    
    #product-search{
        margin-top: 16px;
    }
    #product-search .category-top{
        position: relative;
        visibility: visible;
        margin-top: 16px;
    }
    .swiper-buttons{
        right: initial;
        left: 16px;
    }
    .swiper-buttons .swiper-button-prev,
    .swiper-buttons .swiper-button-next{
        display: none;
    }
    .swiper-buttons .swiper-i-btn{
        margin-left: 0;
        margin-right: 8px;
    }
    .category-info-block{
        max-width: 92%;
        min-height: 50dvh;
        margin-bottom: 48px;
    }
    .category-info-block p{
        margin: 0 4%;
    }
    #category-list-slider{
        -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 12px, rgba(0, 0, 0, 1) 24px, rgba(0, 0, 0, 1) calc(100% - 12px), rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 12px, rgba(0, 0, 0, 1) 24px, rgba(0, 0, 0, 1) calc(100% - 12px), rgba(0, 0, 0, 0) 100%);
        margin-left: 24px;
        margin-right: -16px;
        
    }
    .category-list-placeholder{
        margin-bottom: var(--main-pad); 
        margin: 0;
    }
    
    #category-list.sticky .category-list-link:hover,
    .category-list-link:hover{
        background: rgba(255, 255, 255, 0.32);
        box-shadow: 1px 2px 8px 0px rgba(0, 0, 0, 0.04);
        color: var(--text-color);
    }
    .category-list-link:hover:after{
        opacity: 0;
    }
    .category-list-link{
        cursor: pointer;
    }
/*
    .category-list-link:after{
        display: none!important;
    }
    .category-list-link {
        position: relative;
        display: flex;
        padding: var(--xxs-pad) var(--mid-pad) var(--xxs-pad) var(--sm-pad);
    }
*/
    
    .category-list-link,
    .category-list-link:hover,
    .category-list-link:active,
    .category-list-link:focus,
    #category-list.sticky .category-list-link:hover{
        padding:var(--xxs-pad) var(--mid-pad) var(--xxs-pad) var(--sm-pad); 
        background: rgba(255, 255, 255, 0.32);
        background: #FFFFFF;
        height: 32px;
        color: var(--text-color); 
        cursor: pointer;
        transition: none;
        border: none;
    }
/*
    .category-list-link > *{
        display: block;
        background: black;    
    }
*/
    #category-list.sticky .category-list-link{
        background: var(--bg-color);  
    }
    #category-list.sticky .active.category-list-link,
    .active.category-list-link{
        background: var(--main-gradient);
        color: var(--white-color);
        transition: none;
    }
    
    .category-list-link:after,
    .category-list-link:hover:after,
    .active.category-list-link:after{
        opacity: 0.001;
        transition: none;
        z-index: -1;
    }        
    
    .category-list-link:hover .togo-icon,
    .category-list-link:active .togo-icon {
        background: url(/image/icons/BKK-ToGo-logo.svg) center center no-repeat;
    }
    
    .carousel-item-title h2 {
        font-size: 16px;
    }
    .carousel-item-text{
        font-size: 14px;
        display: none;
    }
    
    .carousel-item-image{
        height: 128px;
    }
    .carousel-item-image img{
        width: auto;
        height: 100%;
        object-fit: cover;
        object-position: 72% center;
        object-position: 88% center;
    }
    
    .cat-animate{
        opacity: 1;
        animation: none;
    }

    .product-list .cat-animate:nth-child(1),
    .product-list .cat-animate:nth-child(2),
    .product-list .cat-animate:nth-child(3),
    .product-list .cat-animate:nth-child(4),
    .product-list .cat-animate:nth-child(5),
    .product-list .cat-animate:nth-child(6),
    .product-list .cat-animate:nth-child(7),
    .product-list .cat-animate:nth-child(8)
    {
        opacity: 0;
        animation: product-block-animate 0.2s ease-in-out forwards;    
    }
    .category-title{
/*        margin: var(--main-pad) 0 var(--mid-pad) 0;      */
        margin-top: 16px;
    }
    
    
    .content-block{
        animation: none;
        opacity: 1;
    }
    
    .login-page #main-content{
        min-height:100dvh;
        min-height:initial;
        justify-content: flex-start;
        background: var(--yellow-bg-color);
        background-size: cover;
        padding-top: 0;
        padding-bottom: 0;
    }
    .login-page #main-content:before{
        content: '';
        position: absolute;
        width: 100%;
        height: 24dvh;
        top: 0px;
        left: 0;
        background: url(../images/bkk-login-mobile.jpg) right bottom no-repeat var(--white-color);
        background-size: cover;
        opacity: 0.48;
        z-index: 0;
    }       

    .login-page #main-content .content-center-block{
        background: var(--yellow-bg-color);
    }
    .login-page .content-block-clean h1,
    .login-page .content-block-clean p{
        display: none;
    }
    
    .login-page #switch-store-btn.l-btn{
        display: none;
    }
    
    .content-center-block,
    .content-center-block.center-block-sm{
        flex-direction: column;
        width: 100%;
        min-width: initial;
    }
    
    .content-block-clean {
        justify-content: center;
        width: 100%;
        min-height: 24dvh;
        padding: 0 16px;
        text-align: center;
        margin-top: 56px;
    }
    .content-block-clean h1 {
        font-size: 22px;
    }
    .content-block-clean h1 span{
        font-size: 28px;
    }
    .content-block-clean p {
        display: none;
    }
    .login-page .content-block-clean{
        min-height: 12dvh;
    }
    
    #account-login.container,
    #account-register.container,
    #account-forgotten.container
    {
        padding: 0;
    }
    #account-register .content-block-clean{
        display: none;
    }
    #account-register .content-block{
        padding-top: 96px;
        padding-bottom: 48px;
    }

    .login-page .content-block-wrap{
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
    }
    .login-page .content-center-block{
        min-width: 100%;
        max-width: 100%;
        min-height: calc(68dvh - 56px);
        border-radius: 0px;
        padding: 24px 16px;
    }
    
    
    .checkout-page #header-main{
        display: none;
    }    
    .checkout-page #main-wrapper{
        padding-top: 24px;
    }
    
    .checkout-page #main-content {
        justify-content: flex-start;  
        padding-top: 0px;
    }
    .checkout-page #main-content .content-block-title{
        margin-bottom: 16px;
    }
    
    .checkout-page .content-center-block{
        min-width: initial;
        width: 100%;  
        padding: 0;
    }
    .checkout-mobile-bar{
        display: flex;
        margin-bottom: 24px;
    }
    .checkout-mobile-btn-left,
    .checkout-mobile-btn-right{
        display: flex;
        width: 50%;
    }
    .checkout-mobile-btn-right{
        justify-content: flex-end;    
    }
    .txt-btn i{
        margin-right: 4px;
    }
    .checkout-mobile-btn-left .txt-btn{
        margin: 4px 0px;
    }
    
    .btn-med.btn-icon-left.btn{
        padding: 4px 16px 4px 8px;
    }
    .btn-med.btn-icon-left > i{
        font-size: 14px;
    }
    .btn-med{
        
    }    
    .checkout-page .content-center-block.content-block{
        background: none;
        opacity: 1;
        animation: none;
    }
    
    
    #checkout-checkout .center-block-wrap{
        max-height: initial;
        padding-bottom: 96px;
    }
    
    .checkout-page #cart{
        display: none!important;
    }
    
    .checkout-main-content .accordion-body{
        padding: var(--xs-pad) var(--mid-pad) 0 var(--mid-pad);
    }
    
    .checkout-buttons{
        position: initial;
        display: flex;
        flex-direction: column;
    }
    .checkout-buttons .l-btn{
        width: 100%;
        margin-bottom: 16px;
    }
    .checkout-button-confirm{
        position: fixed;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 16px;
        bottom: 0;
        left: 0;
        background: var(--white-color);
        z-index: 9;
    }
    .checkout-btn-title{
        
    }
    #form-payment-method p{
        margin-bottom: 16px;
    }
    
    .empty-page .content-center-block, 
    .empty-checkout .content-center-block {
        min-width: initial;
        width: 100%;
    }
    
    .single-banner{
        margin-bottom: 32px;
    }
    .single-banner-image{
        height: 160px;
    }
    .single-banner-image img{
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .contact-page #main-content{
        padding: 72px 0px;
    }
    
    .contact-bg-color{
        display: none;
    }
    .contact-bg-img{
        display: none;
    }
    #information-contact .center-block-wrap {
        min-width: initial;
        width: 100%;
    }
    #information-contact .content-center-block.content-block-small .content-block-text{
        margin-bottom: 0px;
    }
    #information-contact .content-block.content-center-block{
        margin-bottom: 56px;        
    }
    #information-contact .content-block-small h1 {
        font-size: 18px;
    }
    #information-contact .content-block{
        background: none;
        padding: 0;
    }
    #information-information{
        margin-bottom: 48px;
    }
    #information-contact .content-block-small{
        padding: 0px;
    }    
    #information-contact .content-block.content-center-block .content-block-title{
        display: none;
    }
    #information-contact .content-block.content-center-block .form-buttons{
        
    }    
    .contact-info{
        margin: 0;
        width: 100%;
        flex-direction: column;
    }
    .contact-info-block{
        width: 100%;
        margin-bottom: 24px;
    }
    
    footer{
/*        padding-bottom: 120px;*/
    }
    
    .form-copyright{
        display: none;
    }
    
    .footer-locations{
        flex-direction: column;
        margin-bottom: 24px;
    }
    .footer-address {
        flex-direction: column;
        width: 100%;
        margin-bottom: 16px;
        margin-bottom: 0px;
    }
    .footer-address h4{
        position: relative;
        display: flex;
        margin: 0 0;
        padding: 0;
        line-height: 48px;
        font-size: 16px;
    }
    .footer-address h4:after{
        content: "\2b";
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        top: 12px;
        right: 0px;
        height: 24px;
        width: 24px;
        line-height: 24px;
        font-size: 14px;
        font-weight: 300;
        font-family: "Font Awesome 6 Pro";	    
    }
    .footer-address-wrap{
        display: none;
        padding-bottom: 16px;
    }
    
    .footer-line{
        margin: 8px 0 0 0; 
    }
    
    .footer-menu-list{
        flex-wrap: wrap;
    }
    .footer-menu-list li{
        position: relative;
        margin: 0;
        padding-right: 24px;
        margin-bottom: 4px;
    }
    .footer-menu-list li:after{
        content: '.';
        display: block;
        position: absolute;
        right: 10px;
        top: 3px;
        line-height: 4px;
        width: 4px;
        height: 4px;
    }
    .footer-menu-list li:last-child:after{
        display: none;
    }
    .footer-bottom{
        border-radius: 15px 15px 0 0;
        background: rgba(255, 255, 255, 0.04);
        padding-bottom: 120px;
    }
    .footer-copyright{
        width: 60%;
        font-size: 11px;
        line-height: 24px;
    }
    .footer-payment{
        width: 40%;
    }
    .footer-payment-img{
        margin-left: 4px;
    }
    
    body.modal-open {
        overflow: hidden;
    }
    
    .modal-content{
        padding: 0px;
    }
    
    .modal-dialog-centered{
        flex-direction: column;
        justify-content: flex-end;
        margin: 0;
        min-height: 100%;
    }
    .modal-dialog-centered .modal-content{
        border-radius: var(--xl-border-radius) var(--xl-border-radius) 0 0;
    }
    .modal.fade .modal-dialog-centered.modal-dialog {
        transition: transform 0.3s ease-out;
        transform: translate(0, 100px);
    }
    .modal.fade.show .modal-dialog-centered.modal-dialog {
        transition: transform 0.3s ease-out;
        transform: translate(0, 0px);
    }
    
}

@media (min-width: 768px) and (max-width: 991px) {
    .account-page .account-menu-wrapper{
        width: var(--sidebar-width);
        width: 100%;
        width: 640px;
        margin: 0 auto;
    }
    
/*
    .account-menu{
        display: flex;
        flex-wrap: wrap;
    }
    
    .account-menu-header{
        width: 100%;
    }
    .account-menu-info{
        width: calc(50% - 48px);
    }
    .account-menu-buttons{
        width: 50%;
        width: calc(50% - 48px);
    }
*/
    
}

/* MOBILE AND TABLET ACCOUNT PAGES*/ 

@media (max-width: 991px) {
    
    .account-page .account-page-wrap{
        flex-direction: column;
    }
    .account-page .account-menu-wrapper{
        padding: 0;
        padding-top: 64px;
        box-shadow: none;
        background: none;
    }
    .account-menu-header{
        padding: 24px 16px;
    }
    .account-menu-info {
        margin: 0 var(--mid-pad);
        padding: var(--mid-pad);
    }
    .am-info-left p,
    .points-info-title{
        font-size: 14px;
    }
    .info-chart{
        margin-left: 0;
    }
    #rewardpoints {
        position: relative;
        display: flex;
        width: 100%;
        width: 80px;
        height: 80px;
        aspect-ratio: 1 / 1;
    }
    .info-chart-center > div span {
        font-size: 14px;
    }
    .account-menu-buttons{
        padding: 24px 16px;
    }
    .account-btn span{
        font-size: 12px;
    }
    .account-page #content{
        width: 100%;
        padding: 0;
        padding-bottom: 96px;
    }
    .account-page .content-block{
        border-radius: 0;
        background: none;
    }
    .account-menu-list{
        margin-left: -16px;    
    }
    
    .big-button,
    .big-button-list .big-button{
        padding: 12px 16px;
    }
    
    .big-button-title{
        font-size: 14px;
    }
    .big-button-text{
        font-size: 12px;
    }
    .big-button-info-text{
        font-size: 12px;
        padding: 0px 8px;
        line-height: 24px;
    }
    .big-button-info .i-btn + .i-btn{
        margin-left: var(--xs-pad); 
    }
    .big-button-info .i-btn{
        font-size: 12px;
    }
    .big-button-list .big-button-btns{
        top: 20px;
    }
    .info-chip,
    .big-button-chip{
        padding: 2px 12px;
        font-size: 11px;
    }
    .big-button-list .big-button-chip {
        top: 22px;
        right: 48px;
    }
}

/* MOBILE AND TABLET CART*/    

@media (max-width: 991px) {
    
    
    html.menu-open,
    html.cats-open,
    html.cart-open{
        overflow: hidden;
    }
    
    html.cart-open.page-checkout{
        overflow: initial; 
    }    
    html.cart-open .checkout-page {
        overflow: initial; 
    }
    
    .nav-cart-btn{
        z-index: 999;
    }
    
    #nav-cart{
        display: flex;
        opacity: 0;
        pointer-events: none;
        z-index: 101;
    }
    #nav-cart #cart-main{
        z-index: 97;
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: var(--lg-border-radius) var(--lg-border-radius) 0 0;
    }
    .cart-open #nav-cart{
        pointer-events: auto;
        opacity: 1;
        z-index: 1;
    }    
    .cart-main-bg{
        display: block;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }
    .cart-open:not(.cart-hidden) .cart-main-bg{
        pointer-events: auto;
        opacity: 1;
        z-index: 1;
/*
        animation: opac-in-animate 0.3s ease-out forwards;
*/
    }
    #mobile-cart{
        position: fixed;
        display: flex;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 16px;
        z-index: 96;
    }
    .menu-open .nav-cart-btn,
    .menu-open #mobile-cart{
        z-index: 1;
    }
    #mobile-cart:before{
        content: '';
        position: absolute;
        display: block;
        height: 150%;
        width: 100%;
        left: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.08);
        mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
        pointer-events: none;
        backdrop-filter: blur(24px);
        z-index: 0;
    }
    
    #mobile-cart:after{
        content: '';
        position: absolute;
        display: block;
        height: 50vh;
        width: 100%;
        left: 0;
        top: 100%;
        background: rgba(0, 0, 0, 0.16);
        pointer-events: none;
        backdrop-filter: blur(24px);
        z-index: 0;
    }
    
    #cart-main-mob{
        position: relative;
        display: flex;
        width: 100%;
        border-radius: 24px;

/*        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);*/
        z-index: 1;
    }
    .cart-mob-bg{
        position: absolute;
        display: flex;
        width: 100%;
        height: 100%;
        border-radius: 24px;
        background: #FFFFFF;
        overflow: hidden;
        z-index: 1;
        
        mask-image: url(../images/bkk-cart-shape.png);
        mask-repeat:no-repeat;
        mask-size: auto 48px;
        mask-position: center center;
    }
    
    
    .cart-mob-bg:after{
        content: '';
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        left: 0;
        bottom: 0;
        border-radius: 24px;
        
        background: linear-gradient(180deg, rgba(241, 91, 37, 0.00) 0%, rgba(241, 91, 37, 0.24) 100%);
        pointer-events: none;
        z-index: 1;
    }
    
    .cart-mob-shadow{
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        left: 0;
        bottom: 0;
        z-index: 0;
    }
    .cart-mob-shadow:before,
    .cart-mob-shadow:after,
    .cart-mob-shadow-bottom{
        content: '';
        position: absolute;
        display: block;
        height: 100%;
        height: 24px;
        width: calc(50% - 24px);
        top: 0;
        border-radius: 24px 24px 0px 0px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    .cart-mob-shadow:before{
        left: 0;        
    }
    .cart-mob-shadow:after{
        right: 0;        
    }
    .cart-mob-shadow-bottom{
        top: initial;
        bottom: 0;
        width: 100%;
        border-radius: 0px 0px 24px 24px;
        box-shadow: 0 8px 10px rgba(0, 0, 0, 0.16);
    }
    
    .cart-main-mob-wrapper{
        position: relative;
        display: flex;
        width: 100%;
        padding: 8px;
        border-radius: 24px;
        z-index: 2;
    }
    
    .cart-mob-left{
        position: relative;
        display: flex;
        width: 50%;
    }
    
    .cart-mob-indicator{
        position: relative;
        display: flex ;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: var(--med-pad);
        height: var(--med-pad);
        line-height: var(--med-pad);
        padding: 0px;
        text-align: center;
        font-family: 'Signika', Arial, Helvetica, sans-serif;
        font-size: 16px;
        font-weight: 600;
        border: none;
        background: var(--white-color);
        background: var(--vrt-light-gradient);
        background: linear-gradient(135deg, rgba(255, 148, 0, 0.20) 0%, rgba(255, 148, 0, 0.00) 100%), rgba(255, 255, 255, 0.04);
        box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.16);
        color: var(--main-color);
        border-radius: 50%;
    }
    .cart-mob-title{
        position: relative;
        display: flex;
        width: calc(100% - 32px);
        flex-direction: column;
        justify-content: center;
        padding-left: 8px;
        font-size: 12px;
    }
    .cart-mob-title div{
        line-height: 16px;
        font-weight: 600;
        font-family: 'Signika', Arial, Helvetica, sans-serif;
    }
    .cart-mob-title span{
        line-height: 12px;
    }
    
    .cart-mob-right{
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        width: 50%;
    }
    .cart-mob-total{
        position: relative;
        display: flex;
        padding-right: 12px;
        font-weight: 600;
        font-size: 18px;
        font-family: 'Signika', Arial, Helvetica, sans-serif;
    }
    .cart-mob-icon{
        position: absolute;
        display: flex ;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: var(--lg-pad);
        height: var(--lg-pad);
        line-height: var(--lg-pad);
        top: -24px;
        left: calc(50% - 24px);
        padding: 0px;
        text-align: center;
        font-size: 16px;
        color: var(--white-color);
        background: var(--main-gradient);
        box-shadow: 0 0 24px rgba(250, 113, 37, 0.48);
        border-radius: 50%;
        
    }
    
    .cart-mob-indicator:before,
    .cart-mob-icon:before,
    .cart-mob-bg:before {
        content: '';
        position: absolute;
        display: block;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        border-radius: 50%;
        border: 1px solid transparent;
        background: linear-gradient(112deg, rgba(var(--color-white-rgb), 0.8) 0%, rgba(var(--color-white-rgb), 0) 40%) border-box;
        -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
    }    
    
    
    #cart #cart-main{
        background: transparent;
    }
    .cart-dropdown-menu,
    .cart-buttons,
    .cart-payment{
        background: var(--white-color);
    }
    
    .cart-main-header{
        padding: 12px 16px;
        
        border-radius: var(--lg-border-radius) var(--lg-border-radius) 0 0;
        background: #FFFFFF;
        
        mask-image: url(../images/bkk-cart-shape.png);
        mask-repeat:no-repeat;
        mask-size: auto 48px;
        mask-position: center center;
    }
    .cart-main-header .i-btn{
        display: none;
    }
    
    .cart-main-icon{
        position: absolute;
        display: flex ;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: var(--lg-pad);
        height: var(--lg-pad);
        line-height: var(--lg-pad);
        top: -24px;
        left: calc(50% - 24px);
        padding: 0px;
        text-align: center;
        font-size: 16px;
        color: var(--text-color);
        background: var(--bg-color);
        border-radius: 50%;
        
    }
    .cart-main-title{
        font-size: 14px;
    }
    .cart-store-location{
        position: absolute;
        right: 16px;
        top: 12px;
        display: flex;
        line-height: 24px;
    }
    .cart-store-location span{
        font-size: 14px;    
    }
    .cart-store-location i{
        display: flex ;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        line-height: 24px;
        color: var(--sub-color);
        font-size: 14px;    
    }
    .cart-products{
        padding-top: 16px;
    }
    .cart-product-line{
        padding: 12px 12px;
    }
    .cart-product-product{
        padding-bottom: 16px;
    }
    #nav-cart .cart-product-text{
        padding: 0;
    }
    #nav-cart .cart-product-title{
        line-height: 16px;
    }
    #nav-cart .cart-product-text .togo-icon{
        margin: 0px 8px 0px 0px;
        line-height: 16px;
        height: 16px;
    }
    #nav-cart .cart-product-right{
        position: initial;
    }
    #nav-cart .cart-product-price{
        position: absolute;
        left: 12px;
        bottom: 8px;
        font-size: 14px;
    }
    #nav-cart .product-cart-amount-input{
        width: 32px;
        border-radius: 50%;
        background: var(--white-color);
        color: var(--text-color);
    }
    #nav-cart .product-cart-btns{
        opacity: 1;
        width: 112px;
        width: 96px;
        background: transparent;
    }
    #nav-cart .product-cart-btn:hover .product-cart-btns, 
    #nav-cart .product-block-btns:hover .product-cart-btns{
        width: 96px;
    }
    #nav-cart .cart-product-remove{
        display: none;
    }
    #nav-cart .cart-btn{
        background: var(--bg-color);
        color: var(--text-color);
    }
    #nav-cart .cart-btn:hover, 
    #nav-cart .cart-btn:focus, 
    #nav-cart .cart-btn:active {
        background: var(--bg-color);
    }
    #nav-cart .cart-plus-btn{
        opacity: 1;
        background: var(--bg-color);
        color: var(--text-color);
    }
    .cart-buttons{
        position: relative;
    }
    .cart-buttons .btn{
        height: 48px;
        padding-top: 12px;
        padding-bottom: 12px;
        border-radius: 24px;
        z-index: 2;
    }
    .cart-buttons .btn:after{
        border-radius: 24px;
    }    
    .cart-open #alert {
        top: 24px;
    }
/*
    .cart-open #alert .alert {
        animation: none;    
    }
    
*/
}

/* MOBILE NAV*/    

@media (max-width: 991px) {
    
    #main-wrapper{
        padding-top: 56px;    
    }

    .search .search-extra-btn,
    #cart #cart-toggle,
    .nav-account-btn span,
    .btn-label-main,
    .btn-extra-icon div,
    .nav-contact-btn,
    .account-page .search,
    .checkout-page .search,
    .empty-checkout .search,
    .empty-page .search{
        display: none;
    }
    .home-page .search > *{
        display: flex;
    }
    .header-main{
        padding: 0 8px;
    }
    .header-main .header-nav-mob-btn,
    .header-main .header-logo,
    .header-main .search,
    #switch-store-btn.l-btn,
    .header-main .nav-account-btn,
    .account-page .nav-home-btn {
        z-index: 99;
    }
    .header-main .search{
        z-index: 100;
    }
    .contact-page .search > *{
        display: flex;
    }
    .header-container{
        width: initial;
        margin-left: auto;
    }
    .header-logo{
        padding: 16px 0px;
    }
    #logo,
    #logo img{
        height: 24px;
    }
    .home-page.menu-open #header-main:not(.sticky) .logo-dark{
        display: flex;
    }
    .home-page.menu-open #header-main:not(.sticky) .logo-light{
        display: none;
    }
    .nav-main{
        margin-left: 0;
        padding: 12px 0;
    }
    .nav-btn{
        margin-left: 8px;
    }
    .nav-btn.nav-cart-btn,
    #cart{
        margin: 0;
    }
    .nav-btn > .btn{
        min-width: initial;
        height: 32px;
    }
    .nav-btn .btn-icon-left.btn{
        padding: 4px 16px 4px 8px;
    }
    .btn-icon-left > i{
        margin-right: 4px;
        font-size: 16px;
    }
    .nav-account-btn .btn-icon-left > i{
        margin-right: 0;
    }
    .nav-account-btn{
        order: 3;
        position: absolute;
        top: 12px;
        right: -88px;
    }
    .empty-page .nav-account-btn,
    .checkout-page .nav-account-btn {
        order: 3;
        position: relative;
        top: initial;
        right: initial;
    }
    .nav-account-btn.nav-btn .btn {
        background: transparent;
        color: var(--text-color);
        padding: 4px 8px;
    }
    .nav-account-btn.nav-btn .btn:after {
        display: none;    
    }
    #switch-store-btn.l-btn{
        padding: 4px 16px 4px 8px;    
    }
    #switch-store-btn.l-btn > i{
        margin-right: 4px;
        font-size: 16px;
    }
    #switch-store-btn span{
        line-height: 23px;
        padding-top: 1px;
    } 
    .menu-open .nav-btn > .l-btn {
    background: var(--bg-color);
    }
    .btn-label-mob{
        display: flex;
    }  
    
    .search{
        min-width: initial;
        width: initial;
        padding: 12px 0;
        order: 2;
        margin-left: 12px;
        margin-right: 48px;
    }
    #header-search-toggle{
        position: relative;
        display: flex;
        width: 32px;
        height: 32px;
        color: var(--text-color);
        background: transparent;
    }

    .header-search-main{
		position: fixed;
		display: block;
		top: 0;
		left: 100%;
		border-radius: 0;
		padding: 8px 8px;
		border-bottom: 1px solid var(--border-color);
		width: 100%;
		opacity: 0;
		z-index: 99;
		pointer-events: auto;
		background: var(--white-color);
		transition: left 0.2s ease-out, opacity 0.2s ease-out;
	}
	.open-search .header-search-main{
		left: 0px;
		opacity: 1;
		transition: left 0.4s ease-out, opacity 0.2s ease-out;
	}
    .header-search-main .i-btn{
        width: 48px;    
        height: 48px;    
    }
    #header-search-btn{
        top: 4px;
        left: 8px;
    }
    .search-btn-close{
        position: absolute;
        display: flex;
        top: 4px;
        right: 8px;
    }
    .search-btn-close .i-btn{
        background: transparent;    
    }
    .search .form-control{
        background: var(--bg-color);
    }
    .search input:-webkit-autofill, 
    .search input:-webkit-autofill:hover, 
    .search input:-webkit-autofill:focus, 
    .search input:-webkit-autofill:active {
        -webkit-box-shadow: 0 0 0 48px var(--bg-color) inset !important;
        background-color: var(--bg-color) !important;
        color: var(--text-color) !important;
    }
    
    .header-nav-mob-btn{
        display: flex;
    }    
    .home-page:not(.menu-open) #header-main:not(.sticky) #header-search-toggle,
    .home-page:not(.menu-open) #header-main:not(.sticky) .nav-account-btn.nav-btn .btn{
        color: var(--white-color);
    }
    
    .nav-toggle{
        position: relative;
        cursor: pointer;
        width: 24px;
        height: 24px;
        padding: 0px;        
        margin: 16px 12px 16px 4px;
        background: none;
        border: none;
        overflow: hidden;
    }
    .nav-icon {
        position: relative;
        display: block;
        width: 24px;
        height: 24px;
    }

    .nav-icon span,
    .menu-ani .nav-icon span {
        display: block;
        position: absolute;
        top: 11px;
        left: 4px;
        right: 4px;
        height: 1px;
        background: var(--text-color);
    }
    .nav-icon span:before,
    .nav-icon span:after,
    .menu-ani .nav-icon span:before,
    .menu-ani .nav-icon span:after {
        content: "";
        position: absolute;
        display: block;
        left: 0px;
        width: 100%;
        height: 1px;
        background: var(--text-color);
        transition-duration: 0.2s, 0.2s;
        transition-delay: 0.2s, 0s;
    }

    .header-nav-top .nav-icon span:before,
    .header-nav-top .nav-icon span:after,
    .header-nav-top .menu-ani .nav-icon span:before,
    .header-nav-top .menu-ani .nav-icon span:after {
        background: var(--text-color);
    }
    .home-page:not(.menu-open) #header-main:not(.sticky) .nav-icon span,
    .home-page:not(.menu-open) #header-main:not(.sticky) .nav-icon span:before,
    .home-page:not(.menu-open) #header-main:not(.sticky) .nav-icon span:after{
        background: var(--white-color);
    }

    .nav-icon span:before,
    .menu-ani .nav-icon span:before {
        top: -5px;
        transition-property: top, transform;
    }
    .nav-icon span:after,
    .menu-ani .nav-icon span:after {
        bottom: -5px;
        transition-property: bottom, transform;
    }
    .menu-ani .nav-icon span,
    .menu-open .nav-icon span {
        background: none;
    }
    .menu-open .nav-icon span:before {
        top: 0;
        width: 100%;
        transform: rotate(45deg);
    }
    .menu-open .nav-icon span:after {
        bottom: 0;
        width: 100%;
        transform: rotate(-45deg);
    }
    .menu-open .nav-icon span:before,
    .menu-open .nav-icon span:after {
        transition-delay: 0s, 0.2s;
    }
    
    .mobile-nav{
		display: flex;
		position: fixed;
		flex-direction: column;
		justify-content: flex-start;
		width: 100%;
		height: 100%;
		height: 100dvh;
/*		height: calc(100dvh - 56px);*/
		left: -100%;
		top: 56px;
        top: 0px;
		padding: 0;
        padding-top: 56px;
		background: var(--white-color);
		overflow: hidden;
		z-index: 98;
		transition: all 0.2s ease;
	}
	.menu-open .mobile-nav{
		left: 0%;
		transition: all 0.3s ease-out;
	}
    .mobile-nav-wrap{
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 0px;
        flex-grow: 1;
    }
    
    .menu-chip-btns{
        position: relative;
        display: flex;
        padding: 24px 24px 0px 24px;
        border-top:1px solid var(--border-color);
    }
    .menu-chip-btns .btn{
        margin-right: 8px;    
    }
    .main-menu,
    .main-menu-sub{
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 24px 0px;
        margin: 0 24px;
        border-bottom:1px solid var(--border-color);
    }
    .nav-item{
        position: relative;
        display: flex;
    }
    .nav-item a{
        position: relative;
        display: flex;
        width: 100%;  
        font-weight: 700;
    }
    .main-menu .nav-item a{
        line-height: 24px;
        padding: 12px 0px;
        font-size: 18px;
    }
    .main-menu .nav-item a:after{
        content: "\f105";
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        top: 12px;
        right: 0px;
        height: 24px;
        width: 24px;
        line-height: 24px;
        font-size: 14px;
        font-weight: 300;
        font-family: "Font Awesome 6 Pro";	
    }
    .main-menu-sub .nav-item a{
        line-height: 24px;
        padding: 8px 0px;   
        font-size: 14px;
        font-weight: 400;
    }
    .main-menu-footer{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 16px;
    }
    #sub-menu{
        display: none;
    }
    
    .search-page #main-content{
        padding: var(--xs-pad) 0 var(--main-pad) 0;
    }
    
}



@media (max-width: 767px) {
    .store-closed{
        padding-top: 64px;
    }
    .store-closed #header-main{
        top: 64px;
    }
    .store-closed .mobile-nav{
        padding-top: 120px;
    }
    
    #mobile-cart::after{
        
    }
    
}

/*SMALL MOBILE*/

@media (max-width: 399px) {

    #switch-store-btn.l-btn i{
        display: none;
    }
    #switch-store-btn.l-btn{
        padding: 4px 16px 4px 16px;
    }
    
}
