html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
:root {
  --c-gr1: #111;
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: opensans-r;
  font-size: 13px;
  line-height: 28px;
  color: #231f20;
}

a {
  text-decoration: none;
  /* color: transparent; */
}
a:hover {
  text-decoration: none !important;
}
a:active {
  /* color: transparent; */
}
a:visited {
  /* color: transparent; */
}

ul,
li {
  display: block;
  list-style-type: none;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: 400;
}

.no_sel {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: none;
}
.no_sel:focus {
  outline: none !important;
}
.no_sel:hover {
  outline: none !important;
  background-color: transparent;
}

/*      FONTS      */

@font-face {
  font-family: "eng-g-r";
  src: url("../fonts/eng-g-r.woff2") format("woff2"),
    url("../fonts/eng-g-r.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "eng-g-b";
  src: url("../fonts/eng-g-b.woff2") format("woff2"),
    url("../fonts/eng-g-b.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "eng-shade";
  src: url("../fonts/eng-shade.woff2") format("woff2"),
    url("../fonts/eng-shade.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "motlow-caps";
  src: url("../fonts/motlow-caps.woff2") format("woff2"),
    url("../fonts/motlow-caps.woff") format("woff");
  font-style: normal;
  /* font-display: swap; */
}
@font-face {
  font-family: "proximanova-sb";
  src: url("../fonts/proximanova-sb.woff2") format("woff2"),
    url("../fonts/proximanova-sb.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "proximanova-l";
  src: url("../fonts/proximanova-l.woff2") format("woff2"),
    url("../fonts/proximanova-l.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "opensans-r";
  src: url("../fonts/opensans-r.woff") format("woff2"),
    url("../fonts/opensans-r.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "source-code-pro";
  src: url("../fonts/Source_Code_Pro/SourceCodePro-Regular.ttf")
    format("truetype");
  font-style: normal;
  font-display: swap;
}

.fEngR {
  font-family: eng-g-r;
}
.fEngB {
  font-family: eng-g-b;
}
.fEngShade {
  font-family: eng-shade;
}
.fMotCaps {
  font-family: motlow-caps;
}
.fproxSB {
  font-family: proximanova-sb;
}
.fproxL {
  font-family: proximanova-l;
}
.fopensR {
  font-family: opensans-r;
}
.fSourceCode {
  font-family: source-code-pro;
}

.fs10 {
  font-size: 10px;
}
.fs11 {
  font-size: 11px;
}
.fs12 {
  font-size: 12px;
}
.fs13 {
  font-size: 13px;
}
.fs14 {
  font-size: 14px;
}
.fs15 {
  font-size: 15px;
}
.fs16 {
  font-size: 16px;
}
.fs18 {
  font-size: 18px;
}
.fs21 {
  font-size: 21px;
}
.fs22 {
  font-size: 22px;
}
.fs24 {
  font-size: 24px;
}

.flh20 {
  line-height: 20px;
}
.flh25 {
  line-height: 25px;
}

.textC {
  text-align: center;
}

.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}

.fita {
  font-style: italic;
}

.btBorders {
  border: 1px solid var(--c-gr1);
  border-top: none;
  border-right: none;
}
.btCommon {
  width: min-content;
  width: fit-content;
  font-family: proximanova-sb !important;
  font-size: 13.5px !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase;
  border-width: 1px;
  border-style: solid;
  border-color: #0c0c0c;
  padding: 12px 24px;
  cursor: pointer;
  appearance: none;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.btCommon p {
  color: #0c0c0c;
}
.btWhite {
  border-color: #fff;
}
.btWhite p {
  color: #fff;
}
.common {
  width: 100%;
  max-width: 1405px;
  margin-left: auto;
  margin-right: auto;
}

.flexRowRight {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.flexRowCenter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flexRowBetween {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 720px) {
  .flexRowBetween {
    flex-direction: column;
    justify-content: flex-start;
  }
}

/*      MENU      */

.menu {
  position: fixed;
  top: 0;
  right: -500px;
  z-index: 5;
  display: none;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 100vh;
  min-height: 600px;
  padding: 60px 0;
  background-color: rgba(10, 7, 3, 0.87);
  transition: right 300ms ease-out;
}
.menuIsOut {
  right: 0 !important;
}
.menu p {
  color: #fff;
}
.menu > img {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.menuSec {
  font-size: 20.5px;
  letter-spacing: 1.8px;
  padding: 12px 0;
}
.menuSub {
  padding: 8px 0 25px 35px;
}
.subSec {
  font-size: 15.5px;
  letter-spacing: 1.8px;
  padding: 12px 0;
}
@media (max-width: 540px) {
  .menu {
    align-items: flex-start;
    width: 100vw;
    min-height: unset;
    padding: 13vw 0 0 0;
    background-color: rgba(10, 7, 3, 0.95);
    right: -110vw;
  }
  .menuSec {
    letter-spacing: 1.2px;
    padding: 8px 0;
  }
  .menu > img {
    top: 5vw;
    right: 5vw;
  }
}

/*       HEADER       */

header {
  width: 100%;
  background-color: #e0e2e0;
  /* min-height: 100px; */
  position: fixed;
  max-height: 195px;
  height: 195px;
  z-index: 4;
}
header .header {
  display: flex;
  justify-content: space-between;
  padding: 70px 0 45px 0;
}
.static-margin {
  top: 195px;
  position: relative;
}
.headLogo {
  /* margin-left: 40%; */
  margin-left: 10vw;
}
.headNav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 5%;
}
.headNav > img {
  cursor: pointer;
}
.btSignin {
  font-size: 16px;
  color: var(--c-gr1);
  letter-spacing: 1.5px;
  padding: 8px 42px 15px 18px;

  cursor: pointer;
}
.btWelcome {
  padding: 8px 0 0 18px;
  line-height: 16px;
}
@media (max-width: 540px) {
  header {
    max-height: 150px;
    height: 150px;
  }
  .static-margin {
    top: 150px;
  }

  header .header {
    padding: 15px 0;
    align-items: center;
  }
  .headLogo {
    width: 180px;
    height: auto;
    margin-left: 15px;
  }
  .headNav {
    margin-right: 10px;
  }
  .btSignin {
    padding: 5px 25px 12px 14px;
    margin-top: 15px;
  }
  .btWelcome {
    padding: 5px 0 0 13.5px;
  }
  .headNav > img {
    width: 14vw;
    height: 12vw;
    padding: 2vw;
  }
}

/*       HERO       */

.hero {
  width: 100%;
  /* background-color: #bfbfbf; */
  color: #fff;
  /*background-color: #bdbbbc;*/
}
.heroConte {
  width: 100%;
  /* height: 704px; */
  /* height: 938px; */
  /* height: 465px; */

  max-width: 100vw;
  height: 41vw;
  background-image: url(/assets/templates/softskincare-core/img/home_hero_10.jpg);
  /* background-image: url(/assets/templates/softskincare-core/img/home_hero_affogato2.jpg); */
  /* background-image: url(/assets/templates/softskincare-core/img/home_hero_vera.jpg); */
  /* background-image: url(/assets/templates/softskincare-core/img/home_hero_08.jpg); */
  /* background-image: url(/assets/templates/softskincare-core/img/home_hero.jpg); */
  /* background-image: url(/assets/templates/softskincare-core/img/home_hero_garrison.jpg); */
  background-size: cover;
  /* background-position: top right; */
  /* background-position: top left; */
}
.heroData {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  padding-top: 80px;
  padding-right: 4.5%;
}
/* .heroData {
  display: flex;
  width: 50%;
  justify-content: flex-end;
  padding-top: 270px;
}  */
.heroL {
  /* width: 320px; */
  width: 45vw;
  padding-top: 15px;
}
.heroR {
  width: 510px;
}
.heroData h3 {
  width: 100px;
  font-size: 12px;
  letter-spacing: 1.1px;
  margin-bottom: 12px;
  text-align: center;
}
.heroData h1 {
  font-size: 47px;
  line-height: 41px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  word-spacing: -5px;
}
.heroData h2 {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
@media (max-width: 860px) {
  .heroL {
    display: none;
  }
}
/* @media (max-width: 540px) { */
@media (max-width: 1150px) {
  .heroConte {
    position: relative;
    display: flex;
    justify-content: flex-end;
    /* max-width: 702px; */
    /* height: auto; */
    /* height: 98vw; */
    /* height: 153vw; */
    height: 109vw;
    /* background-image: url(/assets/templates/softskincare-core/img/home_hero_09_mob.jpg), */
    /* background-image: url(/assets/templates/softskincare-core/img/home_hero_vera_mob.jpg), */
    /* background-image: url(/assets/templates/softskincare-core/img/home_hero_affogato2_mob.jpg), */
    background-image: url(/assets/templates/softskincare-core/img/home_hero_10_mob.jpg),
      url(/assets/templates/softskincare-core/img/home_hero_fill.jpg);
    /* height: 100vw; */
    /* background-image: url(/assets/templates/softskincare-core/img/home_hero_garrison_mobile.jpg), */
    /* url(/assets/templates/softskincare-core/img/home_hero_fill_black.jpg); */
    /* background-size: 100%; */
    background-repeat: no-repeat, repeat;
    background-position: top center;
  }
  .heroData {
    flex-direction: column-reverse;
    width: 62vw;
    padding: 6vw 5vw 0 6vw;
    padding-bottom: 77vw;
  }
  .heroData h1 {
    font-size: 8.5vw;
    line-height: 8.1vw;
    letter-spacing: 1.5px;
    word-spacing: -1.2vw;
  }
  .heroData h2 {
    font-size: 13px;
    line-height: 20px;
  }
  .heroL {
    width: 80vw;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
  }
  .heroR {
    width: 100%;
  }
}

/* HERO CAMPAIGN */

.heroCampaignConte {
  width: 100%;
  height: 49vw;
  min-height: 362px;
  max-height: 693px;
  /* background-image: url(/assets/templates/softskincare-core/img/hero_campaign_blind3.jpg); */
  background-image: url(/assets/templates/softskincare-core/img/hero_campaign_blind4_2.jpg);
  background-size: cover;
  /* background-position: right; */
  background-position: left;
  background-repeat: no-repeat;
  background-color: #beaca4;
}

.heroCampaignConte2 {
  width: 100%;
  height: 62vw;
  background-image: url(/assets/templates/softskincare-core/img/banner_dec2020.png);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  background-color: #222222;
}

.heroCampaignData {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  padding-top: 80px;
  padding-right: 4.5%;
}
.heroCampaignData h3 {
  width: 350px;
  font-size: 12px;
  letter-spacing: 1.1px;
  margin-bottom: 12px;
  line-height: 16px;
}
.heroCampaignData h1 {
  font-size: 47px;
  /* line-height: 41px; */
  letter-spacing: 1px;
  margin-bottom: 0px;
  word-spacing: -5px;
}
.heroCampaignData h2 {
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.heroCampaignR {
  width: 410px;
}
.heroCampaignLegend {
  display: flex;
  align-items: center;
}
.heroCampaignLegend img {
  margin-right: 15px;
}
.heroBtCampaignConte {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-left: -70px;
}
.fHeroCampaign {
  font-size: 20px !important;
  font-weight: bold !important;
  width: 65%;
}
.heroHrCampaign {
  width: 100%;
  /* margin-right: 50%;
                margin-left: 1%; */
  height: 2px;
  background-color: white;
}
@media (max-width: 540px) {
  .heroCampaignConte {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 540px;
    /* background-image: url(/assets/templates/softskincare-core/img/hero_campaign_blind3_mobile.png); */
    /* background-image: url(/assets/templates/softskincare-core/img/hero_campaign_blind3_mobile2.jpeg); */
    background-image: url(/assets/templates/softskincare-core/img/hero_campaign_blind4_mobile.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .heroCampaignConte2 {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 448px;
    background-image: url(/assets/templates/softskincare-core/img/banner_dec2020_mob.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .heroCampaignData {
    flex-direction: column;
    /* width: 62vw; */
    padding: 6vw 5vw 0 6vw;
    /* padding-bottom: 27vw; */
    padding-bottom: 16vh;
    justify-content: flex-end;
  }
  .heroCampaignData h1 {
    font-size: 8.5vw;
    /* line-height: 8.1vw; */
    letter-spacing: 1.5px;
    word-spacing: -1.2vw;
  }
  .heroCampaignData h2 {
    font-size: 8px;
    line-height: 12px;
  }
  .heroCampaignData h3 {
    font-size: 8px;
    line-height: 12px;
  }
  .heroCampaignR {
    width: 100%;
  }
  .heroCampaignLegend img {
    margin-right: 15px;
    width: 14%;
  }

  .heroBtCampaignConte {
    position: absolute;
    transform-origin: left;
    transform: scale(0.85);
    bottom: 8vw;
    margin-left: 0px;
  }
  .fHeroCampaign {
    font-size: 10px !important;
    font-weight: bold !important;
    width: 45%;
  }
  .heroHrCampaign {
    height: 1px;
    margin: 12px 0px;
  }
}

/*  HERO BT */

.heroBtConte {
  display: flex;
  justify-content: flex-end;
  margin-top: -20px;
}

.heroBtConte2 {
  display: flex;
  justify-content: flex-end;
  margin-top: -20px;
}

/* @media (max-width: 540px) { */
@media (max-width: 1150px) {
  .heroBtConte {
    position: absolute;
    transform-origin: left;
    transform: scale(0.85);
    /* bottom: 8vw; */
    top: 45vw;
    right: 6vw;
  }
  .heroBtConte2 {
    transform-origin: left;
    transform: scale(0.85);
    bottom: 8vw;
  }
}

/*  SECTION HOME Products  */

.secProducts {
  max-width: 1350px;
  /* padding: 130px 0; */
  padding: 20px 0;
}

.cat-items-grid .secProducts {
  padding: 90px 0;
}

.prodsHead {
  color: #231f20;
  padding: 0 22px;
  padding-bottom: 60px;
}
.prodsHeadShop {
  padding-bottom: 10px;
}
.prodsHead h2 {
  font-size: 31.5px;
  line-height: 38px;
  letter-spacing: 2px;
}
.prodsHead h3 {
  font-size: 20px;
  line-height: 38px;
  letter-spacing: 2px;
}

.prodsHead2 {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}

.prodsHeadData {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 80px 0 10px 0;
}
.prodsHeadData h4 {
  font-size: 23.5px;
  letter-spacing: 2px;
}
.prodCats {
  display: flex;
  flex-wrap: wrap;
}
.prodCats > div {
  display: flex;
  flex-flow: column wrap;
}
.homeProds {
  width: min-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.prodsShowMore {
  position: relative;
  width: min-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 25px;
  margin-top: 40px;
}
@media (max-width: 1400px) {
  .prodCats > div {
    flex-grow: 1;
  }
}
@media (max-width: 540px) {
  .secProducts {
    padding: 10vw 0 0vw 0;
  }
  .prodsHeadData {
    flex-direction: column;
    align-items: flex-start;
    padding: 9vw 0 5vw 0;
  }
  .prodsHead {
    padding-bottom: 3vw;
  }
  .prodsHead h2 {
    font-size: 4vw;
    line-height: 6vw;
    letter-spacing: 1px;
  }
  .prodsHead h3 {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 6vw;
  }

  .prodsHeadData h4 {
    font-size: 17px;
    margin-bottom: 0;
  }
  .prodsShowMore {
    margin-right: 3vw;
    transform: scale(0.85);
    margin-top: 6vw;
  }
}

/*  PRODUCT ITEM  */

.prod {
  background-size: 101%;
  background-position: center center;
}
.prod a {
  display: flex;
  align-items: flex-end;
  width: 450px;
  height: 490px;
  cursor: pointer;
}
.prodData {
  position: relative;
  width: 100%;
  height: 110px;
  display: flex;
  flex-direction: column;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 1.5px;
  color: #616264;
}
.prodMade {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.prodMade > p {
  font-size: 13px;
  width: 100%;
}
.proMadeIng {
  margin-left: 7px;
  font-size: 19px;
}
.prodVeganLabel {
  position: absolute;
  top: -74px;
  left: 65px;
  font-size: 12px;
}
@media (max-width: 540px) {
  .prod a {
    width: 100vw;
    height: 108vw;
  }
  .prodData {
    height: 27vw;
    letter-spacing: 1px;
  }
  .prodMade > p {
    font-size: 11px;
  }
  .proMadeIng {
    margin-left: 5px;
    font-size: 16.5px;
  }
  .prodVeganLabel {
    top: -13vw;
    left: 11vw;
  }
}

/*     Home Promos   */

.homePromos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.promoComm {
  width: 702px;
  height: 696px;
  background-size: cover;
  overflow: hidden;
}
.promoComm2 {
  width: 50%;
  height: 100%;
  background-size: cover;
  overflow: hidden;
  padding: 15px;
  padding-bottom: 90px;
}
@media (max-width: 1440px) {
  .promoComm {
    width: 50%;
  }
}
@media (max-width: 1150px) {
  .promoComm {
    width: 702px;
  }
  .promoComm2 {
    width: 702px;
    padding-bottom: 10px;
  }
}
@media (max-width: 620px) {
  /* @media (max-width: 1280px) { */
  .promoComm {
    width: 100%;
    height: 99vw;
  }
  .promoComm2 {
    width: 100%;
    /* height: 99vw; */
    padding-bottom: 10px;
  }

  .homePromosReverse {
    flex-direction: column-reverse;
  }
}
/* Promo home 01  */
.p01Conte {
  position: relative;
  width: 215px;
  margin-top: 90px;
  margin-left: 390px;
  color: #0e0e0f;
}
.p01Conte > hr {
  border: none;
  border-bottom: 1px solid #0e0e0f;
  margin: 20px 0;
}
.p01Data {
  position: relative;
}
.p01We {
  font-size: 56px;
  line-height: 44px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.p01ZipInfo {
  position: absolute;
  top: 2px;
  right: 0px;
  font-size: 15px;
  line-height: 17px;
}
.btP01 {
  margin-left: auto;
  margin-top: 25px;
}
.p01FREE {
  font-size: 18px;
  line-height: 21px;
}
/* Promo home 02  */
.p02Conte {
  width: 250px;
  margin-top: 110px;
  margin-left: 175px;
  transform-origin: top left;
  transform: scale(0.88);
}
.p02Conte h3 {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 1.75px;
  text-align: center;
  color: #fff;
}
.btP02 {
  margin: 0 auto;
}
/* Promo home 04  */
.p_bg_04 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p04Conte {
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  transform-origin: center center;
}
.p04tx1 {
  font-size: 24px;
  line-height: 23px;
}
.p04tx2 {
  font-size: 49px;
  line-height: 35px;
  margin: 50px 0;
}
.p04tx2 > span {
  letter-spacing: -8px;
}
.p04tx3 {
  font-family: proximanova-l;
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 50px;
  letter-spacing: 0.3px;
}
.p04tx4 {
  font-size: 15px;
  letter-spacing: 1.8px;
  padding-top: 10px;
}

/* Promo home 05  */
.p05 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 638px;
  background-color: #59605c;
}
.p05Img {
  width: 100%;
  height: 454px;
  background-image: url(/assets/templates/softskincare-core/img/promo_05_text.png);
  background-size: cover;
  background-position: top center;
}
.btP05 {
  margin: 30px 180px 0 0;
}
@media (max-width: 1440px) {
  .p01Conte {
    margin-left: 340px;
  }
}
@media (max-width: 620px) {
  .p01Conte {
    margin-top: 13vw;
    margin-left: 21vw;
    margin-right: auto;
    transform: scale(0.92);
  }
  .p02Conte {
    width: 50vw;
    margin-top: 14vw;
    margin-left: 26vw;
    transform: scale(0.6);
  }
  .p04Conte {
    transform: scale(0.8);
    letter-spacing: 1.6px;
  }
  .p04tx1 {
    font-size: 26px;
    line-height: 27px;
  }
  .p04tx2 {
    font-size: 40px;
    line-height: 32px;
    margin: 8vw 0;
  }
  .p04tx2 > span {
    letter-spacing: -1vw;
  }
  .p04tx2 > h {
    letter-spacing: -1vw;
  }
  .p04tx3 {
    font-family: proximanova-sb;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 8vw;
  }
  .p04tx4 {
    font-size: 18px;
  }
  .p05 {
    height: 90vw;
  }
  .p05Img {
    height: 65vw;
    background-image: url(/assets/templates/softskincare-core/img/promo_05_text_mob.png);
  }
  .btP05 {
    margin: 3vw 13vw 0 0;
    transform: scale(0.8);
  }
}
@media (max-width: 340px) {
  .p01Conte,
  .p02conte {
    transform: scale(0.7);
    margin-right: -1vw;
  }
  .p04Conte {
    letter-spacing: 1px;
  }
  .p04tx2 {
    font-size: 36px;
    line-height: 35px;
    margin: 4vw 0;
  }
  .p04tx3 {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 6vw;
  }
  .btP05 {
    transform: scale(0.7);
  }
}

/* Promos side to side  */

.promoBigComm {
  width: 1405px;
  height: 636px;
  background-size: cover;
  overflow: hidden;
  background-position: right;
}
/* Promo home 06 - 07  */
.p06,
.p07 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.p06 > div {
  margin: 40px 60px 0 0;
}
.btP06 {
  margin: 30px 180px 0 0;
}

.p07 > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 100px 110px 0 0;
}
.p07 h2 {
  font-size: 54px;
  line-height: 47px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

@media (max-width: 620px) {
  .promoBigComm {
    width: 100%;
    height: 90vw;
  }
  .p07 > div {
    align-items: flex-start;
    transform: scale(0.73);
    margin: 7.5vw -4vw 0 0;
  }
  .p07 > div > div {
    transform: scale(1.2);
    transform-origin: top left;
  }
}

.p_bg_01 {
  background-image: url(/assets/templates/softskincare-core/img/6pack-b.jpg);
  background-color: #ced3d0;
}
.p_bg_02 {
  /* background-image: url(/assets/templates/softskincare-core/img/promo_bg_02.jpg); */
  /* background-image: url(/assets/templates/softskincare-core/img/IMAGEN-2.jpg); */
  background-image: url(/assets/images/highland_web.jpg);
  background-color: #060606;
}
.p_bg_03 {
  background-image: url(/assets/templates/softskincare-core/img/promo_bg_03.jpg);
  background-color: #171816;
}
.p_bg_04 {
  background-image: url(/assets/templates/softskincare-core/img/promo_bg_04.jpg);
  background-color: #060606;
}
.p_bg_05 {
  background-image: url(/assets/templates/softskincare-core/img/promo_bg_05.jpg);
}
.p_bg_06 {
  background-image: url(/assets/templates/softskincare-core/img/promo_bg_06.jpg);
}
.p_bg_07 {
  background-image: url(/assets/templates/softskincare-core/img/promo_bg_07.jpg);
}
@media (max-width: 620px) {
  .p_bg_01 {
    background-image: url(/assets/templates/softskincare-core/img/promo_bg_01_mob.jpg);
    height: 202vw;
  }
  .p_bg_02 {
    /* background-image: url(/assets/templates/softskincare-core/img/promo_bg_02_mob.jpg); */
  }
  .p_bg_03 {
    background-image: url(/assets/templates/softskincare-core/img/promo_bg_03_mob.jpg);
    height: 200vw;
  }
  .p_bg_04 {
    background: transparent;
    height: 118vw;
    background-color: #f0b325;
  }
  .p_bg_05 {
    background-image: url(/assets/templates/softskincare-core/img/promo_bg_05_mob.jpg);
  }
  .p_bg_06 {
    background-image: url(/assets/templates/softskincare-core/img/promo_bg_06_mob.jpg);
  }
  .p_bg_07 {
    background-image: url(/assets/templates/softskincare-core/img/promo_bg_07_mob.jpg);
    height: 150vw;
  }
}

/*   POP ZIP CODES  */
.popInBack {
  position: absolute;
  top: 0px;
  left: 20px;
  padding: 5px;
  cursor: pointer;
  z-index: 1;
  background-color: #fff;
}

.popZipcodesClose {
  position: absolute;
  top: 25px;
  right: 20px;
  padding: 5px;
  cursor: pointer;
  z-index: 1;
  background-color: #fff;
}

@media (max-width: 720px) {
  .popZipcodesClose {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    background-color: white;
    padding: 3vw;
    border-left: 1px solid rgba(0, 0, 0, 0.7);
    border-right: 1px solid rgba(0, 0, 0, 0.7);
  }
  .popZipcodesClose > img {
    float: right;
  }
}

.popZipcodes {
  display: flex;
  background-color: #fff;
}
.popZipcodesConte {
  position: relative;
  display: flex;
  width: 100%;
  /* max-width: 740px; */
  padding: 20px 45px;
  /* border: 1px solid #231f20; */
}
.popZipcodesColSingle {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0px 50px;
}

@media (max-width: 720px) {
  .popZipcodesConte {
    padding: 20px 0;
  }
  .popZipcodesColSingle {
    padding: 0;
  }
}

.popZipcodesColDouble {
  position: relative;
  display: flex;
  width: 100%;
  /* max-width: 740px; */
  padding: 90px 45px 60px 45px;
  /* border: 1px solid #231f20; */
}
.popZipcodesCol {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  margin: auto;
}
.popZipcodesColDouble > main {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.popZipcodesColDouble > div:first-of-type {
  padding-right: 50px;
}
.popZipcodesColDouble > div:last-of-type {
  padding-left: 50px;
  padding-bottom: 50px;
  padding-top: 50px;
  border-left: 1px dotted #616264;
}

@media (max-width: 720px) {
  .popZipcodesColDouble {
    padding: 90px 10px 60px 10px;
    flex-direction: column;
  }
  .popZipcodesColDouble > div:first-of-type {
    padding-right: 0;
    padding-bottom: 50px;
    border-bottom: 1px dotted #616264;
  }
  .popZipcodesColDouble > div:last-of-type {
    padding-left: 0;
    border-left: 0;
    padding-bottom: 0;
  }
}

.popZipcodesLogos {
  display: flex;
  /* justify-content: space-between; */
  justify-content: space-evenly;
  margin-top: 60px;
  align-items: center;
}

@media (max-width: 720px) {
  .popZipcodesLogos {
    flex-flow: column;
    height: 300px;
    margin-top: 0px;
  }
}

.popZipcodesField {
  width: 30% !important;
  margin: auto;
}

@media (max-width: 720px) {
  .popZipcodesField {
    width: 80% !important;
  }
}

/*   POP SIGN IN  */

.popInClose {
  position: absolute;
  top: 25px;
  right: 20px;
  padding: 5px;
  cursor: pointer;
  z-index: 1;
  background-color: #fff;
}

.popIn {
  display: none;
  /*display: flex;;*/
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #fff;
}
.logIn {
  display: flex;
  margin: 40px 0;
  width: 100vw;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #fff;
}
.popInConte {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 740px;
  padding: 90px 45px 60px 45px;
  /* border: 1px solid #231f20; */
}
.popInCol {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.popInConte > main {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.popInConte > div:first-of-type {
  padding-right: 80px;
}
.popInConte > div:last-of-type {
  padding-left: 70px;
  border-left: 1px dotted #616264;
}

.popInTit,
.page_heading {
  font-family: eng-g-b;
  font-size: 18px;
  letter-spacing: 1.8px;
  color: #231f20;
  margin-bottom: 20px;
  padding: 0 0 10px 25px;
  border: none;
  border-left: 1px solid #231f20;
}
.page_heading:after,
.widget-header:after {
  border: none;
}
.popP {
  font-size: 13.5px;
  letter-spacing: 0.8px;
  color: #616264;
  padding-left: 25px;
  margin-bottom: 35px;
}
.popP > p {
  margin-top: 18px;
}

.inputTx {
  font-family: opensans-r;
  font-size: 12px;
  color: #9d9fa2;
}

input [type="text"],
input [type="email"],
input [type="number"],
input [type="password"],
input [type="tel"],
.form-control {
  width: 100%;
  height: auto !important;
  box-shadow: none !important;
  color: #231f20;
  background-color: white;
  border: none !important;
  border-left: 1px solid #231f20 !important;
  border-bottom: 1px solid #231f20 !important;
  padding: 0 10px 20px 15px !important;
  margin-top: 0px !important;
  margin-bottom: 25px !important;
  appearance: none !important;
  border-radius: 0 !important;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -webkit-user-select: auto !important;
  user-select: auto !important;
}
select,
textarea {
  border: none !important;
  border-left: 1px solid #231f20 !important;
  border-bottom: 1px solid #231f20 !important;
  box-shadow: none !important;
  padding: 0 10px 20px 15px !important;
  margin-top: 0px !important;
  margin-bottom: 25px !important;
  font-family: opensans-r;
  font-size: 12px;
}
select {
  background: url(https://aubiramsa.com/assets/templates/softskincare-core/images/br_down.png)
    no-repeat right #fff !important;
  background-size: 8px !important;
}
input [type="submit"],
input [type="button"],
.btSub,
button,
.btn-default {
  width: min-content;
  width: fit-content;
  margin-top: 10px;
  margin-bottom: 0;
  appearance: none;
  background-color: white;
  color: #231f20 !important;
  border: 1px solid #231f20;
  margin-left: auto;
  font-size: 13px !important;
}

input [type="button"]:hover,
.btn-default:hover,
.btn-primary:hover,
.btSub:hover {
  background-color: white;
  color: #231f20;
}
input::placeholder {
  font-style: italic;
  color: #9d9fa2;
}

.formBott {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.signInLegal {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-end;
  font-size: 17px;
  letter-spacing: 1.5px;
  color: #231f20;
  text-align: center;
  padding-top: 15px;
}
.signInLegal > div {
  margin-bottom: 20px;
}

.item50-100 {
  width: 47% !important;
}

@media (max-width: 720px) {
  .popIn {
    padding: 0 0 12vw 0;
    align-items: flex-start;
    overflow-y: auto;
  }
  .logIn {
    margin: 0;
    padding: 0 0 12vw 0;
    align-items: flex-start;
    overflow-y: auto;
  }
  .popInConte {
    border: none;
    flex-direction: column;
    padding: 8vw 0;
  }
  .popInCol {
    width: 100%;
  }
  .popInConte > main {
    padding: 6vw;
    border: none;
    width: 100%;
  }
  .popInConte > div:first-of-type,
  .popInConte > div:last-of-type {
    padding: 6vw;
    border: none;
  }
  .popInClose {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    background-color: white;
    padding: 3vw;
  }
  .popInClose > img {
    float: right;
  }
  .signInLegal > div {
    margin-top: 30px;
  }
  .item50-100 {
    width: 100% !important;
  }
}

/*        REWARDS         */

/*   Hero REWARDS   */

.heroRewards {
  width: 100%;
  height: 680px;
  background-image: url(/assets/templates/softskincare-core/img/rewards_hero.jpg);
  background-size: cover;
  background-position: center;
}
@media (max-width: 780px) {
  .heroRewards {
    width: 100%;
    height: 83vw;
    background-image: url(/assets/templates/softskincare-core/img/rewards_hero_mob.jpg);
    background-position: bottom center;
  }
}

.secRewards {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #cccacb;
  border-top: none;
  padding: 80px 12%;
  margin-bottom: 100px;
}
.rewardsP {
  position: relative;
  font-size: 21px;
  line-height: 25px;
  letter-spacing: 0.4px;
  color: #616264;
}
.rewardLink {
  font-family: opensans-r;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.75px;
  color: #9c9ea1;
}
.rewardsBT {
  position: absolute;
  right: 0;
  bottom: -80px;
  padding-left: 50px;
  padding-right: 50px;
}
.secRewards hr {
  width: 100px;
  border: none;
  border-bottom: 1px solid #231f20;
  margin: 30px 0;
}
.rewardsColsTx {
  display: flex;
  align-items: center;
  margin: 35px 0;
  border-bottom: 1.5px solid #231f20;
}
.rewardsColsTx > p {
  width: 33.3%;
  padding: 30px;
}
.rewardsColsTx > p:nth-child(2) {
  border-right: 1px solid #231f20;
  border-left: 1px solid #231f20;
}
.secRewards > h2 {
  font-size: 52px;
  letter-spacing: 5px;
}
.secRewards h4 {
  font-family: proximanova-sb;
  margin: 25px 0;
  color: #616264;
}

@media (max-width: 980px) {
  .rewardsColsTx {
    flex-direction: column;
  }
  .rewardsColsTx > p {
    width: 66.6%;
  }
  .rewardsColsTx > p:nth-child(2) {
    border: none;
    border-top: 1px solid #231f20;
    border-bottom: 1px solid #231f20;
  }
}
@media (max-width: 540px) {
  .secRewards {
    padding: 10vw 4vw;
    margin-bottom: 0;
    border: none;
  }
  .imgOnly {
    width: 100vw;
    height: auto;
  }
  .imgBack {
    width: 70vw;
    height: auto;
    margin-top: 15vw;
  }
  .rewardsColsTx > p {
    width: 80%;
  }
}

/*       CART      */

.secCart {
  padding: 80px 20px;
}
.cartItem {
  position: relative;
  width: 100%;
  max-width: 740px;
  margin: 0 auto 80px auto;
  padding: 50px 25px;
  border: 1px solid #231f20;
  color: #616264;
}
.cartRemove {
  position: absolute;
  top: 20px;
  right: 15px;
}
.cartGrid {
  display: grid;
  grid-template-columns: 55% 45%;
  grid-template-rows: 1 1;
  column-gap: 25px;
  row-gap: 30px;
}
.cartGrid > img {
  width: 100%;
  height: auto;
}
.cartCat {
  line-height: 17px;
  text-align: right;
  border-right: 1px solid #231f20;
  padding-right: 30px;
}
.cartInfo {
  padding-right: 20px;
}
.cartLegal {
  max-width: 220px;
  color: #9c9ea1;
}
.cartBtsSize {
  display: flex;
  margin-top: 35px;
}
.cartBtSize {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 20px;
  border: 1px solid #231f20;
  margin-top: 3px;
  color: #231f20 !important;
}
.cartBtActive {
  background-color: #231f20;
  color: #fff !important;
}
@media (max-width: 540px) {
  .cartItem {
    padding: 25px 20px;
  }
  .cartGrid {
    grid-template-columns: 100%;
    column-gap: 0;
    row-gap: 20px;
  }
  .cartCat {
    margin-right: 22vw;
  }
}

.qv-close {
  font-size: 36px !important;
}

/*   -- Quantity --    */
.cartBottom p {
  color: #9c9ea1 !important;
  padding: 5px 18px;
}
.cartQuantity {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.cartQuantity input {
  border: none;
  width: 44px;
  text-align: center;
  padding: 5px 0;
  margin: 0;
  border: 1px solid #231f20;
  border-top: none;
  border-bottom: none;
  appearance: none;
}
.cartQuantity input::-webkit-outer-spin-button,
.cartQuantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.cartQuantBT {
  width: 36px;
  height: 36px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.quantBtPlus {
  background-image: url(/assets/templates/softskincare-core/img/ico_bt_plus.svg);
}
.quantBtMin {
  background-image: url(/assets/templates/softskincare-core/img/ico_bt_min.svg);
}

.cartBottomBts {
  display: flex;
}
.cartBottomBts > p:first-of-type {
  padding-left: 0;
}
@media (max-width: 540px) {
  .cartBottom p {
    padding-right: 0;
  }
}

.showMob {
  display: none;
}
@media (max-width: 540px) {
  .hideMob {
    display: none;
  }
  .showMob {
    display: block;
  }
}
.billing-info,
.shipping-info {
  background: transparent;
  border: 1px solid #666;
}
.has-labelholder:before {
  z-index: -1 !important;
}
span.quant-input input[type="text"] {
  border: 1px solid #ececec !important;
  padding: 0 32px 0 5px !important;
  height: 40px !important;
}
.div[name="divPaymentOption"] {
  background-color: #fff;
}
label {
  margin-bottom: 12px;
}
iframe[id^="sq-"] {
  height: 47px !important;
  padding: 12px 0 0 12px !important;
}

/**** TOP SLIDER ****/
.top-slider {
  position: relative;
  width: 100vw;
  height: 60px;
  overflow: hidden;
  margin: 0px auto;
  z-index: 0;
}
.top-slider .sl {
  position: absolute;
  top: 0px;
  left: 0px;
  /* line-height: 20px; */
  width: 100vw;
  display: none;
  text-align: center;
  font-size: 18.5px;
  line-height: 50px;
  letter-spacing: 2px;

  /*     background-color: #f3f4ef; */
  /*     border: 13px solid #dedede; */
}
.top-slider .sl a {
  color: #c37f47;
  margin-left: 13px;
  font-size: 13px;
}

@media (max-width: 540px) {
  .top-slider .sl {
    font-size: 13px;
    max-height: 50px;
    line-height: 25px;
  }
  .heroData h2 {
    font-size: 12px;
  }
}

.top-slider .active {
  display: block;
  z-index: 100;
}

.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInX {
  0% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.animated.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  animation-name: flipInX;
  backface-visibility: visible !important;
}

@keyframes slideInX {
  0% {
    top: -60px;
    opacity: 1;
  }
  100% {
    top: 5px;
    opacity: 1;
  }
}
.animated.slideInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: slideInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: slideInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: slideInX;
  animation-name: slideInX;
  backface-visibility: visible !important;
}

@keyframes slideOutX {
  0% {
    top: 5px;
    opacity: 1;
  }
  100% {
    top: 65px;
    opacity: 1;
  }
}
.animated.slideOutX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: slideOutX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: slideOutX;
  -o-backface-visibility: visible !important;
  -o-animation-name: slideOutX;
  animation-name: slideOutX;
  backface-visibility: visible !important;
}
