.ShoppingRecoveryOverlay {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 101;
  }
  .ShoppingRecoveryOverlay > div {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 102;
    width: 420px;
    height: auto;
    overflow: hidden;
    text-align: center;
    background: #fff;
    padding: 50px 3% 40px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
  .ShoppingRecoveryOverlay span {
    position: relative;
    width: 95%;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 0;
    margin: 0 auto 20px;
    display: block;
    color: #3f3f3f;
  }
  .ShoppingRecoveryOverlay p {
    color: #828282;
    text-transform: initial;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
  }
  .ShoppingRecoveryOverlay > div > p.response {
    position: relative;
    padding: 10px 0;
  }
  .ShoppingRecoveryOverlay button {
    cursor: pointer;
    height: 38px;
    color: #ffffff;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #303942;
    padding: 0 18px;
    border: 0;
    margin-top: 20px;
    transition: background-color 0.5s ease-in-out;
  }
  .ShoppingRecoveryOverlay button:hover {
    background-color: #2c333b;
  }
  .ShoppingRecoveryOverlay > div > div {
    margin: 10px 4% 0 0;
    width: 98%;
    padding: 4px;
    display: inline-block;
  }
  .ShoppingRecoveryOverlay input,
  .ShoppingRecoveryOverlay select {
    height: 32px;
    width: 98%;
    padding: 2px 10px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.5px;
    color: #3f3f3f;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(63, 63, 63, 0.25);
  }
  .ShoppingRecoveryOverlay select {
    -webkit-appearance: menulist;
    background: #f3f3f3;
    border: none;
  }
  .ShoppingRecoveryOverlay .ErrorValidation input {
    border-bottom: 1px solid red;
  }
  .ShoppingRecoveryOverlay .ErrorValidation select {
    border: 1px solid red;
  }
  .ShoppingRecoveryOverlay .ErrorValidation .ShoppingRecoveryTermsLink {
    color: red;
  }
  .ShoppingRecoveryOverlay #ShoppingRecoveryTermsAcceptance {
    width: auto;
    height: auto;
  }
  .ShoppingRecoveryOverlay .ShoppingRecoveryTermsLink {
    color: #828282;
    text-transform: initial;
    font-size: 12px;
    line-height: 16px;
    margin-left: 5px;
    text-decoration: none;
    width: 100%;
    transition: color 0.5s ease-in-out;
  }
  .ShoppingRecoveryOverlay .ShoppingRecoveryTermsLink.hover {
    font-size: 12px;
    position: relative;
    text-align: center;
    color: #c2c2c2;
    padding: 10px 0;
  }
  .ShoppingRecoveryOverlay .ShoppingRecoveryTermsLinkBG {
    color: #828282;
    text-transform: initial;
    font-size: 12px;
    line-height: 16px;
    text-decoration: underline;
    width: 100%;
    margin-left: 5px;
    position: relative;
    top: -5px;
  }
  .ShoppingRecoveryOverlay .ShoppingRecoveryTermsLinkBG.hover {
    font-size: 12px;
    position: relative;
    text-align: center;
    color: #c2c2c2;
    padding: 10px 0;
  }
  .ShoppingRecoveryOverlay .close {
    position: absolute;
    background-color: transparent;
    top: 0px;
    right: 10px;
    width: 22px;
    height: 22px;
    cursor: pointer;
    z-index: 10;
    margin-top: 10px;
  }
  .ShoppingRecoveryOverlay .close:hover {
    background: none;
  }
  .ShoppingRecoveryOverlay .close::before, .ShoppingRecoveryOverlay .close::after {
    content: "";
    width: 30px;
    border-bottom: 2px solid #373737;
    position: absolute;
    top: 10px;
    right: -4px;
    -webkit-transition: -webkit-transform .5s ease-in-out;
    transition: -webkit-transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out,-webkit-transform .5s ease-in-out;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .ShoppingRecoveryOverlay .close::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  @media all and (max-width: 768px) {
    .ShoppingRecoveryOverlay span {
        font-size: 22px;
        line-height: 26px;
        margin: 0 auto 10px;
    }
    .ShoppingRecoveryOverlay > div {
        padding: 40px 3% 30px;
    }
  }
  @media all and (max-width: 640px) {
    .ShoppingRecoveryOverlay > div {
        top: 10%;
        left: 10%;
        right: 10%;
        bottom: 10%;
        transform: none;
        width: 80%;
        height: 80%;
        padding: 40px 5% 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
  }