:root {
  --ppsGray7: #6b6b6b;
  --ppsGray2: #edeff0;
  --ppsFontFamily: Atkinson Hyperlegible, Helvetica Neue, Helvetica, Roboto,
    sans-serif;
  --ppsPurple: #9f0f7b;
  --ppsPink: #d50f67;
  --ppsWhite: #ffffff;
  --ppsOrange: #ff5b00;
}

.ppsHidden {
  display: none;
}

.ppsNoBreak {
  white-space: nowrap;
}

.pps-u-visually-hidden {
  /* https://a11yproject.com/posts/how-to-hide-content/ */
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  /* added line */
  margin: 0;
}

/* Mobile Only */
@media only screen and (max-width: 737px) {
  .ppsSuccessCopyWrapper {
    padding-top: 106px;
  }

  .ppsSuccessCopyWrapper::before {
    left: 0;
    top: 106px;
  }
}

/* Mobile */
#ppsOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  z-index: 10001;
}

#ppsPopUp {
  display: none;
  position: fixed;
  font-family: var(--ppsFontFamily);
  color: var(--ppsGray7);
  z-index: 10002;
  /* position center */
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
}

.ppsCloseButton {
  position: absolute;
  left: calc(100% - 36px);
  top: 20px;
  color: transparent;
  width: 16px;
  height: 16px;
  border: none;
  background-color: var(--ppsWhite);
  background-image: url('./icons/exit.svg');
  background-repeat: no-repeat;
  background-size: auto;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
}

.ppsCloseButton:focus,
.ppsCloseButton:hover {
  background-color: var(--ppsWhite);
  color: transparent;
  outline: 5px auto -webkit-focus-ring-color;
}

.ppsGradientBorder {
  /* triggered by one column layout and promotional period */
  border-radius: 8px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08);
  border-style: solid;
  border-width: 10px;
  border-image-source: linear-gradient(
    29deg,
    var(--ppsPink) 0%,
    var(--ppsPurple)
  );
  border-image-slice: 1;
  background-image: linear-gradient(to bottom, var(--ppsWhite), var(--ppsWhite)),
    linear-gradient(29deg, var(--ppsPink) 0%, var(--ppsPurple));
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.ppsWrapper {
  box-sizing: border-box;
  background: var(--ppsWhite);
  border-radius: 8px;
  width: 326px;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr;
}

.ppsWrapper.mod-twoCol {
  padding: 48px 24px 0;
  grid-template-columns: 1fr min-content;
}

.ppsCopyContainer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 278px;
}

.ppsSuccessCopyWrapper {
  position: relative;
  padding-left: 72px;
}

.ppsSuccessCopyWrapper::before {
  content: '';
  background-image: url('./icons/check.svg');
  position: absolute;
  top: 0;
  left: 0;
  height: 52px;
  width: 52px;
}

.ppsSuccesCheckIcon {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.ppsCompanyLogo {
  width: 86px;
  height: 56px;
  margin: 0 auto 32px;
}

.ppsEyebrow {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 12px;
  white-space: nowrap;
  color: var(--ppsGray7);
  font-family: var(--ppsFontFamily);
  text-align: center;
}

.ppsEyebrow.mod-twoCol {
  text-align: left;
}

.ppsHeadline {
  font-size: 32px;
  line-height: 1.28;
  text-align: center;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--ppsGray7);
  font-family: var(--ppsFontFamily);
}

.ppsHeadline.mod-twoCol {
  text-align: left;
  font-size: 19px;
}

.ppsParagraph {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: var(--ppsGray7);
  font-family: var(--ppsFontFamily);
}

.ppsParagraph.mod-twoCol {
  text-align: left;
  font-size: 14px;
}

.ppsForm {
  width: 100%;
}

.ppsInputLabelContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 24px 0 16px;
  width: 100%;
}

.ppsInput {
  box-sizing: border-box;
  border-radius: 4px;
  padding: 11px 16px 9px;
  border: solid 1px transparent;
  background: var(--ppsGray2);
  font-size: 14px;
  height: 46px;
  outline: none;
  width: 100%;
}

.ppsLegal {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
  text-align: center;
  margin-bottom: 0;
  color: var(--ppsGray7);
}

.ppsMobileImage {
  width: 276px;
  height: 203px;
  margin-bottom: 128px;
  margin: -24px auto -12px;
  z-index: 2;
  background-image: url(./images/kit.png);
  background-repeat: no-repeat;
  background-size: contain;
}

/* Temp: Mother's Day start */
.ppsMobileImage.mod-orange {
  background-image: url(./images/kit-orange-bow.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin: -24px 0 -12px 16px;
}

/* Temp: Mother's Day end */
.ppsMobileGradFooter {
  position: relative;
  content: '';
  height: 98px;
  width: 326px;
  bottom: 98px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: linear-gradient(73deg, var(--ppsPink), var(--ppsPurple) 100%);
  margin-bottom: -98px;
}

/* Temp: Mother's Day start */
.ppsMobileGradFooter.mod-orange {
  background: linear-gradient(73deg, var(--ppsOrange), var(--ppsPink) 100%);
}

/* Temp: Mother's Day end */
.ppsLegal.mod-twoCol {
  margin-bottom: 24px;
  text-align: left;
  align-items: flex-start;
}

.ppsLabel {
  position: relative;
  left: calc(16px - 100%);
  width: 0;
  height: 0;
  top: 0;
  overflow: visible;
  margin-bottom: 14px;
  white-space: nowrap;
  transition: all 0.33s;
  font-size: 14px;
}

.ppsButton {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  padding: 8px 12px;
  border-radius: 2.5em;
  cursor: pointer;
  background: transparent;
  transition-property: color, border-color;
  transition-duration: 0.333s;
  color: white;
  border: none;
  min-width: 148px;
  width: 100%;
  margin: 0 0 16px;
  height: 48px;
  font-weight: 400;
  text-decoration: none;
}

.ppsButton:before,
.ppsButton:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  transition: opacity 0.333s;
  border-radius: 2.5em;
}

.ppsButton:before {
  background-image: linear-gradient(to right, #8c0e45, #a10e7d);
}

.ppsButton:after {
  background-image: linear-gradient(to right, #d60e66, #a10e7d);
}

.ppsButton:focus::after,
.ppsButton:hover::after {
  opacity: 0;
}

.ppsButton:hover,
.ppsButton:focus {
  text-decoration: none;
  color: var(--ppsWhite);
}

.ppsButton.mod-twoCol {
  width: 100%;
  margin: 0 0 16px;
  height: 48px;
}

.pps-counter-container {
  width: 198px;
  margin-top: 24px;
  margin-bottom: 12px;
  justify-self: center;
}

.pps-counter {
  width: 116px;
  height: 64px;
  border-radius: 8px;
  border: solid 2px var(--ppsPink);
  margin: auto;
  margin-bottom: 24px;
}

.pps-counter.mod-feature {
  width: 100%;
}

.pps-counter-v2 {
  margin: 0 0 24px;
}

.pps-counter-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  margin: 4px 0 0;
  width: 100%;
}

.pps-counter-content-span {
  font-size: 24px;
  color: var(--ppsPink);
  font-weight: 700;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pps-counter-content-colon {
  margin-bottom: 16px;
}

.pps-min {
  margin-left: 16px;
}

.pps-time-label {
  font-size: 8px;
  letter-spacing: 1px;
  font-weight: 400;
  color: var(--ppsGray7);
}

.pps-sec {
  margin-right: 16px;
}

.pps-checkbox-container {
  margin: 0 3px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pps-hidden-checkbox {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

#pop-up-shop-email-input.is-invalid {
  border: solid 1px var(--ppsPink);
}

#pop-up-shop-email-input.is-invalid + label {
  color: var(--ppsPink);
}

#pop-up-shop-api-error {
  color: var(--ppsPink);
}

.pps-styled-checkbox {
  display: inline-block;
  min-width: 14px;
  height: 14px;
  font-size: 14px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s;
  border: solid 1px var(--ppsGray7);
  cursor: pointer;
}

.pps-styled-checkbox > svg {
  display: none;
}

.pps-hidden-checkbox:checked + .pps-styled-checkbox > svg {
  display: block;
}

.pps-hidden-checkbox:focus + .pps-styled-checkbox {
  outline: 5px auto -webkit-focus-ring-color;
}

.pps-link {
  color: #666666;
  text-decoration: underline;
}

.pps-link:hover,
.pps-link:focus {
  text-decoration: none;
  color: #666666;
}

.pps-label-is-focused {
  top: -36px;
  font-size: 12px;
}

.ppsInput-is-focused {
  border: solid 1px var(--ppsGray7);
}

.pps-is-outlined {
  outline: 5px auto -webkit-focus-ring-color;
}

.pps-checkbox-legal {
  max-width: 249px;
  text-align: left;
  margin: 0;
  margin-left: 13px;
}

/* Tablet and Desktop */
@media screen and (min-width: 737px) {
  .ppsHideTablet {
    display: none;
  }

  .ppsMobileImage,
  .ppsMobileGradFooter {
    display: none;
  }

  .ppsEyebrow.mod-twoCol {
    font-size: 14px;
  }

  .ppsHeadline.mod-twoCol {
    font-size: 28px;
  }

  .ppsWrapper {
    padding: 32px 64px;
    width: 600px;
    min-height: 456px;
  }

  .ppsWrapper.mod-twoCol {
    width: 768px;
    padding: 24px;
    height: auto;
  }

  .ppsCopyContainer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 36px 0 32px;
    width: 292px;
  }

  .ppsKitImgGradContainer {
    --width: 360px;
    min-width: var(--width);
    height: 100%;
    min-height: 458px;
    border-radius: 8px;
    background: url('./images/kit.png'),
      linear-gradient(38deg, var(--ppsPink), var(--ppsPurple) 101%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: var(--width), auto;
  }

  /* Temp: Mother's Day start */
  .ppsKitImgGradContainer.mod-orange {
    background: url('./images/kit-orange-bow.png'),
      linear-gradient(38deg, var(--ppsOrange), var(--ppsPink) 101%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: var(--width), auto;
  }

  /* Temp: Mother's Day end */

  .ppsEmailWrapper {
    width: 100%;
    height: 46px;
    display: flex;
    justify-content: space-between;
    margin: 32px 0 24px;
  }

  .ppsInputLabelContainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .ppsButton {
    margin: 0 auto;
    width: 148px;
  }

  .ppsButton.mod-twoCol {
    width: 100%;
    margin: 0 0 16px;
    height: 48px;
  }

  .ppsButton.mod-marginLeft {
    margin: 0 0 0 16px;
  }

  .pps-checkbox-legal {
    max-width: 100%;
    margin: 0;
    margin-left: 13px;
    text-align: left;
  }

  .ppsLegal.mod-twoCol {
    margin-bottom: 0;
  }
}

/*  */
