/*--------------------------------*/
/* Media queries 
/*--------------------------------*/
/*--------------------------------*/
.woocommerce-account .woocommerce-MyAccount-content .mr-10 {
  margin-right: 10px;
}
.woocommerce-account .woocommerce-MyAccount-content .align-head-icon {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account {
  margin: 0 auto;
  padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account h2 {
  font-size: xx-large !important;
}
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account table {
  border: none;
}
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account table tr,
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account table td,
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account table th {
  border: none;
}
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account table tr#erpup-coupon-item {
  transition: all 300ms ease-in-out;
}
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account table tr#erpup-coupon-item:hover {
  transition: all 300ms ease-in-out;
  cursor: copy;
  background-color: rgba(161, 194, 255, 0.3764705882);
}
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account table.erpup-activate-account-table {
  width: 100%;
  margin-top: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account button.delete-button-account {
  transition: all 300ms ease-in-out;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  background-color: rgba(220, 50, 50, 0.6705882353);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account button.delete-button-account span {
  color: #fff;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  font-size: small;
}
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account button.delete-button-account svg {
  transition: all 300ms ease-in-out;
  opacity: 0;
  max-width: 0;
  max-height: 24px;
  fill: #fff;
}
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account button.delete-button-account:hover {
  transition: all 300ms ease-in-out;
  background-color: #ec3131;
  cursor: pointer;
  transform: scale(1.05);
}
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account button.delete-button-account:hover span {
  transition: all 300ms ease-in-out;
  font-size: smaller;
}
.woocommerce-account .woocommerce-MyAccount-content section#container-erpup-account button.delete-button-account:hover svg {
  transition: opacity 300ms ease-in-out, max-width 300ms ease-in-out, max-height 300ms ease-in-out;
  opacity: 1;
  max-width: 24px;
  max-height: 24px;
  margin-left: 10px;
}

/*-------------------------------------------------------------------*/
/*-------------------------------------------------------------------*/
section#erpup-checkout-section {
  width: 100%;
  position: relative;
  max-height: 20vh;
  padding: 20px;
  margin: 10px 0;
  background: #660033;
  background: linear-gradient(282deg, rgb(102, 0, 51) 0%, rgb(51, 0, 122) 60%, rgb(255, 0, 174) 100%);
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
section#erpup-checkout-section .erpup-head-checkout {
  position: relative;
}
section#erpup-checkout-section .erpup-head-checkout h3 {
  color: #ffffff;
  text-shadow: 1px 3px 2px rgba(0, 0, 0, 0.2);
  font-size: clamp(0.9em, 1vw, 2.25em) !important;
  line-height: 0;
}
section#erpup-checkout-section .erpup-head-checkout .erpup-wallet-account {
  position: absolute;
  top: 25%;
  right: 0%;
  transform: translateY(-10px);
  max-width: 10vw;
  min-width: 6vw;
  width: 10vw;
}
@media (max-width: 1024px) {
  section#erpup-checkout-section .erpup-head-checkout .erpup-wallet-account {
    width: 10vw;
  }
}
@media screen and (max-width: 981px) {
  section#erpup-checkout-section .erpup-head-checkout .erpup-wallet-account {
    display: none;
  }
}
section#erpup-checkout-section .erpup-head-checkout .erpup-wallet-account a {
  text-decoration: none;
}
section#erpup-checkout-section .erpup-head-checkout .erpup-wallet-account a:hover {
  cursor: pointer;
}
section#erpup-checkout-section .erpup-head-checkout .erpup-wallet-account a .erpup-account-status {
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  background-color: rgba(3, 1, 85, 0.3294117647);
  padding: 10px 10px;
  border-radius: 3px;
}
section#erpup-checkout-section .erpup-head-checkout .erpup-wallet-account a .erpup-account-status svg {
  opacity: 1;
  max-width: 28px;
  max-height: 28px;
  min-width: 12px;
  min-height: 12px;
  fill: white;
  margin-right: 10px;
}
section#erpup-checkout-section .erpup-head-checkout .erpup-wallet-account a .erpup-account-status p.erpup-wallet-amount {
  min-width: 3vw;
  font-weight: 600;
  font-size: clamp(0.9em, 2vw, 2.25em);
  margin: 0;
  color: white;
}
section#erpup-checkout-section .erpup-wallet-add-credit {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
section#erpup-checkout-section .erpup-wallet-add-credit p.erpup-wallet-earned {
  color: #ffffff;
  font-size: clamp(0.5em, 1vw, 1.1em);
}
section#erpup-checkout-section .erpup-wallet-add-credit p.erpup-wallet-earned span {
  display: inline-block;
  font-size: 0.9em, 1vw, 1.1em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.87);
  position: relative;
  line-height: 0;
  z-index: 10;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
section#erpup-checkout-section .erpup-wallet-add-credit p.erpup-wallet-earned span::before {
  content: "+";
  position: inline-block;
  font-size: clamp 1em, 1vw, 1.5em;
  color: rgba(255, 255, 255, 0.664);
  height: auto;
  width: auto;
  margin-right: 0;
}
section#erpup-checkout-section .erpup-wallet-add-credit p.erpup-wallet-earned span::after {
  content: attr(data-currency);
  bottom: 0;
  right: 0;
  color: rgba(209, 209, 209, 0.664);
  font-size: clamp(0.5rem, 1vw, 1.5rem);
  width: auto;
  height: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
section#erpup-checkout-section .erpup-check-win-coupon p {
  color: white;
}

/* ------------------------ checkout  --------------------------*//*# sourceMappingURL=erpup.css.map */