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

body.after-cart-popup-lock {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}
@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 > .optional_message {
  margin: 0 16px 24px 16px;
  color: #000;
  padding: 16px;
  background: #FEF8E1;
  border-radius: 8px;
}
@media (min-width: 768px) {
  #after-cart-popup .content > .optional_message {
    margin: 0 48px 24px 48px;
  }
}
#after-cart-popup .content > .optional_message .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin-bottom: 4px;
}
#after-cart-popup .content > .optional_message .note {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  margin: 0;
  color: #606060;
}
#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 */