/*!********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/cart/style.scss ***!
  \********************************************************************************************************************************************************************************************************************************************/
/**
 * Cart styles for front-end and editor
 */
#givebrite-cart-trigger {
  right: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media only screen and (min-width: 1200px) {
  #givebrite-cart-trigger a {
    display: flex;
    justify-content: flex-end;
    width: 25px;
    height: 25px;
  }
}

#givebrite-cart {
  position: fixed;
  top: 0;
  height: 100%;
  width: 90%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 3;
  right: -100%;
  background: var(--gb-base);
  color: var(--gb-contrast);
  transition: right 0.3s;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  #givebrite-cart {
    width: 380px;
  }
}
@media only screen and (min-width: 1200px) {
  #givebrite-cart {
    width: 30%;
  }
}
#givebrite-cart.speed-in {
  right: 0;
}
#givebrite-cart .givebrite-cart-container {
  display: flex;
  flex-direction: column;
  width: -webkit-fill-available;
  height: calc(100vh - 200px);
  overflow-y: auto;
  padding: 0 20px;
}
#givebrite-cart .givebrite-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 20px;
}
#givebrite-cart .cart-footer {
  display: flex;
  padding: 30px;
  gap: 15px;
  flex-direction: column;
  background: var(--gb-neutral);
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
#givebrite-cart .cart-footer h3.cart-total-amount {
  margin: 0;
}
#givebrite-cart .cart-footer .cart-total-amount-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#givebrite-cart .givebrite-cart-items {
  gap: 15px;
  display: flex;
  flex-direction: column;
  width: -webkit-fill-available;
  height: calc(100vh - 230px);
  overflow-y: auto;
  padding: 0 20px 20px 20px;
}
#givebrite-cart .givebrite-cart-items .empty-cart-state {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  color: var(--gb-primary-color);
  opacity: 0.4;
}
#givebrite-cart .givebrite-cart-items .empty-cart-state:only-child {
  display: flex;
}
#givebrite-cart .givebrite-cart-items .empty-cart-state .material-icons {
  font-size: 48px;
  margin-bottom: 16px;
}
#givebrite-cart .givebrite-cart-items .empty-cart-state p {
  margin: 0;
}
#givebrite-cart .givebrite-cart-items li {
  position: relative;
  padding: 1em;
  border-top: 1px solid #e0e6ef;
}
#givebrite-cart .givebrite-cart-items li:last-child {
  border-bottom: 1px solid #e0e6ef;
}
@media only screen and (min-width: 1200px) {
  #givebrite-cart .givebrite-cart-items li {
    padding: 1em 2em;
  }
}
#givebrite-cart .givebrite-cart-items .givebrite-cart-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 20px;
}
#givebrite-cart .givebrite-cart-items .givebrite-cart-item h3 {
  margin-bottom: 0;
}
#givebrite-cart .givebrite-cart-items .givebrite-cart-item div {
  font-size: 14px;
}
#givebrite-cart .givebrite-cart-items .amount-and-quantity {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: -webkit-fill-available;
  margin-top: 6px;
}
#givebrite-cart .givebrite-cart-items .amount-and-quantity .cart-item-price {
  color: var(--gb-primary-color);
  margin: 0;
}
#givebrite-cart .givebrite-cart-items .amount-and-quantity .givebrite-cart-item-quantity {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--gb-neutral);
  border-radius: 100px;
  padding: 7px 10px;
}
#givebrite-cart .givebrite-cart-items .amount-and-quantity .givebrite-cart-item-quantity.loading {
  opacity: 0.5;
  pointer-events: none;
}
#givebrite-cart .givebrite-cart-items .amount-and-quantity .givebrite-cart-item-quantity .remove,
#givebrite-cart .givebrite-cart-items .amount-and-quantity .givebrite-cart-item-quantity .qty-control-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--gb-primary-color);
  color: #fff;
  cursor: pointer;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}
#givebrite-cart .givebrite-cart-items .amount-and-quantity .givebrite-cart-item-quantity .remove:hover,
#givebrite-cart .givebrite-cart-items .amount-and-quantity .givebrite-cart-item-quantity .qty-control-button:hover {
  opacity: 0.9;
}
#givebrite-cart .givebrite-cart-items .amount-and-quantity .givebrite-cart-item-quantity .remove .material-icons,
#givebrite-cart .givebrite-cart-items .amount-and-quantity .givebrite-cart-item-quantity .remove .material-icons-outlined,
#givebrite-cart .givebrite-cart-items .amount-and-quantity .givebrite-cart-item-quantity .qty-control-button .material-icons,
#givebrite-cart .givebrite-cart-items .amount-and-quantity .givebrite-cart-item-quantity .qty-control-button .material-icons-outlined {
  font-size: 18px;
}
#givebrite-cart .givebrite-cart-items .amount-and-quantity .givebrite-cart-item-quantity .remove {
  border-radius: 4px 0 0 4px;
}
#givebrite-cart .givebrite-cart-items .amount-and-quantity .givebrite-cart-item-quantity .qty-control-button {
  height: 30px;
  width: 30px;
  border-radius: 100px;
}
#givebrite-cart .givebrite-cart-items .amount-and-quantity .givebrite-cart-item-quantity .cart-item-quantity-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  min-width: 40px;
  padding: 0 5px;
  background: var(--gb-neutral);
}

#givebrite-cart-shadow-layer {
  position: fixed;
  min-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(67, 87, 121, 0);
  cursor: pointer;
  margin: 0;
  z-index: 2;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  visibility: hidden;
  transition: background 0.3s, backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s, opacity 0.3s, visibility 0s 0.3s;
}
#givebrite-cart-shadow-layer.is-visible {
  background: rgba(67, 87, 121, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1;
  visibility: visible;
  transition: background 0.3s, backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s, opacity 0.3s;
}

.frequency {
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  text-transform: capitalize;
  color: #1aa54d;
}

.recurring-amount {
  display: inline-block;
}

.remove {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-transform: capitalize;
  padding: 8px 14px;
  border-right: 1px solid #dcdcdc;
}

.loader {
  padding: 10px;
  text-align: center;
}

.wp-block-givebrite-cart {
  height: 100%;
}

.givebrite-dialog-error.ui-dialog {
  border-radius: 30px;
  box-shadow: 2px;
  padding: 30px;
  text-align: center;
}
.givebrite-dialog-error.ui-dialog .ui-button.ui-dialog-titlebar-close {
  right: 10px;
  top: 10px;
}
.givebrite-dialog-error.ui-dialog .ui-dialog-titlebar {
  border: none;
}
.givebrite-dialog-error.ui-dialog .ui-dialog-content {
  opacity: 0.6;
}

/*# sourceMappingURL=style-index.css.map*/