@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap'");

/***** BASIC *****/
body
{
  	position: relative;
	font-family: "Quicksand", sans-serif;
  	font-weight: 500;
  	font-size: 16px;
	color: #444645;
	background: #FFF;
	line-height:1.6;
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.overflow
{
	overflow:hidden;
}

::placeholder 
{ 
  	color: #999;
}

.container
{
	width: 100%;
	max-width: 1250px;
	padding: 0px 15px;
}

img
{
	max-width:100%;
    height: auto !important;
}

a
{
	color: #444645;
	cursor:pointer;
}

a:hover
{
	color:#d60000;
	text-decoration:none;
}

h1, h2, h3, h4, h5, h6
{
	/* font-family: "Times New Roman", Times, serif; */
    vertical-align: inherit;
	color: #0A0A08;
	font-weight: 500;
	line-height:1.6;
}

ul, ol
{
	margin:0px;
	padding:0px;
	padding-left:20px;
}

ul li, ol li
{
	margin-bottom:5px;
	padding-left:10px;
}

p + ol, p + ul
{
	margin-top:-7px;
}

ol + p, ul + p
{
	margin-top:20px;
}

p:last-child
{
	margin-bottom:0px;
}

.content
{
	display:inline-block;
	width:100%;
	padding:30px 0px;
}
/***** END BASIC *****/

/***** INPUT *****/
:focus
{
	outline: 0;
}

input, textarea
{
	font-size: 15px;
	border:0px solid #ddd;
	border-radius:5px;
	padding: 7px 15px;
	width:100%;
	background: #F7F8FA;
}

input:focus, textarea:focus,
.select2-container--open .select2-selection--single .select2-selection__rendered
{
	border: 0px;
	outline: 0;
}

button:focus, .select2-container--default .select2-selection--single .select2-selection__rendered,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus
{
	border: 0px;
	outline: 0;
	box-shadow: none;
}

textarea
{
	min-height:100px;
}

.input-row
{
	position:relative;
}

.input-row label.input
{
	position: absolute;
	font-size: 14px;
	width: 100%;
	top: 3px;
	left:0px;
	color: #666;
	padding: 0px 16px;
	transition: all 0.2s ease-out;
	pointer-events:none;
	opacity:0;
	font-weight: 400;
	z-index:9;
    max-height: 20px;
    overflow: hidden;
}

.input-row label.input.active
{
	transform: none;
	opacity:1;
}

.input-row input,
.input-row .select2-container--default .select2-selection--single .select2-selection__rendered
{
	padding:12px 15px 13px 15px;
}

.input-row label.input.active + input, .input-row label.input.active + span input
{
	padding-top: 22px;
	padding-bottom: 3px;
}

.input-row label.input.active + textarea
{
    padding-top: 25px;
}

.input-row label.input.active ~ .select2-container--default .select2-selection--single .select2-selection__rendered,
.input-row label.input.active + span .select2-container--default .select2-selection--single .select2-selection__rendered
{
	padding-top: 23px;
	padding-bottom: 3.5px;
    border: 0px;
}

.radio-box
{
    background: #F7F8FA;
    padding: 2px 15px 3px 15px;
    border-radius: 5px;
}

.radio-box > label:first-child
{
    width: 100%;
    margin: 0px;
    color: #666;
    font-size: 14px;
}

.radio-box [type="radio"] + label:before
{
    top:2.5px;
}

.radio-box [type="radio"] + label:after
{
    top:6.5px;
}

.radio-box [type="radio"] + label
{
    margin-bottom: 0px;
    color: #000;
    font-size: 15px;
}

.radio-box [type="radio"] + label:last-child
{
    margin-left: 30px;
}
/***** END INPUT *****/

/***** BUTTON *****/
.button, button
{
	position:relative;
	display: inline-block;
	background: #FFF;
    border: 2px solid #d60000;
	border-radius: 20px;
	padding: 7px 20px;
	color: #444645;
	transition: 0.3s ease;
	text-align:center;
    font-weight: bold;
}

.button:hover, button:hover
{
    border-color: #000;
}

.button:focus, button:focus, .btn-secondary:focus, .btn-out-of-stock:focus
{
	box-shadow:none;
}

a.button
{
	color:#444645 !important
}

.btn-secondary, a.btn-secondary
{
	background: #d60000;
	color:#FFF !important;
    border: 0px;
}

.btn-secondary:hover
{
	background-color:initial;
	box-shadow: inset 0 0 0 100px rgba(0,0,0,0.2);
}

.btn-outline, a.btn-outline:not([href]):not([tabindex])
{
	border:1px solid #000;
	background:transparent;
	color:#000 !important;
    padding: 6px 20px;
}

a.button.btn-outline
{
    color: #000 !important;
}

.btn-outline:hover, a.btn-outline:not([href]):not([tabindex]):hover
{
	background:#000;
	color:#FFF !important;
}

a.button.btn-outline:hover
{
    color:#FFF !important;
}

.btn-outline:focus
{
    border:1px solid #000;
}

.btn-disabled
{
    cursor: default;
    background: #999;
}

.btn-disabled:hover, .btn-disabled:active
{
    background-color: #999 !important;
    box-shadow: unset;
}
/***** END BUTTON *****/

/*** CUSTOM CHECKBOX / RADIO ***/
[type="checkbox"], [type="radio"]
{
	width:auto;
    position: absolute;
    left: -9999px;
}

[type="checkbox"] + label, [type="radio"] + label
{
    position: relative;
	display:inline-block;
    padding-left: 30px;
    cursor: pointer;
	font-weight:normal;
}

[type="checkbox"] + label:before, [type="radio"] + label:before
{
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
	height: 18px;
	border: 1px solid #d3d3d3;
	border-radius:2px;
    background: #FFF;
}

[type="radio"] + label:before
{
    border-radius: 100%;
}

[type="checkbox"] + label:after, [type="radio"] + label:after
{
    position: absolute;
    top: 8px;
	left: 4px;
    width: 9px;
	height: 9px;
    content: '';
	background: #333;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="checkbox"] + label:after
{
    top: 6.5px;
	left: 6px;
	width: 6px;
	height: 10px;
	background:#333;
	border-bottom: 3px solid #FFF;
	border-right: 3px solid #FFF;
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  	transform: rotate(45deg);
}

[type="radio"] + label:after
{
    border-radius: 100%;
	width:10px;
	height:10px;
	background:#FFF;
}

[type="checkbox"]:not(:checked) + label:after, [type="radio"]:not(:checked) + label:after 
{
    opacity: 0;
}

[type="checkbox"]:checked + label:before, [type="radio"]:checked + label:before
{
	border-color: #333;
	background: #333;
}

[type="checkbox"]:disabled + label::before, [type="radio"]:disabled + label::before
{
	border-color: #DDD;
	background: #f1f1f1;
}

[type="checkbox"]:disabled + label::after
{
	border-color: #666;
}

[type="radio"]:disabled + label::after
{
	background: #666;
}
/*** END CUSTOM CHECKBOX / RADIO ***/

/*** CUSTOM FILE UPLOAD ***/
.file_box
{
	display: table;
	width: 100%;
    border: 1px solid #DDD;
	background:#FFF;
}

.file_box:hover
{
	cursor:pointer;
}

.file_text
{
	display: table-cell;
	vertical-align: middle;
	font-size: 12px;
	color: #4f6b72;
	padding:0px 10px;
}

.file_btn
{
	display: table-cell;
	vertical-align: middle;
	width:100px;
	text-align:right;
    border-radius: 0px;
}

.file_btn input[type=button]
{
	margin-top:0px;
	border:0px;
    border-radius: 0px;
    max-width: 100px;
    background: transparent;
    color: #FFF;
    font-weight: 500;
    padding: 0px;
}

.file_hidden
{
	height:0px;
	width:0px;
	overflow:hidden;
}
/*** END CUSTOM FILE UPLOAD ***/

/*** TOGGLE ***/
.toggle-arrow.enable
{
    position: relative;
	display:flex;
	align-items:center;
    cursor:pointer;
}

.toggle-arrow.enable:after
{
    position: absolute;
    display: inline-block;
    content: url(/assets/images/icon-plus.svg);
    transform: translateY(-20%) rotate(0deg); 
    top: 39%;
    right: 20px;
    background: #FFF;
}

.toggle-arrow.enable.active:after
{
    transform: translateY(-55%) rotate(45deg);
    top: 62%;
}

.sidebar .toggle-arrow.enable:after 
{
	opacity: 0;
}

.toggle-arrow.enable + .toggle-result
{
	display:none;
}

.toggle-arrow.enable.active + .toggle-result
{
	display:block;
}
/*** END TOGGLE ***/

/***** HEADER *****/
/* topbar */
.topbar
{
	background:#000;
	color:#FFF;
	padding:7px 0px; 
	text-transform:uppercase;
	font-size:13px;
	line-height:1.3;
    margin-bottom: 150px;
    font-weight: 600;
}

.topbar a
{
	color:#FFF;
}

.topbar ul.top-menu
{
    list-style: none;
    margin: 0px;
    padding: 0px;
    text-align: right;
}

.topbar ul.top-menu li
{
    display: inline-block;
    margin: 0px;
    padding: 0px;
}

.topbar ul.top-menu li:not(:last-child) a:after
{
    content: "|";
    margin: 0px 10px 0px 15px;
}
/* END topbar */

header
{
	position:fixed;
	top: 0px; /*originally 32px*/
	left:0px;
	z-index:999;
	width:100%;
	padding:15px 0px 5px 0px;
	background:#FFF;
	box-shadow: 1px 1px 10px rgba(0,0,0,0.15);
}

header.sticky
{
    top: 0px;
}

header > .container > .row
{
	align-items:center;
}

.logo
{
	display:inline-block;
}

.logo img
{
	max-width:180px;
}

/* search box */
.search-box, #SearchForm
{
	position:relative;
}

#SearchForm input
{
	background:#fff;
	padding:10px 35px 10px 20px;
	border: 1px solid #000000;
	border-radius: 30px;
}

#SearchForm input:hover, #SearchForm input:focus 
{
	padding:9px 34px 9px 19px;
	border: 2px solid black;
}

#SearchForm button
{
	position:absolute;
	border:0px;
	background:none;
	height:100%;
    top: 0px;
	right: 15px;
	padding: 0px;
	color:#666;
}

#SearchForm button img
{
	width: 20px;
}

.col-lg-6.d-none.d-lg-block.search-box #SearchForm 
{
	width: 507px; 
	height: 48px;
	margin: auto;
}

.SearchResult
{
	position:absolute;
	display:none;
	top:46px;
	left:0px;
	width:100%;
	max-height: 350px;
	overflow-y: auto;
	border: 1px solid #ddd;
	margin-top: -3px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	background:#FFF;
	z-index:99;
	box-shadow: 0 0px 5px rgba(0,0,0,0.19),6px 6px 6px rgba(0,0,0,0.22);
}

.SearchResultBox
{
	padding:10px 0px;
}

.SearchResultBox > a
{
	display:inline-block;
	width:100%;
	color: #000;
	padding: 3px 20px;
	font-size:15px;
}

.SearchResultBox > a:hover, .SearchResultBox > a.active
{
	background:#eee;
}

.SearchResultBox > a > span
{
	font-size:14px;
	color:#777;
}

.SearchResultBox hr
{
	margin:10px 0px;
}

.SearchResultBox hr:last-child
{
	display:none;
}

.SearchResultBox h5
{
	padding: 3px 20px;
	margin: 0px;
	font-size: 17px;
	color: #000;
}
/* END search box */

/* member menu */
.member-menu ul
{
	list-style:none;
	margin:0px;
	padding:0px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.member-menu ul li
{
    position: relative;
	padding-left:0px;
	margin-bottom:0px;
	width: 40px;
}

.member-menu ul li a
{
    position: relative;
    display: inline-block;
	color: #7c7c7c !important;
	font-size: 22px;
	margin: 0px 10px;
}

.member-menu ul li:last-child
{
    width: auto;
}

.member-menu ul li:last-child a
{
	margin-right:0px;
}

.member-menu ul li a:hover
{
	color:#000 !important;
}

.member-menu ul li a img
{
	max-width:30px;
	color: black;
	width: 22px;
}

.member-menu-cart-no
{
    position: absolute;
    top: 2px;
    left: 70%;
    font-size: 11px;
    color: #FFF;
    height: 16px;
    min-width: 16px;
    text-align: center;
    background:#f4891f;
    border-radius: 10px;
    line-height: 1.5;
    font-weight: 500;
    padding: 0px 4px;
}

.member-menu-cart-empty
{
	background: transparent;
	color: transparent;
}

.member-menu-dropdown
{
    position: absolute;
    display: none;
    padding-top: 10px;
    right: 0px;
    width: 300px;
    z-index: 99;
}

.member-menu-dropdown.active
{
    display: block;
}

.member-menu-dropdown > ul
{
    position: relative;
    background: #FFF;
    border: 1px solid #DDD;
    display: inline-block;
    width: 100%;
    z-index: 9;
    text-align: left;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.15);
}

.member-menu-dropdown > ul:before
{
	position: absolute;
    display: inline-block;
    content:"";
    border: 6px solid transparent;
    border-color: transparent transparent #fff #fff;
    box-shadow: -1.5px 1.5px 0 0 #ddd;
    transform: rotate(135deg);
    z-index: 999;
    top: -5px;
    right: 9px;
    flex-wrap: wrap;
    background: #FFF;
}

.member-menu-dropdown ul li
{
    width:100%;
    line-height: 1.4;
    font-size: 15px;
    color:#000;
    padding: 7px 15px;
}

.member-menu-dropdown ul li:first-child
{
    display: flex;
    border-bottom: 1px solid #DDD;
    padding: 7px 15px;
}

.member-initial
{
    margin-right: 13px;
}

.member-initial span
{
    background: #eee;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    font-family: "Quicksand";
    font-weight: 500;
    margin-top: 1px;
}

.member-menu ul li a.member-initial-icon
{
    color:#000 !important;
    font-size: 16px;
    margin-left: 15px;
}

.member-menu ul li a.member-initial-icon .member-initial
{
    margin-right: 0px;
}

.member-menu ul li a.member-initial-icon .member-initial span
{
    width: 27px;
    height: 27px;
    font-size: 13px;
    margin-right: 13px;
}

.member-menu ul li a.member-initial-icon .member-initial span:after
{
    position: absolute;
    content:"\f0d7";
    font-family: "FontAwesome";
    right: 0px;
}

.member-menu-dropdown ul li:first-child > div:last-child span
{
    display: inline-block;
    width: 100%;
    padding-bottom: 2px;
    color: #999;
}

.member-menu-dropdown ul li:hover
{
    background:#fafafa;
}

.member-menu-dropdown ul li a
{
    display: inline-block;
    width: 100%;
    font-size: 15px;
    color: #000 !important;
    margin: 0px;
}
/* END member menu */

/* category */
#mobile-category-menu
{
    display: none;
}

.category-menu 
{
    position: relative;
	padding-top:20px;
}

.category-menu .category-menu-icon
{
    width: 20px;
    height: 20px;
    margin-right: 5px;
    margin-bottom: 3px;
}

.category-menu ul
{
	list-style:none;
	padding:0px;
	margin:0px;
}

.category-menu ul li
{
	display:inline-block;
	vertical-align:top;
	padding-left:0px;
}

.category-menu > ul > li
{
    position: relative;
	margin-right: 30px;
    margin-bottom: 0px;
    cursor: pointer;
}

.category-menu > ul > li > a
{
    display: inline-block;
	position:relative;
	font-size:16px;
	color:#313131;
    padding: 0px 0px 7px 0px;
    font-weight: bold;
}

.category-menu > ul > li:first-child > a
{
	padding-left:0px;
}

.category-menu > ul > li.active > a,
.category-menu > ul > li:hover > a
{
	color:#d60000;
}

.category-menu > ul > li.active .sub-category-menu
{
    display: flex;
}

.sub-category-menu
{
	position:absolute;
	display:none;
	flex-wrap:wrap;
	background:#ccc;
	left:0;
	width:250px;
	z-index:99;
    cursor: default;
}

.sub-category-menu > ul
{
	position: relative;
    background: #eee;
    padding-bottom: 7px;
    padding-top: 7px;    
    flex-grow: 1;
}

.sub-category-menu > ul > li
{
	margin-bottom:0px;
    width: 100%;
    padding: 0px;
    cursor: pointer;
}

.sub-category-menu > ul > li > a
{
    position: relative;
	display:inline-block;
	vertical-align:top;
	width:100%;
	text-transform:capitalize;
    font-size: 15px;
	color:#000;
    padding: 7px 20px;
    line-height: 1.3;
}

.sub-category-menu > ul > li > a:hover
{
    color: #d60000;
}
/* END category */
/***** END HEADER *****/

/***** LOGIN *****/
.login-box
{
    border: 1px solid #CCC;
    padding: 15px 30px 30px 30px;
}

.login-box h3
{
    margin-bottom:15px;
    text-align:center;
}

.login-password  > a
{
    display:inline-block;
    width:100%;
    font-size:15px;
    text-align:right;
}

.login-box hr
{
    margin-top:20px;
    margin-bottom:10px;
    border:0.5px solid #DDD;
}

.login-box button.BtnSubmit
{
    width:100%;
    text-transform:uppercase;
}

.login-social
{
    display:flex;
}

.login-social > a
{
    display: inline-block;
    width: 100%;
    border: 0px;
    color: #FFF;
    text-align: center;
    padding: 7px;
    margin-top: 10px;
}

.login-social > a:hover
{
    color:#FFF;
    opacity:0.9;
}

.login-social > a > i
{
    margin-right: 5px;
}

.login-social > a.facebook
{
    margin-right:5px;
    background:#3a5795;
}

.login-social > a.google
{
    margin-left:5px;
    background:#df4931;
}

.login-bottom-box
{
    display: inline-block;
    width: 100%;
    background: #EEE;
    padding: 20px 30px;
    border: 1px solid #ccc;
    border-top:0px;
    text-align:center;
}

.login-bottom-box .btn-outline
{
    text-transform: uppercase;
    font-size: 14px;
    margin-left:10px;
    color:#000 !important;
    border-radius:0px;
}

.login-bottom-box .btn-outline:hover
{
    background:#000;
    color:#FFF !important;
}

.login-signup-text
{
    margin:10px 0px;
}

.btn-small
{
    font-size: 14px;
    padding: 5px 10px;
}
/***** END LOGIN *****/

/***** HOMEPAGE *****/
/* sliders */
.sliders-main > .container
{
    padding: 0px;
    max-width: unset;
}

.sliders .flickity-slider > div, .sliders-single > div
{
	position:relative;
	width:100%;
	padding-top:25.6%;
}

.sliders-image
{
	position:absolute;
	top:0px;
	display:inline-block;
	width: 100%;
	height: 100%;
	background-size: cover;
}

.sliders-text-box
{
	position:absolute;
	top:25px;
	left:60px;
	display:inline-block;
	width:40%;
	padding:10px 20px 20px 20px;
}

.sliders-text-box.topcenter
{
	left: 50%;
	transform: translateX(-50%);
}

.sliders-text-box.topright
{
	left: unset;
	right: 60px;
}

.sliders-text-box.middleleft
{
	top: 50%;
	transform: translateY(-50%);
}

.sliders-text-box.middlecenter
{
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sliders-text-box.middleright
{
	top: 50%;
	left: unset;
	right:60px;
	transform: translateY(-50%);
}

.sliders-text-box.bottomleft
{
	top: unset;
	bottom:35px;
}

.sliders-text-box.bottomcenter
{
	top: unset;
	bottom:35px;
	left: 50%;
	transform: translateX(-50%);
}

.sliders-text-box.bottomright
{
	top: unset;
	bottom:35px;
	left: unset;
	right:60px;
}

.sliders-text-box h2
{
	margin-bottom: 5px;
}

.sliders-text-box .button
{
	margin-top:25px;
}

.flickity-prev-next-button
{
    padding: 0px;
    width: 30px;
    height: 30px;
    background: #c6c6c6;
    color: #FFF;
}

.flickity-prev-next-button:hover
{
    background: #000;
    color: #FFF;
}

.flickity-prev-next-button:before
{
    content: "\f053";
    font-family: 'FontAwesome';
    margin-left: -2px;
    font-size: 20px;
}

.flickity-prev-next-button.next:before
{
    content: "\f054";
    margin-left: 4px;
}

.flickity-prev-next-button .flickity-button-icon
{
    display: none;
}

.flickity-prev-next-button.previous
{
	left:20px;
}

.flickity-prev-next-button.next
{
	right:15px;
}

.flickity-page-dots
{
	bottom:10px;
}

.flickity-page-dots .dot 
{
    background: #000;
	width: 9px;
	height: 9px;
	opacity: 0.25;
	margin:0px 5px;
}

.flickity-page-dots .dot:hover,
.flickity-page-dots .dot.is-selected
{
	background-color: #000;
	border-color: #000;
}
/* END sliders */

/* sliders icon */
.home-icon
{
    background: #ececec;
    padding: 30px 13px;
    color: #d60000;
}

.home-icon .flickity-slider > div
{
    padding-top: 0px;
}

.home-icon .sliders
{
    margin-left: -15px;
    margin-right: -15px;
}

.home-icon .sliders .home-icon-box
{
    display: flex;
    align-items: center;
    width: calc(100% / 4);
    padding: 0px 10px;
}

.home-icon .home-icon-box img
{
    max-width: 27%;
    width: auto;
    margin-right: 15px;
}

.home-icon .flickity-button:disabled,
.home-icon ol.flickity-page-dots
{
    display: none !important;
}

.home-icon .flickity-prev-next-button.previous
{
    left: 10px;
}

.home-icon .flickity-prev-next-button.next
{
    right: 10px;
}
/* END sliders icon */

/* content */
.home-bestseller-monthly-box
{
    padding: 40px 0px;
    margin-bottom: 10px;
}

.home-bestseller-content
{
    position: relative;
    max-height: 350px;
    transition: all 1s ease-in-out;
    overflow: hidden;
}

.home-bestseller-content img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-bestseller-content span
{
    position: absolute;
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #FFF;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 20px;
}

.home-bestseller-content:hover
{
    transform: translate(0,-1em);
}

.home-bestseller-content:hover span
{
    font-size: 180%;
    font-weight: bold;
}
/* END content */

/* category */
.homepage-categories-box
{
	/* text-align: center; */
    margin-bottom: 20px;
}

.homepage-categories-box h4,
.homepage-featured-box h4,
.homepage-category-box h4,
.homepage-news-box h4
{
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.homepage-categories-box h6
{
    font-weight: bold;
    font-size: 16px;
}

.homepage-categories-box .row > div
{
    margin-bottom: 10px;
}
/* END category */

.homepage-featured-box,
.homepage-category-box,
.homepage-news-box
{
    margin-bottom: 35px;
}

/* product sliders */
.sliders.products-sliders .flickity-viewport
{
    margin-bottom: 15px;
}

.products-sliders .flickity-button:disabled
{
    display: none !important;
}

.products-sliders .flickity-prev-next-button,
.homepage-news-box .flickity-prev-next-button
{
    top: unset;
    bottom: -55px;
    z-index: 99;
}

.products-sliders .flickity-prev-next-button.previous,
.homepage-news-box .flickity-prev-next-button.previous
{
    left: unset;
    right: 50px;
}

.products-sliders .flickity-prev-next-button.next,
.homepage-news-box .flickity-prev-next-button.next
{
    right: 10px;
}

.products-sliders .flickity-prev-next-button,
.products-sliders .flickity-prev-next-button
{
    bottom: -22px;
}

.products-sliders .flickity-page-dots
{
    bottom: 0px;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.products-sliders ol.flickity-page-dots li:first-child:last-child
{
    display: none !important;
}

.products-sliders .flickity-page-dots .dot
{
    width: 10px;
    height: 10px;
    padding: 0px;
}

.products-sliders .flickity-page-dots .dot.is-selected
{
    background-color: #000;
    border-color: #000;
}

.sliders.products-sliders
{
    margin-bottom: 20px;
}

.sliders.products-sliders .featured-box
{
    display: flex;
    width: calc(100% / 5);
    padding: 0px 10px;
    flex-wrap: wrap;
    min-height: 100%;
}

.sliders.products-sliders .featured-box .products-box
{
    height: auto;
}
/* END product sliders */

/* news sliders */
.news-sliders .flickity-button:disabled,
.news-sliders .flickity-page-dots
{
    display: none !important;
}

.sliders.news-sliders, .sliders.products-sliders
{
    margin-left: -10px;
    margin-right: -10px;
}

.sliders.news-sliders .news-sliders-box
{
    display: flex;
    width: calc(100% / 3);
    min-height: 100%;
    padding: 0px 10px;
    flex-wrap: wrap;
    text-align: center;
}

.news-main-box .news-box
{
    height: 100%;
}

.news-box
{
    border: 0.1px solid #ececec;
}

.news-box img
{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-date
{
    opacity: 0.7;
    margin-top: 5px;
    padding: 0px 10px;
}

.news-box .news-title
{
    margin: 5px 0px;
    font-weight: bold;
    padding: 0px 10px;
    color: #000;
}

.news-box .news-desc
{
    padding: 0px 10px;
}

.news-box a
{
    display: block;
    color: #d60000;
    padding: 0px 10px 15px 10px;
}

.news-box a:hover
{
    text-decoration: underline;
}

.news-more a
{
    color: #d60000;
    font-weight: bold;
    display: block;
    margin-top: 15px;
}

.news-more a:hover
{
    color: #000;
}
/* END news sliders */
/***** END HOMEPAGE *****/

/***** BREADCRUMB *****/
.breadcrumb-box ul
{
	list-style:none;
	padding:0px;
	margin:0px;
	margin-bottom:15px;
}

.breadcrumb-box ul li
{
	padding:0px;
	display:inline-block;
}

.breadcrumb-box ul li a
{
	text-transform:capitalize;
}

.breadcrumb-box ul li a.active
{
	color:#222;
}

.breadcrumb-box ul li:after
{
	content:"\f101";
	color:#a4a6a9;
	margin-right:7px;
    margin-left: 10px;
    font-family: "FontAwesome";
}

.breadcrumb-box ul li:last-child:after
{
	display:none;
}
/***** END BREADCRUMB *****/

/***** NEWS DETAILS *****/
.news-detail-box img
{
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.news-detail-box .news-date
{
    margin-top: -10px;
    padding: 0px;
    margin-bottom: 20px;
}
/***** END NEWS DETAILS *****/

/***** CATEGORY PAGE *****/
.category-box
{
	margin-top:30px;
}

.category-inner-box
{
	position:relative;
	margin-bottom:20px;
}

.category-inner-box:hover
{
	box-shadow: 0 3px 6px -4px rgba(0,0,0,0.16),0 3px 6px rgba(0,0,0,0.23);
}

.category-inner-box img
{
	width:100%;
	object-fit: contain; /* changed by Jesa on 02/10/2020, originally, cover */
	border: 2px solid #ccc; /*added by hami on 25/09/2020*/
	height: 300px; /* added by Jesa on 02/10/2020 */
}

.category-inner-box h5
{
	font-size:18px;
	line-height:1.3;
	padding:20px 15px 15px 15px;
	margin-bottom:0px;
}

.category-inner-box h5 a, .category-inner-box ul li a
{
	color:#444645;
}

.category-inner-box h5 a:hover, .category-inner-box ul li a:hover
{
	color:#d60000;
}

.category-inner-box ul
{
	margin:0px;
	list-style:none;
	padding: 0px 15px 10px 15px;
}

.category-inner-box ul li
{
	padding:0px;
}

.category-inner-box ul li a
{
	font-size:15px;
}

.category-inner-box h6
{
	position: absolute;
	bottom: 0px;
	width: 100%;
	text-align: center;
	margin-bottom: 0px;
	padding: 15px;
	font-size: 18px;
	line-height:1.3;
}

.category-inner-box h6 a
{
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	color:#FFF;
}

.category-brands-box
{
	margin:10px 0px 10px 0px;
}

.category-brands-sliders
{
	margin:20px auto;
	width:95%;
}

.category-brands-sliders.sliders-no-dots .flickity-prev-next-button.previous
{
	left:-43px;
}

.category-brands-sliders.sliders-no-dots .flickity-prev-next-button.next
{
	right:-46px;
}

.category-product-box
{
	display:inline-block;
	width:100%;
	margin-top:20px;
	margin-bottom:-10px;
}

.category-product-box h3 /*added by Hami on 25/09/2020*/
{
	font-size:1.5rem;
}
/***** END CATEGORY PAGE *****/

/***** BRANDS PAGE *****/
.brands-filter a
{
	color: #000;
	margin-right: 10px;
	margin-bottom: 0px;
	display: inline-block;
}

.brands-all
{
	margin-top:20px;
}

.brands-all > div
{
	margin-bottom:30px;
}

.brands-all-box
{
	display: flex;
	border: 1px solid #DDD;
	height: 100%;
	align-items: center;
	justify-content: center;
	color: #000;
	background: #FFF;
}

.brands-all-box:hover
{
	box-shadow: 10px 10px 30px -10px rgba(0,0,0,0.2);
}

.brands-all-box > a
{
	color: #000;
	font-size: 30px;
	font-weight: bold;
}

.brands-header
{
	display: flex;
	width: 100%;
	padding:0px 8px 40px 10px;
}
/*website*/
.brands-button
{
	margin-top: 20px;
	display:inline-block;
	width: 125px;
	border-radius: 16px;
	text-align:center;
	background-color:#e3e3e3;
	color:#7c7c7c;
}
.brands-button:hover
{
	background-color:#a1a1a1;
}
.brands-button:focus
{
	background-color:#a1a1a1;
}
.bbi
{
	width:10px;
	height:10px;
	padding:0;
}
/*end website*/
/*whatsapp*/
.brands-button2 
{
	float:right;
	margin-top: 20px;
	margin-right:10px;
	width: 40px;
	height: 40px;
	border-radius: 55%;
	text-align:center;
	background-color:#25D366;
}
.brands-button2:hover
{
	background-color:#1aba56;
	
}
.brands-button2:focus
{
	background-color:#1aba56;

}
/*end whatsapp*/
.brands-banner
{
	max-height:500px;
	overflow:hidden;
}

.brands-logo
{
	display: inline-block;
	max-width:150px;
	max-height: 150px;
	box-shadow: 0 3px 6px -4px rgba(0,0,0,0.16),0 3px 6px rgba(0,0,0,0.23);
	margin-right: 30px;
	margin-top:-60px;
}

.brands-banner img, .brands-logo img
{
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.brands-header-nobanner
{
	margin-top:40px;
	align-items:center;
}

.brands-header-nobanner .brands-logo
{
	margin-top:0px;
}

.brands-header h2
{
	flex-grow:1;
	font-size:27px;
	line-height:1.0;
	margin-top:20px;
}

.brands-header-nobanner h2
{
	margin-top:0px;
}

.brands-header h2 p
{
	font-size: 16px;
	font-weight: normal;
	margin-top: 3px;
}

.brands-info-box
{
	display: block;
	width: 100%;
	padding:0px 8px 40px 10px;
}

.brands-info-header
{
	display:flex;
	width:100%;
	margin-bottom:20px;

}

.brands-info-header > a
{
	/*text-transform: uppercase;*/
	margin-right: 30px;
	font-size: 18px;
	font-weight: 500;
	color: #888;
}

.brands-info-header > a:hover
{
	color: #000;
}

.brands-info-header > a.active
{
	color: #f4891f;
	border-bottom: 3px solid #000;
	padding-bottom: 10px;
}

.brands-collection-box
{
    margin-top: 50px;
}

.brands-collection-box + .category-box
{
    margin-top: 20px;
}

/* catalog */
.catalog-image
{
	position: relative;
	border: 1px solid #CCC;
	display: inline-block;
	width: 100%;
	overflow: hidden;
	text-align: center;
	height: 240px;
}

.catalog-image img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.catalog-download
{
	width: 100%;
	bottom: -31px;
	display: block;
	position: absolute;
	background: #313131;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	-webkit-transition: bottom .2s cubic-bezier(.19,.26,.17,.99);
	-moz-transition: bottom .2s cubic-bezier(.19,.26,.17,.99);
	-ms-transition: bottom .2s cubic-bezier(.19,.26,.17,.99);
	transition: bottom .2s cubic-bezier(.19,.26,.17,.99);
	font-size: 13px;
}

a:hover .catalog-download
{
	bottom: 0;
}

.catalog-download > i
{
	margin-right: 3px;
	font-size: 12px;
}

.catalog-title
{
	color: #444645;
	display: inline-block;
	width: 100%;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 30px;
}
/* END catalog */
/***** END BRANDS PAGE *****/

/***** PRODUCT LISTING PAGE *****/
.products-row > div
{
    margin-bottom: 20px;
}

.products-box
{
    display: inline-block;
    width: 100%;
    height: 100%;
    border: 0.1px solid #ececec;
    padding: 10px;
    border-radius: 30px;
}

.products-box > a
{
    display: flex;
    height: 16.2vw;
    justify-content: center;
}

.products-box > a > img
{
    object-fit: contain;
    border-radius: 20px;
}

.products-box .products-info-box
{
    margin-top: 10px;
}

.products-box .products-name
{
    display: flex;
    align-items: center;
}

.products-box .products-name > a
{
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    color: #000;
    /* white-space: nowrap; */
}

.products-box .products-price
{
    color: #d60000;
}

.products-box .products-price s
{
    color: #999;
    margin-right: 5px;
}

.products-save
{
	position: relative;
    margin: -2px -4px 0px 5px;
    flex-shrink: 0;
}

.products-save a
{
	width: 100%;
	height: auto;
}

.product-filter
{
	padding-top:10px;
	padding-bottom:20px;
}

.product-filter .select2-container
{
	width:100% !important;
	max-width:220px !important;
}

.product-filter > div:last-child
{
    display: flex;
    justify-content: flex-end;
}

.product-display
{
    display: flex;
    margin-left: 10px;
}

.product-display > a
{
    background: #f4f5f8;
    cursor: pointer;
    font-size: 20px;
    padding: 0px 10px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.product-display > a.active, .product-display > a:hover
{
    background: #cfd7e3;
}

/* by list */
.products-row.products-by-list > div
{
    max-width: unset;
    flex-basis: 100%;
}

.products-by-list .products-box
{
    display: flex;
    align-items: center;
    padding: 0px;
}

.products-by-list .products-box > a > img
{
    max-width: 250px;
}

.products-by-list .products-box .products-info-box
{
    margin-left: 30px;
    margin-top: 0px;
    width: 100%;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.products-by-list .products-box .products-name > a
{
    flex-grow: 1;
}
/* END by list */
/***** END PRODUCT LISTING PAGE *****/

/***** PRODUCT DETAIL PAGE *****/
/* images */
.product-info-image-box
{
	position:relative;
	margin-bottom:40px;
	text-align: center;

}

.product-sliders img, .sliders-cell
{
	width:100%;
	text-align:center;
}

.product-sliders.flickity-enabled.is-draggable .flickity-viewport
{
	height: 600px !important;
}

.product-sliders .sliders-cell
{
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: center;
}

.sliders-cell img, .product-info-image-box img
{
    max-height: 600px;
    max-width: 100%;
	width:auto;
	height:auto;
}

.product-sliders-thumb
{
	width: calc(100% - 70px);
	margin:20px auto 0px auto;
	
}

.product-sliders-thumb div[class^='col-']
{
	text-align:center;
	top: 50%;
	transform: translateY(-50%);
}

.product-sliders-thumb img
{
	cursor:pointer;
	width:auto;
	height:auto;
	max-height:100px;
	max-width:100%;
}

.product-sliders-thumb .is-nav-selected > img
{
	border:2px;
	border-color:transparent;
	padding:3px;
	min-height: 75px;
}

.product-sliders-thumb .flickity-prev-next-button.previous
{
	left:-35px;
}

.product-sliders-thumb .flickity-prev-next-button.next
{
	right:-35px;
}
/* END images */

/* wishlist */
.product-info-image-box .product-save
{
	z-index:99;
	top:20px;
	right:20px;
}

.product-info-image-box .product-save a
{
	width: 40px;
	height: 40px;
	font-size: 20px;
}

.product-sliders:hover + .product-save a, .product-info-image-box .product-save a:hover
{
    opacity: 1;
}
/* END wishlist */

/* description */
.product-info-desc:last-child
{
	margin-bottom: 30px;
	border-bottom:1px solid #ddd;
}

.product-info-desc + .product-info-desc
{
	margin-top: 0px; /*changed by Jesa on 29 July 2020, originally 40px*/
	/*border-bottom: 1px solid #ddd; /*added by Jesa on 29 July 2020*/
}

.product-info-desc .accor-box
{
	background: transparent;
	border: 0px;
	margin-bottom:0px;
}

.product-info-desc .accor-box > h4
{
	font-weight: normal;
	background: transparent;
	padding: 10px 20px 10px 20px;  /*changed by Hami on 25/09/2020 from 10px 20px 10px 40px*/
	border-top:1px solid #ddd;
	border-bottom: none; /*changed by Jesa on 29 July 2020, originally border-bottom:1px solid #ddd;*/
}

.product-info-desc .accor-box > h4.active
{
	background:none;
	color: #444645 !important;
	font-weight: bold;
	border-bottom:0px;
    padding-bottom: 0px;
}

.product-info-desc .accor-box .accor-content
{
	border-top:0px;
	padding: 15px 30px 15px 43px;
}

.product-info-desc table
{
	width:100%;
	margin-top:10px;
}

.product-info-desc table td
{
	border:1px solid #ddd;
	padding:3px 7px;
}
/* END description */

/* side */
/* basic */
.product-info-side aside
{
	display:inline-block;
	width:100%;
	margin-bottom:30px;
}

.product-info-side h3
{
	font-size: 25px;
	line-height: 1.3;
	color: #d60000;
    font-weight: bold;
    margin-bottom: 0px;
}

.product-info-seller a
{
    font-weight: bold;
    text-transform: capitalize;
    font-size: 18px;
}

.product-info-price
{
	font-size: 18px;
    margin-bottom: 20px;
}

.product-info-price s
{
	color: #999;
	margin-right: 5px;
}

a.icon-save
{
	display: inline-block;
	line-height: 1.4;
	vertical-align: top;
	text-align:center;
}

a.icon-save img
{
	width: 26px;
}
/* END basic */

/* tag */
.product-info-tag
{
	list-style: none;
	padding: 0px;
	margin-bottom: 20px;
}

.product-info-tag > li
{
	border-top: 1px solid #ddd;
	padding: 5px 0px;
	font-size: 13px;
	margin-bottom:0px;
}

.product-info-tag > li > span
{
	color: #000;
    font-weight: bold;
}
/* END tag */

/* attribute */
.product-info-attribute-box
{
	margin-top:20px;
}

.product-info-attribute-box label
{
	margin-bottom: 5px;
	font-weight: bold;
	color: #000;
	width: 100%;
}

.product-info-attribute-box ul
{
	list-style:none;
	padding:0px;
	margin-bottom:10px;
}

.product-info-attribute-box ul li
{
	display:inline-block;
	background: #FFF;
	border: 1px solid #DDDDDD;
	border-radius: 5px;
	padding: 5px 20px;
	margin-right: 10px;
	margin-bottom: 10px;
	cursor:pointer;
}

.product-info-attribute-box ul li.active, .product-info-attribute-box ul li.active:hover
{
	background:#000;
	border-color:#000;
	color:#FFF;
	cursor:default;
}

.product-info-attribute-box ul li:hover
{
	background:#eee;
}
/* END attribute */

.product-info-delivery-closed
{
    margin-bottom: 5px;
    font-size: 14px;
    color: red;
    font-weight: bold;
}

/* button, stock */
.product-info-quantity-box
{
	display: flex;
	width: 100%;
    margin-bottom: 15px;
}

.product-info-quantity-box button
{
	border-radius: 0px;
	padding: 8px 15px 9px 15px;
    border: 1px solid #DDD;
    background: none;
    width: 100%;
    color: #444645;
    font-family: "Quicksand";
    line-height: 1.3;
    font-weight: normal;
}

.product-info-quantity-box button.qty-minus
{
    border-right: 0px;
}

.product-info-quantity-box button.qty-plus
{
    border-left: 0px;
}

.product-info-quantity-box button:hover
{
    background: #eee;
    color: #444645;
    border-color: #DDD;
}

.product-info-quantity-box input
{
	width: 40%;
	border-radius: 0px;
    border: 1px solid #DDD;
	border-left: 0px;
	border-right: 0px;
	background:#FFF;
	text-align:center;
    font-family: "Quicksand";
    font-size: 16px;
    line-height: 1.3;
	-webkit-appearance:none;
}

.product-info-quantity-box input:focus
{
    box-shadow: none;
}

.product-info-button
{
    margin-bottom: 15px;
}

.product-info-button button
{
	text-transform: uppercase;
	width: 100%;
	font-weight: 500;
    border-radius: 0px;
}

.product-info-button button > i
{
	margin-right: 10px;
	vertical-align: middle;
	margin-top: -3px;
}

.product-info-button button:hover
{
	box-shadow: inset 0 0 0 100px rgba(0,0,0,0.2);
}

.product-info-button button.btn-out-of-stock
{
	background: #F00;
	color:#FFF;
	cursor:default;
    border: 0px;
}

.product-info-button button.btn-out-of-stock:hover
{
	background:#F00;
    box-shadow: none;
}

.product-info-button button.btn-out-of-stock > i
{
	margin-top:-5px;
}
/* END price, button, stock */

/* wishlist, share */
.product-info-share-save-box
{
    align-items: center;
    margin-bottom: 30px;
}

.product-info-save
{
	margin-top: 0px;
	display: inline-block;
	width: 100%;
	text-align:right;
}

.product-info-save a
{
	text-transform: uppercase;
	font-weight: bold;
}

.product-info-save a img
{
	margin-top: -3px;
    margin-right: 5px;
}

.product-info-share-box > span
{
	display: inline-block;
	width: 100%;
    margin-bottom: 7px;
}

.product-info-share-box .at-style-responsive .at-share-btn
{
    background-color: transparent !important;
    border: 1px solid #ececec;
    border-radius: 5px !important;
    padding: 2px;
    margin-right: 5px;
}

.product-info-share-box .at-resp-share-element .at-share-btn .at-icon-wrapper, .product-info-share-box .at-resp-share-element .at-icon
{
    width: 30px !important;
    height: 30px !important;
}

.product-info-share-box .at-resp-share-element .at-share-btn:focus, .product-info-share-box .at-resp-share-element .at-share-btn:hover
{
    transform: unset;
    background-color:#d60000 !important;
}

.product-info-share-box .at-resp-share-element .at-share-btn:focus svg,
.product-info-share-box .at-resp-share-element .at-share-btn:hover svg
{
    fill: #FFF !important;
}
/* END wishlist, share */
/* END side */

.product-info-row .mostview
{
    margin-top: 10px;
}

.product-info-row .mostview h4
{
    font-weight: bold
}
/***** END PRODUCT DETAIL PAGE *****/

/***** RATING / REVIEW *****/
#top-rate-box.rate-box
{
    cursor: pointer;
    margin: 3px 0px;
}

.rate-box
{
    display: flex;
    justify-content: flex-start;
    flex-grow: 1;
}

/* star */
.rate-star-box
{
    position: relative;
    display: inline-block;
    width: 90px;
}

.rate-star-box > div
{
    position: absolute;
    height: 100%;
    overflow: hidden;
    background-repeat: repeat-x;
    background-position: left center;
    background-size: 18px;
}

.rate-star-empty
{
    width: 100%;
    background-image: url(/assets/images/icon-star.svg);
}

.rate-star-avg
{
    background-image: url(/assets/images/icon-star-o.svg);
}

.rate-review
{
    margin-left: 7px;
}
/* END star */

.review-section h3
{
    margin-bottom: 5px;
}

/* write review */
.review-product-box
{
    display: flex;
    border: 1px solid #DDD;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 10px;
}

.review-product-box img
{
    width: 80px;
    border: 1px solid #DDD;
    margin-right: 10px;
}

.review-star-box
{
    display: flex;
    margin-bottom: 20px;
}

.review-star-icon
{
    margin-bottom: 5px;
}

.review-star-icon img
{
    width: 25px;
}

.review-star-text
{
    margin-left: 20px;
    margin-top: 5px;
    font-size: 15px;
}

.review-note
{
    display: flex;
    width: 100%;
    font-size: 14px;
    margin-top: 5px;
}

.review-note-tips
{
    flex-grow: 1;
    text-align: right;
}

.review-note-tips svg
{
    margin-left: 5px;
    cursor: pointer;
}

.review-content-tips
{
    font-size: 14px;
    background-color: #f2f2f2;
    padding: 24px;
    margin-top: 5px;
}

.review-content-tips p
{
    margin-bottom: 5px;
}

/* END write review */

/* single rate */
.rate-single-box:first-child
{
    padding-top: 0px;
}

.rate-single-box
{
    padding: 8px 0px;
    cursor: pointer;
}

.rate-single-box:not(.inactive):hover
{
    text-decoration: underline;
}

.rate-single-box.inactive
{
    cursor: default;
}

.rate-single-box.inactive .rate-single-text-box
{
    color: #888;
}

.rate-single-text-box
{
    display: flex;
    padding: 5px 0;
    font-size: 15px;
    color: #000;
}

.rate-single-star
{
    font-weight: 500;
    flex: 1 1 auto;
}

.rate-single-review
{
    flex: 1 1 auto;
    text-align: right;
}

.rate-single-bar
{
    width: 100%;
    height: 4px;
    background-color: #d8d8d8;
}

.rate-single-bar-filled
{
    height: 4px;
    background-color: #d60000;
}
/* END single rate */

/* filter */
.review-search-box
{
    border-top: 1px solid #d8d8d8;
    margin-top: 25px;
    padding-top: 10px;
}

.filter-rate
{
    background-color: #f2f2f2;
    border: 1px solid #d8d8d8;
    display: inline-block;
    padding: 5px 12px;
    font-size: 15px;
    margin-right: 10px;
    cursor: pointer;
    margin-bottom: 10px;
}

.filter-rate img
{
    width: 16px;
}

.filter-rate-clear
{
    background-color: #FFF;
    border: 1px solid #000;
    display: inline-block;
    padding: 5px 12px;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 10px;
}


.review-filter-box > div
{
    display: flex;
    align-items: center;
    margin-left: auto;
}

.review-filter-box .review-search-text
{
    width: 40%;
}

.review-filter-box .select2-container--default .select2-selection--single .select2-selection__rendered
{
    padding: 11px 35px 10.5px 15px;
    border: 1px solid #c0c0c0 !important;
    border-radius: 0px;
}

.review-filter-box .select2.select2-container--open.select2-container--default .select2-selection--single .select2-selection__rendered
{
    border: 1px solid #000 !important;
}
/* END filter */

/* review list */
.review-box
{
    border-bottom: 1px solid #d8d8d8;
    padding: 15px 0px;
}

.review-box:first-child
{
    border-top: 1px solid #d8d8d8;
	border-top:none;
}

.review-name
{
    margin-top: 3px;
    margin-bottom: -3px;
    overflow-wrap: break-word;
}

.review-info-box
{
    display: flex;
    align-items: flex-end;
}

.review-date
{
    color: #888;
    line-height: 1;
    margin-bottom: 3px;
    margin-left: 10px;
}

.review-text
{
    margin: 10px 0px;
}
/* END review list */
/***** END RATING / REVIEW *****/

/***** REQUEST PAGE *****/
.request-product
{
	margin-top:25px;
}

.request-product > div[class^='col-']
{
	margin-bottom:30px;
}

.request-product-box
{
	padding:15px 15px 10px 15px;
}

.request-delete
{
	position: absolute;
	top: -10px;
	right: -10px;
}

.request-delete a
{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding-top: 1px;
	border: 2px solid #000;
	border-radius: 100%;
    font-family: Quicksand;
	font-size: 16px;
    font-weight: bold;
	background: #000;
	color: #FFF !important;
}

.request-delete a:hover
{
	background:#777;
	border-color:#777;
	color:#FFF !important;
}

.request-button
{
	text-align: center;
	margin: 25px 0px 15px 0px;
}

.request-button button
{
	padding: 15px 40px;
	font-size: 18px;
	font-weight: bold;
}
/***** END REQUEST PAGE *****/

/***** FAQ PAGE *****/
.faq-cat-box
{
	margin-bottom:30px;
}

.faq-cat-box:last-child
{
	margin-bottom:0px;
}

.faq-cat-box h4
{
	margin-bottom:15px;
}

.faq-cat-box h4 > span
{
	font-weight: normal;
	font-size: 20px;
	color: #777;
}
/***** END FAQ PAGE *****/

/***** CHECKOUT *****/
/* step */
ul.checkout-step
{
    position: relative;
	display:flex;
	width:100%;
	margin:15px 0px 25px 0px;
    padding: 0px 0px 30px 0px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

ul.checkout-step:before
{
    position: absolute;
    content: "";
    width: 100%;
    top: calc(50% - 15px);
    left: 0;
    transform: translateY(-50%);
    border-bottom: 1px dashed #ddd;
}

ul.checkout-step.complete:before
{
    border-bottom: 1px solid #000;
}

ul.checkout-step > li
{
	position:relative;
	display: flex;
    width: 25%;
    color:#000;
    justify-content: center;
    margin: 0px;
    padding: 0px;
}

ul.checkout-step > li.active:before
{
    position: absolute;
    content: "";
    width: 100%;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    border-bottom: 1px solid #000;
}

ul.checkout-step > li > i
{
    width: 50px;
    border: 1px solid #000;
    border-radius: 100%;
    height: 50px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 9;
}

ul.checkout-step > li.curr-step > i
{
	border-color:#000;
	background:#000;
	color:#FFF;
}

ul.checkout-step > li > i > span
{
    font-family: "Quicksand";
    color: #999;
    position: absolute;
    bottom: -22px;
    font-size: 14px;
    font-weight: 300;
}

ul.checkout-step > li.curr-step > i > span
{
    color: #000;
}
/* END step */

/* alert box */
.msg-box
{
    display: inline-block;
    width: 100%;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 15px;
    margin-bottom: 20px;
}

.msg-box.success
{
    background: #e1efd2;
    color: #557b2d;
}

.msg-box.error
{
    background: #d4452e;
    color:#FFF;
}
/* END alert box */

/* product table */
table.item-box 
{
	width:100%;
  	border-collapse: collapse;
    line-height:1.3;
    font-size: 15px;
}

table.item-box th, table.item-box td 
{
  	border: 1px solid #DDD;
	line-height:1.3;
}

table.item-box thead
{
	background: #eee;
	font-weight: bold;
	text-transform: capitalize;
}

table.item-box th, table.item-box td 
{
	padding: 10px;
}

table.item-box span, .item-product-mobile
{
	display:none;
}

.store-box img
{
    width: 15px;
    margin-top: -3px;
    margin-right: 5px;
}

.store-box label
{
    margin-bottom: 0px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
}

tr.store-separator td
{
    border: 0px;
}

.item-product-box
{
	display:flex;
	align-items:center;
}

.item-product-image
{
	width:100px;
	margin-right:15px;
	flex-shrink:0;
    text-align: center;
}

.item-product-image img
{
    max-height: 100px;
}

.item-product-info
{
	flex-grow:1;
    line-height: 1.4;
}

.item-product-info a
{
    display: block;
	color:#000;
}

.item-product-info a:hover
{
	color:#d60000;
}

.item-product-action-box
{
    margin-top: 15px;
    margin-bottom: 5px;
}

.item-product-action-box > a
{
    display: inline-block;
}

.item-product-detail
{
	margin-top:0px !important;
	margin-bottom:0px !important;
	line-height:1.5;
	width:100%;
    padding: 0px;
    list-style: none;
}

.item-product-detail > li
{
    display: inline-block;
    padding: 3px 10px;
    padding-left: 10px !important;
    font-size: 13px;
    background: #EEE;
    border: 1px solid #ccc;
    margin-right: 7px;
    margin-top: 7px;
}

.item-product-detail > li > label
{
    font-weight: 500;
}

.item-product-error
{
	display: inline-block;
	background: #d4452e;
	color: #FFF;
	font-size: 13px;
	padding: 3px 10px;
    margin-right: 7px;
	margin-top: 7px;
}

.item-product-ori-price
{
    color: #888;
}

.item-product-note
{
    margin-top: 20px;
}

.item-product-note > label
{
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin-bottom: 3px;
}

.item-product-note > textarea
{
    border: 1px solid #ddd;
    border-radius: 0px;
    min-height: unset;
    height: 50px;
    resize: none;
    background: #FFF;
    padding: 5px 7px;
    font-size: 14px;
}

table.item-box .product-info-quantity-box
{
	justify-content:center;
    margin-bottom: 0px;
}

table.item-box .product-info-quantity-box button
{
	padding:7px 10px;
}

table.item-box .product-info-quantity-box input
{
	width: 40px;
	padding: 7px 5px;
}

.item-product-stock
{
	font-size:14px;
	margin-top:5px;
	display:none;
}

.item-product-stock strong
{
    display: inline-block;
    width: 100%;
}

.item-delete a,
.item-delete a:not([href]):not([tabindex])
{
	color:#000;
	font-size:18px;
}

.item-delete a:hover,
.item-delete a:not([href]):not([tabindex]):hover
{
	color:#d60000;
}
/* END product table */

.cart-note-box label
{
	width:100%;
	font-weight:500;
    color: #000;
    margin-bottom: 5px;
}

.cart-note-box textarea
{
	width:100%;
	background:#FFF;
	height:90px;
    border: 1px solid #DDD;
    resize: none;
    border-radius: 0px;
    padding: 5px 7px;
}

/* total table */
.total-main-box
{
	display:inline-block;
	width:100%;
	margin-bottom:20px;
}

table.total-box
{
	width: 40%;
	float: right;
	margin-top: 50px;
  	border-collapse: collapse;
}

.checkout-total-box table.total-box
{
    float:none;
    width: 100%;
    margin-top: 35px;
}

.checkout-row .checkout-tab-box h5
{
    margin-bottom: 7px;
}

table.total-box
{
  	border: 1px solid #DDD;
	line-height:1.3;
}

table.total-box thead
{
	background: #eee;
	font-weight: bold;
	font-size: 18px;
}

table.total-box thead td
{
    border-bottom:1px solid #ddd;
}

table.total-box td 
{
	padding: 10px;
    border-top: 1px dashed #ccc;
}

table.total-box td:last-child
{
	width: 40%;
	font-weight: bold;
}

.btn-checkout
{
	float: right;
	padding: 10px 40px;
}

.cart-button-box
{
    text-align: right;
}

.cart-button-box .btn-secondary.btn-checkout
{
    float: none;
    margin-right: 15px;
}
/* END total table */

.cart-disabled-text
{
	float: right;
	width: 40%;
	color: #F00;
	font-weight: bold;
}

.checkout-return
{
	color:#000;
}

.checkout-return:hover
{
	color:#777;
}

.checkout-row h3
{
    font-size: 26px;
	margin-bottom:15px;
    font-weight: normal;
}

.checkout-row h3 + .notes
{
    margin-top: -20px;
    margin-bottom: 20px;
}

.checkout-row h5
{
	margin-bottom:15px;
}

/* shipping */
.checkout-notify-email
{
	margin-bottom:30px;
	margin-top:-10px;
}

.checkout-button-row
{
	align-items:center;
	margin-top:10px;
}

.checkout-ship-bill-box
{
    float: right;
    margin-top: 10px;
    margin-left: 20px;
    font-size: 16px;
}
/* END shipping */

/* checkout product box */
.checkout-product-col
{
	order:2;
}

/* product */
.checkout-item-box
{
	border: 1px solid #DDD;
	background: #fafafa;
	padding: 20px 30px;
	border-radius:5px;
}

.checkout-item-box table
{
	width:100%;
}

.checkout-item-box table td
{
	padding-bottom:10px;
}

.checkout-item-box table td:last-child
{
	font-weight:bold;
}

.checkout-item-product-box
{
	overflow:hidden;
	overflow-y:auto;
	max-height:320px;
	border-bottom: 1px solid #DDD;
	padding-bottom: 10px;
}

.checkout-item-box .item-product-image
{
	position: relative;
	border: 1px solid #DDD;
	border-radius: 5px;
	background: #FFF;
	padding: 5px;
	width:80px;
	margin-top:10px;
}

.checkout-item-product-qty
{
	position: absolute;
	display: inline-block;
	border-radius: 22px;
	background: #aaa;
	padding: 0px 7px;
	min-width: 22px;
	height: 22px;
	text-align: center;
	font-weight: bold;
	color: #FFF;
	top: -10px;
	right: -10px;
	font-size:13px;
	line-height:1.7;
}

#item-product-price
{
    display: none;
    font-weight: bold;
}
/* END product */

/* total */
.checkout-item-coupon-box
{
	display:flex;
    max-width: 200px;
    float: right;
}

.checkout-item-coupon-box input
{
	background:#FFF;
    border: 1px solid #ddd;
    border-radius: 0px;
    padding: 7px;
    border-right: 0px;
}

.checkout-item-coupon-box button
{
    padding: 0px 10px;
    font-size: 14px;
    border-radius: 0px;
}

.checkout-item-total
{
	font-size:24px;
}

.address-action-box.checkout-coupon
{
    margin-top: 0px;
    font-weight: normal;
}

.address-action-box.checkout-coupon a:not([href]):not([tabindex]):hover
{
    text-decoration: none;
}

.address-action-box.checkout-credit
{
    display: inline-block;
    color: #f4891f;
    font-weight: normal;
}
/* END total */
/* END checkout product box */

/* checkout info */
.checkout-info-box
{
	border:1px solid #DDD;
	border-radius:5px;
	padding:0px 20px;
	font-size:15px;
    margin-bottom: 35px;
}

.checkout-info-box table
{
    width: 100%;
}

.checkout-info-box td
{
	vertical-align:top;
	border-bottom:1px solid #DDD;
	padding:7px 0px;
}

.checkout-info-box tr:last-child td
{
	border-bottom:0px;
    padding-bottom: 10px;
}

.checkout-info-box td:last-child
{
	color:#000;
}

.checkout-info-box td br
{
	margin-bottom:0px;
}

.checkout-info-box span
{
    color: #666;
    margin-left: 5px;
}

.checkout-info-box .address-action-box
{
    margin-top: 0px;
}

table.item-box tr.store-total-box,
table.item-box tr.store-delivery-box
{
    background: #f3f3f3;
}

table.item-box tr.store-delivery-box td
{
    border-width: 0px;
    border-bottom: 1px dashed #CCC;
}

table.item-box tr.store-delivery-box td.store-notes
{
    border-right: 1px dashed #ccc;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

table.item-box tr.store-delivery-box td.store-notes:first-child:last-child
{
    border-right:1px solid #ddd;
}

table.item-box tr.store-delivery-box td.store-notes > div
{
    display: flex;
}

table.item-box tr.store-delivery-box td.store-notes:first-child:last-child > div
{
    align-items: center;
}

table.item-box tr.store-delivery-box td.store-notes label
{
    font-weight: 500;
    margin-bottom: 0px;
    margin-right: 5px;
}

table.item-box tr.store-delivery-box td.store-notes input
{
    background: #FFF;
    border: 1px solid #ddd;
    border-radius: 0px;
}

table.item-box tr.store-total-box td
{
    border-width: 0px;
    border-bottom-width: 1px;
}

table.item-box tr.store-delivery-box td:first-child
{
    border-left-width: 1px;
}

table.item-box tr.store-total-box td:last-child,
table.item-box tr.store-delivery-box td:last-child
{
    border-right-width: 1px;
}
/* END checkout info */

/* summary */
.checkout-summary-box
{
    padding: 10px 20px;
    margin-bottom: 20px;
}

.checkout-summary-box h5
{
    margin-bottom: 0px;
}
/* END summary */

/* payment */
.checkout-tab-box
{
	margin-top:30px;
    margin-bottom: 25px;
}

.checkout-tab
{
	border: 1px solid #DDD;
	border-radius: 5px;
}

.checkout-tab-title
{
	padding: 10px 15px;
	border-top: 1px solid #DDD;
}

.checkout-tab-title label
{
	margin: 0px;
	font-weight: 500;
	width: 100%;
}

.checkout-tab-content
{
    display: none;
	border-top: 1px solid #DDD;
	background: #f3f3f3;
	padding: 15px 45px;
	font-size: 15px;
}

.checkout-tab-content.active
{
    display: block;
}

.checkout-tab > div:first-child
{
	border-top:0px;
}

.checkout-tab > div:last-child
{
	border-bottom-left-radius:5px;
	border-bottom-right-radius:5px;
}
/* END payment */

.checkout-complete-box
{
    border: 1px solid #DDD;
    border-radius: 10px;
    padding: 20px 30px;
    background: #EEE;
    margin-bottom: 30px;
}

.checkout-complete-box h2
{
    margin-bottom: 20px;
}

.checkout-complete-box.checkout-waiting h2
{
    color:#f4891f;
}

.checkout-complete-box.checkout-failed h2
{
    color:#eb3022;
}

.checkout-complete-box.checkout-success h2
{
    color:#05a948;
}

.checkout-complete-box h2 > i
{
    margin-right: 10px;
}

.checkout-complete-box a.button
{
    margin-top: 15px;
    margin-bottom: 5px;
}
/***** END CHECKOUT *****/

/***** ACCOUNT PAGE *****/
.sidebar-account-box a
{
    display: inline-block;
    width: 100%;
}

.sidebar-account-box a.active
{
	color:#000;
}

/* address */
.address-box
{
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.address-box > span a
{
    color: #444645;
}

.address-action-box
{
    font-size: 15px;
    margin-top:5px;
    color:#999;
}

.address-action-box a:not([href]):not([tabindex]),
.address-action-box a
{
    color:#f4891f;
}

.address-action-box a:after
{
    content:"|";
    color: #bbb;
    padding: 0px 7px 0px 10px;
}

.address-action-box a:last-child:after
{
    display: none;
}

.address-action-box a:not([href]):not([tabindex]):hover,
.address-action-box a:hover
{
    text-decoration: underline;
}
/* END address */

/* request detail */
.detail-box
{
    margin-top: 15px;
}

.detail-box label
{
    width: 100%;
    margin-bottom: 0px;
    font-weight: bold;
}
/* END request detail */

table.item-box td.account-order-total
{
    padding: 0px;
}

table.item-box td.account-order-total table.total-box
{
    width: 100%;
    max-width: 320px;
    margin: 0px;
}
/***** END ACCOUNT PAGE *****/

/***** TABLE LISTING (combine with item-box) *****/
.table-listing
{
    margin-top: 20px;
}

.table-listing.table-row-top tbody td
{
    vertical-align: top;
}

ul.voucher-term
{
    margin-top: 5px;
    list-style: disclosure-closed;
    font-size: 14px;
}

ul.voucher-term > li
{
    padding-left: 5px;
}

.voucher-error-box
{
    display: inline-block;
    background: red;
    color: #FFF;
    font-size: 12px;
    padding: 1px 7px;
}

.slip-box
{
    margin-top: 5px;
    background: #EEE;
    padding: 7px 15px;
    margin-bottom: 10px;
}

.slip-box label
{
    font-weight: bold;
}

.slip-box button.BtnSubmit
{
    margin-top: 15px;
    margin-bottom: 7px;
}

.slip-file
{
    display: block;
    margin-bottom: 5px;
}
/***** END TABLE LISTING *****/

/***** SIDEBAR *****/
/* filter sidebar */
ul.filter-box
{
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0px 5px 0px;
}

ul.filter-box li
{
    display: flex;
    color: #FC5C1C;
    margin-right: 25px;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 5px;
    padding: 0px;
}

ul.filter-box li > i
{
    margin-right: 5px;
    margin-top: 4px;
}

ul.filter-box li:last-child
{
    width: 100%;
    border: 1px solid #FC5C1C;
    border-radius: 5px;
    text-align: center;
    padding: 3px 5px 5px 5px;
    margin-top: 10px;
    margin-right: 0px;
    justify-content: center;
    align-items: center;
}

ul.filter-box li:last-child > i
{
    border: 1px solid #FC5C1C;
    padding: 2px 3px 3px 3px;
    border-radius: 100%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    margin-top: 1px;
}

ul.filter-box li:last-child:hover
{
    background: #d60000;
    color: #FFF;
}

ul.filter-box li:last-child:hover > i
{
    border-color: #FFF;
}
/* END filter sidebar */

.sidebar
{
	margin-bottom:30px;
	margin-top:7px;
}

aside.sidebar:last-child
{
	margin-bottom:0px;
}

.sidebar h4
{
	font-size: 16px;
	text-transform: capitalize;
	border-bottom: 2px solid #ddd;
	padding-bottom: 10px;
}

.sidebar ul
{
	list-style:none;
	padding:0px;
}

.sidebar ul li
{
	padding:0px;
	margin-bottom:0px;
}

.sidebar ul ul
{
	display:none;
}

.sidebar .toggle-arrow.enable::after
{
    top:26%;
    right: 5px;
}

.sidebar .toggle-arrow.enable.active::after
{
    top:55%;
}

.sidebar-sub-box
{
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
}

.sidebar-sub-box > ul
{
    overflow-y: auto;
    max-height: 170px;
}

.sidebar-sub-box + button
{
    margin-top: 5px;
    width: 100%;
}
/***** END SIDEBAR *****/

/***** NOT FOUND *****/
.notfound-box
{
	margin:30px auto;
	text-align:center;
}

.notfound-box img
{
	margin-bottom:70px;
	max-width:80%;
}

.notfound-title
{
	font-size: 36px;
	line-height: 1.5;
	margin-bottom: 26px;
	font-weight: 400;
}

.notfound-text
{
	font-size: 16px;
}

.notfound-box a.button
{
	margin-top:60px;
	padding:15px 34px 16px;
	border-radius:30px;
}
/***** END NOT FOUND *****/

/***** SUBSCRIBE BOX *****/
.subscribe-form
{
	display:flex;
}

.subscribe-form input
{
    border-radius: 0px;
	border-color:transparent;
	flex-grow:1;
}

.subscribe-form button
{
	border-radius:0px;
	margin-left:-3px;
	background:#FFF;
	text-transform:uppercase;
    border: 2px solid #d60000;
    color: #444645;
    font-weight: bold;
    min-width: 110px;
}

.subscribe-form button:hover
{
    box-shadow: inset 0 0 0 100px rgba(0,0,0,0.2);
    border-color: #000;
}
/***** END SUBSCRIBE BOX *****/

/***** ACCORDION *****/
.accor-box
{
	border: 1px solid #DDD;
	background: #fff;
	margin-bottom: 15px;
}

.accor-box > h4
{
	margin-bottom: 0px;
	line-height: 1.5;
}

.accor-box > h4.active
{
	background: #000;
}

.accor-box > h4 > a
{
	display: flex;
	width: 100%;
	align-items: center;
	padding: 10px 15px;
	color: #444645;
	cursor:pointer;
	font-size: 18px;
	flex-grow: 1;
	padding-right: 10px;
}

.accor-box > h4.active > a, .accor-box .toggle-arrow.enable.active::after
{
	top: 77%;
}

.accor-box .toggle-arrow.enable::after
{
	border-width: 7px;
    right: 10px;
    left: unset;
}

.accor-box .accor-content
{
	display:none;
	padding: 15px;
	border-top: 1px solid rgb(221, 221, 221);
}

.accor-box .accor-content.active
{
	display:block;
}
/***** END ACCORDION *****/

/**** PAGINATION ****/
.pagination
{
	display:inline-block;
	width:100%;
	text-align:center;
	margin:20px 0px 10px 0px;
}

.pagination > a
{
	position:relative;
	display:inline-block;
	vertical-align:middle;
	border-radius: 5px;
	margin: 0 3px 10px 3px;
	padding: 3px 10px;
	border: 1px solid #ddd;
	line-height:1.5;
	color:#777;
	font-size:14px;
	min-width:29px;
	height:29px;
}

.pagination > a:hover, .pagination > a:focus
{
	background:#EEE;
}

.pagination > a.active, .pagination > a.active:hover, .pagination > a.active:focus
{
	background:none;
	border-color:#222;
	color:#222 !important;
}

.pagination a.prev-next
{
	font-size:13px;
}

.pagination a.prev-next > span
{
	padding-top:4.5px;
}
/**** END PAGINATION ****/

/**** SELECTPICKER ****/
.select2-container .select2-choice, .select2-container .select2-selection
{
    border-radius: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered
{
	text-align:left;
	padding: 7px 35px 7px 15px;
	font-size:15px;
	color:#000;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder 
{
    color: #bbb;
}

.select2-results__option
{
	font-size: 15px;
	padding: 5px 10px;
	background: #fff;
}

.select2.select2-container--open
{
     z-index: unset;
}

.select2-container--open
{
    z-index: 9999999999;
}

.select2-container--open .select2-dropdown
{
    border-color: #DDD;
}

.select2-search--dropdown .select2-search__field
{
    padding: 7px 10px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected]
{
	background-color:#ddd;
	color:black;
}
/**** END SELECTPICKER ****/

/***** POPUP *****/
/* basic */
#bg-overlay, #bg-sub-overlay
{
	position:fixed;
    display: none;
	width:100%;
	top:0;
    left:0;
    bottom: 0;
    right: 0;
	background-color: rgba(0, 0, 0, .5);
	z-index:999;
    overflow: auto;
}

#bg-sub-overlay
{
    z-index: 99;
}

#bg-overlay > i
{
    display: none;
	font-size: 65px;
	position: absolute;
	top: 45%;
	left: 47%;
	transform: translate(-50%, -50%);
    z-index: 9999;
    color: #FFF;
}

#bg-overlay.loading > i
{
    display: block;
}

#popup-close, #popup-close2
{
    position:fixed;
    display: none;
	cursor:pointer;
	color: #fff;	
    top:0px;
    right:25px;
	font-size: 32px;
	z-index:99;
    line-height: 1.3;
}

#popup-close2
{
    position: absolute;
    width: 40px;
    top: 0px;
    right: 0px;
    transform: unset;
    display: block;
    padding-right: 7px;
    color: #000;
    text-align: right;
}

#popup-close:hover
{
    color: #666;	
}
/* END basic */

/* alert */
#popup-alert-box
{
	position: relative;
    display: none;
    width: 30%;
	max-width: 350px;
    top: calc(50% - 30px);
    transform: translateY(-50%);
	background: #EEE;
	border-radius: 5px;
	padding: 15px 20px;
    margin: 30px auto;
	font-size:15px;
	color: #000;
	text-align: center;
	box-shadow: 0 0px 5px rgba(0,0,0,0.19),6px 6px 6px rgba(0,0,0,0.22);
}

#popup-alert-box.popup-alert-sub-box
{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0px;
    z-index: 99;
    overflow: auto;
    max-height: 80vh;
}

#popup-alert-box > span
{
	display: inline-block;
	width: 100%;
	margin-bottom: 15px;
}

#popup-alert-box .error-msg
{
	text-align:left;
}

#popup-alert-box .error-msg > strong
{
	display:inline-block;
	width:100%;
	margin-bottom:5px;
    color: red;
}

#popup-alert-box button
{
	margin-bottom:10px;
    margin-top: 15px;
	box-shadow: 0 0px 5px rgba(0,0,0,0.19),2px 2px 2px rgba(0,0,0,0.22);
}

#popup-alert-box button:hover
{
	box-shadow: inset 0 0 0 100px rgba(0,0,0,0.2);
}
/* END alert */

/* confirmation */
.confirm-box
{
    display: inline-block;
    width: 100%;
    margin:7px 0px;
}

.confirm-box a
{
    color: #000;
}

.confirm-button-box
{
    display: flex;
    margin-top:15px;
    margin-bottom: -15px;
}

.confirm-button-box > button
{
   width:100%;
}

.confirm-button-box > button:first-child
{
    margin-right: 15px;
}
/* END confirmation */

/* info (form) */
#popup-info-container
{
	position: relative;
    display:none;
    width:550px;    /*changed by Jesa on 01/10/2020, originally 50%*/
	height:100%;
	top: 35%;     /*changed by Hami on 25/09/2020 from 50%*/
	left: 35%;	  /*changed by Hami on 25/09/2020 from 50%*/
	transform: translate(-10%, -35%);   /*changed by Hami on 25/09/2020 from translate(-50%, -50%)*/
}

#popup-info-box
{
	position:relative;
	background: #FFF;
	box-shadow: 0 0px 5px rgba(0,0,0,0.19),6px 6px 6px rgba(0,0,0,0.22);
    padding:20px 35px;
    border-radius: 5px;
    margin: 30px auto;
}

#popup-info-box.popup-full
{
    padding: 0px;
}

#popup-info-box.middle
{
    top:calc(50% - 30px);
    transform: translateY(-50%);
}

#popup-info-box h3
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    margin-bottom: 10px;
    line-height: 1.4;
}

#popup-info-box.popup-full h3
{
    padding-top: 25px;
}

#popup-info-box h3 img
{
    width: 22px;
    margin-top: 2px;
    margin-right: 10px;
	display: none; /* added by Jesa on 01/10/2020 */
}

#popup-info-box button
{
	text-transform:uppercase;
    margin-top: 10px;
	border-radius: 0; /* added by Jesa on 01/10/2020 */
}

#popup-info-box .mt-10.text-center /* added by Jesa on 01/10/2020 */
{
	font-size: 14px;
}

/* END info (form) */

/* product */
#popup-alert-box.popup-product
{
	width:45%;
    max-width: 550px;
}

#popup-alert-box.popup-product > span
{
    margin-bottom: 0px;
}

.popup-product-box
{
	display:flex;
	align-items:center;
}

.popup-product-image
{
	max-width: 100px;
	margin-right: 30px;
}

.popup-product-info
{
	text-align:left;
}

.popup-product-info h5
{
	font-weight: bold;
	text-transform: uppercase;
	color: #000;
	line-height:1.4;
}

.popup-product-detail
{
	margin-bottom:15px;
	margin-top:-5px;
	font-size:14px;
	color:#444645;
}

.popup-product-detail label
{
	margin-bottom:0px;
}

.popup-product-detail li
{
    margin-bottom: 0px;
    padding-left: 3px;
}

.popup-product-info [type="checkbox"] + label
{
	cursor: default;
	padding-left: 25px;
    color:#0EAB0C;
}

.popup-product-info [type="checkbox"]:checked + label::before
{
	background:none;
	border:0px;
}

.popup-product-info [type="checkbox"] + label::after
{
	background:none;
	border-color:#333;
}

.popup-product-button
{
	margin-top:20px;
}

#popup-alert-box .popup-product-button button
{
    margin-top: 0px;
}

.popup-product-button button:first-child
{
	margin-right:10px;
}
/* END product */
/***** END POPUP *****/

/***** FOOTER *****/
/* content */
.footer-big
{
	padding:30px 0; 
	box-shadow: 1px 1px 10px rgba(0,0,0,0.15);
    background: #ffddcf;
    color: #444645;
}

.footer-big .row > div
{
	padding:15px 15px 10px 40px;
}

.footer-big .row > div:first-child
{
	border-right: 1px solid #ececec;
	padding-right:40px;
	padding-left: 15px; 
}

.footer-big .row > div:nth-child(2) 
{
	padding-left:30px;
}

.footer-big h4
{
	font-family: "Quicksand", sans-serif;
	font-size:20px; 
	text-transform:uppercase;
	margin-bottom:10px;
	font-weight:bold;
}

.footer-big ol, .footer-big ul
{
	list-style:none;
	padding-left:0px;
	margin:0px;
}

.footer-big ol li, .footer-big ul li
{
	display:inline-block;
	width:100%;
	padding:3px 0px;
}

.footer-big ol li a, .footer-big ul li 
{
	font-family: "Quicksand", sans-serif;
}

.footer-payment-box
{
	background:#FFF;
	padding: 10px 0px;
	text-align:center;
}

.footer-payment-box img
{
	max-height:24px;
	margin:5px;
    width: auto !important;
}

.footer-social
{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0px;
}

.footer-social i.fa
{
	background:#3F4040;
	border-radius:5px;
	width: 25px;
	height: 25px;
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	margin-right: 7px;
}

.footer-social i.fa > span
{
	display:none;
}

.footer-social strong
{
	font-family: "Quicksand", sans-serif;
	font-weight:500;
}
/* END content */

/* copyright */
.mini-footer
{
	background-color: #e0e0e0;
	color:#7F7F7F;
	font-size:14.5px;
}

.mini-footer p
{
	margin-bottom: 0px;
	padding: 10px 0px;
	text-align: center;
}

.mini-footer p a
{
	color:#000;
}

.mini-footer p a:hover
{
	color:#7F7F7F;
}
/* END copyright */

/* back to top */
.go_top 
{
	position: fixed;
	width: 40px;
	height: 40px;
	right: 90px;
	bottom: 20px;
	cursor: pointer;
	background: transparent;
	border:2px solid #3f4040;
	font-size:20px;
	color: #3f4040;
	border-radius: 50%;
	visibility:hidden;
	text-align:center;
	padding-top:1px;
	z-index: 99;
}

.go_top:hover
{
	background: #3f4040;
	color:#FFF;
}
/* END back to top */
/***** END FOOTER *****/

/***** LOADING PAGE *****/
.loading-box
{
	width: 40%;
	margin: 0 auto;
}

.loading-box h1
{
	font-size: 60px;
	text-transform: uppercase;
}
/***** END LOADING PAGE *****/

/***** DATEPICKER ******/
.ui-datepicker
{
    z-index: 999 !important;
}

.ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-next.ui-state-hover
{
    border: 0px;
    background: transparent;
}

.ui-datepicker .ui-datepicker-prev-hover
{
    left: 2px;
    top: 2px;
}

.ui-datepicker .ui-datepicker-next-hover
{
    right: 2px;
    top: 2px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span
{
    display: none;
}

.ui-datepicker .ui-datepicker-prev:before
{
    content: "\f053";
    font-family: 'FontAwesome';
    left: 47%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.ui-datepicker .ui-datepicker-next:before
{
    content: "\f054";
    font-family: 'FontAwesome';
    left: 55%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}
/***** END DATEPICKER ******/

/***** ANIMATION *****/
[data-animate]
{
	will-change:filter, transform, opacity;
 	animation-fill-mode:forwards;
 	opacity:0 !important;
 	transition:filter 1.3s, transform 1.6s, opacity 0.7s ease-in
}

[data-animate="bounceInLeft"], [data-animate="bounceInUp"], [data-animate="bounceInDown"], [data-animate="bounceInRight"]
{
 	transition:transform 0.8s cubic-bezier(0, 0.195, 0, 1.465),opacity 0.5s ease-in
}

[data-animate="bounceInLeft"]
{
 	transform:translate3d(-300px, 0, 0)
}

[data-animate="blurIn"]
{
 	filter:blur(15px)
}

[data-animate="fadeInLeft"]
{
 	transform:translate3d(-70px, 0, 0)
}

[data-animate="fadeInRight"]
{
 	transform:translate3d(70px, 0, 0)
}

[data-animate="bounceInUp"], [data-animate="fadeInUp"]
{
 	transform:translate3d(0, 70px, 0)
}

[data-animate="bounceInRight"]
{
 	transform:translate3d(300px, 0, 0)
}

[data-animate="bounceIn"]
{
 	-ms-transform:scale(1.3);
 	transform:scale(1.3)
}

[data-animate="bounceInDown"], [data-animate="fadeInDown"]
{
	transform:translate3d(0, -70px, 0)
}

[data-animate="flipInY"]
{
	transform:perspective(400px) rotate3d(0, 1, 0, -90deg) translate3d(15px, 0, 0);
	-webkit-backface-visibility:visible;
	backface-visibility:visible
}

[data-animate="flipInX"]
{
 	transform:perspective(400px) rotate3d(1, 0, 0, 90deg) translate3d(0, -15px, 0);
 	-webkit-backface-visibility:visible;
 	backface-visibility:visible
}

[data-animated="true"]
{
 	animation-delay:.1s;
 	transform:translate3d(0, 0, 0) scale(1);
 	opacity:1 !important
}

[data-animate="none"]
{
 	opacity:1 !important
}

[data-animated="true"][data-animate="blurIn"]
{
 	filter:blur(0)
}

[data-animated="false"] 
{
 	transition:none !important
}

[data-animate]:hover 
{
 	transition-delay:0s !important
}

[data-animate-delay="100"] 
{
 	transition-delay:.1s
}

@keyframes stuckMoveDown 
{
 	0% 
	{
  		transform:translateY(-100%)
 	}
 
 	100% 
	{
  		transform:translateY(0)
 	}
}

@keyframes rotateDown
{
  	0% 
	{
    	transform: rotate(180deg);
  	}
  
  	100% 
	{
    	transform: rotate(360deg);
  	}
}

@keyframes rotateUp 
{
  	0% 
	{
    	transform: rotate(0deg);
  	}
  
  	100% 
	{
    	transform: rotate(180deg);
  	}
}
/***** END ANIMATION *****/

/***** OTHERS *****/
.mt-10
{
	margin-top:10px;
}

.mb-10
{
	margin-bottom:10px;
}

.mt-25
{
	margin-top:25px;
}

.notes
{
	color: #999;
	font-weight: 500;
}

h3 + .notes
{
    margin-top: -10px;
    font-size: 15px;
    font-weight: normal;
}

.password-hints
{
    position: absolute;
    background: #FFF;
    bottom: 55px;
    left: 0px;
    z-index: 9;
    border: 1px solid #DDD;
    padding: 15px;
    font-size: 14px;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.15);
}

.password-hints:before
{
    position: absolute;
    display: inline-block;
    content: "";
    border: 6px solid transparent;
    border-color: transparent transparent #fff #fff;
    box-shadow: -1.5px 1.5px 0 0 #ddd;
    bottom: -5px;
    left: 40px;
    transform: rotate(-45deg);
    background: #FFF;
}

.password-hints li
{
    padding-left: 5px;
}

.password-suggest
{
    position: relative;
    width: 100%;
    background: #FFF;
    z-index: 9;
    border: 1px solid #DDD;
    display: flex;
    padding: 7px 15px;
    font-size: 14px;
}

#password-suggest-text
{
    text-align: right;
    flex-grow: 1;
}

.hide
{
    display: none;
}
/***** END OTHERS *****/

/***** STORES *****/
.store-banner
{
    margin-top: -30px;
}

.store-banner img
{
    width: 100%;
}

.store-details
{
    display: flex;
    margin: 20px 0px;
}

.store-logo
{
    width: 200px;
    flex-shrink: 0;
    padding-right: 20px;
}

.store-loc
{
    font-weight: 600;
    margin-top:-10px;
}

.store-desc
{
    flex-grow: 1;
}

.store-desc h2
{
    line-height: 1.3;
    font-weight: bold;
}

ul.store-menu
{
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-bottom: -15px;
    margin-top: 30px;
    border-bottom: 1px solid #ececec;
}

ul.store-menu > li
{
    display: inline-block;
    border: 1px solid #ececec;
    margin-right: 5px;
    padding: 7px 20px;
    font-weight: bold;
    margin-bottom: 0px;
    border-bottom: 0px;
    cursor: pointer;
}

ul.store-menu > li:last-child
{
    margin-right: 0px;
}

ul.store-menu > li.active, ul.store-menu > li:hover
{
    background: #d60000;
    color: #FFF;
}

.store-info
{
    padding: 40px 20px;
}
/***** END STORES *****/

/***** RETURN *****/
.order-button-box a + a
{
    margin-left: 7px;
}

.square-photo
{
    display: flex;
    margin-top: -7px;
}

.square-photo .square-photo-box
{
    margin-right: 5px;
    height: 100%;
    max-width: 100px;
    min-height: 100px;
    text-align: center;
}

.square-photo .square-photo-box:last-child
{
    margin-right: 0px;
}

.square-photo .square-photo-box > a:first-child
{
    display: inline-block;
    width: 100%;
    height: 100px;
}

.square-photo .square-photo-box > a:last-child [type="checkbox"] + label, [type="radio"] + label
{
    margin-top: 3px;
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 1.9;
}

.square-photo-box img
{
    height: 100%;
    width: 100%;
    border: 1px dashed #ccc;
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    padding: 5px;
}

.square-photo .file_box
{
    border: 0px;
    max-width: 100px;
    height: 100px;
    text-align: center;
}

.square-photo .file_text
{
    border: 1px dashed #ccc;
    background: #f4f5f8;
    color: #666;
    padding: 10px 15px;
    font-size: 14px;
    word-break: break-word;
}

.square-photo .file_btn
{
    display: none;
}

.return-notes
{
    font-size: 15px;
    margin-bottom: 20px;
}

.return-notes > li
{
    margin-bottom: 0px;
    padding-left: 0px;
}
/***** END RETURN *****/

/***** CHAT *****/
.chat-now-icon
{
    background: #d60000;
    display: inline-block !important;
    vertical-align: middle;
    margin-left: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    border-radius: 20px;
    padding: 1px 10px !important;
    cursor: pointer;
    width: auto !important;
}

.chat-now-icon > i
{
    font-size: 13px;
    margin-bottom: 3px;
    vertical-align: middle;
    margin-right: 3px;
}

.chat-icon
{
    position: fixed;
    right: 17px;
    bottom: 15px;
    background: #d60000;
    color: #FFF;
    border-radius: 100%;
    padding: 10px;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 36px;
    line-height: 1;
    z-index: 99;
    cursor: pointer;
    box-shadow: 2px 2px 7px rgba(0,0,0,0.52);
}

.chat-msg-count
{
    position: absolute;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 100%;
    padding: 6px 10px;
    z-index: 1;
    font-size: 14px;
    bottom: 45px;
    right: 0px;
}

.chat-box
{
    position: fixed;
    right: 17px;
    bottom: 0px;
    width: 0px;
    height: 0px;
    background: #FFF;
    box-shadow: 0 0 7px 0 #999;
    z-index: -1;
    opacity: 0;
}

.chat-box.active
{
    opacity: 100%;
    z-index: 999;
    width: 700px;
    max-height: 500px;
    height: 100%;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.chat-box .row
{
    height: 100%;
    flex-wrap: nowrap;
}

.chat-box .row > .col-md-4
{
    border-right: 1px solid #ddd;
    padding-right: 0px;
}

.chat-box .row > .col-md-8
{
    padding-left: 0px;
}

/* side */
.chat-side-title
{
    border-bottom: 1px solid #ddd;
    min-height: 45px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    font-weight: bold;
    font-size: 18px;
    color: #777;
}

.chat-side-title > i
{
    margin-right: 7px;
    margin-bottom: 2px;
}

.chat-list
{
    height: calc(100% - 45px);
    overflow-y: auto;
    overflow-x: hidden;
}

.chat-list ol
{
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.chat-list ol li
{
    display: flex;
    width: 100%;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    line-height: 1.3;
    padding: 10px;
    margin: 0px;
    align-items: center;
    cursor: pointer;
}

.chat-list ol li:hover, .chat-list ol li.active
{
    background: rgba(255, 95, 31, 0.2);
}

.chat-list ol li.unread
{
    background: #ccc;
}

.chat-list-img
{
    border-radius: 100%;
    background: #eee;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.chat-list-img img
{
    border-radius: 100%;
    object-fit: cover;
    height: 100%;
}

.chat-list-img img.no-image
{
    padding: 7px;
    object-fit: contain;
    height: auto;
    border-radius: 0px;
}

.chat-list-info
{
    flex-grow: 1;
    padding: 0px 7px;
}

.chat-list-name
{
    font-weight: bold;
    color: #000;
}

.chat-list-date
{
    font-size: 13px;
    color: #777;
}

.chat-list-delete
{    
    font-size: 17px;
    flex-shrink: 0;
}
/* END side */

/* msg */
.chat-msg-title
{
    border-bottom: 1px solid #ddd;
    min-height: 45px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
}

.chat-title
{
    flex-grow: 1;
    font-weight: bold;
    color: #000;
    font-size: 18px;
}

.chat-close
{
    cursor: pointer;
    flex-shrink: 0;
}

.chat-close-mobile,
.chat-back-mobile
{
    display: none;
}

.chat-msg-box
{
    height: calc(100% - 45px);
    background: #f9f9f9;
}

.chat-msg-content
{
    padding: 0px 10px;
    height: 100%;
    max-height: calc(100% - 45px - 110px);
    max-height: calc(100% - 45px - 12px);
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 14px;
}

.chat-msg-date
{
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 20px;
    font-weight: bold;
}

.chat-msg-left, .chat-msg-right
{
    display: flex;
    margin: 15px 0px;
    line-height: 1.3;
}

.chat-msg-right
{
    justify-content: flex-end;
}

.chat-msg-img
{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #eee;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-right: 7px;
}

.chat-msg-right .chat-msg-img
{
    margin-right: 0px;
    margin-left: 7px;
    order: 2;
}

.chat-msg-img img
{
    border-radius: 100%;
    object-fit: cover;
    height: 100%;
}

.chat-msg-img img.no-image
{
    padding: 7px;
    object-fit: contain;
    height: auto;
    border-radius: 0px;
}

.chat-msg-img > i
{
    font-size: 26px;
    color: #000;
}

.chat-msg-text
{
    max-width: calc(100% - 120px);
    background: #FFF;
    border-radius: 7px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    color: #000;
    border: 1px solid #ddd;
}

.chat-msg-time
{
    color: #777;
    font-size: 12px;
    margin-left: 7px;
    display: flex;
    align-items: flex-end;
}

.chat-msg-right .chat-msg-time
{
    order: -1;
    margin-left: 0px;
    margin-right: 7px;
}
/* END msg */

/* send */
.chat-msg-form
{
    border-top: 1px solid #ddd;
    padding: 10px;
}

.chat-msg-form > form
{
    display: flex;
    align-items: center;
}

.chat-msg-form input
{
    border: 1px solid #ddd;
    background: #FFF;
    border-radius: 20px;
    margin-right: 10px;
    padding: 5px 15px;
    color: #000;
}

.chat-msg-form a img
{
    width: 22px;
    margin-bottom: 2px;
}
/* END send */

/* empty */
.chat-empty-box
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-empty
{
    text-align: center;
    color: #777;
}

.chat-empty > i
{
    font-size: 40px;
    margin-bottom: 20px;
}
/* END empty */
/***** END CHAT *****/

/***** NOTIFICATION *****/
.member-menu ul li a.icon-notify
{
    color: #000 !important;
}

.icon-notify-no
{
    position: absolute;
    top: 2px;
    left: 60%;
    font-size: 11px;
    color: #FFF;
    height: 16px;
    min-width: 16px;
    text-align: center;
    background: #f4891f;
    border-radius: 10px;
    line-height: 1.5;
    font-weight: 500;
    padding: 0px 4px;
}

.header-notify-box
{
    position: absolute;
    display: none;
    padding-top: 10px;
    right: 0px;
    width: 400px;
    z-index: 99;
}

.header-notify-box.active
{
    display: block;
}

.header-notify-box > ol
{
    position: relative;
    background: #FFF;
    border: 1px solid #DDD;
    display: inline-block;
    width: 100%;
    z-index: 9;
    text-align: left;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.15);
    margin: 0px;
    padding: 0px;
}

.header-notify-box > ol:before
{
    position: absolute;
    display: inline-block;
    content: "";
    border: 6px solid transparent;
    border-color: transparent transparent #fff #fff;
    box-shadow: -1.5px 1.5px 0 0 #ddd;
    transform: rotate(135deg);
    z-index: 999;
    top: -5px;
    right: 12px;
    flex-wrap: wrap;
    background: #FFF;
}

.header-notify-box > ol > li
{
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #000;
    line-height: 1.3;
    width: 100%;
    padding: 10px 15px;
    border-top: 1px solid #DDD;
    cursor: pointer;
    margin: 0px;
}

.header-notify-box > ol > li:first-child
{
    border-top: 0px;
    cursor: default;
}

.header-notify-box > ol > li:first-child > div
{
    font-size: 18px;
    font-weight: bold;
    flex-grow: 1;
}

.header-notify-box > ol > li:first-child > a
{
    flex-shrink: 0;
}

.header-notify-box > ol > li a
{
    font-size: 15px;
    color: #d60000 !important;
    margin: 0px !important;
}

.header-notify-box > ol > li a:hover
{
    color: #d60000 !important;
}

.header-notify-box > ol > li:not(:first-child):hover
{
    background: #eee !important;
}

.header-notify-box > ol > li.notify-new
{
    background: rgba(255, 95, 31, 0.2);
}

.notify-close
{
    display: none;
}

.notify-icon
{
    margin-right: 15px;
    flex-shrink: 0;
}

.notify-icon > i
{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 100%;
    color: #FC5C1C;
    background: rgba(255, 95, 31, 0.2);
}

.notify-info
{
    flex-grow: 1;
}

.notify-info > p
{
    margin-bottom: 0px;
}

.notify-info > p.time
{
    color: #777;
    font-size: 13px;
}

.notify-mark
{
    margin-left: 15px;
    flex-shrink: 0;
    background: #087D7D;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    cursor: pointer;
}

.notify-mark > i
{
    color: #FFF;
}

.notification-box
{
    position: relative;
    left: unset;
    top: unset;
    display: block;
    width: 100%;
    z-index: 9;
}

.notification-box.header-notify-box > ol
{
    box-shadow: none;
    border-top: 0px;
}

.notification-box.header-notify-box > ol:before
{
    display: none;
}

.notification-box.header-notify-box > ol li:first-child
{
    display: none;
}
/***** END NOTIFICATION *****/

/* by josephine */
.products-location-box
{
    display: flex;
    align-items: center;
}

.products-location-box > div:first-child
{
    flex-grow: 1;
}

.products-location
{
    color: #888;
    padding-left: 10px;
    font-size: 13px;
}

.review-text > span
{
    display:none;
}

a.review-text-show
{
    color:#d60000 !important;
    font-size:15px
}

/* checkout v2 */
.checkout-site-header
{
    padding: 5px 0px;
    position: relative;
}

header.checkout-site-header + .content
{
    padding-top: 0px;
}

.checkout-box h4
{
    font-size: 15px;
}

.checkout-box a.checkout-login
{
    color:#d60000
}

.checkout-box a.checkout-login:hover
{
    border-bottom: 1px dotted;
}

.checkout-box .checkout-notify-email
{
    margin-top: 0px;
}

.checkout-banner
{
    height: 160px;
}

.checkout-banner img
{
    height: 100% !important;
    object-fit: cover;
}

.checkout-banner + .content
{
    padding: 0px;
}

.checkout-box > div
{
    padding-bottom: 30px;
}

.checkout-box,
.checkout-box input,
.checkout-box .input-row label.input,
.checkout-box .select2-container--default .select2-selection--single .select2-selection__rendered,
.checkout-box [type="checkbox"] + label
{
    font-size: 90%;
    font-weight: normal;
}

.checkout-box [type="checkbox"] + label::before
{
    top: 2px;
}

.checkout-box [type="checkbox"] + label::after
{
    top: 4.5px;
}

.checkout-summary-info-box
{
    background: #fafafa;
    box-shadow: 1px 0 0 #f5f5f5 inset;
    order: 1;
}

.checkout-summary-info-box table.item-box
{
    font-size: 14px;
}

.checkout-summary-info-box table.item-box td
{
    padding: 5px 7px;
}

.checkout-summary-info-box .store-box label,
.checkout-summary-info-box table.item-box td.store-notes
{
    font-size: 13px;
}

.checkout-summary-info-box table.item-box tr.store-separator td
{
    padding: 10px;
}

.checkout-summary-info-box table.item-box tr.cart-items td
{
    padding: 10px 7px;
}

.checkout-summary-info-box table.item-box tr.cart-items td:first-child
{
    border-right: 0px;
}

.checkout-summary-info-box table.item-box tr.cart-items td:last-child
{
    border-left: 0px;
}

.checkout-summary-info-box .item-product-image
{
    position: relative;
    border: 1px solid #ddd;
}

.checkout-summary-info-box .item-product-qty
{
    position: absolute;
    top: -7px;
    right: -7px;
    font-size: 11px;
    color: #fff;
    height: 18px;
    width: 18px;
    text-align: center;
    background: #f4891f;
    border-radius: 10px;
    line-height: 1.7;
    font-weight: 500;
}

.checkout-summary-info-box .item-product-info > a
{
    font-size: 14px;
}

ul.checkout-summary-info-details
{
    list-style: none;
    font-size: 12px;
    padding-left: 0px;
    margin-top: 3px;
}

ul.checkout-summary-info-details > li
{
    padding-left: 0px;
    margin-bottom: 2px;
}

ul.checkout-summary-info-details > li > label
{
    margin-bottom: 0px;
}

.checkout-summary-info-box .item-product-error
{
    font-size: 11px;
    margin-top: 3px;
}

.checkout-summary-info-box table.total-box
{
    width: 100%;
    margin-top: 30px;
}

.checkout-summary-info-box table.total-box thead
{
    font-size: 16px;
}

.checkout-summary-info-box table.total-box td
{
    padding: 5px 7px;
}

.checkout-summary-mobile
{
    display: none;
}

.checkout-box .checkout-info-box table
{
    font-size: 90%;
}

.checkout-box tr.store-delivery-fee td:first-child
{
    border-right: 0px !important;
}

.checkout-box tr.store-delivery-fee td:last-child
{
    border-right: 1px solid #DDD !important;
}

.checkout-box tr.store-delivery-fee td:last-child > div
{
    justify-content: flex-end;
}

.checkout-box tr.store-delivery-fee td:last-child > div > label
{
    margin-right: 0px !important;
}

.checkout-delivery-method-fee
{
    text-align: right;
    padding-top: 10px;
}

.checkout-box .checkout-coupon > a
{
    font-size: 90%;
}

#checkout-discount-voucher-box
{
    display: none;
}

.checkout-coupon-box
{
    display: flex;
    align-items: center;
    padding: 20px 0px;
}

.checkout-coupon-text
{
    min-width: 110px;
    flex-shrink: 0;
    width: auto;
}

#checkout-coupon-code
{
    margin-left: 0px;
}

#checkout-coupon-amount
{
    flex-grow: 1;
    color: #000;
    margin-left: 20px;
}

#checkout-coupon-amount .checkout-item-coupon-box
{
    max-width: unset;
    float: unset;
}

#checkout-coupon-amount .checkout-coupon
{
    display: inline-block;
    margin-left: 10px;
}

.checkout-info-box span#BillStateBox,
.checkout-info-box span.select2, .checkout-info-box span.select2 span
{
    margin-left: 0px;
}
/* END checkout v2 */
/* END by josephine */

/***** RESPONSIVE *****/
@media only screen and (max-width:991px)  /* ipad landscape */
{
    /* basic */
	h3
	{
		font-size:27px;
	}
    
    .logo img
    {
        max-width: 200px;
    }
    /* END basic */
    
    /* header */
    .topbar
    {
        margin-bottom: 68px;
    }
    
	header
	{
		padding:7px 0px 10px 0px;
	}
    
    header > .container > .row > div:first-child
    {
        display: flex;
        align-items: center;
    }
	
	.menu-icon
	{
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
		margin-top: 7px;
	}
	
	.menu-icon ul
	{
		justify-content:flex-start;
	}
	
	.menu-icon ul li a
	{
		margin-left:0px;
	}
	
	.menu-icon.member-menu ul li a img /*added by jesa on 27/08/2020*/
	{
		max-width: 24px;
	}
    
    header.sticky
    {
        z-index: 999;
    }
    
    body.overflow header.sticky
    {
        position: relative;
        z-index: 9;
    }
    /* END header */
	
	/* sliders */
	.sliders-box
	{
		margin-top:0px !important
	}
	
	.flickity-prev-next-button.previous
	{
		left:5px;
	}
	
	.flickity-prev-next-button.next
	{
		right:5px;
	}
	/* END sliders */
    
	/* menu */
	.category-menu 
	{
		display:none;
		position: relative;
		background: #fff;
		width: 300px;
		top: 0px;
		left: 0px;
		height: 100%;
		overflow-y: auto;
		padding:0px;
		box-shadow: 0 0px 5px rgba(0,0,0,0.19),6px 6px 6px rgba(0,0,0,0.22);
		overflow-x:hidden;
	}
	
	#SearchForm
	{
		margin:30px 20px 10px 20px;
	}
	
	#SearchForm input
	{
        border: 1px solid #000;
        border-radius: 0px;
        padding-left: 40px;
        padding-right: 15px;
	}
    
    #SearchForm input:hover, #SearchForm input:focus 
    {
        padding-left: 40px;
    }
	
	#SearchForm button
	{
		right:5px;
        right: unset;
        left: 10px;
	}
	
	.category-menu li
	{
		width:100%;
		margin:0px;
	}
	
	.category-menu > ul > li
	{
		border-bottom:1px solid #ececec;
        margin: 0px;
	}
	
	.category-menu > ul > li.active
	{
		border-bottom:0px;
	}
	
	.category-menu > ul > li > div.category-menu-top
	{
		display: flex;
        padding-bottom: 0px;
	}
    
    .category-menu > ul > li > div.category-menu-top.active,
    .category-menu > ul > li > div.category-menu-top.active::after
    {
        font-weight: bold;
        background:#eee;
    }

	.category-menu > ul > li > div.category-menu-top > a
	{
		display:inline-block;
		width:100%;
		margin:0px;
        padding: 10px 0px 10px 20px;
        font-size:16px;
		text-transform:capitalize;
        margin-right: 50px;
	}
	
	.category-menu > ul > li:hover,
    .category-menu > ul > li.active,
    .category-menu > ul > li:hover > div.category-menu-top.toggle-arrow.enable::after
	{
		background:#eee;
		color:#000;
	}
    
    .category-menu > ul > li > div.category-menu-top.toggle-arrow.enable::after
    {
        right: 25px;
        box-shadow: -2px 2px 0 0 transparent;
        background: transparent;
    }
    
    .category-menu > ul > li:last-child
    {
        border-bottom: 0px;
    }
    
	.sub-category-menu
	{
		display:none;
		position: relative;
		width:100%;
		top: 0px;
		box-shadow: none;
		border: 0px;
		margin: 0px;
		padding: 0px 45px 15px 30px;
        background-color: #eee !important;
		border-bottom:1px solid #ddd;
		overflow:hidden;
		margin-top:-5px;
        max-height: unset;
        min-height: unset;
	}
    
	.sub-category-menu > ul
	{
		width: 100% !important;
        background-color: #eee !important;
        padding:0px;
	}
	
	.sub-category-menu > ul > li
	{
		margin-bottom: 0px;
		width: 100%;
		padding: 0px;
	}
	
	.sub-category-menu > ul > li > a
	{
		border: 0px;
		padding: 7px 0px;
        color: #000 !important;
        padding-right: 0px;
        background-color: transparent !important;
	}
	
	.sub-category-menu > ul > li:last-child > ul
	{
		margin-bottom:0px;
	}
	/* END menu */
    
    /* homepage */
    .home-icon .sliders .home-icon-box
    {
        width: calc(100% / 3);
    }
    
    .home-icon .flickity-prev-next-button.previous
    {
        left: -2.9%;
    }
    
    .home-icon .flickity-prev-next-button.next
    {
        right: -3%;
    }
    
    .home-bestseller-content
    {
        max-height: 200px;
    }
    
    .sliders.products-sliders .featured-box
    {
        width: calc(100% / 4);
    }
    /* END homepage */
		
	/* footer */
	.footer-big
	{
		padding-bottom:20px;
	}
	
	.footer-big .row > div, .footer-big .row > div:first-child, .footer-big .row > div:nth-child(2)
	{
		padding:15px;
        border-right: 0px;
	}
	/* END footer */
    
    /* popup */
    #popup-info-container, #popup-alert-box
    {
        width: 70%;
    }
    /* END popup */
	
	/* product listing */
	.category-brands-sliders
	{
		width:95%;
	}
	
	.sliders-no-dots.category-brands-sliders .flickity-prev-next-button.previous
	{
		left:-30px;
	}
	
	.sliders-no-dots.category-brands-sliders .flickity-prev-next-button.next
	{
		right:-38px;
	}
	/* END product listing */
	
	/* product details */
	.product-info-brands-header .product-info-brands-logo
	{
		width:100px;
	}
	/* END product details */
		
	/* checkout */
	table.total-box, .cart-disabled-text
	{
		width:50%;
	}
	
	.checkout-product-col
	{
		order:unset;
		margin-bottom:30px;
	}
    
    .account-order .checkout-product-col
    {
        order: 1;
        margin-bottom: 0px;
    }
	/* END checkout */	
	
	.product-info-brands-item .row > div[class^='col-'] > a
	{
		height: 65px;
	}
    
    .topbanner
    {
        padding: 15px 0px; 
		display: none !important; /*added by Jesa on 16/10/2020 mobile top banner*/
    }
    
    .topbanner .homepage-banner
    {
        padding: 0px;
    }
    
    .checkout-ship-bill-box
    {
        float: unset;
        margin-left: 0px;
        margin-top: 0px;
    }
    
    .checkout-tab-box
    {
        margin-top: 0px;
        margin-bottom: 15px;
    }
    
    table.item-box td.account-order-total table.total-box
    {
        max-width: unset;
    }

    /***** by josephine *****/
    /* checkout v2 */
    .checkout-summary-info-box
    {
        order: 0;
    }

    .checkout-summary-mobile
    {
        display: flex;
        align-items: center;
        padding: 12px 0px;
        font-weight: bold;
        border-bottom: 1px solid #DDD;
        cursor: pointer;
    }

    .checkout-summary-mobile i.fa:first-child
    {
        margin-right: 5px;
    }

    .checkout-summary-mobile > div:last-child
    {
        font-size: 16px;
    }

    .checkout-summary-info-box ul.checkout-step,
    .checkout-summary-detail-box
    {
        display: none;
    }

    .checkout-summary-info-box
    {
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 0px !important;
        margin-bottom: 10px;
    }

    .checkout-summary-info-box.open
    {
        border-bottom: 1px solid #DDD;
    }

    .checkout-summary-info-box .checkout-summary-detail-box
    {
        padding-top: 20px;
        flex-grow: 1;
        width: 100%;
    }

    .checkout-summary-mobile
    {
        width: 100%;
        flex-grow: 1;
        order: -1;
    }

    #checkout-discount-voucher-box
    {
        display: block;
    }
    /* END checkout v2 */
    /***** END by josephine *****/
}

@media only screen and (max-width:767px) /* ipad */
{
    /* basic */
	h1
	{
		font-size:34px;
	}
	
	.logo img
	{
		max-width:200px;
	}
    
    .topbar
    {
        font-size: 14px;
    }
    
    .loading-box
	{
		width:60%;
	}
    /* END basic */	
    
	/* homepage */
    .home-icon .sliders .home-icon-box
    {
        width: calc(100% / 2);
    }

    .sliders.products-sliders .featured-box
    {
        width: calc(100% / 3);
    }
    
    .sliders.news-sliders .news-sliders-box
    {
        width: calc(100% / 2);
    }
    /* END homepage */
	
	/* products listing */
	.sidebar-select 
	{
		cursor:pointer;
		font-size:18px;
		line-height:1.3;
		display: inline-block;
		width: 100%;
		padding: 12px 15px;
		border-radius: 5px;
		margin-bottom: 20px;
		border: 1px solid #ddd;
		background: #eee;
		font-weight: 500;
	}
    
    .sidebar-select.toggle-arrow.enable:after
    {
        background: #eee;
    }
	
	.sidebar-select.active
	{
		border-bottom-right-radius: 0px;
		border-bottom-left-radius: 0px;
		margin-bottom:0px;
	}

	.sidebar-box
	{
		border: 1px solid #DDD;
		border-top: 0px;
		padding: 10px 15px 10px 15px;
		margin-bottom: 20px;
		box-shadow: 0 0px 5px rgba(0,0,0,0.19),6px 6px 6px rgba(0,0,0,0.22);
	}
	/* END products listing */
	
	/* product details */    	
	.product-info-side :nth-child(3) {
		margin-bottom: 30px;
	}
	
    .product-info-quantity-box button
	{
		margin-bottom: 0px !important;
	}
	
	.product-info-brands-header .product-info-brands-logo
	{
		width:120px; /*120px*/
	}
	/* END product details */
	
	/* account */
	.sidebar-account-box
	{
		display:block;
		margin-bottom:20px;
        box-shadow: unset;
        border: 1px solid #DDD;
        border-radius: 5px;
        background: #eee;
        font-weight: 500;
        padding: 0px;
	}
    
    .sidebar-account-box aside
    {
        margin: 0px;
    }
    
	.sidebar-account-box h4
	{
		padding: 12px 15px;
        border-bottom: 0px;
        margin: 0px;
        font-size: 18px;
        line-height: 1.3;
	}
    
    .sidebar-account-box h4.toggle-arrow.enable::after
    {
        background: #eee;
    }
	
    .sidebar-account-box h4.active
    {
        border-bottom: 1px solid #DDD;
    }
        
	.sidebar-account-box ul
	{
		display:none;
	}
    
    .sidebar-account-box h4.active.toggle-arrow.enable + .toggle-result
    {
        background: #FFF;
        height: 100%;
        padding: 10px 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.19),6px 6px 6px rgba(0,0,0,0.22);
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        font-weight: normal;
    }
	/* END account */
	
    /* popup */
    #popup-info-container, #popup-alert-box
    {
        width: 80%;
    }
    
    #popup-alert-box.popup-product
    {
        width: 65%;
    }
    /* END popup */
	
	/* brands */
	.brands-logo
	{
		max-width: 120px;
		max-height: 120px;
		margin-top: -25px;
		margin-right:20px;
	}
	
	.brands-header h2
	{
		font-size:24px;
		margin-top:15px;
	}
	/* END brands */
	
	/* checkout */	
	table.item-box
	{
		border:0px;
	}
	
	table.item-box thead
	{
		display:none;
	}
	
	table.item-box tr
	{
		display: inline-block;
		width: 100%;
		border: 1px solid #DDD;
		border-bottom:0px;
		margin-bottom: 30px;
	}
    
    table.item-box tr:last-child
    {
        margin-bottom: 0px;
    }
	
	table.item-box th, table.item-box td
	{
		display: flex;
		width: 100%;
		border:0px;
		border-bottom:1px solid #DDD;
		text-align:left !important;
		padding:0px;
	}
	
	.item-product-box
	{
		width:100% !important;
		text-align:left !important;
	}
	
	table.item-box span
	{
		display:inline-block;
	}
	
	.item-product-mobile
	{
		display: flex;
		align-items:center;
		padding:10px;
		flex-grow:1;
		border-right: 1px solid #DDD;
	}
	
	table.item-box td > div:last-child
	{
		display: flex;
		align-items:center;
		flex-wrap: wrap;
		justify-content: flex-end;
		padding: 10px;
		width: 200px;
		flex-shrink: 0;
	}
	
	table.item-box .product-info-quantity-box
	{
		justify-content:flex-end;
		margin-top:3px;
	}
	
	.item-delete a
	{
		padding: 10px;
		width: 100%;
		text-align: center;
		background: #eee;
	}
	
	.item-delete a > span
	{
		font-size:16px;
	}
	
	table.item-box tfoot tr, table.item-box tfoot td
	{
		border:0px;
		margin-bottom:0px;
		padding:0px;
	}
	
	table.item-box tfoot .row
	{
		padding:0px;
		margin:0px;
	}
	
	table.item-box tfoot .row > div
	{
		padding:0px;
	}
	
	.cart-note-box
	{
		margin-bottom:20px;
	}
	
	table.item-box tfoot td > div:last-child
	{
		width:100%;
		padding:0px;
	}
	
	table.total-box, .cart-disabled-text
	{
		width:70%;
	}
    
    table.item-box tbody
    {
        display: block;
        margin-bottom: 30px;
    }
    
    table.item-box tbody:last-child
    {
        margin-bottom: 0px;
    }
    
    table.item-box tr.store-separator
    {
        display: none;
    }
    
    table.item-box tr.store-box
    {
        margin-bottom: 15px;
    }
    
    table.item-box tr.store-box td
    {
        padding: 5px 10px;
        background: #EEE;
    }
    
    table.item-box tr.store-delivery-box, table.item-box tr.store-total-box, table.total-box tbody tr
    {
        margin-bottom: 0px;
        display: flex;
        flex-wrap: wrap;
    }
    
    table.item-box tr.store-total-box
    {
        border-top: 0px;
    }
    
    table.item-box tr.store-delivery-box td, table.item-box tr.store-total-box td, table.total-box tbody td
    {
        padding: 10px;
        width: auto;
        flex-grow: 1;
        border-bottom: 1px dashed #ccc;
    }
    
    table.item-box tr.store-delivery-box td:last-child, table.item-box tr.store-total-box td:last-child, table.total-box tbody td:last-child
    {
        max-width: 200px;
        flex-shrink: 0;
        justify-content: flex-end;
        border-left: 1px dashed #ccc;
    }
    
    table.item-box tr.store-total-box:last-child td
    {
        border-bottom: 1px solid #DDD;
    }
    
    table.item-box tr.store-delivery-box td.store-notes
    {
        width: 100%;
        border-right: 0px;
        max-width: unset;
    }
    
    table.item-box tr.store-delivery-box td.store-notes:first-child:last-child
    {
        border-left: 0px;
        border-right: 0px;
    }
    
    table.item-box tr.store-delivery-box td.store-notes label
    {
        margin-bottom: 5px;
    }
    
    table.item-box tr.store-delivery-box td.store-notes > div
    {
        justify-content: flex-start;
        width: 100%;
        padding: 0px;
        align-items: flex-start;
    }
    
    table.item-box tr.store-delivery-box td.store-notes.store-notes-empty
    {
        padding: 0px;
        border-bottom: 0px;
    }
    
    table.item-box tr.store-separator.total-row
    {
        display: block;
    }
    
    table.total-box
    {
        width: 100%;
        margin: 0px;
        border: 0px;
    }
    
    table.total-box thead
    {
        display: block;
    }
    
    table.total-box thead tr
    {
        border: 0px;
    }
    
    table.total-box thead td
    {
        padding:7px 10px;
        width: 100% !important;
    }
    
    table.total-box tbody
    {
        align-items: center;
    }
    
    table.total-box tbody tr
    {
        border: 0px;
    }
    
    table.total-box tbody tr:last-child td
    {
        border-bottom: 0px;
    }
    
    .total-main-box
    {
        margin-top: 30px;
        border: 1px solid #DDD;
    }
    
    .total-main-box table.total-box thead tr
    {
        display: block;
    }
    
    .total-main-box table.total-box thead td
    {
        display: block;
        border-top: 0px;
    }
    
    .total-main-box table.total-box tbody td
    {
        border-top: 0px;
    }
    
    .checkout-total-box table.total-box
    {
        margin-top: 0px;
    }
	/* END checkout */
    
    /* table listing */
    table.table-listing .hide-on-mobile
    {
        display: none;
    }
    
    table.table-listing .item-product-mobile
    {
        width: 150px;
        flex-grow: unset;
    }
    
    table.table-listing td > div:last-child
    {
        width: unset;
        flex-grow: 1;
    }
    
    table.table-listing.table-row-top .item-product-mobile
    {
        align-items: flex-start;
    }
    
    table.table-listing.table-row-top.item-box td > div:last-child
    {
        display: inline-block;
    }
    /* END table listing */
	
	.product-sliders.flickity-enabled.is-draggable .flickity-viewport
	{
		height: 322px !important;
	}

	.sliders-cell img, .product-info-image-box img
	{
		max-height: 322px;
	}
	
	.product-box > a
	{
		height: 243px
	}
    
    /* chat */
    .chat-box.active
    {
        width: calc(100% - 30px);
    }
    
    .chat-box .row > .col-md-4
    {
        width: 40%;
    }
    
    .chat-box .row > .col-md-8
    {
        width: 60%;
    }
    /* END chat */

    .checkout-summary-detail-box table.item-box tr.store-box
    {
        margin-bottom: 0px;
    }

    .checkout-summary-detail-box table.item-box tr.store-box td
    {
        background: transparent;
        padding: 5px 7px;
    }

    .checkout-summary-detail-box table.item-box tr.cart-items
    {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #DDD;
        margin-bottom: 0px;
    }

    .checkout-summary-detail-box table.item-box tr.cart-items:not(:last-child)
    {
        border-bottom: 0px;
    }

    .checkout-summary-detail-box table.item-box tr > td
    {
        border-bottom: 0px;
    }

    .checkout-summary-detail-box table.item-box td > div:last-child
    {
        padding: 5px 0px;
    }

    .checkout-summary-detail-box table.item-box tr.cart-items > td:first-child
    {
        flex-grow: 1;
    }

    .checkout-summary-detail-box table.item-box tr.cart-items > td:last-child
    {
        width: 150px;
        justify-content: flex-end;
    }

    .checkout-summary-detail-box table.item-box tr.store-delivery-box td
    {
        padding: 5px 7px;
    }

    .checkout-summary-detail-box table.item-box tr.store-delivery-box td.store-notes label
    {
        margin-bottom: 0px;
    }

    .checkout-summary-info-box table.total-box
    {
        margin-top: 0px;
    }

    .checkout-summary-detail-box table.item-box tr.store-delivery-box td.store-notes:first-child:last-child
    {
        width: 100%;
        max-width: 100%;
    }

    .checkout-summary-detail-box table.item-box tr.store-delivery-box.store-delivery-fee
    {   
        flex-wrap: nowrap;
        border-right: 0px;
    }

    .checkout-summary-detail-box table.item-box tr.store-delivery-box + .store-delivery-box
    {
        border-top: 0px;
    }

    .checkout-summary-detail-box table.item-box tr.store-delivery-box.store-delivery-fee td:last-child
    {
        width: 150px;
        border-left:0px
    }

    .checkout-summary-detail-box table.item-box tr.store-delivery-box.store-delivery-fee td:last-child > div
    {
        justify-content: flex-end;
    }
}

@media only screen and (max-width:576px) /* iphone plus */
{    
    /* basic */
    .mobile-mb-30 .col-sm-6:first-child, .mobile-mb-30 .col-sm-6 ~ .col-sm-6
    {
        margin-bottom: 30px;
    }
    
    .mobile-mb-30 .col-sm-6:last-child
    {
        margin-bottom: 0px;
    }
    
    .tooltip
    {
        display: none !important;
    }
    
    .loading-box
	{
		width:100%;
	}
    /* END basic */
    
    /* header */
    .topbar
    {
        margin-bottom: 60px;
    }
    
	.logo img
	{
		max-height:unset;
		max-width:100px;
	}
	
	.topbar-signup
	{
		text-align:right;
		margin-bottom:7px;
	}
	
	.menu-icon
	{
		margin-top:3px;
	}
    
    .menu-icon.member-menu ul li a img
    {
        max-width: 18px; /*changed by jesa on 27/08/2020, originally 15px*/
		padding-top: 2px; /*added by Jesa on27/08/2020*/
    }
	
	h3
	{
		font-size:20px;
	}
	
	.member-menu ul li a
	{
		margin:0px 5px;
	}

    img[src="https://dev.fitmate.com.my/uploads/logo_702002_230412103415.png"]
    {
        max-width: 100%;
    }
    
    /* END header */

    /* new menu */
    #SearchForm
    {
        margin-top: 50px;
    }

    .category-menu
    {
        width: 100%;
    }
    /* END new menu */
    
	/* sliders */
	.sliders .flickity-slider > div, .sliders-single > div, .homepage-banner .sliders-single > div, .homepage-banner .sliders .flickity-slider > div
	{
		padding-top:100%;
	}
    
    .homepage-banner .sliders-single > div, .homepage-banner .sliders .flickity-slider > div 
    {
        padding-top: 22%;
    }
    
    .homepage-banner
    {
        padding: 0px 0px 30px 0px;
    }
	
	.flickity-prev-next-button.previous
	{
		left:5px;
	}
	
	.flickity-prev-next-button.next
	{
		right:5px;
	}
	
	.sliders-no-dots .flickity-prev-next-button.previous
	{
		left:-35px;
	}
	
	.sliders-no-dots .flickity-prev-next-button.next
	{
		right:-35px;
		bottom: -70px; /*added by jesa on 25/08/20*/
	}
	
	.product-info-brands-item .sliders-no-dots .flickity-prev-next-button
	{
		right:0px;
	}
	
	.product-info-brands-item .sliders-no-dots .flickity-prev-next-button.previous
	{
		left:unset;
		right:20px;
	}
	/* END sliders */
    
    /* homepage */
    .home-icon .sliders .home-icon-box
    {
        width: 100%;
    }
    
    .home-icon .flickity-prev-next-button.previous
    {
        left: -6%;
    }
    
    .home-icon .flickity-prev-next-button.next
    {
        right: -7%;
    }
    
    .home-bestseller-monthly-box .row > div:first-child
    {
        margin-bottom: 30px;
    }
    
    .sliders.products-sliders .featured-box,
    .sliders.news-sliders .news-sliders-box
    {
        width: 100%;
    }
    
    .products-sliders .flickity-prev-next-button,
    .products-sliders .flickity-prev-next-button
    {
        bottom: -55px;
    }
    
    .products-sliders .flickity-page-dots,
    .news-sliders .flickity-page-dots
    {
        display: none;
    }
    /* END homepage */
    
    /* popup */
    #popup-alert-box
    {
        width: 90%;
    }
    
    #popup-info-container
    {
        width: 100%;
    }
    
    #popup-info-box
    {
        padding: 20px;
        margin-left: -95px;
		margin-right: 95px;
		margin-top: 0px;
        border-radius: 0px;
        height: 100%;
    }
    
    #popup-info-box.middle
    {
        top: unset;
        transform: unset;
    }
    
    #popup-close
    {
        width: 30px;
        height: 30px;
        top: 7px;
        right: 15px;
        border-radius: 100%;
        text-align: center;
        line-height: 0.75;
        color: #000;
        font-size: 32px;
    }
    
    #popup-alert-box, #popup-alert-box.popup-product
    {
        width: 90%;
    }
    
    /* product */
    .popup-product-box
    {
        flex-wrap: wrap;
    }
    
    .popup-product-image
    {
        margin: 7px auto 20px auto;
    }
    
    .popup-product-info
    {
        flex-grow: 1;
    }
    /* END product */
    /* END popup */
	
	/* footer */
	.footer-big h4
	{
		font-size: 16px;
		margin-bottom: 0px;
	}
		
	.footer-big h4 + ul
	{
		margin-top:5px;
	}
	
	.footer-big h4 + ul li
	{
		padding-left: 25px;
	}
	
	.footer-big .toggle-arrow.enable:after 
	{
		visibility: hidden;
	}
    
    .subscribe-form
    {
        flex-wrap: wrap;
    }
    
    .subscribe-form button
    {
        width: 100%;
        margin-top: 10px;
        margin-left: 0px;
    }
	/* END footer */
	
    /* category listing */
    .category-search #SearchForm
    {
        margin: 0px;
        margin-bottom: 20px;
    }
    
    .category-listing-title, .category-listing-title + p
    {
        margin:0px 15px; 
    }
    
    .category-desc
    {
        display: none;
    }
    
    .category-listing-box
    {
        margin-top: 0px;
    }
    
    .category-listing-box + .category-brands-box
    {
        margin-top: 40px;
    }
    
    .category-listing-box + .category-brands-box,
    .category-listing-box + .category-brands-box + .brands-sliders-main,
    .category-listing-box ~ .category-product-box
    {
        display: none;
    }
    
    .category-listing-box .category-inner-box
    {
        margin-bottom: 0px;
    }
    
    .category-listing-box .category-inner-box:hover
    {
        box-shadow: none;
    }
    
    .category-listing-box .category-inner-box > a, .category-listing-box .category-inner-box > ul
    {
        display: none;
    }
    
    .category-listing-box .category-inner-box > h5, .category-listing-box .category-inner-box > h6
    {
        position: relative;
        width: unset;
        padding: 0px;
        border-bottom: 1px solid #DDD;
        bottom: unset;
        margin: 0px 15px;
    }
    
    .category-listing-box .category-inner-box > h5:hover, .category-listing-box .category-inner-box > h6:hover
    {
        background:#fafafa;
    }
    
    .category-listing-box .category-inner-box > h5:after, .category-listing-box .category-inner-box > h6:after
    {
        position: absolute;
        display: inline-block;
        display: none;
        content: "";
        border: 6px solid transparent;
        border-color: transparent transparent #fff #fff;
        box-shadow: -3px 3px 0 0 #444645;
        transform: translateY(-50%) rotate(-135deg);
        top: 50%;
        right: 20px;
        background: #FFF;
    }
    
    .category-listing-box .category-inner-box > h5 > a, .category-listing-box .category-inner-box > h6 > a
    {
        display: inline-block;
        width: 100%;
        padding: 15px 0px;
        text-shadow: unset;
        color: #444645;
        text-align: left;
    }
    /* END category listing */

	/* checkout */
	ul.checkout-step
    {
        padding: 0px 0px 30px 0px;
        margin-top: 0px;
    }
	
	.item-product-image
	{
		width: 100%;
		margin: 0px;
		margin-bottom: 15px;
		text-align: center;
	}
	
	.item-product-image img
	{
		max-width: 100px;
	}
    
    .table-listing
    {
        margin-top: 10px;
    }
	
	table.item-box td > div:last-child
	{
		width:180px;
	}
		
	.item-product-stock
	{
		text-align:right;
	}
	
	table.total-box, .cart-disabled-text
	{
		width:100%;
	}
	
	.checkout-item-box
	{
		padding:7px 15px 5px 15px;
	}
	
    .checkout-item-box table td
    {
        padding-bottom: 15px;
    }
    
    .checkout-item-product-box td:last-child
    {
        display: none;
    }
    
    .checkout-item-product-box .item-product-image
    {
        margin:0px;
        margin-right: 20px;
        margin-top: 10px;
    }
    
	.checkout-item-product-box .item-product-image img
	{
		max-width:100%;
	}
        
    .item-product-box
    {
        align-items: flex-start;
    }
    
    #item-product-price
    {
        display: block;
        margin-top: 7px;
    }
	/* END checkout */
	
	.product-info
	{
		padding:0px 12px 10px 12px;
	}
	
	.product-sliders.flickity-enabled.is-draggable .flickity-viewport
	{
		height: 270px !important;
	}

	.sliders-cell img, .product-info-image-box img
	{
		max-height: 370px;
	}
	
	.product-box > a
	{
		height: 175px
	}
    
    .rate-quality-box
    {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .review-box:nth-child(2)
    {
        border-top: 1px solid #d8d8d8;
    }
    
    .review-button
    {
        width: 100%;
    }
    
    .review-search-box
    {
        padding-top: 0px;
    }
    
    .filter-rate, .filter-rate
    {
        margin-top: 10px;
    }
    
    .review-search-text
    {
        margin-top: 10px;
    }
    
    .review-quality
    {
        margin-bottom: 15px;
        margin-top: 5px;
        display: inline-block;
        width: 100%;
    }
    
    .review-username
    {
        margin-top: 0px;
    }
    
    .review-loc-date
    {
        margin-bottom: 15px;
    }
    
    ul.checkout-step > li
    {
        width: 33.33%;
    }
    
    .checkout-info-box
    {
        padding: 0px 10px;
    }
    
    table.item-box td > div:last-child
    {
        width: 150px;
    }
    
    table.item-box tr.store-delivery-box td:last-child, table.item-box tr.store-total-box td:last-child, table.total-box tbody td:last-child
    {
        max-width: 150px;
        width: 150px;
    }
    
    .checkout-item-coupon-box
    {
        flex-wrap: wrap;
    }
    
    .checkout-item-coupon-box input
    {
        border-right: 1px solid #DDD;
    }
    
    .checkout-item-coupon-box button
    {
        width: 100%;
        padding: 7px;
    }
    
    table.item-box tr.store-delivery-box td.store-notes:first-child:last-child
    {
        width: auto;
        max-width: auto;
    }
    
    .item-product-ori-price
    {
        margin-right: 3px;
    }
    
    .account-order-button-box > div.col-6
    {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .account-order-button-box > div:first-child
    {
        order:1;
        text-align: center;
    }
    
    .account-order-button-box .cart-button-box
    {
        display: flex;
        margin-bottom: 15px;
    }
    
    .account-order-button-box .cart-button-box a
    {
        width: 50%;
    }
    
    .account-order-button-box .cart-button-box a:last-child
    {
        margin-left: 15px;
    }
    
    .account-order-button-box .cart-button-box a:first-child:last-child
    {
        margin:0px;
        width: 100%;
    }
    
    /* login */
    .login-box
    {
        padding: 10px 15px 20px 15px;
    }
    
    .login-bottom-box
    {
        padding: 15px 15px 20px 15px;
    }
    
    .login-social
    {
        display: block;
    }
    
    .login-social > a.facebook
    {
        margin-right: 0px;
    }
    
    .login-social > a.google
    {
        margin-left: 0px;
    }
    /* END login */
    
    .product-filter > div:first-child
    {
        text-align: center;
    }
    
    .product-filter > div:last-child
    {
        justify-content: center;
        margin-top: 15px;
    }
    
    .products-by-list .products-box .products-info-box
    {
        margin-left: 10px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .products-by-list .products-box > a > img
    {
        max-width: 80px;
    }
    
    .products-box .products-name > a
    {
        width: 250px;
    }
    
    /* chat */
    .chat-box.active
    {
        width: 100%;
        max-height: unset;
        right: 0px;
    }
    
    .chat-box .row > .col-md-4
    {
        width: calc(100% - 15px);
    }
    
    .chat-box .row > .col-md-8.closed
    {
        display: none;
    }
    
    .chat-box .row > .col-md-8
    {
        width: calc(100% - 15px);
        margin-left: 15px;
    }
    
    .chat-box .row > .col-md-8 .chat-title
    {
        text-align: center;
    }
    
    .chat-box .row > .col-md-8 .chat-close
    {
        display: none;
    }
    
    .chat-side-title > div
    {
        flex-grow: 1;
    }
    
    .chat-close-mobile
    {    
        flex-shrink: 0;
        display: block;
    }
    
    .chat-back-mobile
    {
        display: block;
        cursor: pointer;
    }
    
    .chat-back-mobile img
    {
        width: 35px;
    }
    /* END chat */
    
    /* notification */
    .header-notify-box
    {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        padding-top: 0px;
    }
    
    .header-notify-box > ol
    {
        height: 100%;
    }
    
    .header-notify-box > ol:before
    {
        display: none;
    }
    
    .notify-close
    {
        display: block;
        flex-grow: 0 !important;
        flex-shrink: 0;
        margin-left: 10px;
        cursor: pointer;
    }
    /* END notification */
    
    /* store */
    .store-details
    {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .store-logo
    {
        width: auto;
        padding-right: 0px;
        margin-bottom: 10px;
    }
    /* END store */

    .checkout-summary-info-box
    {
        margin-bottom: 20px;
    }

    .checkout-summary-info-box .item-product-box
    {
        flex-wrap: nowrap !important;
    }

    .checkout-summary-info-box .item-product-image
    {
        width: 50px;
        margin-right: 10px;
        margin-bottom: 0px;
    }

    .checkout-summary-info-box .item-product-image img
    {
        max-width: 40px;
    }

    .checkout-summary-info-box .item-product-info > a
    {
        font-size: 12px;
    }

    .checkout-summary-info-box ul.checkout-summary-info-details
    {
        font-size: 11px;
    }

    .checkout-summary-detail-box table.item-box tr.cart-items > td:last-child
    {
        width: 100px;
        font-size: 12px;
    }

    .checkout-login
    {
        text-align: left !important;
        margin-top: -10px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width:397px) /* normal iphone */
{
    .container
    {
        padding: 0px 10px;
    }
    
    .member-menu
    {
        padding-left: 0px;
    }
    
    .member-menu ul li a
    {
        margin: 0px 3px;
    }
    
    .member-menu ul li a img
    {
        width: 20px;
    }

    .login-bottom-box > a
    {
        margin-top: 5px;
    }
    
	h1
	{
		font-size:30px;
	}
	
    /* header */
	header .col-6, .product-row .col-6, .brands-all .col-6
	{
		flex: 0 0 50%;
		max-width:50%;
	}
	
	.col-6
	{
		flex: 0 0 100%;
		max-width:100%;
	}
		
	.menu-icon.member-menu ul li a img /*added by jesa on 27/08/2020*/
    {
        max-width: 15px;
		vertical-align: middle;
		padding-top: 2px;
    }

    .fa-heart
    {
        padding-right: 5px;
    }
    
    /* END header */
    
	/* menu */
	.category-menu
	{
		width:100%;
	}
	
	#SearchForm
	{
		margin-top:60px;
	}
	
	.menu-close
	{
		color:#999;
	}
	/* END menu */
	
	.g-recaptcha
	{
		-webkit-transform:scale(0.85);
		transform:scale(0.85);
		-webkit-transform-origin:0 0;
		transform-origin:0 0;
	}
	
    /* products */
	.product-filter .col-6
	{
		margin-bottom:10px;
	}
	
	.product-filter .select2-container
	{
		max-width:unset !important;
	}
	
	.category-brands-box .col-6:last-child
	{
		text-align:left !important
	}
	
	.product-info-button button
	{
		font-size:15px;
	}
    /* END products */
			
    /* sliders */
	.sliders-cell img 
	{
		max-height: 500px;
	}
	
	.brands-sliders-main .sliders-no-dots .flickity-prev-next-button.previous
	{
		left:-25px;
	}
	
	.brands-sliders-main .sliders-no-dots .flickity-prev-next-button.next
	{
		right:-28px;
	}
	/* END sliders */
    
    /* brands */
    .brands-logo 
    {
        max-width: 100px;
        max-height: 100px;
        margin-top: -20px;
    }
    /* END brands */
    
    /* popup */
    #popup-alert-box .popup-product-button button
    {
        width: 100%;
    }
    
    .popup-account-bottom-box
    {
        padding-top: 10px;
		margin-top: -7px;	/*added by hami on 6/10/2020*/
    }
    
    .popup-account-bottom-box > span
    {
        display: inline-block;
        width: 100%;
        margin-bottom: 10px;
    }
    /* END popup */
    
    /* product detail */
    .product-info-desc table tr
    {
        display: inline-block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .product-info-desc table td
    {
        display: inline-block;
        width: 100%;
        border: 0px;
        padding: 0px;
    }
    /* END product detail */
    
    /* checkout */    
    .checkout-button-row .col-6
    {
        flex: 0 0 50%;
        max-width: 50%;
    }
    /* END checkout */
    
    .review-note
    {
        display: inline-block;
    }
    
    .review-note-tips
    {
        text-align: left;
    }

    .checkout-summary-mobile
    {
        font-size: 12px;
    }
}


@media only screen and (max-width: 576px) {

    .products-box .products-name > a {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

.grecaptcha-badge {display: none !important}
/***** END RESPONSIVE *****/


