/** Shopify CDN: Minification failed

Line 950:23 Expected "]" to go with "["
Line 950:24 Unexpected "="

**/
.drawer {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(var(--color-foreground), 0.5);
  transition: visibility var(--duration-default) ease;
}

.subs-caption {
  display: block;
}

.drawer.active {
  visibility: visible;
}

.drawer__inner {
  height: 100%;
  width: 40rem;
  max-width: calc(100vw - 2rem);
  padding: 0;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-right: 0;
  background-color: rgb(var(--color-background));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-default) ease;
}

.drawer__inner-empty {
  height: 100%;
  background-color: rgb(var(--color-background));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cart-drawer__empty-content {
  padding: 0 1.5rem;
}

.cart-drawer__warnings {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

cart-drawer.is-empty .drawer__inner {
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  padding: 0;
}

cart-drawer.is-empty .drawer__header {
  display: none;
}

cart-drawer:not(.is-empty) .cart-drawer__warnings,
cart-drawer:not(.is-empty) .cart-drawer__collection {
  display: none;
}

.cart-drawer__warnings--has-collection .cart__login-title {
  margin-top: 2.5rem;
}

.drawer.active .drawer__inner {
  transform: translateX(0);
}

.drawer__header {
  position: relative;
  background-color: #ebf5ff;
  padding: 1.5rem;
}

.drawer__header-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__header-progress-bar {
  text-align: center;
  font-weight: 600;
  color: #324a97;
}

.progress-bar {
  width: 100%;
  height: 15px;
  background-color: lightgray;
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #2a469d;
  width: 0%;
  transition: width 0.3s ease-in-out;
  display: block !important;
  border-radius: 12px 0 0 12px;
}

.progress[data-progress="1"] {
  width: 25%;
}

.progress[data-progress="2"] {
  width: 50%;
}

.progress[data-progress="3"] {
  width: 75%;
}

.progress[data-progress="4"] {
  width: 100%;
}

.totals__subtotal-value,
.totals__subtotal {
  font-weight:600;
}

.ajaxcart__note,
.totals__subtotal-value {
  color: #324a96;
  text-align: center;
}

.drawer__heading {
  margin-bottom: 0;
  font-family: RadikalMedium;
  font-size: 16px;
  color: #2C479E;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 26px;
  text-transform: uppercase;
  margin-top: 0;
  text-align: center;
}

.drawer__close {
  display: inline-block;
  padding: 0;
  width: 38px;
  height: 38px;
  position: absolute;
  top: 15px;
  right: 25px;
  color: #fff;
  background-color: #2a469d;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer__close svg {
  width: 18px;
  height: 28px;
  display: inline-block;
}

.drawer__close svg path {
  fill: #fff;
}

.product-option.subs {
  margin-top: 0;
}

.cart-drawer__warnings .drawer__close {
  right: 5px;
}

.drawer__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.drawer__footer {
  background-color: rgb(var(--color-background));
  padding: 3.1rem 2.5rem;
  background: #ebf5ff;
}

cart-drawer-items.is-empty + .drawer__footer {
  display: none;
}

.drawer__footer > details {
  margin-top: -1.5rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

.drawer__footer > details[open] {
  padding-bottom: 1.5rem;
}

.drawer__footer summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 0;
}

.cart-drawer__footer {
  margin-bottom: 20px;
}

.drawer__footer > details + .cart-drawer__footer {
  padding-top: 1.5rem;
}

cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cart-drawer__overlay:empty {
  display: block;
}

.cart-drawer__form {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  padding: 2.5rem 1.5rem;
}

.cart-drawer__collection {
  margin: 0 2.5rem 1.5rem;
}

.cart-drawer .drawer__cart-items-wrapper {
  flex-grow: 1;
}

.cart-drawer .cart-items, .cart-drawer tbody {
  display: block;
  width: 100%;
}

.cart-drawer thead {
  display: inline-table;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: rgb(var(--color-base-background-1));
}

cart-drawer-items {
  overflow: auto;
  flex: 1;
}

.drawer__cart-items-wrapper .cart-items {
  position: relative;
}

.cart-item cart-remove-button {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}

cart-remove-button .button {
  min-width: unset;
  margin: 0;
  min-height: unset;
}

@media screen and (max-height: 650px) {
  cart-drawer-items {
    overflow: visible;
  }

  .drawer__inner {
    overflow: scroll;
  }
}

.cart-drawer .cart-item {
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
  margin-bottom: 15px;
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1rem;
}

.bundle-wrap .cart-item:last-child {
  margin-bottom: 0 !important;
}

.cart-drawer .cart-item__media {
  width: 45%;
}

.cart-drawer .cart-item__image {
  width: 100%;
  border-radius: 9px;
}

.cart-drawer .cart-items thead {
  margin-bottom: 0.5rem;
}

.cart-drawer .cart-items thead th:first-child,
.cart-drawer .cart-items thead th:last-child {
  width: 0;
  padding: 0;
}

.cart-drawer .cart-items thead th:nth-child(2) {
  width: 50%;
  padding-left: 0;
}

.cart-drawer .cart-items thead tr {
  display: table-row;
  margin-bottom: 0;
}

.cart-drawer .cart-items th {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1.5rem;
}

.cart-drawer .cart-item .loading-overlay {
  right: 5px;
  padding-top: 2.5rem;
}

.cart-drawer .cart-items td {
  padding-top: 2rem;
}

.cart-drawer .cart-item > td + td {
  padding-left: 1rem;
}

.cart-drawer .cart-item__details {
  width: 48%;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: space-between;
  padding-bottom: 25px;
}

.cart-drawer .bundle-wrap .cart-item__details {
  flex-direction: column-reverse;
}

.cart-drawer .cart-item__totals {
  pointer-events: none;
}

.cart-drawer.cart-drawer .cart-item__price-wrapper > *:only-child {
  margin-top: 0;
}

.cart-drawer .unit-price {
  margin-top: 0.6rem;
}

.cart-drawer .cart-items .cart-item__quantity {
  padding: 0;
}

.cart-drawer .cart-item cart-remove-button svg {
  width: 20px;
  height: 20px;
}

.cart-drawer .cart-item cart-remove-button svg path {
  fill: #2a469d;
}

@media screen and (min-width: 768px) {
  .cart-drawer .cart-item {
    gap: 20px;
  }

  .cart-drawer .cart-item cart-remove-button svg {
    width: 22px;
    height: 22px;
  }

  .cart-drawer__form {
    padding: 2.5rem 2.5rem;
  }

  .cart-drawer .cart-item__details {
    width: auto;
  }

  .drawer__header {
    padding: 30px 30px 20px 30px;
  }

}

@media screen and (min-width: 1025px) {
  .cart-drawer__form {
    padding: 3.5rem 3.5rem;
  }

  .cart-drawer .cart-item {
    justify-content: unset;
    gap: 30px;
  }

}

@media screen and (max-width: 749px) {
  .cart-drawer .cart-item cart-remove-button {
    margin-left: 0;
  }
}

.cart-drawer__footer > * + * {
  margin-top: 1rem;
}

.cart-drawer .totals {
  justify-content: space-between;
}

.cart-drawer .price {
  font-size: 13px;
  font-family: 'RadikalMedium';
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 8px;
}

.cart-drawer .tax-note {
  margin: 1.2rem 0 1rem auto;
  text-align: left;
}

.cart-drawer .product-option {
  font-family: RadikalMedium;
  font-size: 13px;
  color: #2C479E;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 22px;
  word-break: unset;
}

.bundle-wrap .product-option {
  margin-bottom: 0;
}

.cart-drawer .product-option .subs-wrap {
  display: block;
}

.cart-drawer details[open]>summary .icon-caret {
  transform: rotate(180deg);
}

.cart-drawer .cart__checkout-button {
  background-color: #324a96;
  color: #fff;
  font-family: RadikalMedium;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 9px;
  padding: 8px 20px;
  width: 100%;
  display: block;
  cursor: pointer;
  border: none;
  line-height: initial;
  text-transform: uppercase;
}

.cart-drawer .cart__checkout-button:after,
.cart-drawer .cart__checkout-button:before {
  content: none;
}

.cart-drawer .cart__checkout-button {
  max-width: none;
}

.drawer__footer .cart__dynamic-checkout-buttons {
  max-width: 100%;
}

.drawer__footer #dynamic-checkout-cart ul {
  flex-wrap: wrap !important;
  flex-direction: row !important;
  margin: 0.5rem -0.5rem 0 0 !important;
  gap: 0.5rem;
}

.drawer__footer [data-shopify-buttoncontainer] {
  justify-content: flex-start;
}

.drawer__footer #dynamic-checkout-cart ul > li {
	flex-basis: calc(50% - 0.5rem) !important;
  margin: 0 !important;
}

.drawer__footer #dynamic-checkout-cart ul > li:only-child {
  flex-basis: 100% !important;
  margin-right: 0.5rem !important;
}

.ajaxcart__note {
  font-size: 14px;
  letter-spacing: 0.15em;
  margin-top: 10px;
  font-family: RadikalMedium;
  font-weight: 400;
  margin-bottom: 0;
}

p.ajaxcart__subtotal {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-family: RadikalMedium;
  padding-left: 10px;
}

.drawer__footer .cart__ctas {
  display: initial;
}

.cart-item .cart-item__name {
  display: none;
}

.bundle-wrap .cart-item .cart-item__name {
  display: none;
}

.cart-items .flavour-option {
  display: none;
}

.cart-item__details-top dl {
  margin: 0;
}

.cart-item .cart-item__quantity {
  max-width: 180px;
}

.cart-item .cart-item__quantity .quantity {
  min-height: 38px;
  max-height: 38px;
}
@media screen and (min-width: 768px) {

  .drawer__inner {
     width: 445px;
  }
  
  .drawer__footer #dynamic-checkout-cart ul > li {
    flex-basis: calc(100% / 3 - 0.5rem) !important;
    margin: 0 !important;
  }

  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2) ~ li,
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4) ~ li {
	  flex-basis: calc(50% - 0.5rem) !important;
  }

  .cart-drawer .cart__checkout-button {
    letter-spacing: 4px;
    margin-top: 25px;
  }

  .cart-item__details-top {
    margin-top: 40px;
  }

  .cart-drawer .price {
    font-size: 15px;
  }

  .cart-drawer .product-option {
    font-size: 15px;
  }
}

cart-drawer-items::-webkit-scrollbar {
  width: 3px;
}

cart-drawer-items::-webkit-scrollbar-thumb {
  background-color: rgba(var(--color-foreground), 0.7);
  border-radius: 100px;
}

cart-drawer-items::-webkit-scrollbar-track-piece {
  margin-top: 31px;
}

@media screen and (min-width: 1025px)  {
  .cart-drawer .cart__checkout-button {
    font-size: 17px;
    padding: 12px 20px;
  }

  .drawer__inner {
     width: 530px;
  }
}


/* bundle cart */

.bundle-wrap {
  background: #ebf5ff;
  border-radius: 0 0 10px 10px;
  position: relative;
  padding: 0 12px 30px;
  margin-bottom: 30px;
}

.cart-bundle-bottom {
  padding: 0 15px 15px;
  border-radius: 0;
  background:  #ebf5ff;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.bundle-header {
  margin: 0;
  padding: 15px 12px 0px;
  border-radius: 10px 10px 0 0;
  background: #ebf5ff;
  text-align: left;
  font-family: RadikalMedium;
  font-size: 20px;
  color: #2C479E;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 26px;
  text-transform: uppercase;
}

.bundle-wrap cart-remove-button {
  display: none;
}

.bundle-wrap .cart-quantity {
  background: transparent;
  color: #2c479e;
  padding: 0 !important;
}

.cart-bundle-wrapper .quantity.cart-quantity {
  background: transparent;
  color: #2C479E;
  padding: 0 !important;
}

.cart-bundle-wrapper .quantity.cart-quantity input {
  pointer-events: none;
  padding: 0;
  text-align: left;
  flex-grow: unset;
  width: 13px;
  font-size: 17px;
}

.cart-bundle-wrapper .cart-item__totals {
  display: none;
}

.cart-bundle-wrapper .cart-item__details {
  flex-direction: column-reverse;
}

.cart-bundle-wrapper .cart-item__details-top {
  margin-top: 0;
}

.cart-bundle-wrapper .cart-item__details-top .product-option {
  margin: 0;
}

.cart-bundle-wrapper .quantity.cart-quantity .quantity__button {
  display: none;
}

.cart-bundle-wrapper .quantity.cart-quantity .case-wrap {
  display: block;
  text-transform: capitalize;
  font-family: 'RadikalMedium';
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 8px;
  font-size: 15px;
}

.case-wrap {
  display: none;
}

.bundle-wrap .case-wrap {
  display: block;
  font-size: 15px;
  font-family: 'RadikalMedium';
  line-height: 23px;
  color: #2C479E;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.bundle-wrap quantity-input .quantity__button {
  display: none;
}

.bundle-wrap quantity-input .quantity__input {
  text-align: left;
  pointer-events: auto;
  pointer-events: none;
  font-size: 15px;
  flex-grow: unset;
  width: 10px;
  padding: 0;
  font-family: 'RadikalMedium';
  font-weight: 500;
}

.bundle-wrap .cart-item__details-top {
  margin-top: 0;
}

.bundle-wrap .cart-item__details {
  justify-content: center;
}

.bundle-wrap .cart-item__quantity {
  height: 20px;
}

.bundle-wrap .cart-item__quantity .quantity {
  min-height: unset;
  height: 20px;
}

.bundle-total-price {
  color: #2c479e;
  font-size: 15px;
  font-family: RadikalMedium;
  line-height: 23px;
  font-weight: 400;
  letter-spacing: .02em;
}

.bundle-remove-btn {
  text-decoration: none;
  color: #2c479e;
  background: none;
  border: none;
  cursor: pointer;
}

.bundle-remove-btn svg {
  width: 22px;
  height: 22px;
}

.bundle-remove-btn svg path {
  fill: #2a469d;
}
   
.bundle-wrap .cart-item__totals {
  display: none;
}

.bundle-wrap .cart-item__totals.right {
  display: none !important;
}

.cart-item__price-wrapper .cart-item__discounted-prices {
  display: flex;
  gap: 10px;
}

/* bundle cart New */

.BundleHeader {
  padding: 15px 15px 0px 15px;
  text-align: left;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  font-family: RadikalMedium;
  font-size: 20px;
  color: #2C479E;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 29px;
  text-transform: uppercase;
  background: #ebf5ff;
}

.bundleSummary .BundleRemove svg {
  width: 22px;
  height: 22px;
}

.bundleSummary .BundleRemove path {
  fill: #2C479E;
}

.bundleSummary {
  background: #ebf5ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  margin-bottom: 20px;
}

.BundlePrice {
  font-size: 15px;
  font-family: RadikalMedium;
  line-height: 23px;
  color: #2c479e;
  font-weight: 400;
  letter-spacing: .02em;
}

.cart-bundle-wrapper {
  background: #ebf5ff;
  padding: 10px 10px 20px;
  border-radius: 10px;
  margin: 0 0 25px;
}

.cart-bundle-wrapper cart-remove-button {
  display: none;
}

.cart-bundle-wrapper .price.total-price-bundle {
  margin-bottom: 20px;
}

.bundleSummary .BundleRemove {
  margin-top: -25px;
}

.cart-bundle-wrapper .cart-item__details {
  justify-content: center !important;
}

/* Progress bar cart */

.drawer__header-progress-bar {
  text-align: center;
  font-weight: 600;
  color: #324a97;
  margin-top: 35px;
}

.progress-bar {
  width: 100%;
  height: 15px;
  background-color: lightgray;
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #2a469d;
  width: 0%;
  transition: width 0.3s ease-in-out;
  display: block !important;
  border-radius: 12px 0 0 12px;
}

.progress[data-progress="1"] {
  width: 25%;
}

.progress[data-progress="2"] {
  width: 50%;
}

.progress[data-progress="3"] {
  width: 75%;
}

.progress[data-progress>="4"] {
  width: 100%;
}

/* Empty Cart Style */

cart-drawer.is-empty .cart__empty_header {
  display: block;
}

/* Cart header */
.free-shipping__calculator {
  font-size: 14px;
  font-family: 'RadikalMedium';
  line-height: 24px;
  font-weight: 400;
  color: #2C479E;
  letter-spacing: 0.02em;
}

/* Cart Button */

.btn.cart-btn {
  display: flex;
  justify-content: center;
  gap: 10px;
  line-height: 17px;
  align-items: center;
  padding: 16px 11px 12px;
  font-size: 16px;
  font-family: RadikalMedium;
  letter-spacing: 2px !important;
  text-align: center;
  font-weight: 400;
  text-decoration: none;
  background-color: #2c479e;
  color: white;
  border-radius: 9px !important;
  width: 100%;
  text-transform: uppercase;
  margin-top: 0;
}

@media screen and (min-width: 799px) {
  .btn.cart-btn {
    font-size: 20px;
  }
}