* {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

body::-webkit-scrollbar {
  display: none;
}

body input[type=text], body input[type=number], body input[type=email], body input[type=password] {
  height: 40px;
  border: 1px solid #ccc;
  background-color: #fff;
}

body #loader {
  position: relative;
  display: none;
}

body #loader i {
  display: none;
  color: #EB268F;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

body input[type=checkbox] {
  height: 50px;
  width: 50px;
}

body button {
  background-color: #EB268F;
  color: #fff;
  width: 150px;
  height: 40px;
  border: none;
  border-radius: 9px;
  font-size: 1em;
  text-transform: capitalize;
  cursor: pointer;
}

body .defaultPadding {
  padding: 10px 20px;
}

body .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body .grid {
  display: -ms-grid;
  display: grid;
}

body .underline {
  border-top: 3px solid #EB268F;
  width: 100px;
  margin-bottom: 20px;
}

body .seeMore {
  background-color: #ECB32E;
  color: #333;
  font-size: 1em;
  width: 150px;
  display: block;
  margin: auto;
  text-align: center;
  border-radius: 5px;
  padding: 10px 20px;
  margin-top: 20px;
  text-decoration: none;
  color: #333;
}

body #breadcrumb {
  padding-top: 20px;
}

body #breadcrumb a {
  color: #333;
}

body #breadcrumb span {
  color: #EB268F;
}

body figure {
  width: 270px;
  height: 400px;
  background-color: #fff;
  border-radius: 5px;
  border-bottom: 3px solid #fff;
}

body figure img {
  width: 100%;
  height: 216px;
  border-radius: 5px 5px 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body figure figcaption {
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-top: 3px solid #f4f4f4;
}

body figure figcaption .productName {
  font-size: .93em;
  text-decoration: none;
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  text-align: left;
  color: #52114D;
  font-weight: 600;
}

body figure figcaption .productName:visited {
  color: #333;
}

body figure figcaption .sub_category {
  font-size: .9em;
  margin-bottom: 3px;
  text-align: right;
  text-transform: capitalize;
}

body figure figcaption .productCategory {
  font-size: 1em;
  font-weight: 100;
  text-transform: capitalize;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body figure figcaption .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

body figure figcaption .prices .productPrice {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  font-size: 1.3em;
}

body figure figcaption .prices .productPrice h4 {
  color: #EB268F;
  padding: 0;
}

body figure figcaption .prices .productPrice small {
  color: #333;
  font-size: .7em;
}

body figure figcaption .quantityTrigger {
  text-transform: lowercase;
  margin-top: 5px;
  font-size: 1em;
  width: 100%;
  height: 40px;
}

body figure figcaption .productQuantity {
  margin-top: 5px;
  display: none;
}

body figure figcaption .productQuantity section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body figure figcaption .productQuantity section button {
  background-color: #EB268F !important;
  width: 40px;
  height: 40px;
  font-size: 1.3em;
  background: none;
  color: #fff;
  border-radius: 0px;
  margin-top: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body figure figcaption .productQuantity section button:nth-child(1) {
  border-radius: 7px 0 0 7px;
}

body figure figcaption .productQuantity section button:nth-child(3) {
  border-radius: 0 7px 7px 0;
}

body figure figcaption .productQuantity section input[type=text] {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 1em;
  border: none;
  outline: none;
}

body figure figcaption .productQuantity button {
  height: 40px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

body #alert {
  position: absolute;
  position: fixed;
  left: 50%;
  bottom: 6%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #EB268F;
  color: #fff;
  width: 280px;
  height: auto;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  display: none;
}

body #landingSection {
  height: 100vh;
  background-image: url(https://media.istockphoto.com/photos/beautiful-smiling-girl-with-curly-hairstyle-picture-id1148043788?k=6&m=1148043788&s=612x612&w=0&h=_AXM8HCZOJs2JEz59E9YBVlQZuKVhV7ApbPH-t22NnE=);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

body #landingSection div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

body #landingSection div img {
  width: 80%;
}

body #landingSection div h1 {
  margin-top: 30px;
  color: #fff;
  font-weight: 400;
  font-size: 1em;
  font-style: italic;
}

body #landingSection div h3 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}

body #coupon {
  position: relative;
  position: fixed;
  bottom: 0;
  left: 0;
  height: 50px;
  width: 100%;
  background: #ECB32E;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}

body #coupon marquee {
  width: 100%;
  font-weight: 700;
}

body header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.99);
  border-bottom: 1px solid #ccc;
  height: 50px;
  z-index: 999999;
}

body header #logoContainer {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body header #logoContainer img {
  width: 150px;
  height: auto;
}

body header ul {
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

body header #topNav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body header #topNav a, body header #topNav span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  position: relative;
}

body header #topNav a img, body header #topNav span img {
  height: 35px;
  width: 35px;
}

body header #topNav a small, body header #topNav span small {
  position: absolute;
  top: -11px;
  right: -11px;
  font-size: .8em;
  font-weight: 300;
  color: #fff;
  background-color: #EB268F;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body nav {
  background-color: #dfdfd7;
  position: relative;
  height: 40px;
}

body nav .navTriggered {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
}

body nav #navSearch {
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body nav #navSearch input {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  border: none;
  border-radius: 10px 0 0 10px;
  outline: none;
  font-size: .9em;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body nav #navSearch button {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  background-color: #ECB32E;
  color: #333;
  border: none;
  height: 40px;
  border-radius: 0 10px 10px 0;
  font-size: .9em;
}

body nav details summary::-webkit-details-marker {
  display: none;
}

body nav #navCategory {
  width: calc(100% - 40px);
  height: 40px;
  background-color: #EB268F;
  color: #fff;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}

body nav #navCategory summary {
  outline: none;
  height: 100%;
  border-bottom: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 20px;
  padding-top: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}

body nav #navCategory #navCategoryText {
  font-size: 1em;
}

body nav #navCategory #navCategoriesTab {
  background-color: #EB268F;
  padding: 20px;
  border-radius: 0 0 5px 5px;
}

body nav #navCategory #navCategoriesTab li {
  list-style: none;
  padding: 7px 0;
}

body nav #navCategory #navCategoriesTab li a {
  color: #fff;
}

body #hybridNav {
  position: absolute;
  position: fixed;
  top: 71px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  overflow-y: scroll;
  display: none;
}

body #hybridNav .navTriggered {
  width: 100%;
  min-height: 120px;
  background-color: #fff;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body #hybridNav .navTriggered #hybridNavTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body #hybridNav .navTriggered #hybridNavTop p {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

body #hybridNav .navTriggered #hybridNavTop i {
  text-align: right;
  height: 30px;
  width: 30px;
  background: #ccc;
  border-radius: 5px;
  font-size: 1.3em;
  padding: 4px 4px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body #hybridNav .navTriggered #navSearch #searchWord {
  background-color: #f4f4f4;
  height: 40px;
  width: 100%;
  border: none;
  font-size: 1em;
  margin-top: 15px;
  border-radius: 10px;
}

body #hybridNav .navTriggered #hybridCategory {
  margin-top: 20px;
}

body #hybridNav .navTriggered #hybridCategory ul {
  list-style-type: none;
  margin-top: 10px;
}

body #hybridNav .navTriggered #hybridCategory ul li {
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #EB268F;
  margin-top: 10px;
  border-radius: 5px;
}

body #hybridNav .navTriggered #hybridCategory ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
}

body main {
  background-color: #f7f7f7;
  margin: auto;
}

body main #productLogo {
  width: 200px;
  display: block;
  margin: auto;
}

body #payment_portal {
  background-color: #f4f4f4;
  min-height: 85vh;
  height: 100%;
}

body #payment_portal #payment_portal_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 40px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body #payment_portal #payment_portal_nav div {
  border-right: 1px solid #b8b8b8;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #333;
}

body #payment_portal #payment_portal_nav div img {
  width: 80px;
  height: 40px;
}

body #payment_portal #payment_portal_nav div:nth-child(5) {
  border-right: none;
}

body #payment_portal #payment_pane {
  background: #fff;
  border-radius: 5px;
  margin-top: 20px;
}

body #payment_portal #payment_pane #stripeForm, body #payment_portal #payment_pane #paypal, body #payment_portal #payment_pane #bank, body #payment_portal #payment_pane #mobile {
  display: none;
}

body #payment_portal #payment_pane #stripeForm div, body #payment_portal #payment_pane #paypal div, body #payment_portal #payment_pane #bank div, body #payment_portal #payment_pane #mobile div {
  display: block;
  margin: auto;
  margin-top: 20px;
  width: 240px;
}

body #payment_portal #payment_pane form img, body #payment_portal #payment_pane div img {
  position: relative;
  width: 100%;
  height: 200px;
  max-height: 50%;
  border-radius: 10px;
}

body #payment_portal #payment_pane form button, body #payment_portal #payment_pane div button {
  display: block;
  margin: auto;
  margin-top: 20px;
  width: 240px;
}

body #checkoutForm {
  width: 100%;
}

body #checkoutForm form div {
  padding-top: 5px;
}

body #checkoutForm form div input, body #checkoutForm form div select {
  height: 40px;
  border-radius: 3px;
  border-color: #ccc;
  width: 100%;
  margin-bottom: 10px;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1em;
}

body #checkoutForm form div input[type=radio] {
  height: 60px;
  width: 60px;
}

body #checkoutForm form div input[type=number] {
  border: 1px solid #ccc;
}

body #checkoutForm form div textarea {
  width: 100%;
  height: 100px;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding-left: 10px;
  padding-top: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1em;
}

body #checkoutForm form div button {
  width: 230px;
  font-weight: 500;
  display: block;
  margin: 20px auto;
}

body #checkoutForm form #checkoutAttestationContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body #checkoutForm form #checkoutAttestationContainer label {
  -webkit-box-flex: 9;
      -ms-flex: 9;
          flex: 9;
}

body #checkoutForm form #checkoutAttestationContainer input[type=checkbox] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body #checkoutForm form #deliveryContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
}

body #checkoutForm form #deliveryContainer article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
}

body #checkoutForm form #remittanceSummary {
  margin: 10px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

body #checkoutForm form #remittanceSummary #response, body #checkoutForm form #remittanceSummary #totalRemittanceContainer {
  display: none;
}

body #checkoutForm form #couponValidator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body #checkoutForm form #couponValidator input {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

body #checkoutForm form #couponValidator button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 0;
}

body #celebration {
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999999999;
  display: none;
}

body #cartItemsContainer {
  position: absolute;
  position: fixed;
  top: 71px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.99);
  overflow-y: scroll;
  padding-bottom: 100px;
  z-index: 9999;
  display: none;
}

body #cartItemsContainer #cartItems {
  display: -ms-grid;
  display: grid;
  grid-gap: 1em;
  -ms-grid-columns: (minmax(280px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

body #cartItemsContainer #cartItems .cartItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f4f4f4;
  border-radius: 5px;
  min-width: 280px;
  max-width: 320px;
  padding: 0;
  border: 1px solid #f4f4f4;
  height: 200px;
}

body #cartItemsContainer #cartItems .cartItem img {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  width: 40%;
  height: 100%;
}

body #cartItemsContainer #cartItems .cartItem .cartItemDetails {
  width: 60%;
  position: relative;
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body #cartItemsContainer #cartItems .cartItem .cartItemDetails .la-times {
  position: absolute;
  top: -10px;
  right: -10px;
  height: 20px;
  width: 20px;
  background: #dfdfd7;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
}

body #cartItemsContainer #cartItems .cartItem .cartItemDetails .cartItemDetailsTop .category {
  display: block;
  text-align: right;
  font-size: .9em;
}

body #cartItemsContainer #cartItems .cartItem .cartItemDetails .cartItemDetailsTop .name {
  color: #52114D;
  font-size: 1em;
  font-weight: bold;
}

body #cartItemsContainer #cartItems .cartItem .cartItemDetails .calc {
  width: 100%;
  padding: 5px 0;
  margin: 5px 0;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

body #cartItemsContainer #cartItems .cartItem .cartItemDetails .totalPrice {
  color: #EB268F;
  font-size: 1.2em;
  font-weight: bold;
}

body #cartItemsContainer #checkoutPriceContainer {
  position: absolute;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #EB268F;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body #cartItemsContainer #checkoutPriceContainer #checkout button {
  background-color: #ECB32E !important;
  color: #333;
  border: none;
  font-weight: 500;
  border-radius: 3px;
  margin-top: 10px;
}

body #closeCartItemsContainer {
  font-size: 1.9em;
  display: none;
}

body #slider {
  height: 200px;
  width: 100%;
  background-color: #0db67d;
}

body .flip {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  -webkit-filter: FlipH;
          filter: FlipH;
  -ms-filter: "FlipH";
}

body #majorBrands {
  height: calc(100vh - 50px);
  height: auto;
  padding: 20px;
  display: -ms-grid;
  display: grid;
  row-gap: 1.5em;
}

body #majorBrands h3 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-weight: 500;
}

body #majorBrands article {
  height: calc((100vh - 70px) / 3 - 1.5em);
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px #333;
          box-shadow: 0 0 5px #333;
}

body #majorBrands article div {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body #majorBrands article div img {
  width: 120px;
}

body #majorBrands article div a {
  background-color: none !important;
  border: #fff 2px solid;
  color: #fff;
  padding: 5px 10px;
  font-size: .9em;
  text-decoration: none;
  text-align: center;
  width: 150px;
  margin-top: 20px;
  border-radius: 3px;
}

body #majorBrands article:nth-child(2) {
  background-image: url(https://media.istockphoto.com/photos/fresh-skin-picture-id1149534512?k=6&m=1149534512&s=612x612&w=0&h=bnN8TfxTHZqfOQdF5KY3k3FFIF1AGXiAUY_slk7eHzc=);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

body #majorBrands article:nth-child(3) {
  background-image: url(https://media.istockphoto.com/photos/young-black-woman-applying-skin-cream-picture-id1176488880?k=6&m=1176488880&s=612x612&w=0&h=9LiX0nv-pUSARYTbRHeqpOCBPTuiKKbTP3eUHcYMJv0=);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

body #majorBrands article:nth-child(4) {
  background-image: url(https://media.istockphoto.com/photos/beauty-portrait-of-happy-young-woman-picture-id660791130?k=6&m=660791130&s=612x612&w=0&h=c1A22ej-mh92yL8o9fzaEHp2hWtFoQCrC8vYnDaQ9eY=);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

body #majorBrands article:nth-child(5) {
  background-image: url(https://media.istockphoto.com/photos/beauty-portrait-of-happy-young-woman-picture-id660791130?k=6&m=660791130&s=612x612&w=0&h=c1A22ej-mh92yL8o9fzaEHp2hWtFoQCrC8vYnDaQ9eY=);
  background-image: url(https://wallpapercave.com/wp/wp1999618.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

body #majorBrands article:nth-child(6) {
  background-image: url(https://media.istockphoto.com/photos/natural-afro-hair-wide-toothy-smile-and-expression-of-gladness-on-the-picture-id1281698360?k=6&m=1281698360&s=612x612&w=0&h=scDYkdSVMXLctbLcrUGcCF6Ye9ri771Yk_WrjjmClSQ=);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

body #traits {
  background-image: url(../images/bg.jpg);
  background-position: center;
  height: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body #traits article {
  background-color: #fff;
  width: 60%;
  margin-bottom: 10px;
  display: -ms-grid;
  display: grid;
  text-align: center;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 9px;
}

body #traits article img {
  height: 40px;
  width: 50px;
  display: block;
  margin: auto;
}

body #traits article span {
  text-transform: uppercase;
  font-weight: 400;
  font-size: .8em;
  margin-top: 10px;
}

body .filteredProducts {
  display: -ms-grid;
  display: grid;
  grid-gap: 2em;
  -ms-grid-columns: (minmax(270px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  justify-items: center;
}

body .filteredProducts h3 {
  margin-bottom: 20px;
}

body .products {
  height: auto;
  margin: 50px 0;
  padding-left: 20px;
  padding-right: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .products h3 {
  text-transform: uppercase;
}

body .products .productPane {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[10];
      grid-template-columns: repeat(10, 1fr);
  grid-gap: 1em;
  overflow-x: scroll;
  min-width: 100px;
  margin-left: -10px;
}

body .products .productPane::-webkit-scrollbar {
  display: none;
}

body #banner {
  height: 200px;
  width: 100%;
  background-color: #0db67d;
}

body #customersReview {
  background: #dfdfd7;
  height: 340px;
}

body #customersReview article {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0 20px;
}

body #customersReview article div img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

body #customersReview article div .name {
  color: #EB268F;
  margin-top: 10px;
}

body #productGallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body #productGallery #targetProduct {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: auto;
}

body #productGallery #targetProduct #mainImage {
  width: 100%;
  height: auto;
}

body #productGallery #targetProduct #mainImage img {
  width: 100%;
  min-height: 350px;
  height: auto;
}

body #productGallery #targetProduct #productThumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0;
}

body #productGallery #targetProduct #productThumbnail img {
  border: 1px solid #ccc;
  height: 30px;
  width: 30px;
  margin-right: 10px;
}

body #productGallery #productInfo {
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
}

body #productGallery #productInfo #productName {
  font-size: 1.2em;
}

body #productGallery #productInfo #productCategory {
  text-transform: capitalize;
}

body #productGallery #productInfo #priceTag {
  color: #EB268F;
  font-size: 1.5em;
  padding: 10px 0;
}

body #productGallery #productInfo .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body #productGallery #productInfo .prices .productPrice {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.3em;
}

body #productGallery #productInfo .prices .productPrice h4 {
  color: #EB268F;
  padding: 0;
}

body #productGallery #productInfo .prices .productPrice small {
  color: #333;
  font-size: .7em;
}

body #productGallery #productInfo .productBrief {
  margin-top: 10px;
}

body #productGallery #productInfo .productBrief .productBriefHeading {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  outline: none;
}

body #productGallery #productInfo .productBrief div {
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body #productGallery #productInfo #shortDescription {
  margin-top: 10px;
}

body #productGallery #productInfo .productQuantity {
  margin-top: 20px;
  display: none;
}

body #productGallery #productInfo .productQuantity section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body #productGallery #productInfo .productQuantity section button {
  background-color: #EB268F !important;
  width: 40px;
  height: 40px;
  font-size: 1.3em;
  background: none;
  color: #fff;
  border-radius: 0px;
  margin-top: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body #productGallery #productInfo .productQuantity section button:nth-child(1) {
  border-radius: 7px 0 0 7px;
}

body #productGallery #productInfo .productQuantity section button:nth-child(3) {
  border-radius: 0 7px 7px 0;
}

body #productGallery #productInfo .productQuantity section input[type=text] {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  width: 50px;
  height: 38px;
  text-align: center;
  font-size: 1em;
  border: none;
  outline: none;
  border-top: #ccc 1px solid;
  border-bottom: #ccc 1px solid;
}

body #productGallery #productInfo .productQuantity button {
  height: 40px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body #productGallery #productInfo .quantityTrigger {
  margin-top: 10px;
}

body #productGallery #productInfo div details div ul {
  padding-left: 20px;
}

body #similarProducts {
  background-color: #dfdfd7;
  margin: 40px 0;
  padding: 20px 0 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body #similarProducts h3 {
  text-transform: capitalize;
}

body #similarProducts::-webkit-scrollbar {
  display: none;
}

body #loginForm {
  height: auto;
  width: 270px;
  background-color: #dfdfd7;
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
  padding-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
}

body #loginForm form {
  height: 100%;
  display: -ms-grid;
  display: grid;
  row-gap: 1em;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body #loginForm form h3 {
  color: #52114D;
  text-align: center;
  font-size: 1.5em;
}

body #loginForm form div input {
  width: 100%;
  font-size: 1em;
  border-radius: 5px;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body #loginForm form div button {
  display: block;
  margin: auto;
}

body #loginForm form #rememberContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
}

body #loginForm form #rememberContainer input[type=checkbox] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 70px;
}

body #loginForm form #rememberContainer label {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
}

body #loginForm #forgetPassword {
  display: block;
  text-align: center;
}

body #categoryPage h3, body #searchResultPane h3 {
  margin-bottom: 20px;
}

body footer {
  background-color: #141414;
  background-position: center center;
  color: #fff;
  color: #aeabab;
  padding-top: 20px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body footer section {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

body footer section article {
  margin-bottom: 10px;
}

body footer section article h3 {
  text-transform: uppercase;
  font-size: .9em;
  margin-bottom: 9px;
}

body footer section article ul {
  list-style: none;
}

body footer section article ul li a {
  color: #aeabab;
  text-decoration: none;
}

body footer section article .acceptedCards {
  border-radius: 5px;
  margin-top: 5px;
}

body footer section article .acceptedCards img {
  width: 100%;
}

body footer section hr {
  height: 10px;
  color: red;
}

body footer #delimiter {
  height: 2px;
  border-radius: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(yellow), to(green));
  background-image: linear-gradient(to right, yellow, green);
  background: linear-gradient(45deg, #141414 0%, #eeeeee 30%, #eeeeee 70%, #141414 100%);
  margin-bottom: 20px;
}

@media screen and (min-width: 425px) {
  body nav #navCategory {
    position: relative;
    width: 100%;
  }
  body main #traits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 200px;
  }
  body main #traits article {
    max-width: 200px !important;
  }
  body footer article .acceptedCards {
    width: 120px;
  }
}

@media screen and (min-width: 768px) {
  body header {
    height: 60px;
  }
  body .padding768 {
    padding: 20px 60px;
  }
}

@media screen and (min-width: 1024px) {
  body #hybridNav {
    top: 100px;
  }
  body #landingSection div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding-left: 50px;
    padding-bottom: 100px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  body #landingSection div img {
    display: block;
    width: 60%;
    margin-top: 50px;
  }
  body #landingSection div h1 {
    margin-top: 30px;
    color: #fff;
    font-weight: 400;
    font-size: 1.3em;
    font-style: italic;
    margin-top: 20px;
  }
  body #landingSection div h3 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
  }
  body header #logoContainer {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  body header #logoContainer a img {
    width: 230px;
  }
  body header ul {
    -webkit-box-flex: 7;
        -ms-flex: 7;
            flex: 7;
    display: none;
  }
  body header ul li {
    list-style: none;
    margin-right: 15px;
    -webkit-transition: 600ms;
    transition: 600ms;
  }
  body header ul li a {
    text-decoration: none;
    color: #333;
  }
  body header ul li:hover {
    border-bottom: 2px solid #EB268F;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  body header #topNav {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-left: 1px solid #ccc;
  }
  body #cartItemsContainer {
    position: absolute;
    position: fixed;
    top: 91px;
    left: 0;
    right: 0;
    bottom: 0;
  }
  body .navTriggered {
    padding: 20px 50px !important;
  }
  body main #majorBrands {
    padding: 20px 60px;
    row-gap: 2.5em;
  }
  body main #majorBrands article {
    height: 240px;
  }
  body main #majorBrands article div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: inherit;
  }
  body main #majorBrands article div img {
    width: 200px;
  }
  body main #majorBrands article:nth-child(even) {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    -webkit-filter: FlipH;
            filter: FlipH;
    -ms-filter: "FlipH";
    background-position: center center;
    background-position: 0% 50%;
  }
  body main #majorBrands article:nth-child(even) div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 70px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    -webkit-filter: FlipH;
            filter: FlipH;
    -ms-filter: "FlipH";
  }
  body main #majorBrands article:nth-child(odd) div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 70px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  body main #majorBrands article:nth-child(4) {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    -webkit-filter: FlipH;
            filter: FlipH;
    -ms-filter: "FlipH";
  }
  body main #majorBrands article:nth-child(4) div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 70px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  body main #majorBrands article:nth-child(5) {
    background-image: url(https://wallpapercave.com/wp/wp1999618.jpg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
  }
  body nav #navSearch {
    display: block;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 70%;
    border: none;
  }
  body nav #navSearch input {
    -webkit-box-flex: 6;
        -ms-flex: 6;
            flex: 6;
  }
  body nav #navSearch button {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  body nav #navCategory {
    display: none;
  }
  body footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 70px !important;
  }
  body footer section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[5];
        grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 1em;
  }
  body footer section article {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  body footer section article .underline {
    text-align: center;
  }
  body footer section article:nth-child(1) {
    margin-right: 70px;
  }
}
/*# sourceMappingURL=style.css.map */