/** Shopify CDN: Minification failed

Line 654:6 Unexpected "/"

**/
.progress-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0 0 24px;
}
.progress {
  background-color: rgb(0 0 0 / 10%);
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
  width: 100%;
  margin-top:8px;
}
.progress-bar {
  background-color: #598896;
  border-radius: 50px;
  height: 100%;
  position: relative;
  transition: width 0.4s ease-in-out;
}
.remaining-amount {
    color: #222;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.28px;
}
.progress-bar-text {
  color: #222;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.28px;
}

/* .product-option dd,
.product-option dt,
.cart-item__details dl {
    display: none;
} */
.cart-item__details dt {
    display: none;
}
td.cart-item__details .cart-item__price-wrapper {
    order: 1;
}
.cart-drawer .cart-item__details dl:empty {
    display: none !important;
}
.cart-drawer__form .quantity-popover-container {
    display: none;
}
.totals__total,p.totals__total-value {
    color: #222;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.32px;
}
.cart-item__price-wrapper .price {
    color: #222;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
}
td.cart-item__details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
}
span.line_items_cart-quantity {
    display: inline-block;
    margin-right: 3px;
    font-weight: 400;
}
.drawer {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  /* background-color: rgba(var(--color-foreground), 0.5); */
  transition: visibility var(--duration-default) ease;
}
.cart-drawer__empty-content .common_btn {
    border-radius: 0;
    background: #598896;
    color:#fff;
    border: 2px solid #598896;
}




.drawer.active {
  visibility: visible;
}

.drawer__inner {
  height: 53%;
  width: 600px;
  max-width: calc(100vw - 3rem);
  padding: 24px;
  border: 1px solid #598896;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* transform: translateX(100%); */
  transition: opacity var(--duration-default) ease;
  margin-top: 90px;
  opacity: 0;
  visibility: hidden;
  box-shadow:0px 4px 4px 0px rgba(0, 0, 0, 0.10);
}

.drawer__inner-empty {
  height: 100%;
  padding:24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.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;
}

.CartDrawer-container.container {
    display: flex;
    justify-content: flex-end;
    position:relative;
}
.drawer.active .container:before  {
      position: absolute;
    content: "";
    left: auto;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    border: 1px solid #E5BCBC;
    top: 83px;
    right: 22px;
    z-index: 0;
    margin-top: 0;
    transition: opacity var(--duration-default) ease;
    background: #fff;
}
.drawer.active .container:after  {
    position: absolute;
    content: "";
    left: auto;
    width: 20px;
    height: 3px;
    top: 90px;
    right: 22px;
    z-index: 19;
    margin-top: 0;
    background: #fff;
    transition: opacity var(--duration-default) ease;
}
.drawer.active .drawer__inner {
    transform: translate(30px);
    opacity: 1;
    visibility: visible;
}
.cart-drawer .drawer__cart-items-wrapper {
    flex-grow: 1;
    height: 100%;
    overflow-y: scroll;
    max-height: 220px;

    flex-grow: 1;
    height: 100%;
    overflow-y: scroll;
    max-height: 220px;
    /* min-height: 500px; */
    max-height: 500px;
}
.cart-drawer .drawer__cart-items-wrapper::-webkit-scrollbar {
    width: 6px;
}
.drawer__cart-items-wrapper::-webkit-scrollbar-track {
    background-color: transparent;
}
.drawer__cart-items-wrapper::-webkit-scrollbar-thumb {
    background: #e5bcbc;
    border-radius: 25px;
}
.drawer__header {
  position: relative;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom:16px;
}

.drawer__heading {
    margin: 0;
    color: #222;
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -0.48px;
}

.drawer__close {
  display: inline-block;
  padding: 0;
  min-width: auto;
  min-height: auto;
  box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0);
  position: absolute;
  top: 0px;
  right: -10px;
  color: rgb(var(--color-foreground));
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.cart-drawer__warnings .drawer__close {
  top:0;
  right: -10px;
}
.cart-drawer__empty-content {
    position: relative;
}

.drawer__close svg {
  height: 2rem;
  width: 2rem;
}

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

.drawer__footer {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-top: 1px solid #eeeeee;
  padding: 1.2rem 0 0;
  padding: 0;
}

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 2.8rem 1.5rem 0;
}

.drawer__footer > details + .cart-drawer__footer {
  padding-bottom: 1.2rem;
}

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;
}

.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%;
}

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

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

  .drawer__inner {
    overflow: scroll;
  }
}

.cart-drawer .cart-item {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 0;
  justify-content: space-between;
}

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

.cart-drawer .cart-item__media {
  grid-row: 1 / 3;
}

.cart-drawer .cart-item__image {
    max-width: 100%;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    object-fit: cover;
    display: block;
}

.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__spinner {
  right: 5px;
  padding-top: 2.5rem;
}

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

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

.cart-drawer .cart-item__details {
  width: 64%;
  width: auto;
  max-width: 250px;
  grid-column: 2 / 4;
  margin-right: auto;
}

.cart-drawer .cart-item__totals {
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

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

.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

.cart-drawer .cart-items .cart-item__quantity {
  padding-top: 0;
  grid-column: 2 / 5;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 1200px) {
.drawer.active .drawer__inner {
    transform: translate(10px);
}
}
@media screen and (max-width: 749px) {
  .cart-drawer .cart-item cart-remove-button {
    margin-left: 0;
  }
}
@media screen and (max-width: 425px) {
 .drawer__heading {
    font-size: 20px;
  }
  .remaining-amount, .progress-bar-text {
    font-size: 12px;
}
  .drawer__inner {
    padding: 20px;
}
  .cart-drawer .cart__checkout-button {
    padding: 10px;
}
}
.cart-drawer__footer > * + * {
  margin-bottom: 1.2rem;
}

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

.cart-drawer .price {
  line-height: 1;
}

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

.cart-drawer .product-option dd {
  word-break: break-word;
}

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

.cart-drawer .cart__checkout-button {
  max-width: none;
  border-radius:0;
  transition:all 0.5s ease;
  width:100%;
  padding: 11px 24px;
  background: #598896;
  border-color: #598896;
  color: #fff;
}
.cartcommon_btn {
    width: 100%;
}
.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;
}

@media screen and (min-width: 750px) {
  .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-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;
}

.cart-drawer .quantity-popover-container {
  padding: 0;
}

.cart-drawer .quantity-popover__info.global-settings-popup {
  transform: translateY(0);
  top: 100%;
}

.cart-drawer .cart-item__error {
  margin-top: 0.8rem;
}

.cart-drawer .quantity-popover__info + .cart-item__error {
  margin-top: 0.2rem;
}

@media screen and (min-width: 750px) {
  .cart-drawer .cart-item__quantity--info quantity-popover > * {
    padding-left: 0;
  }

  .cart-drawer .cart-item__error {
    margin-left: 0;
  }
}

td.cart-item__totals.right {
    display: none;
}
/* td.cart-item__quantity {
    position: absolute;
    top: 0;
    right: 0;
} */
.cart-drawer .cart-item {
    position: relative;
    border-bottom:1px solid #eeeeee;
    padding-bottom:12px;
    margin-bottom:12px;
}
.cart-item__details>*+*,
.cart-drawer.cart-drawer .cart-item__price-wrapper>*:only-child {
    text-align: left;
}

/* cart drawer css */
.cart-item__details .quantity-popover-container {
    display: block;
    width: 90px;
}
/* .template_product .cart-item__details .quantity-popover-container button.quantity__button {
    background-color: transparent !important;
    opacity: 1!important;
    width: auto;
}
.template_product .cart-item__details .quantity-popover-container .quantity {
    min-height: 20px;
    border: 0;
    width: auto;
    margin-top: 15px;
} */ */
/* @media (min-width: 1200px)  and (max-width: 1400px) {
  .CartDrawer-container.container {
    position: unset;
  }
} */
@media (max-width: 991px) {
  
}
.CartDrawer-container.container {
  position: unset;
}
.drawer.active .container:before,
.drawer.active .container:after {
  display: none;
}
.cart-drawer__form .quantity-popover-container {
    display: none !important;
}
.cart-drawer .cart__checkout-button {
    padding: 11px 24px;
}
.cart-drawer .cart-item:last-child {
    border: 0;
}
/* .cart-drawer .cart-item__details .cart-item__price-wrapper {
    display: none;
} */
.cart-item__details__varints span.line_items_cart-quantity {
    display: none;
}
.cart-drawer .cart-item__details .product-option dd,
.cart-drawer .cart-item__details .product-option dt,
.cart-drawer .cart-item__details dl {
    display: block;
}
.cart-drawer .cart-item__details .product-option dt {
    display: none;
}
.cart-drawer .cart-item__details .product-option .cart__option-value {
    text-decoration: none;
    display: block;
    color: #222;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.28px;
    transition: all .5s ease;
    margin-top: 5px;
}
@media (max-width: 575px) {
  .cart-drawer .drawer__cart-items-wrapper {
    max-height: 200px;
  }
  .drawer__inner {
    padding: 10px 20px;
    margin-top: 80px;
  }
  .cart-drawer .cart-item__details {
    max-width: 230px;
  }
}
@media (max-width: 480px) {
  .cart-drawer .cart-item__details {
    max-width: 160px;
  }
  td.cart-item__details__varints {
    display: block;
  }
  .cart-drawer .cart-item__details .cart-item__price-wrapper {
    display: block;
    order: 1;
    margin-top: 10px;
  }
  .cart-drawer .cart-item__details .product-option dd,
  .cart-drawer .cart-item__details dl {
    display: block;
  }
  .cart-drawer .cart-item__details .cart-item__price-wrapper span.visually-hidden {
    display: block;
  }
  .cart-drawer .cart-item__details {
    max-width: 160px;
  }
}
@media (min-width: 992px) and (max-width: 1400px) {
  .cart-drawer .drawer__cart-items-wrapper {
    max-height: 155px;
  }
}