.base {
  color: #db7b93;
}

.dark {
  color: #253237;
}

.dark-grey {
  color: #898989;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

.fs20 {
  font-size: 20px;
}

.gap4 {
  gap: 4px;
}

.gap6 {
  gap: 6px;
}

.gap8 {
  gap: 8px;
}

.gap10 {
  gap: 10px;
}

.gap12 {
  gap: 12px;
}

.medium {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.bg-grey {
  background-color: #F8F8F8;
}

body {
  font-family: "Poppins", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  color: #666;
  line-height: 24px;
}

body.lock {
  position: fixed;
}

.card {
  background-color: white;
  border: solid 1px #DAD6D6;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 10px !important;
}

h2.section-title {
  font-size: 20px;
  color: #253237;
  text-transform: capitalize;
  line-height: 16px;
  font-weight: 600;
  margin: 0 0 15px;
}

/*-------BUTTONS------*/
.btn {
  border-radius: 2px;
  padding: 12px 30px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.btn-primary {
  border: solid 1px #db7b93;
  background-color: #db7b93;
  color: white;
  font-weight: bold;
}
.btn.btn-white {
  border: solid 1px white;
  background-color: white;
  color: #253237;
  font-weight: bold;
}
.btn.btn-sm {
  padding: 8px 15px;
  font-size: 12px;
}
.btn-block{
	width: 100%;
}
.btn:hover {
  -webkit-transform: translateY(-5px) scale(1.05);
          transform: translateY(-5px) scale(1.05);
}
.btn[disabled]{
	opacity: 0.5;
}

@media screen and (min-width: 1408px) {
  .container:not(.is-max-desktop):not(.is-max-widescreen) {
    max-width: 1218px !important;
  }
}


/*-------FORMS------*/
.form-group{
	margin-bottom: 12px;
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}







.quantity-input::-webkit-inner-spin-button,

.quantity-input::-webkit-outer-spin-button {
  opacity: 1;
}


.main-header .header-top-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 8px 0;
  border-bottom: none;
  z-index: 11;
  margin: 0;
  font-size: 12px;
  color: #25262c;
  background: #fafafa;
}

.main-header .header-top-nav a {
  color: #25262c;
}

.main-header .header-top-nav a:hover {
  color: #db7b93;
}

.main-header .header-navigation {
  padding: 20px 0 0 0;
  background: #fff;
}

.main-header .header-navigation .cart-badge {
  position: absolute;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: -10px;
  width: 20px;
  height: 20px;
  font-size: 14px;
  background: #db7b93;
  color: #fff;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
}

.main-header .header-categories {
  background-color: white;
  padding: 15px 0;
  font-weight: 700;
  color: #253237;
  font-size: 14px;
  -webkit-box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.main-header .header-categories .nav-item {
  cursor: pointer;
}

.main-header .header-categories .nav-item:hover {
  color: #db7b93;
}

.main-header .header-categories .dropdown-item {
  font-weight: normal;
}

.main-header .header-categories.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99997;
  -webkit-box-shadow: 0 2px 6px 0px rgba(51, 51, 51, 0.1);
          box-shadow: 0 2px 6px 0px rgba(51, 51, 51, 0.1);
}

@media (max-width: 992px) {
  .main-header .header-navigation {
  	position: sticky;
  	top: 0;
  	    z-index: 999;
  	width: 100%;
    padding: 15px 0;
    -webkit-box-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 6px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
  }
  .main-header .header-navigation img {
    height: 43px  !important;
  }
  .main-header .header-categories {
    display: none;
  }
  .main-header .header-top-nav {
    font-size: 12px !important;
  }
}

.mobile-overlay {
  position: fixed;
  z-index: 99998;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-color: rgba(0, 0, 0, 0.35);
}

.mobile-overlay.active {
  left: 0;
}

.mobile-nav {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed;
  z-index: 99999;
  width: 400px;
  height: 100vh;
  max-width: 80%;
  overflow-y: auto;
  top: 0;
  left: -100%;
  background-color: white;
}

.mobile-nav .nav-items {
  border-top: solid 1px #89898973;
}

.mobile-nav .nav-items .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 15px;
  border-bottom: solid 1px #89898973;
}

.mobile-nav.active {
  left: 0;
}

.product-card {
  position: relative;
  background: #fff;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.product-card .img-block {
  position: relative;
  overflow: hidden;
}

.product-card .img-block img {
  vertical-align: middle;
  border-style: none;
  display: block;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-card .img-block .quick-view {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
  z-index: 1;
  height: 46px;
}

.product-card .product-decs {
  padding: 15px 0;
  background: #fff;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.product-card .product-decs a.category-link {
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.product-card .product-decs h2 a {
  line-height: 18px;
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: #253237 !important;
  font-size: 14px;
  text-transform: capitalize;
}

.product-card .product-decs .price {
  color: #898989;
}

footer {
  background-color: #efefef;
}

footer .footer-title {
  font-size: 16px;
  text-transform: capitalize;
  padding-bottom: 20px;
  margin-bottom: 25px;
  position: relative;
  color: #253237;
  border-bottom: 1px solid #cecece;
  font-weight: 700;
  line-height: 24px;
}

footer .footer-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 60px;
  height: 2px;
  background: #db7b93;
}
/*# sourceMappingURL=style.css.map */



