@font-face{
	font-family: satoshi;
	font-weight: 400;
	src: url("../font/Satoshi-Regular.otf") format("opentype");
}
@font-face{
  font-family: satoshi;
  font-weight: 600;
  src: url("../font/Satoshi-Medium.otf") format("opentype");
}
@font-face{
  font-family: satoshi;
  font-weight: 700;
  src: url("../font/Satoshi-Bold.otf") format("opentype");
}
@font-face{
  font-family: satoshi;
  font-weight: 900;
  src: url("../font/Satoshi-Black.otf") format("opentype");
}

:root {
  --icon-position: 8px;
  --iconcolor: #000000;
  --textcolor: #000000;
  --bg-color-1: #FFF;
  --bg-color-2: #FAFAFA;
  --textsubcolor: #C46969;
  --maincolor: rgba(196,105,105,1);
  --maincolor-disabled: #bfbfbf9e;
  --subcolor: #F7E9E9;
  --spacing-xs: 2px;
  --spacing-sm: 4px;
  --spacing-md: 8px;
  --spacing-lg: 12px;
  --spacing-xl: 16px;
  --spacing-xxl:20px;
}

/*#ffdd57*/
html body {
  /*background-color:#f9f9f9;
  line-height:1;*/
  line-height: 20px !important;
  font-size:14px;
  font-style:normal;
  height: 100%;
  -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

body{
  font-family: satoshi;
  min-height: 100vh;
  /*==================IMAGE==================*/
  /*background: url("../img/bg/bg_img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;*/
  /*=========================================*/

  /*==================COLOR==================*/
  /*background-color: #606060;*/
  /*=========================================*/
}


input[type='password']:not(:placeholder-shown){
  font: small-caption;
}
.form-control:focus{
  border-color: var(--maincolor) !important;
  box-shadow: none;
}
.form-control.success{
  border-color: #28a745 !important;
}
.form-control.error{
  background-color: var(--subcolor) !important;
}

.panel{
  padding: 20px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
}
.panel.small-panel{
  padding: 16px;
}
.panel.panel-grey{
  background-color: var(--bg-color-2);
}

.maincolor{
  background-color: var(--maincolor);
}
.subcolor{
  background-color: var(--subcolor);
}


.btn{
  line-height: 20px!important;
}
.btn.custom-size-1{
  padding: 8px 24px;
}
.mainbtn{
  background-color: var(--maincolor);
  color: #fff;
  width: 100%;
  padding: 8px 24px;
  transition: 0.3s all ease;
}
.subbtn{
  background-color: var(--subcolor);
  color: var(--textsubcolor);
  padding: 8px 24px;
}
.mainbtn:hover{
  filter: brightness(150%);
  color: #fff;
}
.subbtn:hover{
  filter: hue-rotate(5deg) saturate(200%);
  color: var(--textsubcolor);
}
.maincolor.disabled{
  background-color: var(--maincolor-disabled);
  user-select: none;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-default{
  background-color: #fff;
  border-color: #E8E8E8;
  color: #737373;
}
.btn-outline-white{
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover{
  background-color: #fff;
  color: #000;
  border-color: #fff;
  transition: all 0.5s ease;
}

.btn.active{
  border-color: var(--maincolor);
  background-color: var(--subcolor);
  color: var(--maincolor);
  outline: none;
  box-shadow: none;
}
.btn.active img{
  filter: invert(50%) sepia(34%) saturate(561%) hue-rotate(314deg) brightness(93%) contrast(103%);
}
.mainbtn.disabled,.mainbtn:disabled,.subbtn.disabled,.subbtn:disabled,.btn-default.disabled,.btn-default:disabled{
  background-color: #d0d0d0;
  color: #9d9d9d;
  cursor: not-allowed;
}

.main-fontcolor{
  color: var(--maincolor) !important;
}
.accent-color-1{
  color: darkorange;
}

.sort-item{
  padding: .3rem 0.75rem;
}

.mw-rule-1{
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.p-rule-1{
  padding: var(--spacing-xxl);
}
.p-rule-2{
  padding: var(--spacing-xl);
}
.pb-rule-1{
  padding-bottom: var(--spacing-lg);
}
.px-rule-1{
    padding-left:6px;
    padding-right:6px;
}
.px-rule-2{
    padding-left: var(--spacing-xxl);
    padding-right: var(--spacing-xxl);
}
.py-rule-1{
  padding-top: var(--spacing-xxl);
  padding-bottom: var(--spacing-xxl);
}

.font-rule-1{
  font-size: 14px !important;
  line-height: 20px !important;
}
.font-rule-2{
  font-size: 16px !important;
  line-height: 22px !important;
}

.header-rule-1{
  font-weight: 900 !important;
  font-size: 14px !important;
  line-height: 20px !important;
}
.header-rule-2{
  font-weight: 900 !important;
  font-size: 16px !important;
  line-height: 22px !important;
}
.header-rule-3{
  font-weight: 700 !important;
  font-size: 18px !important;
  line-height: 24px !important;
}
.header-rule-4{
  font-weight: 700 !important;
  font-size: 22px !important;
  line-height: 28px !important;
}
@media(min-width: 1200px){
  .px-rule-2{
    padding-right: 6.44%!important;
    padding-left: 6.44% !important;
  }
}
@media(min-width: 576px){
  .panel{
    padding: 24px;
  }
  .mainbtn{
    width: initial;
  }
  .py-rule-1{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .font-rule-1{
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .font-rule-2{
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .header-rule-2{
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .header-rule-1{
    font-weight: 900 !important;
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .header-rule-3{
    font-weight: 700 !important;
    font-size: 24px !important;
    line-height: 30px !important;
  }
  .header-rule-4{
    font-weight: 700 !important;
    font-size: 38px !important;
    line-height: 44px !important;
  }
}
@media(min-width: 768px){
  .p-rule-1{
    padding:20px 169px;
  }
}
@media(min-width: 1200px){
  .p-rule-1{
    padding:40px 324px;
  }
  .p-rule-2{
    padding: 24px;
  }
}
.alert.custom-size-1{
  padding: 16px;
}
.btn-default{
  background-color: #fff;
  border-color: #E8E8E8;
  color: #737373;
}
/*==================SVG======================*/
/*override font awesome*/
.modal .fa-times::before{
  content: url(../img/logo/close.svg);
}
button .svg-path{
  fill: var(--maincolor) !important;
}
/*===============BTN GROUP==================*/
.btn-group.custom{
  background-color: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  color: #000;
}
.btn-group.custom button{
  background-color: transparent;
  border: none;
  padding: 6px 8px;
}
@media(max-width: 576px){
  /*.btn-group.custom{
    float: left;
    margin-top: var(--spacing-md);
  }*/
}
/*=================OVERLAY==================*/
.overlay-container{
    position: relative;
    height: 100%;
}
.overlay-container img,.overlay-text{
  z-index: 2;
}
.overlay-img{
  position: absolute;
  top: 0;
  background-color: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  transition: .5s ease;
  opacity: 0;
}
.overlay-container:hover .overlay-img,.overlay-img.active{
  opacity: 1;
}
.overlay-text{
  z-index: 2;
  visible: 0;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
/*==================BANNER==================*/
.banner{
  min-height: 50vh;
  padding-top: 15%;
  padding-bottom: 15%;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center!important;
  align-items: center!important;
  -ms-flex-direction: column!important;
  flex-direction: column!important;
}
/*==================FOOTER==================*/
.footer-content{
  background-color: #fff;
  /*padding: 40px 120px 40px 120px;*/
}
.footer-content .menu{
  padding: 0.5rem;
}
/*=================COMBO IMG================*/
.combo-img.active{
  border: 2px solid #33bf5d;
}

/*===========PWD INPUT&NOTIF INPUT=========*/
.notification-form{
  transition: 0.3s all ease;
}
.notification-form.success .notification-msg{
  color: #039855;
}
.notification-form.error .notification-msg{
  color: #dc3545;
}
.notification-form.success input{
  border-color: #039855 !important;
  padding-left: calc( var(--icon-position) + 20px );
}
.notification-form.error input{
  background-color: var(--subcolor) !important;
  border-color: var(--maincolor) !important;
}
.notification-form.success .form-group:before{
  color: #039855;
  position: absolute;
  left: var(--icon-position);
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 900;
}

.password-container{
  width: 100%;
  position: relative;
  display: flex;
}

.icon-container.left input{
  padding-left: calc( var(--icon-position) + 20px );
}
.icon-container.right input{
  padding-right: calc( var(--icon-position) + 20px );
}
.icon-container .input-icon{
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: #8e8e8e;
  /*font-size: 18px;*/
}
.icon-container .input-icon.left{
  left: var(--icon-position);
}
.icon-container .input-icon.right{
  right: var(--icon-position);
}
.icon-container .input-icon:hover{
  color: #595959 !important;
  transition: .15s color linear;
}
/*=================Checkout=================*/
.itm-name{
  font-size: 1.25rem;
}
.qty-opt{
  font-size: 1.25rem;
  user-select: none;
}
@media(min-width: 576px){
  .itm-name{
    font-size: 1.75rem;
  }
  .qty-opt{
    font-size: 1.5rem;
  } 
}
/*=================Custom Radio&Checkbox===============*/
.radiocheck-image{
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.radiocheck-image > .custom-control{
  padding-left: 0 !important;
  height: 100%;
}
.radiocheck-image .custom-control label{
  width: 100%;
  height: 100%;
}
.radiocheck-image .custom-control-label::before,.radiocheck-image .custom-control-label::after{
  left: 0.3rem !important;
  top: 0.3rem !important;
}
.radiocheck-image .custom-control-input:checked ~ .custom-control-label{
  border: 1px solid var(--maincolor);
}

.custom-control.custom .custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--maincolor);
  background-color:var(--maincolor);
}
.custom-control.custom .custom-control-input:focus ~ .custom-control-label::before{
  box-shadow: none;
}
.custom-control.custom{
  padding-top: 6px;
  padding-bottom: 6px;
}
.custom-checkbox.custom .custom-control-label::before{
  border-radius: 1.6px
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: var(--maincolor);
  background-color: var(--maincolor);
}
/*=================filter=================*/
.filter-container{
  background-color: #FAFAFA;
  -ms-flex-direction: column!important;
  flex-direction: column!important;
  gap: 24px;
  padding: 24px;
  border-radius: 4px;
}
.sort-container{
  padding: 24px;
}
.sortbtn{
  background-color: #FAFAFA;
  border-color: #E5E5E5;
  color: #000;
}
.filter-group{
  background-color: #FAFAFA;
}
.filter-group button{
  padding: 12px 16px;
}
.filter-group button:focus{
  box-shadow: none;
}


[data-toggle="collapse"][aria-expanded="true"] .fa:before{   
  content: "\f106";
}
[data-toggle="collapse"][aria-expanded="false"] .fa:before {
  content: "\f107";
}
/*=================paging=================*/
.pagination.custom-1{
  color: var(--maincolor);
}
.pagination.custom-1 .page-item{
  cursor: pointer;
  user-select: none;
}
.pagination.custom-1 .page-item.active .page-link{
  background-color: var(--maincolor);
  border-color: var(--maincolor);
  color: #fff;
}
/*=================CARD=================*/
.card.custom .card-header,.card.custom .card-body{
  background-color: #FAFAFA;
  padding: 12px;
}
/*=================RATING===============*/
.rating-container{
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.rating-input{
  display: none;
}
.rating-icon:before{
  font-family: "Font Awesome 5 Free";
  content: "\f005";
  padding-left: 10.5px;
  padding-right: 10.5px;
  cursor: pointer;
  color: #D4D4D4;
  font-weight: 400;
}
.rating-icon:hover:before,
.rating-icon:hover ~ .rating-icon:before,
.rating-input:checked ~ .rating-icon:before
{
  font-weight: 600;
  color: #FEC84B;
}
/*=================LOADER/ANIMATION=================*/
.c-loader{
  position:fixed;
  top: 0;
  left:0;
  height:100%;
  width:100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
.c-loader{
  background-color: rgba(255,255,255,0.7);
}
.c-loader.active{
  display: flex;
}
#loader-4 span{
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: var(--maincolor);
  margin: 35px 5px;
  opacity: 0;
}

#loader-4 span:nth-child(1){
  animation: opacitychange 1s ease-in-out infinite;
}

#loader-4 span:nth-child(2){
  animation: opacitychange 1s ease-in-out 0.33s infinite;
}

#loader-4 span:nth-child(3){
  animation: opacitychange 1s ease-in-out 0.66s infinite;
}

@keyframes opacitychange{
  0%, 100%{
    opacity: 0;
  }

  60%{
    opacity: 1;
  }
}

.box-highlight{
  box-shadow: 0 0px 5px 3px var(--maincolor);
  padding: 0 5px 1.5px 5px;
  border-radius: 6px;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0px 5px 3px var(--maincolor);
  }
  50% {
    box-shadow: 0 0px 3px 3px var(--subcolor);
  }
}
/*=================Modal=================*/
body.modal-open {
  overflow: hidden;
}
/*#aler-modal{
  z-index: 99999;
}*/
.modal.custom{
  transition: all 0.5s ease;
  padding-right: 0 !important;
}
.modal.custom .modal-body{
  padding: 0 24px 24px 24px !important;
}
.modal.custom .modal-header{
  border-bottom: 0;
  padding-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
}
.full-modal{
  max-width: 100vw;
  margin: 0;
}
.full-modal .modal-content{
  height: 100vh;
  border-radius: 0;
  border: 0;
}
.full-modal .modal-body{
  overflow-y: auto;
}
.full-modal .modal-footer,.full-modal .modal-header{
  border-radius: 0;
}
.modal-open {
  overflow: hidden;
}
.close.white{
  color: #fff;
  opacity: 1;
  font-size: 2rem;
}
@media(min-width:576px){
  .modal.custom .modal-dialog{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 5rem);
  }
}
@media(max-width:576px){
  .bottom-modal-sm .modal-dialog{
    margin: 0 !important;  
    position: absolute !important;
    bottom: 0 !important;
    width: 100% !important;
  }
  .bottom-modal-sm .modal-header,.bottom-modal-sm .modal-content{
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border: none !important;
  }
}
/*=============================NAV==============================*/
.category-menu{
  gap: 24px;
}
.category-menu .nav-link:hover{
  border-bottom: 2px solid var(--maincolor);
}
.category-menu>.nav-item>.nav-link{
  padding: 10px !important;
}
.category-menu>.nav-item.show>.nav-link{
  color: var(--maincolor)!important;
  border-bottom: 2px solid var(--maincolor);
}
.nav.custom>.nav-item>.nav-link{
  padding: 0.5rem 0.5rem!important;
}
.nav-item,.nav-link{
  outline: none;
}
.nav-link{
  color: #000;
}
.nav-link:hover{
  color: var(--maincolor)!important;
}
.menu-icon-mr-rule-1{
  margin-right: 12px;
}
.menu-icon-mx-rule-1{
  margin-right: 12px;
  margin-left: 12px;
}
@media(min-width: 576px){
  .nav.custom>.nav-item>.nav-link{
    padding: 0.15rem 0.15rem!important;
    font-size: 60%;
  }
  .nav.custom>.nav-item{
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media(min-width: 576px){
  .menu-icon-mr-rule-1{
    margin-right: 20px;
  }
  .menu-icon-mx-rule-1{
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media(min-width: 768px){
  .nav.custom>.nav-item>.nav-link{
    font-size: 75%;
  }
}
@media(min-width: 1200px){
  .nav.custom>.nav-item>.nav-link{
    font-size: 90%;
  }
}
@media(min-width: 1400px){
  .nav.custom>.nav-item>.nav-link{
    padding: 0.5rem 1rem!important;
    font-size: 90%;
  }
}
@media(min-width: 1700px){
  .nav.custom>.nav-item>.nav-link{
    padding: 0.5rem 1rem!important;
    font-size: initial;
  }
}

#search-container{
  display: none;
  position: absolute;
  width: 100%;
  z-index: 16;
}
.navbar.custom-1{
  padding: 0.5rem!important;
  border-bottom: 2px solid var(--maincolor);

}

.side-navbar{
  width: 100%;
  z-index: 1031;
    overflow-x: clip;
  display: -ms-flexbox !important;
  display: flex !important;
}
.side-navbar * {
    visibility: visible;
}
.side-navbar .navbar-brand{
  /*display: flex;
    position: fixed;*/
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
  width: 30%;
}
.side-navbar .navbar-brand img{
  width: 100%;
}
/*.navbar-brand.custom-size img{
  width: 30%;
}*/
.side-navbar.show .nav-opener{
  position: fixed;
  right: 16px;
}
.nav-opener {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 70px;
  /*width: 30px;*/
  z-index: 1;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  pointer-events: auto;
  margin-left: 7px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.nav-opener:focus {
  outline: none!important;
}

#nav-content {
  padding: 20px;
  width: 90%;
  max-width: 300px;
  position: fixed;
  top: 0;
  right: 0;
  /*height: calc(100% - 70px);*/
  height: 100vh;
  background: #fff;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  transform: translateX(100%);
  transition: transform .3s;
  will-change: transform;
  /*contain: paint;*/
  overflow-y: auto;
  z-index: 1
}
#nav-content ul {
  margin-top: 80px;
  /*margin-left: 1rem;*/
  /*height: 100%;*/
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
}
#nav-content li a {
  border: 1px solid transparent;
  padding: 10px 5px;
  display: block;
  text-transform: uppercase;
  transition: color .1s;
  color: #000;
}
#nav-content li a:visited,#nav-content li a:focus,#nav-content li a:active,#nav-content li a:link{
    text-decoration: none;
    outline: 0;
}
#nav-content li a:hover {
  color: #A27610;
}
#nav-content li:not(.small) + .small {
  margin-top: auto;
}
.side-navbar.show #nav-content {
  transform: none;
}
.icon-bar {
  display: block;
  /*width: 100%;*/
  width: 20px;
  height: 3px;
  background: #000;
  transition: .3s;
}
.icon-bar + .icon-bar {
  margin-top: 5px;
}
.side-navbar.show .button {
  pointer-events: none;
}
.side-navbar.show .icon-bar:nth-of-type(1) {
  transform: translate3d(0,8px,0) rotate(45deg);
}
.side-navbar.show .icon-bar:nth-of-type(2) {
  opacity: 0;
}
.side-navbar.show .icon-bar:nth-of-type(3) {
  transform: translate3d(0,-8px,0) rotate(-45deg);
}
.dropdown-menu{
  z-index: 9999;
  padding: 16px;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  gap: 4px;
  padding: 16px;
}
.dropdown-menu.show{
  display: -ms-flexbox !important;
  display: flex !important;
}
.dropdown-menu.custom>.dropdown-item{
  padding-left: 0;
  padding-right: 0;
}
.dropdown-menu.custom>.dropdown-item.active,.dropdown-menu.custom>.dropdown-item:active{
  color: var(--maincolor);
  text-decoration: none;
  border-bottom: 2px solid var(--maincolor);
  background-color: transparent;
}

/*===================MAP===========================*/
.map-container{
  max-height: 0px;
}
.map-container.active{
  max-height: 900px;
  box-shadow: 0px 3px 1px rgba(0,0,0,0.25); 
  transition: .5s max-height ease-in-out;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
#map {
  max-height: 0;
  height:350px;
  border-radius: 10px;
}
.map-container.active #map{
  max-height: 900px;
  margin:5px 10px;
  transition: .5s max-height ease-in-out;
}

.dropdown-btn::after{
  content:  "\f0d7";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 1rem;
  display: inline-block;
}

@media (min-width: 768px) {
  .side-navbar .navbar-brand{
    width: 10%;
  }
  
  #nav-content{
    position: unset;
    overflow-y: unset;
    max-width: 100%;
    height: auto;
    padding: 0;
  }
  #nav-content ul {
    margin-top: auto;
    margin-bottom: auto;
    /*margin-left: 1rem;*/
    height: 100%;
    flex-direction: row;
    padding: 0;
    list-style: none;
    /*float: right;*/
  }
  #nav-content ul li{  
    padding: 0.3rem;
  }
  #nav-content li a{
    padding: 10px 15px;
  }
  #nav-content li a:hover {
    border-color: #fff;
  }
  .side-navbar .nav-opener{
    display: none;
  }
  .side-navbar #nav-content{
    transform: none;
    background: none;
  }
}
@media (min-width: 330px){
  .nav-opener {
    margin-left: 12px;
  }
}
@media (min-width: 992px){
  #nav-content ul li{  
    padding: 0.5rem;
  }
}


.nav-tabs.custom > .nav-item > .nav-link{
  padding: 14px !important;
}
.nav-tabs.custom .nav-link.active{
  color: var(--maincolor);
  border: none;
  border-bottom: 2px solid var(--maincolor);
}
.nav-tabs.custom .nav-link:focus:not(.active), .nav-tabs.custom .nav-link:hover:not(.active){
  border-color: transparent !important;
}
/*=======================TO TOP========================*/
.to-top{
  position: absolute;
  bottom: 0.5%;
  right: 2%;
  font-size: 2rem;
  background-color: rgba(52, 58, 64,0.8);
  transition: .1s all linear;
}
.to-top:hover{
  background-color: rgba(0, 0, 0,0.8);
  color: #fff;
  cursor: pointer;
}
/*=======================CAROUSEL=======================*/
.carousel-indicators li{
  background-color: #fff!important;
  border-radius: 50%;
  border: .5px solid rgba(0,0,0,0.5);
  width: 7.5px;
  height: 7.5px;
  margin-right: .3rem;
}
.carousel-overlay{
  position: absolute;
  top: 0;
  background-color: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  transition: .5s ease;
  z-index: 1;
}
.carousel-overlay-text{
  z-index: 1;
  visible: 0;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.carousel-center-content{
  overflow: hidden;
  display: -ms-flexbox !important;
  display: flex !important;
  max-height: 240px;
}
.carousel-center-content img{
  width: 100%;
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.carousel-center-content .carousel-caption{
  top: 50% !important;
  transform: translateY(-50%)!important;
  bottom: initial;
}
@media(min-width: 576px){
  .carousel-center-content{
    max-height: 480px;
  }
}
/*=======================TEXT=======================*/
.content-custom-1{
  line-height: 1.5;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
/*=======================COPY=======================*/
.copy-ev{
  cursor: pointer;
  height: 100%;
}
.copy-ev:hover{
  box-shadow: 0 0 0 .2rem rgba(57, 124, 251, 0.5);
  background-color: rgba(159, 179, 198, 0.2);
  transition: 0.25s all linear;
}
/*======================PRODUCT===================*/
/*.img-wrapper{
    height: 100%;
}*/
.layout-1,.layout-1 .info-container,.layout-1 .layout-info{
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.layout-1{
  padding: 6px;
  padding-bottom: 20px;
}
.layout-1 .info-container,.layout-1 .layout-info{
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}
.layout-1 .info-container{
  padding-top: 8px;
}
.layout-1 .layout-info{
  white-space: normal;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.layout-1 .layout-info h6{
  margin-bottom: 4px !important;
}

.image-container{
    width: 100%;
    height: 100%;
}
.image-container img,.logo-container img{
    object-position:center;
    width: 100%;
    height: 100%;
}
.image-container img{
    object-fit:cover;
}
.logo-container img{
    object-fit:contain;
}


.slide-container{
  overflow-x: auto;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: initial;
  padding-right: 1rem;
}
.slide-container::-webkit-scrollbar,.slide-container-md::-webkit-scrollbar {
  display: none;
}

@media(min-width:992px){
  .layout-1{
    padding-bottom: 24px;
  }
  .layout-1 .info-container{
    padding-top: var(--spacing-lg);
  }
  .slide-container::-webkit-scrollbar {
    display: block;
  }
  .slide-container::-webkit-scrollbar{
    width: 1em;
    height: 0.5em;
  }
   
  .slide-container::-webkit-scrollbar-track{
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
   
  .slide-container::-webkit-scrollbar-thumb{
    background-color: var(--maincolor);
    border-radius: 15px;
    width: 7%;
  }
}

.addon-container{

}
.addon-container .info{
  display: -ms-flexbox !important;
  display: flex !important;
  flex-grow: 1;
}
.addon-img{
  /*display: -ms-flexbox !important;
  display: flex !important;
  overflow: hidden;
  -ms-flex-line-pack: center !important;
  align-content: center !!important;
  width: 100%;
  height: 50%;
  height: auto;
  -ms-flex-item-align: start!important;
  align-self: flex-start!important*/
}
.addon-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.addon-container .checkmark{
  display: none;
  margin-right: var(--spacing-md);
}
.sub-img img{
  width: 100%;
}
.active-img img{
  height: 180px;
  transition: 0.15s all linear;
}

.sub-img:first-child{
  padding-left: 0;
  padding-right: 6px;
}
.sub-img:not(:first-child){
  padding-left: 6px;
  padding-right: 6px;
}
.sub-img:last-child{
  padding-left: 6px;
}

.sub-img.active img{
  border: 2px solid var(--maincolor);
}
@media(min-width: 576px){
  .addon-img{
    width: 100%;
  }
}
@media(min-width: 992px){
  .addon-container .info{
    padding-left: var(--spacing-lg);
    width: 60%;
  }
  .addon-img{
    /*width: 40%;
    width: 126px;*/
    height: 126px;
  }
}
@media(max-width: 992px){
  .slide-container-md{
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: initial;
  }
  .addon-container .title{
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
  }
  .addon-container .price{
    padding-bottom: var(--spacing-md);
  }
}
/*=================STACKING IMAGE=================*/
@media(min-width: 768px){
  .stacking-md-img{
    position: absolute;
  }
  .stacking-md-img:nth-child(1){
    left: 0;
    z-index: 1;
  }
  .stacking-md-img:nth-child(2){
    top: 50%;
    left: 50%;
    transform: translate(-50%,30%);
    z-index: 2;
  }
  .stacking-md-img:nth-child(3){
    right: 0;
    z-index: 3;
  }
}
/*=======================CART=======================*/
.set-cart-count{
  display: none;
  font-size: 11px;
  line-height: 1.8;
  text-align: center;
  color: #fff;
  position: absolute;
  top: -70%;
  right: -68%;
  background-color: var(--maincolor);
  width: 22px;
  height: 22px;
  border: 1px solid rgb(237,216,215);
  border-radius: 50%;
}
.cart-container{
  display: -ms-flexbox !important;
  display: flex !important;
  padding: 16px;
  gap: 16px;
}
.cart-img{
  display: -ms-flexbox !important;
  display: flex !important;
  overflow: hidden;
  -ms-flex-line-pack: center !important;
  align-content: center !!important;
  width: 42px;
  height: 42px;
}
.cart-img img{
  object-fit: cover;
}
.cart-info{
  padding-left: 16px;
  padding-right: 0;
  display: -ms-flexbox !important;
  display: flex !important;
}
.cart-info>.title{
  font-weight: bold;
}
.cart-info>.body{
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
@media(min-width: 1200px){
  .cart-container{
    padding: 24px;
  }
  .cart-img{
    width: 94px;
    height: 94px;
  }
}
@media(max-width: 992px){
  .checkout-container{
    padding: 0;
    background-color: #fff;
  }
}
/*===================BRANDLIST=====================*/
#set-brandlist{
  /*line-height: 1;
  color: #686868;
  display: -ms-flexbox !important;
  display: flex !important;
  flex-direction: row;*/
}
.brandlist{
  cursor: pointer;
  user-select: none;
  /*border-bottom: 2px solid #606060;;
  margin: 0 0.75rem;
  font-size: 18px;
  list-style: none;
  font-weight: bold;*/
} 
@media (min-width: 576px) {

}
.brandlist.active{
  border-bottom: 2px solid #ffffff;
  transition: all 0.25s ease-in-out;
}
/*======================BADGE==========================*/
.badge-pill.custom{
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  padding: 4px 8px;
}
.badge.normal-text{
  white-space: normal;
}
.badge-white{
  background-color: #fff;
  border: 1px solid #e6e6e6;
  color: #000;
}
.badge-blue{
  background-color: #EFF8FF;
  border: 1px solid #B2DDFF;
  color: #1570EF;
}
.badge-green{
  background-color: #ECFDF3;
  border: 1px solid #A6F4C5;
  color: #039855;
}
.badge-red{
  background-color: #FBF5F5;
  border: 1px solid #F1D7D7;
  color: #C46969;
}

/*=====================BREADCRUMB======================*/

.breadcrumb.custom .breadcrumb-item + .breadcrumb-item::before {
  content: "";

  height: 1px;
  background: #4e4e4e4e;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  margin-right: 0.25rem;
}

.breadcrumb.custom{
  background-color: transparent;
  padding: 0;
}
.breadcrumb.custom .breadcrumb-number{
  border-radius: 50%;
  text-align: center;
  width: 22px;
  height: 100%;
  background-color: transparent;
  color: #4e4e4e4e;
  border: 1px solid #4e4e4e4e;
}

.breadcrumb.custom .breadcrumb-item{
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  flex: 0 1 auto;
}
.breadcrumb.custom .breadcrumb-item + .breadcrumb-item{
  padding-left: 0.3rem;
}

.breadcrumb.custom .breadcrumb-text{
  color: #4e4e4e4e;
}

.breadcrumb.custom .breadcrumb-item.active .breadcrumb-number{
  background-color: var(--maincolor);
  border-color: var(--maincolor);
  color: #fff;
}
.breadcrumb.custom .breadcrumb-item.active .breadcrumb-text{
  color: #000;
  font-weight: bold;
}

.breadcrumb.custom .breadcrumb-item.visited .breadcrumb-number{
  color: #fff;
  background-color: #12B76A;
  border-color: #12B76A;
}
.breadcrumb.custom .breadcrumb-item.visited .breadcrumb-text{
  color: #000;
}

@media(max-width:360px){
  .breadcrumb.custom{
    font-size: 80%;
  }
}
@media(min-width: 576px){
  .breadcrumb.custom .breadcrumb-item + .breadcrumb-item{
    padding-left: 0.5rem;
  }
  .breadcrumb.custom .breadcrumb-item + .breadcrumb-item::before {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-right: 0.5rem;
  }
}
/*===================PROGRESS TRACKER==============*/
.progress-tracker{
  counter-reset: tracking-counter;
}
.progress-tracker li { 
  display: flex; 
  color: #D4D4D4;
}
.progress-tracker time { 
  position: relative;
  /*padding: 0 1rem 1rem 0;*/
  /*flex: 0 0 30%;*/
}
.progress-tracker time::before { 
  counter-increment: tracking-counter;
  content: counter(tracking-counter);
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  transform: translateX(50%);
  border-radius: 50%;
  background: #fff;
  border: 1px #D4D4D4 solid;
  width: 25px;
  height: 25px;
  text-align: center;
}
.progress-tracker li.checked time::before { 
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  background: #12B76A;
  border-color: #12B76A;
  font-weight: 600;
  color: #fff;
  line-height: 24px;
}

.progress-tracker span {
  padding: 0 1rem 1rem 1.5rem;
  flex: 0 1 auto;
  position: relative;
}
.progress-tracker li.active time::before {
  background: var(--maincolor);
  border-color: #F7E9E9;
  color: #fff;
}
.progress-tracker li.active span,.progress-tracker li.checked span{
  color: #000;
}
.progress-tracker li:not(:last-child) time::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  height: 100%;
  border-left: 1px #D4D4D4 solid;
}
.progress-tracker strong {
  display: block;
  font-weight: bold;
}

.progress-tracker { margin: 1em; width: 100%; }
.progress-tracker, 
.progress-tracker *::before, 
.progress-tracker *::after { 
  box-sizing: border-box; 
}

.progress-tracker .tracker-image{
  width: 100%;
  cursor: pointer;
}
@media(min-width: 576px){
  .progress-tracker time { 
    position: relative;
    /*padding: 0 1.5em;*/
    flex: unset;
  }
  .progress-tracker span {
    position: relative;
    flex: unset;
  }
  .progress-tracker .tracker-image{
    width: 60%;
  }
}
@media(min-width: 992px){
  .progress-tracker .tracker-image{
    width: 45%;
  }
}
/*======================UTILITIES======================*/
.vl-sm {
  border-left: 2px solid #4e4e4e;
  height: 20px;
  -ms-flex-item-align: center !important;
  align-self: center;
}
hr.hr-flex{
  flex-grow: 1;
  width: 100%;
}
.w-35{
  width: 35%;
}
.mh-50v{
  max-height: 50vh;
}
.bg-light-warning{
  background-color: #fff0c1 !important;
}
.white-opacity{
  background-color: rgba(255,255,255,0.75)
}
.opacity-low{
  opacity: 0.25;
}
.bg-color-2{
  background-color: var(--bg-color-2);
}

.text-bold{
  font-weight: 900!important;
}
.aspect-ratio-tall{
  aspect-ratio: 3/4;
}
.aspect-ratio-square{
  aspect-ratio: 4/4;
}
.aspect-ratio-wide{
  aspect-ratio: 4/2.3;
}

.max-line-1,.max-line-2{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.max-line-1{
  -webkit-line-clamp: 1;
}
.max-line-2{
  -webkit-line-clamp: 2;
}
.hyperlink{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -ms-flex-align: center !important;
  align-items: center !important;
  color: var(--maincolor);
}
.hyperlink:hover{
  color: var(--maincolor);
}
.sticky-bottom{
  position: -webkit-sticky !important;
  position: sticky!important;
  bottom: 0;
}

.datepicker{
  background-color: #fff!important;
  cursor: pointer;
}
.outline-maincolor{
  border: 1px solid var(--maincolor)!important;
  border-radius: 15px;
  color: var(--maincolor)!important;
  transition: .1s all ease;
}
.outline-maincolor:hover{
  background-color: var(--maincolor)!important;
  color: #fff!important;
  transition: .2s all linear;
}
.outline-maincolor.active{
  background-color: var(--maincolor)!important;
  color: #fff!important;
}
.cursor-pointer{
  cursor: pointer;
}
.set-overflow-y{
  overflow-y: auto;
  max-height: 400px;
}
.border-dashed{
  border-style: dashed;
}
.flexfix:after, .flexfix:before{
  display: none!important;
}
.hide{
  display: none;
}
.medium{
  font-size: 150%;
}
.large{
  font-size: 200%;
}
.user-select-all{
  user-select: all;
}
.user-select-none{
  user-select: none;
}
.inherit-lh{
  line-height: inherit;
}
.lh-sm{
  line-height: 1.5;
}
.img-filter.black{
  filter: brightness(0.4);
}
.img-filter.maincolor{
  filter: invert(50%) sepia(34%) saturate(561%) hue-rotate(314deg) brightness(93%) contrast(103%);
}
.option-icon{
  cursor: pointer;
  vertical-align: middle;
  font-size: 1.3rem;
}
.success-hover:hover{
  background-color: #2cb742;
  transition: .1s background-color linear;
}
.dark-hover:hover{
  color: #343a40!important;
}
.text-success-hover:hover{
  color: #28a745 !important;
  transition: .2s color ease;
}
.error-hover:hover{
  color: #dc3545 !important;
  transition: .2s color ease;
}
.error-text,.error-label{
  font-weight: 600;
  color: red;
}
.disabled{
  pointer-events: none;
}
.error-logo{
  width: 25vh;
}
@media(min-width: 576px){
  .error-logo{
    width: 50vh;
  }
}
@media(min-width: 768px){
  .pb-md-absolulte{
    padding-bottom: 58%;
  }
}
@media(max-width: 576px){
  .w-sm-100{
    width: 100%;
  }
  .small-sm{
    font-size: 80%;
  }
}
@media(max-width: 992px){
  .bottom-panel-md{
    position: fixed!important;
    bottom: 0;
    z-index: 1;
  }
  .bottom-panel-md .panel{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.datepicker{
  padding: .375rem .75rem;
}
.datepicker.dropdown-menu{
  font-size: 16px;
  line-height: 22px;
  font-family: satoshi;
}
.datepicker table tr td.day{
  border: none;
}
.datepicker table tr td.active:hover, .datepicker table tr td.active:hover:hover, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active.disabled:hover:hover, .datepicker table tr td.active:focus, .datepicker table tr td.active:hover:focus, .datepicker table tr td.active.disabled:focus, .datepicker table tr td.active.disabled:hover:focus, .datepicker table tr td.active:active, .datepicker table tr td.active:hover:active, .datepicker table tr td.active.disabled:active, .datepicker table tr td.active.disabled:hover:active, .datepicker table tr td.active.active, .datepicker table tr td.active:hover.active, .datepicker table tr td.active.disabled.active, .datepicker table tr td.active.disabled:hover.active, .open .dropdown-toggle.datepicker table tr td.active, .open .dropdown-toggle.datepicker table tr td.active:hover, .open .dropdown-toggle.datepicker table tr td.active.disabled, .open .dropdown-toggle.datepicker table tr td.active.disabled:hover{
  background-color: var(--maincolor);
  border-color: var(--maincolor);
  border-radius: 4px;
}