/* Basic styles */
:root {scroll-behavior: unset;}
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*, ::before, ::after { box-sizing:border-box; -webkit-box-sizing:border-box; }
html { 
  overflow:hidden; 
  overflow-y:auto; 
}
body { 
  font-size: 16px;
  line-height: 24px;
  font-family: 'Outfit', sans-serif;
  color:#2B2B2B; 
  font-weight:400; 
  margin:0; 
  padding:0;
}
article, aside, details, figcaption, figure, footer, header, nav, section, summary { 
    display: block; 
}
audio, canvas, video { 
    display: inline-block; 
}
html, button, input, select, textarea {
  font-family: 'Outfit', sans-serif;
}
i {
  display: flex;
}
i:before {
  content: "";
  display: inline-block;
  background-size: cover;
  mask-size: cover;
  -webkit-mask-size: cover;
  background-repeat: no-repeat;
}
.content-inner ul, .blog-detail-content ul {
	margin-bottom: 16px;
}
.content-inner ul li, .blog-detail-content ul li {
	font-size: 16px;
	line-height: 24px;
  font-weight: 400;
	margin-bottom: 10px;
	padding-left: 18px;
  color: #858584;
	position: relative;
}
.content-inner ul li::before, .blog-detail-content ul li::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 7px;
	height: 7px;
	background-color: #F59635;
	border-radius: 50%;
}
.blog-detail-content ul li::before {
	top: 8px;
}
.content-inner ul li:last-child, .blog-detail-content ul li:last-child {
  margin-bottom: 0;
}
.blog-detail-date {
	color: #858584;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	display: block;
	margin-bottom: 8px;
}
.blog-detail-img {
	margin-bottom: 32px;
}
.blog-detail-img img {
  width: 100%;
  height: 100%;
}
/* Form Style */
input, select, textarea {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  background: #fff;
  border: 1px solid #DDDDDD;
  color: #242424;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  transition: all .4s ease-out 0s;
  -webkit-transition: all .4s ease-out 0s;
}
input:focus, textarea:focus, select:focus, .form-select:focus {
  border-color:#F59635;
  outline: none;
  box-shadow: none;
}
input, textarea, select {
  padding:12px 16px;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #858584;
  opacity: 1;
}
select {
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  background-position:right center;
  background:url(../images/icon_chevron-black.svg) !important;
  background-repeat:no-repeat !important;
  background-position:right 0 center !important;
  /* background-size: 9px !important; */
  cursor:pointer;
  border: none;
}
.form-select {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  border-color: #DDDDDD;
  border-radius: 0;
  color: #242424;
  background-image: url(../images/icon_chevron.svg) !important;
  background-repeat:no-repeat !important;
  background-position:right 16px center !important;
  background-size: 20px !important;
}
label {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #242424;
  margin: 0 0 10px;
}
.check-group{
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.check-group label{
  margin:0;
  padding:0 0 0 8px;
  cursor:pointer;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #858584;
}
.form-check-input:focus {
	box-shadow: none;
}
.form-check-input[type=checkbox]:checked ~ .form-check-label {
  color: #242424;
}
.form-check-input[type=checkbox]{
  width:15px;
  height:15px;
  border:1px solid #F1F1F1;
  background-color:#FFFFFF;
  margin:0;
  padding:0;
  cursor:pointer;
  flex-shrink:0;
  transition:none;
  position: relative;
  border-radius: 0;
}
.form-check-input[type=checkbox]:checked{
  background-color:#F59635;
  border:1px solid #F59635;
  background-image: none;
  transition:none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.form-check-input[type=checkbox]:checked::before {
  content: '';
  position: absolute;
  background: url(../images/icon_check.svg) no-repeat center;
  width: 11px;
  height: 8px;
}
.form-check-input[type=checkbox]:disabled {
  background-color:rgba(167, 165, 166, 0.7);
  border:1px solid rgba(167, 165, 166, 0.7);
  opacity: 1;
}
.form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
  opacity: 1;
}
/* Radiobutton */
.radio-group {
	display: inline-flex;
	align-items: center;
}
.radio-group input[type=radio] {
  opacity: 0;
  display: none;
}
.radio-group input[type=radio] + label {
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  margin: 0;
}
.radio-group label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #242424;
}
.radio-group input[type=radio] + label::before {
  border: 2px solid #96999C;
  border-radius: 10px;
  content: "";
  height: 20px;
  width: 20px;
  left: 0;
  position: absolute;
  top: 1px;
}
.radio-group input[type=radio] + label::after {
  border-radius: 10px;
  content: "";
  height: 10px;
  width: 10px;
  left: 5px;
  position: absolute;
  top: 6px;
}
.radio-group input[type=radio]:checked + label::before {
  border: 2px solid #F59635;
}
.radio-group input[type=radio]:checked + label::after {
  background: #F59635;
}
.was-validated input {
  border: 1px solid #FFDEDF;
}
.was-validated .form-check-input:valid ~ .form-check-label {
  color: #ED1C24;
}
.show-hide-password .hide-password{
  display: none;
}
.show-hide-password .show-password{
  display: block;
}
::-webkit-search-cancel-button{
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: url(../images/icon_search_cancel.svg) no-repeat center;
  background-size: 12px;
  padding-left: 12px;
  /* color: #302929; */
}
[type=search] {
  outline-offset: 0;
}
/* From Style End */
iframe {
  border:0;
  width:100%;
  border-radius: 0;
}
a {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  display: inline-block;
  color:#2B2B2B;
  text-decoration:none;
  transition: 0.4s;
}
a:focus {
  outline:none;
}
a:active, a:hover {
  color:#F59635;
  outline:0;
  transition: 0.4s;
}
a:hover, a:focus {
  opacity:1;
}
svg:not(:root) {
  overflow:hidden;
}
ol, ul {
  padding:0;
  margin:0;
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6, address, p, pre, blockquote, dl, dd, menu, ol, ul, table, caption, hr { 
  margin: 0 0 16px 0; 
}
h1, h2, h3, h4, h5, h6 {
  color: #242424;
}
h1, .heading-one { 
  font-size: 44px;
  line-height: 58px;
  font-weight: 600;
}
h2, .heading-tow { 
  font-size: 32px;
  line-height: 58px;
  font-weight: 600;
}
h3, .heading-three {
  font-size: 28px;
  line-height: 42px;
  font-weight: 500;
}
h4, .heading-four {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}
h5, .heading-five {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
}
h6, .heading-six {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.title-one {
  color: #242424;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.title-two {
  color: #242424;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.text-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
img { 
  max-width:100%;
  display: block;
}
p { 
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color:#858584;
}
p:last-child {
  margin-bottom:0;
}
/* End Typography */

/* Button */
.solid-button {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 30px;
  cursor: pointer;
  background: #F59635;
  color: #242424;
  transition: all 0.4s;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border: none;
}
.solid-button:hover{
  transition: all 0.4s;
  color: #F59635;
  background: #242424;
}
.icon-border-btn {
  border: 1px solid #242424;
  background: #FFF;
  padding: 11px 29px;
  gap: 8px;
}
.icon-border-btn:hover {
  border-color: #242424;
}
.icon-border-btn i::before {
  transition: all 0.4s;
}
.icon-border-btn:hover i::before {
  background: #F59635;
  transition: all 0.4s;
}
.icon-link-btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  color: #242424;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s;
}
.icon-link-btn:hover {
  color: #F59635;
  transition: all 0.4s;
}
.icon-link-btn i::before {
  transition: all 0.4s;
}
.icon-link-btn:hover i::before {
  background: #F59635;
  transition: all 0.4s;
}
.link-btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  color: #F59635;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  transition: all 0.4s;
}
.link-btn:hover {
  color: #242424;
  transition: all 0.4s;
}
/* End Button */

/* Modal Common Styling */
.modal-content {
  border-radius: 0;
  border: 0;
}
.modal-dialog {
	height: 100%;
	display: flex;
	align-items: center;
	margin: 0 auto;
}
.modal-body {
	padding: 32px;
}
.modal-header{
  padding: 0;
  border: none;
}
.modal-header .btn-close {
  position: absolute;
  top: 34px;
  right: 32px;
  padding: 0;
  margin: 0;
  opacity: 1;
  box-shadow: none !important;
  background: none;
  z-index: 9;
  width: 32px;
  height: 32px;    
}
.modal-header .btn-close svg path {
  transition: 0.3s;
}
.modal-header .btn-close:hover svg path {
  stroke: #F59635;
  transition: 0.3s;
}
.review-modal .modal-dialog, .logout-modal .modal-dialog {
  max-width: 526px;
}
.review-modal .modal-body h4 {
  line-height: 36px;
  margin-bottom: 32px;
}
.review-modal .modal-body .review-wrapper {
  max-height: 472px;
  overflow-y: auto;
}
.logout-modal .modal-body .solid-button {
  color: #FFF;
}
.logout-modal .modal-body .modal-icon {
  margin: 0 0 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Modal Common Styling End */

/* Counter */
.counter__increment, .counter__decrement {
  transition: all 0.4s ease-in-out;
}  
.counter {
  position: relative;
  width: 194px;
  height: 48px;
  border: 1px solid #242424;
  text-align: center;
  overflow: hidden;
  display: block;
  z-index: -1;
}
.counter__input {
  border: none;
  height: 48px;
  margin: 0 auto;
  text-align: center;
  color: #242424;
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  background-color: transparent;
  padding: 12px 30px;
}
.counter__increment, .counter__decrement {
  position: absolute;
  top: 12px;
  height: 24px;
  width: 24px;
  color: #242424;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter__increment {
  right: 30px;
}
.counter__decrement {
  left: 30px;
}
.counter__increment:hover, .counter__decrement:hover {
  color: #F59635;
}
.counter__increment i, .counter__decrement i {
  font-size: 16px;
}
/* Counter End */

/* Breadcrumb Style */
.bread-crumb-block{
  width: 100%;
}
.bread-crumb-block .breadcrumb{
  padding: 18px 0 20px;
  margin: 0;
  align-items: center;
}
.breadcrumb-item, .breadcrumb-item a {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.breadcrumb-item a {
  color: #858584;
}
.breadcrumb-item a:hover {
  color: #F59635;
}
.breadcrumb-item.active {
	color: #F59635;
  padding-left: 12px;
}
.breadcrumb-item + .breadcrumb-item::before {
	padding-right: 12px;
	color: #858584;
}
/* Breadcrumb Style End */

/* Custom Scroll style */
.sub-filter-list::-webkit-scrollbar, .review-modal .modal-body .review-wrapper::-webkit-scrollbar {
  width: 4px;
  background: #DDDDDD;
}
.sub-filter-list::-webkit-scrollbar-thumb, .review-modal .modal-body .review-wrapper::-webkit-scrollbar-thumb {
  background: #F59635;
}
/* Custom Scroll style End */

.site-content {
  padding-top: 222px;
}
.container {
  margin: 0 auto;
  max-width: 1280px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
}
.site-header.smaller {
  box-shadow: 0px 15px 20px rgb(38 38 38 / 6%); 
  transition: all 0.1s linear 0s;
}
.site-header.smaller .top-header, .site-header.smaller .bottom-header {
  display: none;
}
.top-header {
  background-color: #242424;
  padding: 9px 0;
  text-align: center;
}
.top-header p {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
}
.middle-header {
  background-color: #F59635;
  padding: 9px 0;
}
.mobile_only {
	display: none;
}
.middle-header-link-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 30px;
}
.middle-header-link-nav li {
  margin-right: 18px;
  padding-right: 18px;
  position: relative;
}
.middle-header-link-nav li:after {
  content: '';
  position: absolute;
  top: 4px;
  right: 0;
  width: 1px;
  height: 16px;
  background-color: #242424;
}
.middle-header-link-nav li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.middle-header-link-nav li:last-child:after {
  display: none;
}
.middle-header-link-nav li a{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #2B2B2B;
  transition: 0.4s;
}
.middle-header-link-nav li a:hover{
  color: #fff;
  transition: 0.4s;
}
.middle-header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-search-form {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 595px;
  margin: 0;
}
.header-search-form input[type=search] {
  border: none;
  padding: 12px 36px 12px 16px;
}
.header-search-form input[type="search"]::placeholder {
	opacity: 0.5;
  color: #858584;
}
.header-search-form input[type=search]:focus-visible {
  border: none;
  outline: 0;
}
.search-button {
  position: absolute;
  top: 15px;
  right: 16px;
  width: 16px;
  height: 16px;
  background: url(../images/icon_search.svg) no-repeat right;
  background-size: cover;
  border: none;
  padding: 0;
}
.middle-header-icon-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
}
.middle-header-icon-nav li {
  flex-shrink: 0;
  margin-right: 20px;
}
.middle-header-icon-nav li:last-child {
  margin-right: 0;
}
.header-cart {
  position: relative;
}
.header-cart span {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #242424;
  color: #F59635;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  box-shadow: -2.2857141494750977px 2.2857141494750977px 5px 0px rgba(0, 0, 0, 0.19);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.55px;
}
.site_language .form-select {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #2B2B2B;
  border: none;
  border-radius: 0;
  padding: 0 16px 0 0;
  background-color: transparent;
  background-position: right 0 center !important;
  background-image: url(../images/icon_chevron_black.svg) !important;
  background-size: 10px !important;
}
.site_language .form-select:focus {
  border: none;
  outline: 0;
  box-shadow: none;
}
.bottom-header {
  background-color: #242424;
  padding: 10px 0;
}
.bottom-header .container {
  position: relative;
}
.nav-menu{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
.nav-menu > .nav-item {
  margin-right: 30px;
  /* position: relative; */
}
.nav-menu > .nav-item:last-child {
  margin-right: 0;
}
.nav-menu > .nav-item > a {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px; 
  text-transform: uppercase;
  position: relative;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-menu > .nav-item:hover > a {
  color: #F59635;
  transition: 0.4s;
}
.nav-menu > .nav-item.has-children > a:after {
  content: '';
  -webkit-mask-image: url(../images/icon_downarrow.svg);
  mask-image: url(../images/icon_downarrow.svg);
  -webkit-mask-size: cover;
  background-repeat: no-repeat;
  width: 9px;
  height: 6px;
  background: #fff;
  transition: 0.4s;
  display: block;
  margin: 0 0 0 8px;
}
.nav-menu > .nav-item:hover > a::after {
  background: #F59635;
  transition: 0.4s;
}
.nav-menu > .nav-item > .sub-menu {
  position: absolute;
  top: 140%;
  left: 0;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 10px);
  transition: 0.4s;
  display: block;
  background: #fff;
  box-shadow: 0 0 20px rgb(0 0 0 / 10%);
  z-index: 4;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 20px;
}
.nav-menu > .nav-item > .sub-menu > ul {
  width: 100%;
}
.nav-menu > .nav-item > .sub-menu > ul > li {
  width: 100%;
}
.nav-menu > .nav-item > .sub-menu > ul > li:first-child {
  border-bottom: 1px solid #DDD;
  padding-bottom: 16px;
  margin-bottom: 8px;
}
.nav-menu > .nav-item > .sub-menu > ul > li > a {
  display: block;
  padding: 10px 10px 10px 0;
  position: relative;
  transition: 0.4s;
  left: 0;
  font-size: 14px;
  line-height: 20px;
  color: #2B2B2B;
}
.nav-menu > .nav-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0,0);
  transition: 0.4s;
}
.nav-menu > .nav-item > .sub-menu > ul > li > a:hover {
  color: #F59635;
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.menu li {
  list-style: none;
}
.menu li {
  margin-right: 26px;
  flex-shrink: 0;
}
.menu li:last-child {
  margin-right: 0;
}
.menu li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #262626;
  text-transform: inherit;
  transition: 0.4s;
}
.menu li a:hover,.menu li a:focus,.menu li a.active {
  color: #F59635;
  transition: 0.4s;
}
.mobile-menu {
  display: none;
}
body.modal-open {
  padding: 0 !important;
}
.btn-close:focus {
  outline: 0;
  box-shadow: none;
  opacity: 1;
}
.form-group {
  margin-bottom: 24px;
}
.wpcf7-not-valid-tip {
  font-size: 12px;
}
.wpcf7 form.sent .wpcf7-response-output {
  margin: 0;
}
.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.scrollidisable {
	position: fixed;
	width: 100%;
}
/* End Header */

/* Banner */
.banner,
.banner-wrapper {
  position: relative;
}
.banner-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.banner-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.banner-text {
  max-width: 574px;
}
.banner-text h1 {
  margin-bottom: 14px;
}
.banner-content p {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  color: #2B2B2B;
  margin-bottom: 30px;
  max-width: 410px;
}
.banner .banner-button-prev,
.banner .banner-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 100%;
  transition: 0.4s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .swiper-button-disabled{
  cursor: initial;
  opacity: 0.7;
  pointer-events: none;
}
.banner .banner-button-prev {
  left: 78px;
}
.banner .banner-button-next{
  right: 78px;
}
.banner .banner-button-prev:hover,
.banner .banner-button-next:hover {
  border-color: #F59635;
  transition: 0.4s;
}
.banner .banner-button-prev::after,
.banner .banner-button-next::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/icon_chevron_gray_left.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  transition: 0.4s;
  display: block;
}
.banner .banner-button-next::after {
  background: url(../images/icon_chevron_gray_right.svg) no-repeat center;
  background-size: contain;
}
.banner .banner-button-prev:hover:after {
  background: url(../images/icon_chevron_yellow_left.svg) no-repeat center;
  transition: 0.4s;
}
.banner .banner-button-next:hover:after {
  background: url(../images/icon_chevron_yellow_right.svg) no-repeat center;
  transition: 0.4s;
}
/* End Banner */

/* Shop By Spirit */
.shop-by-spirit, .offers, .best-seller {
  overflow: hidden;
}
.shop-slider-wrapper,
.our-highlights-slider-wrapper,
.offers-slider-wrapper,
.best-seller-wrapper {
  position: relative;
}
.shop-spirit-slider {
  padding-bottom: 33px;
  overflow: unset;
}
.product-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-image {
  width: 128px;
  height: 128px;
  background-color: #F1F1F1;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.product-wrapper h5 {
  margin: 0;
}
.common-btn-prev,
.common-btn-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 100%;
  transition: 0.4s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-btn-prev {
  right: 60px;
}
.common-btn-prev:hover,
.common-btn-next:hover {
  border-color: #F59635;
  transition: 0.4s;
}
.common-btn-prev::after,
.common-btn-next::after {
  content: '';
  margin: auto;
  background: url(../images/icon_chevron_gray_left.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  transition: 0.4s;
  display: block;
}
.common-btn-next::after {
  background: url(../images/icon_chevron_gray_right.svg) no-repeat center;
  background-size: contain;
}
.common-btn-prev:hover:after {
  background: url(../images/icon_chevron_yellow_left.svg) no-repeat center;
  transition: 0.4s;
}
.common-btn-next:hover:after {
  background: url(../images/icon_chevron_yellow_right.svg) no-repeat center;
  transition: 0.4s;
}
.nav-btn-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.common-scroll {
  position: relative;
  touch-action: none;
  -ms-touch-action: none;
  background: #F1F1F1;
  height: 2px !important;
  border-radius: 0;
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,8%)) !important;
  bottom: 18px !important;
}
.swiper-horizontal>.common-scroll, 
.common-scroll.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset,0%);
  bottom: var(--swiper-scrollbar-bottom,4px);
  top: var(--swiper-scrollbar-top,auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size,4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%));
}
.common-scroll .swiper-scrollbar-drag {
  height: 100%;
  /* width: 110px !important; */
  position: relative;
  background: #F59635;
  border-radius: 0;
  left: 0;
  top: 0;
}
/* End Shop By Spirit */

/* Free Shipping */
.free-shipping {
  background-image: url(../images/free-shipping-bg-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.free-shipping h2 {
  font-weight: 400;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  color: #000;
}
.free-shipping span {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: #242424;
  margin-bottom: 30px;
}
/* End Free Shipping */

/* Our Highlights */
.our-highlights-box {
  position: relative;
}
.our-highlights-image {
  overflow: hidden;
}
.our-highlights-image img {
  width: 627px;
  height: 427px;
  object-fit: cover;
  transition: 0.4s;
}
.our-highlights-box:hover .our-highlights-image img {
  transform: scale(1.2);
  transition: 0.4s;
}
.our-highlights-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 283px;
}
.our-highlights-content h3 {
  color: #2B2B2B;
}
.our-highlights-slider .swiper-slide:nth-child(odd) .our-highlights-content {
  right: 40px;
  text-align: right;
}
.our-highlights-slider .swiper-slide:nth-child(even) .our-highlights-content {
  left: 40px;
  text-align: left;
}
/* End Our Highlights */

/* Offer */
.offers {
  background-color: #242424;
}
.offers-slider {
  padding-bottom: 30px;
  overflow: unset;
}
.offers-box {
  border: 1px solid #DDD;
  background: #FFF;
  padding: 19px;
}
.offers-image {
  margin-bottom: 20px;
  height: 350px;
  overflow: hidden;
}
.offers-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.offers-content {
  position: relative;
}
.offers-content h6 {
  color: #242424;
  margin-bottom: 0;
  max-width: 192px;
  transition: 0.4s;
}
.price-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.price-wrapper span {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: inline-block;
}
.price-wrapper .sell-price {
  color: #242424;
}
.price-wrapper .original-price {
  color: #858584;
  text-decoration: line-through;
}
.offers-box:hover h6 {
  color: #F59635;
  transition: 0.4s;
}
.offers-box:hover .offers-image img {
  transform: scale(1.2);
  transition: 0.4s;
}
.offers .common-scroll {
  background: #3B3B3B;
}
/* End Offer */

/* Best Seller */
.best-seller-slider {
	overflow: unset;
}
.bs-box {
  border: 1px solid #DDD;
  background: #FFF;
  padding: 19px;
  position: relative;
  width: 100%;
}
.bs-image {
  margin-bottom: 20px;
  height: 344px;
  overflow: hidden;
}
.bs-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s;
}
.bs-box .bs-content {
  position: relative;
}
.bs-content .price-wrapper .original-price {
  font-weight: 400;
}
.bs-content .product-rating, .offers-content .product-rating {
  border: 0;
  padding: 0;
}
.add-bucket {
  position: absolute;
  bottom: 0;
  right: 0;
}
.add-bucket i::before {
  transition: 0.4s;
}
.add-bucket:hover i::before {
  background: #F59635;
  transition: 0.4s;
}
.bs-content h6 {
  color: #242424;
  margin-bottom: 0;
  max-width: 192px;
  transition: 0.4s;
}
/* .bs-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: rgba(241, 241, 241, 0.4);
  z-index: 0;
  transition: 0.4s;
}
.bs-box:hover::after {
  transition: 0.4s;
  opacity: 1;
  visibility: visible;
} */
.bs-box:hover .bs-content h6 {
  color: #F59635;
  transition: 0.4s;
}
.bs-box:hover .bs-image img {
  transform: scale(1.05);
  transition: 0.4s;
}
.fav-button{
  position: absolute;
	top: 20px;
	right: 20px;
	width: 32px;
	height: 32px;
	z-index: 2;
	background-color: #FFF;
	border-radius: 100%;
}

input[type=checkbox].fav-icon {
  opacity: 0;
  transform: translate3D(-50%, -50%, 0);
  left: 50%;
  top: 50%;
  position: absolute;
}

.fav-button:before, .fav-button:after {
  content: "";
  cursor: pointer;
  background-image: url(../images/icon_favorite.svg);
  background-size: cover;
  height: 23px;
  width: 24px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3D(-50%, -50%, 0);
  transition: all 0.4s;
}
.fav-button:after {
  opacity: 0;
  background-image: url(../images/icon_favorite_fill.svg);
}
input[type=checkbox]:checked ~ .fav-button:before {
  background-image: url(../images/icon_favorite_fill.svg);
}
/* .bs-content .add-to-cart {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  width: auto;
  max-width: 217px;
  margin: 0 auto;
  z-index: 1;
  gap: 8px;
}
.bs-box:hover .bs-content .add-to-cart {
  transition: 0.4s;
  opacity: 1;
  visibility: visible;
}
.bs-content .add-to-cart i {
  transition: 0.4s;
}
.bs-content .add-to-cart:hover i::before {
  background: #F59635;
  transition: 0.4s;
} */
/* End Best Seller */

/* Latest Blog */
.blog-box {
  height: 100%;
  background-color: #F1F1F1;
}
.blog-image {
  overflow: hidden;
}
.blog-image img {
  object-fit: cover;
  transition: 0.4s;
}
.blog-box:hover .blog-image img {
  transform: scale(1.2);
  transition: 0.4s;
}
.blog-content {
  padding: 16px 16px 18px 16px;
}
.blog-content h5 {
  margin-bottom: 6px;
}
.blog-content h5 a {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-content span {
  color: #858584;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 8px;
}
.text-link {
  color: #2B2B2B;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.4s;
}
.text-link svg {
  width: 10px;
  height: 10px;
  transition: 0.4s;
}
.text-link:hover path {
  fill: #F59635;
  transition: 0.4s;
}
.text-link:hover svg {
  transform: translateX(2px);
}
/* End Latest Blog */

/* Service */
.service {
  background: url(../images/service-bg-img.jpg) no-repeat center;
  background-size: cover;
  padding-top: 124px;
}
.white-box-wrapper {
  border: 1px solid #F1F1F1;
  border-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.white-box {
  background: #FFF;
  border-right: 1px solid #DDD;
  width: 218px;
  height: 226px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 40px;
}
.white-box:last-child {
  border-right: 0;
}
.white-box img {
  margin-bottom: 16px;
}
.white-box h5 {
  font-weight: 500;
  line-height: 27px;
  color: #2B2B2B;
}

/* End Service */

/* Newsletter */
.newsletter {
  padding: 27px 0 25px;
  background-color: #F1F1F1;
}
.newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newsletter-wrapper h3 {
  margin-bottom: 0;
  color: #2B2B2B;
}
.newsletter-wrapper form {
	max-width: 503px;
	width: 100%;
}
.subscription-form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.subscription-form input {
  flex-shrink: 0;
}
.subscription-form input[type="email"] {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border: 1px solid #858584;
  height: 48px;
  max-width: 360px;
}
.subscription-form input[type="email"]:focus-visible {
  outline: 0;
}
.subscription-form input[type="email"]::placeholder {
  opacity: 0.5;
  color: #858584;
}
.subscription-form .solid-button {
  width: auto;
}
/* End Newsletter */

/* Footer */
.footer {
  padding-top: 23px;
  background-color: #F59635;
}
.links-wrapper {
  position: relative;
  padding-top: 37px;
  padding-left: 20px;
  padding-right: 20px;
}
.links-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(59 59 59 / 20%);
  width: 1px;
  height: 420px;
}
.footer-link {
	min-height: 144px;
  margin-bottom: 30px;
}
.footer-col:last-child .footer-link {
  min-height: auto;
}
.footer-link h6 {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
.links {
  margin-bottom: 0;
}
.links li {
  margin-bottom: 8px;
}
.links li a {
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  color: #242424;
}
.links li:last-child {
  margin-bottom: 0;
}
.links li a:hover {
  color: #fff;
  transition: 0.4s;
}
.copyright {
  padding: 9px 0 14px;
  margin-top: 24px;
  border-top: 1px solid rgb(59 59 59 / 20%);
  text-align: center;
}
.copyright p {
  font-size: 12px;
  line-height: 15px;
  color: #242424;
}
.social-media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
  padding: 0;
}
.social-media li {
  margin-right: 24px;
}
.social-media li:last-child {
  margin-right: 0;
}
.social-media li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  position: relative;
  top: 0;
  transition: 0.4s;
}
.social-media li a:hover {
  top: -5px;
  transition: 0.4s;
}
.social-media li a .hoveron {
  display: none;
}
.social-media li a:hover .hoveron {
  display: block;
}
.social-media li a:hover .hoveroff {
  display: none;
}

.c-go-top {
  position: fixed;
  right: 12px;
  bottom: 50px;
  display: none;
  background-color: #242424;
  padding: 10px;
  text-decoration: none;
  z-index: 999;
  border: 1px solid #242424;
  transition: all .4s;
  width: 42px;
  height: 42px;
  text-align: center;
}
.c-go-top::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 45px;
  height: 45px;
  background: #242424;
  animation: pulse-border 1000ms ease-out infinite;
}
.c-go-top span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #F59635;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/* End Footer */

/* Product Listing */
.title-banner {
  padding: 96px 0;
  position: relative;
  z-index: 0;
  background-position: center;
  text-align: center;
}
.title-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(36, 36, 36, 0.4);
	z-index: -1;
}
.title-banner h1 {
  color: #FFFFFF;
}
.product-listing {
  padding-bottom: 120px;
}
.short-by {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
.short-by-block {
  display: flex;
  align-items: center;
  gap: 30px;
}
.short-by-block .solid-button svg {
  margin-right: 8px;
}
.short-by-block .solid-button svg path {
  transition: all 0.4s;
}
.short-by-block .solid-button:hover svg path {
  fill: #F59635;
  transition: all 0.4s;
}
.short-by-block form select {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #242424;
  padding: 0;
  padding-right: 20px;
}
.product-listing-col {
  margin-bottom: 24px;
}
.product-listing-col .bs-box {
	height: 100%;
}
.show-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* End Product Listing */

/* Product Listing Filter */
.filteroffcanvas .offcanvas-header {
  padding: 6px 20px;
  justify-content: center;
  position: relative;
  background-color: #F1F1F1;
}
.filteroffcanvas .offcanvas-header h5 {
  font-size: 20px;
  line-height: 30px;
  color: #242424;
}
.filteroffcanvas .offcanvas-header .btn-close {
  position: absolute;
  top: 22px;
  left: 24px;
  padding: 0;
  color: #858584;
}
.filteroffcanvas .offcanvas-body {
  padding: 0;
}
.filter-listing {
  padding: 0 20px;
  border-bottom: 1px solid #F1F1F1;
}
.filter-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #242424;
  display: block;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  padding: 16px 0;
}
.filter-title::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 0;
  background: url(../images/icon_chevron.svg) no-repeat center;
  background-size: 16px;
  width: 16px;
  height: 16px;
  transition: all 0.4s;
}
.filter-title.active::after {
  top: 19px;
  transform: rotate(180deg);
  transition: all 0.3s;
}
.filter-list {
  margin-bottom: 0;
}
.filter-list li {
  padding-bottom: 16px;
}
.filter-list li:last-child {
  padding-bottom: 0;
}
.sub-filter-list {
  margin-bottom: 0;
  margin-top: 16px;
  padding-left: 24px;
  max-height: 82px;
  overflow-y: scroll;
}
.sub-filter-list li {
  padding-bottom: 8px;
  line-height: normal;
}
.sub-filter-list li:last-child {
  padding-bottom: 0;
}
.filter-button {
  padding: 16px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.filter-button-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.filter-button-group .clear-button {
  background: #FFFFFF;
  color: #F59635;
}
.filter-button-group .clear-button:hover {
  background: #242424;
  color: #F59635;
}
/* Range Slider */
/* .price-range {
  padding: 16px 20px;
  border-bottom: 1px solid #F1F1F1;
}
.price-input {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 16px 0 0;
}
.field label {
  font-weight: 400;
  color: #858585;
  margin: 0 0 4px;
}
.field input {
  outline: none;
  -moz-appearance: textfield;
  padding: 8px 30px;
  color: #858584;
  font-weight: 500;
  text-align: center;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.slider {
  height: 6px;
  position: relative;
  background: #ddd;
}
.slider .progress {
  height: 100%;
  left: 0;
  right: 65%;
  position: absolute;
  background: #F59635;
  border-radius: 0;
}
.range-input {
  position: relative;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 6px;
  top: -6px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  border: none;
}
.range-input input.range-min {
	display: none;
}
input[type="range"]::-webkit-slider-thumb {
  height: 8px;
  width: 8px;
  border: 2px solid #FFF;
  border-radius: 50%;
  background: #F59635;
  pointer-events: auto;
  -webkit-appearance: none;
}
input[type="range"]::-moz-range-thumb {
  height: 8px;
  width: 8px;
  border: 2px solid #FFF;
  border-radius: 50%;
  background: #F59635;
  pointer-events: auto;
  -moz-appearance: none;
} */

/* .price-range {
  padding: 16px 20px;
  border-bottom: 1px solid #F1F1F1;
}

.range-slider {
  text-align: center;
  position: relative;
}
.range-slider .rangeValues, .range-slider .rangeValues1 {
  display: block;
}

input[type=range] {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid white;
  position: absolute;
  left: 0;
  padding: 0;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 5px;
  background: #dfdfdf;
  border: none;
  border-radius: 3px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #21c1ff;
  margin-top: -4px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #000;
}

input[type=range]::-moz-range-track {
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}

input[type=range]::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #21c1ff;
} */

.wrapper {
  position: relative;
  padding: 16px 20px 16px 20px;
  border-bottom: 1px solid #F1F1F1;
}
.container-range {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 12px;
  margin-bottom: 9px;
}
.price-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.price-title .link-button {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
	color: #F59635;
}
input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: 0;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
  padding: 0;
  border: 0;
  margin-top: -6px;
}
.slider-track {
  width: 100%;
  height: 6px;
  /* position: absolute; */
  margin: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  margin-top: 12px;
  margin-bottom: 9px;
}
input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 6px;
}
input[type="range"]::-moz-range-track {
  -moz-appearance: none;
  height: 6px;
}
input[type="range"]::-ms-track {
  appearance: none;
  height: 6px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 23px;
  width: 23px;
  background-color: #FFFFFF;
  cursor: pointer;
  margin-top: -6px;
  pointer-events: auto;
  border-radius: 50%;
  border: 1px solid #F59635;
}
input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 23px;
  width: 23px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #FFFFFF;
  pointer-events: auto;
  border: 1px solid #F59635;
}
input[type="range"]::-ms-thumb {
  appearance: none;
  height: 23px;
  width: 23px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #FFFFFF;
  pointer-events: auto;
  border: 1px solid #F59635;
}
input[type="range"]:active::-webkit-slider-thumb {
  background-color: #FFFFFF;
  border: 1px solid #F59635;
}
.values {
  position: relative;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #242424;
}
/* End Range Slider */
/* End Product Listing Filter */

/* Trade */
/* Product Detail */
.product-details-left {
	position: sticky;
	top: 162px;
}
/* .product-details .xzoom-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
}
.product-details .dtc-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 400px;
  border: 1px solid #FFDEDF;
  border-radius: 16px;
}
.product-details .dtc-slider::before{
  content: '';
  position: absolute;
  background: url('../images/icon-grey-zoom.svg') no-repeat center;
  background-size: contain;
  width: 30px;
  height: 30px;
  right: 16px;
  bottom: 16px;
}
.product-details .dtc-slider img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.3s all;
} */
.product-details .xzoom {
  width: 100% !important;
  height: 100%;
  object-fit: contain;
  box-shadow: none;
  margin: 0;
}
.product-details-slider .swiper-slide{
  height: 100px;
}
/* .product-details-slider .swiper-slide a{
  display: block;
  width: 100%;
  height: 100%;
}
.product-details .xzoom-gallery {
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid #FFDEDF;
  border-radius: 16px;
}
.product-details .xzoom-gallery.xactive {
  box-shadow: none;
  border: 1px solid #DCD7DA ;
}
.product-details-thumbnail{
  display: block;
  width: 100%;
  margin: 24px 0 0;
  position: relative;
} */
/* .product-details .swiper-button-next,.product-details .swiper-button-prev{
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 30px;
  height: 30px;
  background: #fff;
  opacity: 1;
  transition: all 0.4s;
}
.product-details .swiper-button-prev{
  left: -16px;
}
.product-details .swiper-button-next{
  right: -16px;
} */
.product-details .swiper-button-next:hover,.product-details .swiper-button-prev:hover{
  background: #DCD7DA;
  border-color: #DCD7DA;
  transition: all 0.4s;
}
.product-details .swiper-button-next:hover::after,.product-details .swiper-button-prev:hover::after{
  background-color: #fff;
}
.product-details .common-btn-next,.product-details .common-btn-prev, .product-detail-next-mobile .common-btn-next, .product-detail-prev-mobile .common-btn-prev {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.product-details .common-btn-prev::after, .product-detail-prev-mobile .common-btn-prev::after {
  mask-image: url(../images/icon_chevron_gray_left.svg);
  -webkit-mask-image: url(../images/icon_chevron_gray_left.svg);
  width: 24px;
  height: 24px;
  background: #242424;  
}
.product-details .common-btn-prev:hover:after, .product-detail-prev-mobile .common-btn-prev:hover:after, .product-details .common-btn-next:hover:after, .product-detail-next-mobile .common-btn-next:hover:after {
  width: 24px;
  height: 24px;
}
.product-details .common-btn-next::after, .product-detail-next-mobile .common-btn-next::after {
  mask-image: url(../images/icon_chevron_gray_right.svg);
  -webkit-mask-image: url(../images/icon_chevron_gray_right.svg);
  width: 24px;
  height: 24px;
  background: #242424;  
}
.product-details .common-btn-prev.swiper-button-disabled::after, .product-details .common-btn-next.swiper-button-disabled::after, .product-detail-prev-mobile .common-btn-prev.swiper-button-disabled::after, .product-detail-next-mobile .common-btn-next.swiper-button-disabled::after {
  background: #858585;
}
.product-details .common-btn-prev, .product-detail-prev-mobile .common-btn-prev {
  left: 14px;
}
.product-details .common-btn-next, .product-detail-next-mobile .common-btn-prev {
  right: 14px;
}
.product-details .swiper-button-lock{
  display: none;
}
.product-details-slider-mobile{
  display: none;
}
/* Swiper Xzoom */
.product-detail {
  position: relative;
}
.product-img-block {
  padding: 14px;
  border: 1px solid #DDD;
  max-width: 100%;
}
.product-img-block.video {
  position: relative;
  padding: 14px;
  padding-top: 100%;
  height: 0;
}
.product-img-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-detail-thumb {
  margin-top: 20px;
}
.product-img-thumb-block {
  padding: 10px;
  border: 1px solid #DDD;
  position: relative;
}
.product-detail .available {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: #F1F1F1;
  color: #242424;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
  padding: 3px 12px;
  z-index: 1;
}
.play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
}
.product-details-head{
  position: relative;
  margin-bottom: 16px;
  z-index: -1;
}
.product-rating {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #242424;
  padding: 1px 5px;
}
.product-rating .icon-star-fill::before {
  width: 11px;
  height: 11px;
}
.product-details-head h2{
  max-width: 400px;
  line-height: 42px;
  margin-bottom: 16px;
}
.product-details-head .product-pricing h5 > span {
  margin-left: 12px;
}
.pack-size {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.pack-size .check-group label {
  padding: 3px 19px;
  border: 1px solid #F59635;
  color: #242424;
}
.pack-size .check-group input {
  display: none;
}
.pack-size .check-group input[type="radio"]:checked ~ label {
  background-color: #F59635;
}
.product-details .product-details-head p{
  font-size: 14px;
  line-height: 21px;
  max-width: 100%;
}
.product-details p{
  font-size: 16px;
  line-height: 24px;
  color: #858584;
}
/* .product-details p,
.product-details .common-list{
  max-width: 628px;
} */
.page-border{
  margin-bottom: 16px;
  border-bottom: 1px solid #E9E9E9;
}
.product-details .btn-action-group .icon-border-btn {
  max-width: 302px;
  width: 100%;
}
.product-details .btn-action-group .buy-now {
  width: 100%;
}
.product-details .btn-action-group,
.product-details .buy-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: 24px;
}
.product-details .btn-action-group {
  margin-bottom: 16px;
}
.product-details .btn-action-group.g-16 {
  justify-content: space-between;
  gap: 16px;
  max-width: 519px;
}
.product-details-content .read-more {
  color: #F59635;
  padding: 0;
  margin-bottom: 16px;
}
.product-details-content .read-more:hover {
  color: #242424;
}
.product-details-content .hidden-content {
	display: none;
}
.product-details-content .read-more.active {
  margin-top: 16px;
}
.review-block {
  margin-bottom: 24px;
}
.review-star-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.review-star-rating i::before {
  width: 18px;
  height: 18px;
}
.review-block .text-sm {
  font-weight: 500;
  margin-bottom: 6px;
}
.product-details h6{
  margin-bottom: 12px;
}
.product-details-head.mobile{
  display: none;
}
.replace-cart-modal .modal-body h3{
  margin-bottom: 16px;
}
.replace-cart-modal .modal-body p{
  font-size: 16px;
  line-height: 24px;
  color: #505050;
  margin-bottom: 24px;
  text-align: center;
}
.replace-cart-modal .modal-btn-group{
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 24px;
}   
.replace-cart-modal .modal-btn-group .btn{
  width: 130px;
  text-align: center;
  box-shadow: none !important;
}
/* .zoom-container {
  position: relative;
  z-index: 0;
}
.zoom-container .icon-left, .zoom-container .icon-right {
  width: 40px;
  height: 40px;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.zoom-container .icon-right { 
  left: auto;
  right: 25px; 
}
.zoom-container .icon-left i:before, .zoom-container .icon-right i:before { 
  transition: all 0.4s;
}
.zoom-container .icon-left:hover i:before, .zoom-container .icon-right:hover i:before { 
  background: #858584;
  transition: all 0.4s;
}
.show-zoom {
  width: 500px;
  height: 500px;
  border: 1px solid #DDD;
  padding: 12px 14px;
  z-index: 99;
  background-color: #FFF;
}
.show-zoom .big-image {
  z-index: 9;
  left: 100% !important;
}
.show-zoom img {
  max-width: inherit;
  display: inline;
  object-fit: contain;
}
.small-img {
  width: 470px;
  height: 188px;
  margin-top: 10px;
  position: relative;
  left: 0;
}
.small-container {
  width: 100%;
  height: 188px;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
}
.small-container div {
  width: 800%;
  position: relative;
}
.small-container .show-small-img {
  width: 146px;
  height: 188px;
  margin-right: 16px;
  cursor: pointer;
  float: left;
  object-fit: contain;
  border: 1px solid #ddd;
  padding: 9px;
}
.small-container .show-small-img:last-of-type { margin-right: 0; } */
/* End Product Detail */
/* Cart */
.cart {
  padding-bottom: 30px;
}
.cart-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 45px;
}
.cart-top h2 {
  line-height: 42px;
}
.cart-top .link-button {
  color: #F59635;
}
.purchase-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 30px;
  gap: 32px;
}
.cart-item-lists {
  margin-bottom: 0;
  border: 1px solid #DDD;
}
.cart-item-lists li {
  border-top: 1px solid #DDD;
}
.cart-item-lists li:first-child {
  border-top: 0;
}
.cart-item-lists .single-product {
  display: flex;
  align-items: flex-start;
  padding: 32px;
}
.product-img a {
  width: 146px;
  height: 188px;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 0;
  display: block;
  padding: 10px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-item-lists .single-product .product-detail {
  padding-left: 32px;
  text-align: left;
  width: 100%;
  position: relative;
}
.product-detail .title-one {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.quantity {
  color: #858584;
  font-weight: 400;
}
.quantity > span {
  color: #242424;
}
.cart-item-lists .product-detail ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}
.cart-item-lists .product-detail ul li {
  color: #242424;
  margin-right: 0;
  padding-right: 0;
  position: relative;
}
.cart-item-lists .product-detail ul li::after {
  display: none;
}
.cart-item-lists .product-detail ul li:last-child {
  padding: 0;
  margin: 0;
}
.link-button {
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  color: #A01D22;
  transition: all 0.3s;
}
.link-button:hover {
  color: #242424;
  transition: all 0.3s;
}
.border-button {
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: underline;
  color: #242424;
  transition: all 0.3s;
}
.border-button:hover {
  color: #F59635;
  transition: all 0.3s;
}
.cart-item-lists .product-detail span {
  margin-bottom: 0;
}
.product-pricing {
  text-align: right;
}
.product-pricing h5 {
  font-size: 18px;
  line-height: 24px; 
  font-weight: 700;
  margin-bottom: 4px;
}
.product-pricing h5 > span {
  font-weight: 400;
  color: #858584;
  text-decoration: line-through;
  margin-left: 16px;
}
.price-disable {
  color: #FE9901;
  text-decoration: line-through;
  padding-bottom: 5px;
}
.cart-price-block {
  position: sticky;
  top: 140px;
}
.grey-card {
  padding: 24px;
  background-color: #F1F1F1;
}
.price-details, .convenience-inner table {
  margin: 0;
  border-collapse: inherit;
  width: 100%;
  table-layout: fixed;
}
.price-details tr th {
  padding-bottom: 16px;
  font-weight: 500;
}
.price-details tr td, .convenience-inner tr td {
  width: 50%;
  padding: 0;
  padding-bottom: 10px;
  color: #858584;
}
.price-details tr td:nth-child(odd), .convenience-inner tr td:nth-child(odd) {
  text-align: left;
}
.price-details tr td:nth-child(even), .convenience-inner tr td:nth-child(even) {
  text-align: right;
}
.convenience-inner tr td {
  font-size: 14px;
  line-height: 21px;
  color: #696767;
  padding-bottom: 6px;
}
.convenience-inner tr:last-child td {
  padding-bottom: 16px;
}
.convenience-inner tr td:nth-child(odd) {
  padding-left: 20px;
}
.convenience-row td > span {
  margin-left: 8px;
}
.convenience-row svg {
  transform: rotate(180deg);
  transition: all 0.4s;
}
.convenience-row.toggle.toggled-on svg {
  transform: rotate(0);
  transition: all 0.4s;
}
.price-details .convenience-row td {
  padding-bottom: 8px;
  white-space: nowrap;
}
.price-details .total-amount td {
  padding: 16px 0 24px;
  color: #242424;
  font-weight: 500;
}
.price-details .total-amount td:nth-child(even) {
  font-weight: 700;
}
.price-details .text-row td:nth-child(2n+1) {
  padding: 0;
  text-align: center;
  padding-bottom: 24px;
}
.price-details .text-row td p {
  font-weight: 500;
}
/* .pricing {
  display: none;
} */
/* Cart End */

/* Checkout */
.add-new-address {
  display: none;
}
.pickup-order-main {
  display: none;
}
.checkout h2{
  margin-bottom: 32px;
}
.checkout .purchase-option .radio-group label {
  color: #858584;
}
.checkout .purchase-option .radio-group input[type="radio"]:checked + label {
	color: #242424;
}
.checkout-head{
  background: #F1F1F1;
  margin: 0 0 24px;
  padding: 10px 20px;
}
.checkout-form .page-border{
  margin-bottom: 24px;
}
.checkout-heading-flex-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.checkout-heading-flex-group .link-button {
  display: inline-block;
  margin-left: 6px;
}
.after-login {
  display: block;
  text-align: left;
  color: #3B3B3B;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 0;
}
.after-login .border-button {
  text-transform: lowercase;
  color: #3B3B3B;
  display: inline-block;
}
.after-login .border-button:hover {
  color: #F59635;
}
.checkout-flex-group{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -12px;
}
.checkout-flex-group .zip-code,
.checkout-flex-group .city{
  padding: 0 12px;
}
.checkout-flex-group .zip-code{
  width: 40%;
}
.checkout-flex-group .city{
  width: 60%;
}
.shipping-info h4{
  margin-bottom: 24px;
}
.shipping-info{
  margin-top: 24px;
  display: none;
}
.shipping-info.show{
  display: block;
}
.checkout-form .address-group.radio-group input[type=radio] + label{
  height: 20px;
  padding: 0;
  width: 20px;
}
.checkout-form .address-group,
.checkout-form .radio-btn{
  display: flex;
  align-items: flex-start;
}
.checkout-form .address-group{
  justify-content: space-between;
  border: 1px solid #DDDDDD;
  padding: 20px;
  width: 100%;
  margin-bottom: 24px;
  position: relative;
}
.checkout-form .address-group:last-child{
  margin: 0;
}
.checkout-form .address-group h5{
  line-height: 26px;
  margin: 0 0 16px;
  display: none;
}
.checkout-form .address-group p{
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.checkout-form .address-group .detail {
  margin-left: 12px;
}
.checkout-form .address-group address {
  max-width: 235px;
}
.checkout-form .address-group p > a {
  color: #858584;
}
.checkout-form .address-group p > a:hover {
  color: #F59635;
}
.checkout-form .address-group .store-pin {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 4px;
  position: absolute;
  top: 20px;
  right: 20px;
}
.card-payment-group{
  background-color: #F1F1F1;
  padding: 24px 20px;
  margin-bottom: 24px;
}
.card-payment-group:last-child{
  margin: 0;
}
.card-payment-group .radio-group input[type=radio] + label{
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
}
.card-payment-group .radio-group{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-payment-group .payment-group-block{
  margin-bottom: 24px;
  padding: 16px;
  background: #FFF;
  border: 1px solid #DDD;
}
.card-detail {
  display: none;
}
.card-detail {
  margin-top: 26px;
}
.card-payment-group .radio-group img{
  flex-shrink: 0;
}
.checkout-flex-group.expiration-date .zip-code{
  width: 60%;
}
.checkout-flex-group.expiration-date .city{
  width: 40%;
}
.checkout-flex-group.expiration-date{
  margin-bottom: -24px;
}
.card-payment-group h6{
  margin-bottom: 10px;
}
.card-payment-group .success-message{
  font-weight: 500;
}
.loyalty-points-group p{
  color: #302929;
  font-weight: 400;
  margin: 0;
}
.loyalty-points-group{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.loyalty-points-group .check-group label{
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.loyalty-points-form-group{
  position: relative;
  margin-top: 24px;
}
.loyalty-points-form-group label {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  align-items: center;
}
.loyalty-points-form-group label i {
  margin-right: 12px;
}
.loyalty-points-form-group .remove-btn {
  position: absolute;
  right: 16px;
  top: 48px;
  border: none;
  padding: 0;
  text-underline-offset: 2px;
  color: #F59635;
  transition: 0.4s;
}
.loyalty-points-form-group .remove-btn:hover {
  color: #242424;
  transition: 0.4s;
}
.loyalty-points-form-group input{
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding-right: 76px;
}
.order-summary-body{
  background: #F1F1F1;
  padding: 24px;
}
.order-summary-body .toggle1{
  border-bottom: 1px solid #DCD7DA;
  padding-bottom: 16px;
  margin-bottom: 16px;
  font-weight: 400;
  position: relative;
  cursor: pointer;
}
.order-summary-body .toggle1::before{
  content: '';
  position: absolute;
  background: url('../images/icon_chevron.svg') no-repeat center;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 4px;
  right: 0;
  transition: all 0.4s;
}
.order-summary-body .toggle1.toggled-on::before{
  transform: rotate(180deg);
  transition: all 0.4s;
}
.cart-item-list {
  margin-bottom: 30px;
  display: none;
}
.cart-item-list .single-product {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.cart-item-list .single-product:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.cart-item-list .product-img a, .order-list .product-img a {
	width: 83px;
	height: 106px;
	background-color: #FFFFFF;
	border: 1px solid #DDDDDD;
	border-radius: 0;
	display: block;
	padding: 10px;
}
.cart-item-list .quantity, .order-list .quantity {
	color: #858584;
  font-size: 14px;
	font-weight: 400;
  line-height: 21px;
  margin-bottom: 2px;
}
.cart-item-list .product-detail, .order-list .product-detail {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}
.cart-item-list .product-detail-main h6, .order-list .product-detail-main h6 {
  margin-bottom: 2px;
}
.cart-item-list .product-detail-main h6 a, .order-list .product-detail-main h6 a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-list .product-detail ul, .order-list .product-detail ul {
  text-align: right;
  margin-bottom: 0;
}
.cart-item-list .product-pricing h5, .order-list .product-pricing h5 {
	font-weight: 500;
}
.cart-item-list .product-pricing h5 > span, .order-list .product-pricing h5 > span {
	margin-left: 0;
  display: block;
}
.order-summary-body .price-detail h6{
  margin-bottom: 10px;
}
.order-summary-body .price-list li{
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #858584;
  margin-bottom: 10px;
}
.order-summary-body .price-list{
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #DCD7DA;
}
.order-summary-body .total-amount,
.order-summary-body .price-list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 8px;
}
.order-summary-body .price-list .convenience-row span > span {
  margin-left: 8px;
}
.order-summary-body .price-list .convenience-inner > ul {
	width: 100%;
	padding-left: 20px;
}
.order-summary-body .total-amount h5 {
  margin: 0;
}
.order-summary-body .total-amount h5:last-child {
  font-weight: 700;
}
.order-summary-body .price-list li:last-child{
  margin: 0;
}
.order-summary-body .terms-conditions{
  align-items: flex-start;
  margin: 32px 0 24px;
}
.order-summary-body .terms-conditions input {
	width: 20px;
	height: 20px;
	border: 2px solid #858584;
}
.order-summary-body .terms-conditions label{
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #242424;
  padding-left: 10px;
}
.order-summary-body .terms-conditions .border-button {
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
.order-summary-body .place-order-btn{
  width: 100%;
}
.order-successfully-modal .modal-body{
  text-align: center;
}
.order-successfully-modal .modal-body img{
  margin: 0 auto 24px;
  max-width: 134px;
}
.order-successfully-modal h6 span{
  color: #695F70;
}
.order-successfully-modal h3,
.order-successfully-modal h6,
.order-successfully-modal p{
  margin-bottom: 10px;
}
.order-successfully-modal p{
  color: #695F70;
  font-weight: 400;
}
.order-successfully-modal p.description{
  margin-bottom: 24px;
}
.order-successfully-modal .click-here-btn{
  margin-top: 10px;
}
.order-successfully-modal .modal-dialog{
  max-width: 482px;
}
/* End Checkout */

/* Account */
.account-sidebar {
  background: #F1F1F1;
  padding: 24px;
  margin: 0;
  position: sticky;
  top: 150px;
}
.account-sidebar .sidebar-item {
  margin-bottom: 8px;
}
.account-sidebar .sidebar-item:last-child {
  margin-bottom: 0;
}
.account-sidebar .sidebar-item .sidebar-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 10px;
  display: flex;
  align-items: center;
  color: #858584;
  transition: all 0.3s ease-in-out;
}
.account-sidebar .sidebar-item .sidebar-link:hover, .account-sidebar .sidebar-item .sidebar-link:focus {
  background: #FFFFFF;
  color: #242424;
  transition: all 0.3s ease-in-out;
}
.account-sidebar .sidebar-item .sidebar-link.active {
  background: #FFFFFF;
  color: #242424;
}
.account-sidebar .sidebar-item .sidebar-link svg {
  margin-right: 8px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.account-sidebar .sidebar-item .sidebar-link svg path {
  transition: all 0.3s ease-in-out;
}
.account-sidebar .sidebar-item .sidebar-link.active svg path, .account-sidebar .sidebar-item .sidebar-link:hover svg path, .account-sidebar .sidebar-item .sidebar-link:focus svg path {
  fill: #242424;
  transition: all 0.3s ease-in-out;
}
.common-card {
  padding: 32px;
  border: 1px solid #DDDDDD;
}
.account-information {
  padding: 0;
  margin-bottom: 32px;
}
.account-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 32px 13px 32px;
  border-bottom: 1px solid #DDDDDD;
}
.account-info-button {
  display: flex;
  align-items: center;
  gap: 24px;
}
.account-basic-info {
  padding: 24px 32px 24px 32px;
}
.account-basic-info-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  gap: 10px;
  margin-bottom: 16px;
}
.account-basic-info ul {
  margin-bottom: 24px;
}
.account-basic-info ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 6px;
}
.account-basic-info ul li span {
  max-width: 217px;
  width: 100%;
  color: #858584;
}
.account-basic-info ul li a {
  color: #000000;
}
.account-basic-info ul li a:hover {
  color: #FE9901;
}
.account-address-info {
  padding: 24px 32px 32px 32px;
}
.account-address p {
  margin-bottom: 2px;
}
.account-address h4 {
display: none;
}
.account-address a {
  color: #000000;
}
.account-address a:hover {
  color: #FE9901;
}
.account-address address {
  max-width: 187px;
  margin-bottom: 2px;
  color: #000000;
}
.account-address-links {
  display: flex;
  align-items: center;
  margin-top: 60px;
}
.account-address-links a {
  position: relative;
  color: #F59635;
}
.account-address-links a:hover {
  color: #242424;
}
.account-address-links a:first-child {
  margin-right: 10px;
  padding-right: 10px;
}
.account-address-links a:first-child::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: 17px;
  background-color: rgba(150, 153, 156, 0.6);
}
.account-address .another-address {
  max-width: 224px;
}
.recent-order h4 {
  margin-bottom: 28px;
  font-weight: 400;
}
.order-detail {
  display: flex;
  align-items: center;
  background: #F1F1F1;
  padding: 16px 0;
  margin: 0 -32px 16px;
}
.order-detail li {
  padding-left: 32px;
}
.order-detail li:last-child {
  padding-right: 32px;
  text-align: end;
}
.order-detail li span.text-dark-grey {
  color: #858584;
}
.order-detail li span.text-black {
  color: #000000;
}
.add-review-block p {
  margin-bottom: 48px;
}
.your-review-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 0;
}
.your-review-block ul li {
  margin-bottom: 16px;
}
.your-review-block ul li:last-child {
  margin-bottom: 0;
}
.your-review-block .your-review-img {
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  color: #FFF;
  background-color: #696767;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}
.recent-order .mini-product-top {
  position: relative;
  display: flex;
  gap: 15px;
}
.recent-order .product-img a {
width: 102px;
height: 79px;
padding: 5px 21px;
}
.recent-order .product-detail {
  width: 100%;
}
.order-product-price {
  position: absolute;
  top: 0;
  right: 0;
}
.account-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}
.tag {
  position: relative;
  background: linear-gradient(90deg, #FE9901 -0.09%, #FFD93B 99.91%);
  margin: 0;
  padding: 5px 21px;
  color: #232B44 !important;
}
.tag:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 5px solid #FFFFFF;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}
.tag:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-right: 5px solid #FFFFFF;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}
/* Account End */

/* Registration */
.registration {
  position: relative;
  z-index: 0;
}
.registration::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background-color: #FFF7E3;
  z-index: -1;
}
.registration h1 {
  font-weight: 400;
}
.registration-content {
  padding: 60px 0 80px;
  max-width: 475px;
  width: 100%;
  margin: 0 auto;
}
.registration-content h6 {
  font-weight: 400;
  color: #695F70;
}
.registration-card, .thank-you-block {
  padding: 32px;
  background: #FFFFFF;
  box-shadow: 0px 23px 59px 0px rgba(222, 226, 230, 0.25);
  margin-top: 32px;
}
label.error, label.message {
	position: relative;
	color: #FF4444;
	margin-top: 8px;
	margin-bottom: 0;
  font-weight: 300;
  display: none;
}
.registration .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback), .change-password .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback), .edit-address .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback), .contact .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
margin-left: 10px;
}
.phone-number .numbers {
  position: absolute;
  top: 13px;
  left: 16px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  max-width: 40px;
  padding: 0;
}
.phone-number input { 
  padding-left: 70px;
}
.registration-form p {
  padding-top: 24px;
  font-weight: 500;
  color: #3B3B3B;
}
.registration-form p > a {
  margin-left: 6px;
  line-height: 24px;
  font-weight: 500;
  color: #F59635;
  text-transform: uppercase;
  transition: 0.4s;
}
.registration-form p > a:hover {
  color: #242424;
  transition: 0.4s;
}
.form-password {
  position: relative;
}
.form-password input, .form-password-input {
  padding-right: 44px;
}
.toggle-password {
  position: absolute;
  top: 45px;
  right: 12px;
}
.show-password, .hide-password {
  padding: 0;
  border: none;
  display: block;
}
.show-password {
  display: none;
}
.show-hide-password .hide-password{
  display: none;
}
.show-hide-password .show-password{
  display: block;
}
.registration-content .shipping-info {
  margin-top: 0;
}
.login , .otp, .forget {
  display: none;
}
.forget-pass {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}
.forget-pass a {
  display: inline-block;	
  font-weight: 500;
  text-align: end;
  color: #232B44;
}
.forget-pass a:hover {
  color: #FE9901;
}
.forget .registration-form p {
  max-width: 240px;
  margin: 0 auto;
}
.forget .registration-form p > a {
  display: block;
  margin-top: 16px;
}
.pass-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 0 24px;
}
.pass-wrap input {
  padding: 0;
  width: 60px;
  height: 60px;
  font-size: 32px;
  line-height: 48px;
  text-align: center;
}
.pass-wrap input:focus {
  border-color: #FE9901;
}
.registration-social p {
  text-align: center;
  color: #858584;
  font-weight: 400;
}
.forget .registration-social p {
  margin-bottom: 16px;
}
.registration-social ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 0;
}
/* Registration End */

/* Address Listing */
.address-listing .common-card {
  padding: 24px;
  height: 100%;
}
.add-address {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.add-address i {
  width: 68px;
  height: 68px;
  font-size: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(150, 153, 156, 0.6);
  margin-bottom: 10px;
}
/* Address Listing End */

/* Order Listing */
.order-listing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.order-list {
  padding: 0;
  margin-bottom: 32px;
}
.order-list:last-child {
margin-bottom: 0;
}
.order-list .order-detail {
  padding: 16px 32px;
  margin: 0 0 16px 0;
}
.order-list .order-detail li:first-child {
  padding-left: 0;
}
.order-list .order-detail li:last-child {
  padding-right: 0;
}
.order-list .order-list-title {
  padding-left: 32px;
}
.order-list h6 .text-dark-grey {
  padding-left: 16px;
  display: inline-block;
}
.order-list .single-product {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 32px 24px;
}
.order-list .mini-product-top {
  padding: 0 32px 24px;
}
.order-list .order-product-price {
  right: 32px;
}
.order-list .product-img a {
  width: 83px;
  height: 106px;
  padding: 5px;
}
.order-list .reorder-btn {
  position: absolute;
  bottom: 24px;
  right: 32px;
  padding: 8px 16px;
  letter-spacing: 0;
}
.order-list .body-normal {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.order-detail .border-button {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
/* Order Listing End */

/* Order Details */
.text-bold {
  font-weight: 500;
}
.order-details-info {
  padding: 0 32px 32px;
}
.order-details .common-card {
  border: none;
  padding: 0;
}
.order-summary-list li, .order-summary-list .convenience-inner li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.order-summary-list > li:first-child {
  margin-bottom: 16px;
}
.order-summary-list > li:last-child {
  margin-bottom: 0;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #DCD7DA;
}
.order-summary-list > li:last-child span:last-child {
  font-weight: 700;
}
.order-summary-list .convenience-inner ul {
  width: 100%;
  padding-left: 20px;
  margin-bottom: 0;
}
.order-summary-list .convenience-inner li {
  margin-bottom: 6px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  color: #858584;
}
.order-summary-list .convenience-inner li:last-child {
  margin-bottom: 0;
}
.order-summary-list .convenience-row span > span {
	margin-left: 8px;
}
.order-detail-list > li {
  border-top: none;
}
.order-detail-list > li:first-child {
  padding: 32px 32px 20px 32px;
}
.order-summary-list li span.text-dark-grey {
  color: #858584;
}
.order-detail-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.order-detail-heading h6 {
  padding: 0;
}
.order-detail-list > li:first-child p.samll-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #858584;
  margin-top: 6px;
  margin-bottom: 0;
}
.order-listing {
max-height: 328px;
overflow-y: auto;
}
.order-listing > li {
  padding-bottom: 16px;
  margin: 0 32px 16px;
  border-bottom: 1px solid rgba(114, 106, 106, 0.2);
}
.order-listing li:last-child {
  border-bottom: none;
}
.order-list.order-detail-list .single-product {
  padding: 0;
}
.order-listing .mini-product-top {
  padding: 0 32px;
}
.order-listing .order-product-price {
right: 32px;
}
.product-tracking {
  padding-right: 16px;
  padding-bottom: 20px;
}
.product-tracking .text-dark-grey {
  color: #858584;
}
.product-tracking-block {
  margin: 16px 0 0;
  padding-right: 36px;
  overflow-y: auto;
  max-height: 330px;
}
.product-tracking-block li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 16px;
}
.product-tracking-block li:last-child {
  padding-bottom: 0;
}
.product-tracking-block li span {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #242424;
}
.product-tracking-block li span.text-dark-grey {
  color: #858584;
  font-weight: 400;
}
.tracking-info {
  border-left: 1px solid rgba(133, 133, 132, 0.2);
  margin-left: 16px;
  padding-left: 16px;
}
.tracking-info span {
  white-space: nowrap;
}
.tracking-info label {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 10px;
}
.add-review-modal h4 {
  margin-bottom: 32px;
}
.star-rating {
  direction: rtl;
  display: inline-block;
	margin-bottom: 40px;
}
input[type=checkbox].star-icon {
  display: none;
}
.star-button {
  margin-bottom: 0;
  padding-left: 24px;
}
.star-button:last-child {
  padding-left: 0;
}
.star-button:before, .star-button:after {
  content: "";
  cursor: pointer;
  background-image: url(../images/icon_star.svg);
  background-size: cover;
  height: 40px;
  width: 40px;
  display: block;
  transition: all 0.4s;
}
.star-button:after {
  display: none;
  background-image: url(../images/icon_star_fill.svg);
}
input[type=checkbox]:checked ~ .star-button:before {
  background-image: url(../images/icon_star_fill.svg);
}
.add-review-modal .form-group label {
  text-align: left;
  display: block;
}
.add-review-modal .form-group textarea {
  height: 150px;
}
.add-review-modal .modal-dialog {
	max-width: 526px;
}
/* Order Details End */

/* CMS */
.cms-content h2 {
  line-height: 42px;
  margin-bottom: 24px;
}
.cms-content p {
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
  padding-right: 30px;
}
.cms-content .cms-image {
  display: none;
}
.csm-slider-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* CMS End */

/* Error Page */
.content-text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.error-page {
  text-align: center;
  margin: 0 auto;
}
.error-page .image-center {
  margin-bottom: 30px;
}
.error-page h2 {
  max-width: 670px;
  color: #695F70;
}
.largest-text h1 {
font-size: 150px;
line-height: 190px;
font-weight: 600;
}
.thank-you-block {
  margin-bottom: 0;
  text-align: center;
}
.thank-you-image {
	display: inline-block;
	margin: 0 auto;
}
.thank-you-block p {
  max-width: 700px;
  margin: 0 auto 16px;
}
/* Error Page End */

/* Contact Us */
.contact-sidebar-wrapper {
  position: sticky;
  top: 150px;
}
.contact-sidebar {
  background: #F1F1F1;
  padding: 24px;
  margin: 0;
}
.contact-sidebar .sidebar-item {
  margin-bottom: 8px;
}
.contact-sidebar .sidebar-item:last-child {
  margin-bottom: 0;
}
.contact-sidebar .sidebar-item .sidebar-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 10px;
  display: flex;
  align-items: center;
  color: #858584;
  transition: all 0.3s ease-in-out;
}
.contact-sidebar .sidebar-item .sidebar-link:hover, .contact-sidebar .sidebar-item .sidebar-link:focus {
  background: #FFFFFF;
  color: #242424;
  transition: all 0.3s ease-in-out;
}
.contact-sidebar .sidebar-item .sidebar-link.active {
  background: #FFFFFF;
  color: #242424;
}
.contact-inner-wrapper {
	padding: 20px;
	border: 1px solid #DDD;
}
.contact-inner-list {
  margin-bottom: 0;
}
.contact-inner-list li {
  margin-bottom: 12px;
}
.contact-inner-list li:last-child {
  margin-bottom: 0;
}
.contact-inner-list li h5, .store-timings h5 {
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-inner-list li address {
  max-width: 220px;
}
.contact-inner-map iframe {
  height: 330px;
  width: 100%;
  display: block;
}
/* Contact Us End */

/* FAQ */
.faq-block .accordion {
  margin-top: 32px;
  position: relative;
  z-index: 0;
}
.faq-block .accordion-item {
  margin-bottom: 24px;
  border: 1px solid #DDD;
}
.faq-block .accordion-item:last-child {
  margin: 0;
}
.faq-block .accordion-button {
  padding: 30px 40px;
  gap: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
}
.faq-block .accordion-button:not(.collapsed) {
background-color: #FFFFFF;
box-shadow: none;
  padding-bottom: 0;
}
.faq-block .accordion-button:focus {
border-color: transparent;
box-shadow: none;
}
.faq-block .accordion-body {
padding: 15px 114px 30px 40px;
}
.faq-block .accordion-button::after {
  content: '';
  width: 40px;
  height: 40px;
  background-image: url(../images/icon_chevron_black.svg);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-90deg);
  transition: transform .2s ease-in-out;
  border: 1px solid #A7A5A6;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-block .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  background-color: #F59635;
  border: 1px solid #F59635;
  color: #FFFFFF;
}
/* FAQ End */

/* Our Shops */
.our-shops-content .contact-inner-list {
  margin-bottom: 16px;
}
.timings {
  border: 1px solid #DDD;
  max-width: 350px;
}
.timings li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #DDD;
}
/* .timings li:first-child {
  padding-top: 8px;
} */
.timings li:last-child {
  border-bottom: 0;
}
.our-shops-map iframe {
  height: 600px;
  width: 100%;
  display: block;
}
/* Our Shops End */

/* Queries */
.common-card.queries-from {
  padding: 24px;
}
/* Queries End */
/* Order By Phone */
.quoted {
  position: relative;
  padding-left: 12px;
}
.quoted::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #F59635;
}
.content-inner .quoted li {
  margin-bottom: 8px;
  padding: 0;
}
.quoted li::before {
  display: none;
}
.quoted a {
  padding-left: 8px;
}
/* Order By Phone End */

/* Our Shop */
.shop-title {
  text-align: center;
  margin-bottom: 30px;
}
.shop-row {
  margin-bottom: -24px;
}
.shop-col {
  margin-bottom: 24px;
}
.shop-title p {
  max-width: 700px;
  margin: 0 auto;
}
.our-shop-box {
  position: relative;
}
.our-shop-image {
  overflow: hidden;
  position: relative;
}
.our-shop-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
}
.our-shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.our-shop-box:hover .our-shop-image img {
  transform: scale(1.2);
  transition: 0.4s;
}
.our-shop-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  text-align: center;
}
.our-shop-content .solid-button {
  font-size: 14px;
  padding: 10px 20px;
}
/* End Our Shop */

/* Blog */
.blog-row {
  margin-bottom: -24px;
}
.blog-col {
  margin-bottom: 24px;
}
#blog-row .blog-col.hidden {
  display: none;
}
#loader{
  width: 100%;
  padding:5px 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  /* color:white;
  background: rgba(0,0,23,0.71);
  box-shadow: 0 0 10px black;	 */
}
#loader h2 {
  color: #F59635;
}
#loader.hidden {
  display: none;
}
/* Blog End */

/* Customer Support */
.customer-support-title {
  margin-bottom: 30px;
  text-align: center;
}
.customer-support-title p {
  max-width: 450px;
  margin: 0 auto;
}
.customer-support-row {
  margin-bottom: -24px;
}
.customer-support-col {
  padding-bottom: 24px;
}
.customer-support-block h5 {
  border-bottom: 1px solid #DDD;
	padding-bottom: 12px;
}
.customer-support-links {
  margin-bottom: 0;
}
.customer-support-links li {
  margin-bottom: 8px;
}
/* Customer Support End */

/* Icon Styling */
.icon-star-fill::before {
  mask-image: url(../images/icon_star_fill.svg);
  -webkit-mask-image: url(../images/icon_star_fill.svg);
  width: 40px;
  height: 40px;
  background: #F59635;
}
.icon-cart::before {
  mask-image: url(../images/icon_cart.svg);
  -webkit-mask-image: url(../images/icon_cart.svg);
  width: 24px;
  height: 24px;
  background: #2B2B2B;
}
.icon-save::before {
  mask-image: url(../images/icon_save.svg);
  -webkit-mask-image: url(../images/icon_save.svg);
  width: 24px;
  height: 24px;
  background: #242424;
}
.icon-heart-bor::before {
  mask-image: url(../images/icon_heart_bor.svg);
  -webkit-mask-image: url(../images/icon_heart_bor.svg);
  width: 24px;
  height: 24px;
  background: #242424;
}
.icon-cross-black::before {
  mask-image: url(../images/icon_cross_black.svg);
  -webkit-mask-image: url(../images/icon_cross_black.svg);
  width: 32px;
  height: 32px;
  background: #242424;
}
.icon-chevron-gray-right::before {
  mask-image: url(../images/icon_chevron_gray_right.svg);
  -webkit-mask-image: url(../images/icon_chevron_gray_right.svg);
  width: 24px;
  height: 24px;
  background: #242424;
}
.icon-chevron-gray-left::before {
  mask-image: url(../images/icon_chevron_gray_left.svg);
  -webkit-mask-image: url(../images/icon_chevron_gray_left.svg);
  width: 24px;
  height: 24px;
  background: #242424;
}
.icon-eye::before {
  mask-image: url(../images/icon_eye.svg);
  -webkit-mask-image: url(../images/icon_eye.svg);
  width: 24px;
  height: 24px;
  background: #858584;
}
.icon-eye-slash::before {
  mask-image: url(../images/icon_eye_slash.svg);
  -webkit-mask-image: url(../images/icon_eye_slash.svg);
  width: 24px;
  height: 24px;
  background: #858584;
}
.icon-location::before {
  mask-image: url(../images/icon_location.svg);
  -webkit-mask-image: url(../images/icon_location.svg);
  width: 20px;
  height: 20px;
  background: #F59635;
}
.icon-discount::before {
  mask-image: url(../images/icon_discount.svg);
  -webkit-mask-image: url(../images/icon_discount.svg);
  width: 20px;
  height: 20px;
  background: #242424;
}
.icon-bucket::before {
  mask-image: url(../images/icon_bucket.svg);
  -webkit-mask-image: url(../images/icon_bucket.svg);
  width: 22px;
  height: 22px;
  background: #3B3B3B;
}
.icon-play::before {
  background: url(../images/icon_play.svg) no-repeat center;
  width: 24px;
  height: 24px;
}
.icon-momo::before {
  background: url(../images/icon_momo.svg) no-repeat center;
  width: 24px;
  height: 24px;
}
.icon-cards::before {
  background: url(../images/icon_cards.svg) no-repeat center;
  width: 24px;
  height: 24px;
}
.icon-wallet::before {
  background: url(../images/icon_wallet.svg) no-repeat center;
  width: 24px;
  height: 24px;
}
.icon-caution::before {
  mask-image: url(../images/icon_caution.svg);
  -webkit-mask-image: url(../images/icon_caution.svg);
  width: 48px;
  height: 47px;
  background: #A01D22;
}
/* Icon Styling End */

/* Spacing Style */
.py-60 {padding-top: 60px;padding-bottom: 60px;}
.pt-60 {padding-top: 60px;}
.pb-60 {padding-bottom: 60px;}
.mb-40{margin-bottom: 40px;}
.mt-40{margin-top: 40px;}
.mt-30{margin-top: 30px;}
.mb-30{margin-bottom: 30px;}
.pb-30{padding-bottom: 30px;}
.pt-40{padding-top: 40px;}
.pb-40{padding-bottom: 40px;}
.pt-20{padding-top: 20px;}
.mb-16{margin-bottom: 16px;}
.mb-12{margin-bottom: 12px;}
/* End Spacing Style */

/* Colors */
.text-green {
	color: #05A715;
}
.text-yellow {
	color: #F59635;
}
.text-grey-dark {
  color: #505050;
}
.grey-text {
  color: #858584;
}
.black-text {
  color: #242424;
}
.red-text {
  color: #FF4444;
}
.red-dark-text {
  color: #A01D22;
}
.red-background {
  background-color: #A01D22;
}
/* Colors End */