:root {
  --after-cart-popup-app-height: 100%; }

body.after-cart-popup-lock {
  position: fixed;
  overflow: hidden;
  height: 100vh; }
  @media (min-width: 992px) {
    body.after-cart-popup-lock {
      position: inherit;
      height: inherit; } }

#after-cart-popup {
  display: block;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); }
  @media (min-width: 768px) {
    #after-cart-popup {
      display: flex; } }
  #after-cart-popup .content {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    margin: auto;
    padding: 0;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.14);
    border-radius: 8px;
    max-height: var(--after-cart-popup-app-height); }
    @media (min-width: 768px) {
      #after-cart-popup .content {
        max-height: 80vh; } }
    #after-cart-popup .content a[href="#close"] {
      position: absolute;
      top: 5px;
      right: 10px;
      z-index: 100; }
    #after-cart-popup .content .message {
      background: #F1F3F5;
      padding: 30px 30px 25px 30px;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
      text-align: center; }
    #after-cart-popup .content .note {
      font-weight: 600;
      font-size: 14px;
      line-height: 17.07px;
      letter-spacing: 0.12px;
      color: #000;
      padding: 30px;
      margin: 0; }
    #after-cart-popup .content .products {
      padding: 0 30px;
      margin-bottom: 30px;
      overflow-y: auto; }
      #after-cart-popup .content .products .product {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        border-bottom: 1px solid #E6E6E6; }
        #after-cart-popup .content .products .product:first-child {
          border-top: 1px solid #E6E6E6; }
        #after-cart-popup .content .products .product p strong {
          display: block; }
    #after-cart-popup .content .actions {
      display: flex;
      flex-direction: column;
      padding: 30px;
      gap: 10px; }
      @media (min-width: 768px) {
        #after-cart-popup .content .actions {
          flex-direction: row;
          gap: 20px; } }
      #after-cart-popup .content .actions a {
        width: 100%; }
    #after-cart-popup .content .note + .actions,
    #after-cart-popup .content .products + .actions {
      padding: 0 30px 30px; }

/*# sourceMappingURL=front.min.css.map */