/** Shopify CDN: Minification failed

Line 270:2 Comments in CSS use "/* ... */" instead of "//"
Line 277:2 Comments in CSS use "/* ... */" instead of "//"
Line 278:2 Comments in CSS use "/* ... */" instead of "//"
Line 279:2 Comments in CSS use "/* ... */" instead of "//"
Line 281:2 Comments in CSS use "/* ... */" instead of "//"
Line 283:2 Comments in CSS use "/* ... */" instead of "//"
Line 362:2 Comments in CSS use "/* ... */" instead of "//"
Line 363:1 Comments in CSS use "/* ... */" instead of "//"
Line 364:2 Comments in CSS use "/* ... */" instead of "//"
Line 417:0 Unexpected "{"
... and 1 more hidden warnings

**/
.cart {
  position: relative;
  display: block;
}

.cart__empty-text,
.is-empty .cart__contents,
cart-items.is-empty .title-wrapper-with-link,
.is-empty .cart__footer {
  display: none;
}

.is-empty .cart__empty-text,
.is-empty .cart__warnings {
  display: block;
}

.cart__warnings {
  display: none;
  text-align: center;
  padding: 3rem 0 1rem;
}

.cart__empty-text {
  margin: 4.5rem 0 2rem;
}

.cart__contents > * + * {
  margin-top: 2.5rem;
}

.cart__login-title {
  margin: 5.5rem 0 0.5rem;
}

.cart__login-paragraph {
  margin-top: 0.8rem;
}

.cart__login-paragraph a {
  font-size: inherit;
}

@media screen and (min-width: 990px) {
  .cart__warnings {
    padding: 7rem 0 1rem;
  }

  .cart__empty-text {
    margin: 0 0 3rem;
  }
}

cart-items {
  display: block;
}

.cart__items {
  position: relative;
  padding-bottom: 3rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart__items--disabled {
  pointer-events: none;
}

.cart__footer {
  padding: 4rem 0 0;
}

.cart__footer-wrapper:last-child .cart__footer {
  padding-bottom: 5rem;
}

.cart__footer > div:only-child {
  margin-left: auto;
}

.cart__footer > * + * {
  margin-top: 4rem;
}

.cart__footer .discounts {
  margin-top: 1rem;
}

.cart__note {
  height: fit-content;
}

.cart__note label {
  display: flex;
  align-items: flex-end;
  position: absolute;
  line-height: 1;
  height: 1.8rem;
  top: -3rem;
  color: rgba(var(--color-foreground), 0.75);
}

.cart__note .field__input {
  height: 100%;
  position: relative;
  border-radius: var(--inputs-radius);
  padding: 1rem 2rem;
}

.cart__note .text-area {
  resize: vertical;
}

.cart__note:after,
.cart__note:hover.cart__note:after,
.cart__note:before,
.cart__note:hover.cart__note:before,
.cart__note .field__input:focus,
.cart__note .field__input {
  border-bottom-right-radius: 0;
}

@media screen and (min-width: 750px) {
  .cart__items {
    grid-column-start: 1;
    grid-column-end: 3;
    padding-bottom: 4rem;
  }

  .cart__contents > * + * {
    margin-top: 0;
  }

  .cart__items + .cart__footer {
    grid-column: 2;
  }

  .cart__footer {
    display: flex;
    justify-content: space-between;
    border: 0;
  }

  .cart__footer-wrapper:last-child {
    padding-top: 0;
  }

  .cart__footer > * {
    width: 35rem;
  }

  .cart__footer > * + * {
    margin-left: 4rem;
    margin-top: 0;
  }
}

.cart__ctas button {
  width: 100%;
}

.cart__ctas > *:not(noscript:first-child) + * {
  margin-top: 1rem;
}

.cart__update-button {
  margin-bottom: 1rem;
}

.cart__dynamic-checkout-buttons {
  max-width: 36rem;
  margin: 0 auto;
}

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

.cart__dynamic-checkout-buttons div[role='button'] {
  border-radius: var(--buttons-radius-outset) !important;
}

.cart-note__label {
  display: inline-block;
  margin-bottom: 1rem;
  line-height: calc(1 + 1 / var(--font-body-scale));
}

.tax-note {
  margin: 2.2rem 0 1.6rem auto;
  text-align: center;
  display: block;
}

.cart__checkout-button {
  max-width: 36rem;
}

.cart__ctas {
  text-align: center;
}

@media screen and (min-width: 750px) {
  .cart-note {
    max-width: 35rem;
  }

  .cart__update-button {
    margin-bottom: 0;
    margin-right: 0.8rem;
  }

  .tax-note {
    margin-bottom: 2.2rem;
    text-align: right;
  }

  [data-shopify-buttoncontainer] {
    justify-content: flex-end;
  }

  .cart__ctas {
    display: flex;
    gap: 1rem;
  }
}

/*--------------custom payment-------------*/
/* Custom CSS for create order on cart drawer page */
/*---------------------------*/

@media only screen and (max-width: 768px){
  .mainrow{
  margin: auto;
  width: 90%;
}
}


@media only screen and (min-width: 768px){
  .mainrow{
  margin: auto;
  width: 60%;
}
}


/* Clear the float to prevent layout issues */
.cart__contents::after {
  content: "";
  display: table;
  clear: both;
}

#email-input-section {
  //margin-top: 20px;
}

/* Advanced CSS for Email Input */
#customer-email {
  width: 400px;
  padding: 12px; 
  //border: none; 
  //border-bottom: 2px solid #ccc; 
  //border-radius: 8px;
  font-size: 14px; 
  //color: #f5ecec;
  color:rgb(var(--color-foreground));;
  //background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease; 
}

#customer-email:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
  outline: none; 
}

#customer-email::placeholder {
  color: #999; /* Placeholder text color */
}

/* Advanced CSS for Create Order Button */
#create-order {
  border: 2px solid #007bff;
  border-radius: 8px;
  background-color: #007bff;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer; 
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease; 
}

#create-order:hover {
  background-color: #0056b3; 
  border-color: #0056b3;
  transform: translateY(-2px); 
}

#create-order:active {
  transform: translateY(0); /* Reset lift effect on click */
}

#create-order:disabled {
  background-color: #ccc; 
  border-color: #ccc; 
  cursor: not-allowed; 
  transform: none; 
}

/* Error Message Styling */
.error-message {
  display: none; 
  font-size: 12px; 
  color: #ff0000; 
  margin-top: 5px; 
}

/* Loader (Spinner) Styles */
#loader {
  border: 3px solid #f3f3f3; /* Light grey */
  border-top: 3px solid #007bff; /* Blue */
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
  display: none; /* Hidden by default */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the loader */
  z-index: 10; /* Ensure it appears above the button */
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* General Form Styling */
#customer-form {
  margin: 0 auto;
  //border: 1px solid #ccc;
 //border-radius: 5px;
  //background-color: #0c1210;
}

#customer-form div {
  margin-bottom: 15px;
}

#customer-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

/* Input Field Styling (Matches Email Input) */
@media only screen and (max-width: 768px){
  #customer-form input,select {
    width: 100%;
    padding: 7px;
    font-size: 14px;
    color: rgb(var(--color-foreground));
    transition: border-color 0.3s ease;
}
}


@media only screen and (min-width: 768px){
  #customer-form input,select {
  width: 100%;
  padding: 9px;
  font-size: 13px;
  color:rgb(var(--color-foreground));;
  transition: border-color 0.3s ease;
}
}


#customer-form input:focus , select:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
  outline: none;
}

#customer-form input::placeholder {
  color: #999;
}

/* Override autofill background color for all input fields */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-webkit-autofill:valid,
{
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important; /* Transparent background */
  -webkit-text-fill-color: #333 !important; /* Text color */
}


/* Submit Button Styling (Matches Create Order Button) */
#customer-form button[type="submit"] {
  width: 100%;
  padding: 12px 20px;
  border-radius: 0px;
  background-color: #0e0a01;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

#customer-form button[type="submit"]:hover {
  background-color: #0e0a01;
  border-color: #0e0a01;
  transform: translateY(-2px);
}

#customer-form button[type="submit"]:active {
  transform: translateY(0);
}

#customer-form button[type="submit"]:disabled {
  background-color: #0e0a01;
  border-color: #0e0a01;
  cursor: not-allowed;
  transform: none;
}

/* Popup container */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    background-color: #ff4d4d;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Popup content */
.popup-content {
    position: relative;
}

/* Close button */
.close-btn {
    position: absolute;
    top: -6px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Show popup */
.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -55%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}


/* Popup styling */
.custom-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 9999;
  display: none;
}

.popup-content {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  overflow-y: auto;
  max-height: 90vh;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.close-popup {
  position: absolute;
  top: -11px;
  right: 5px;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    padding: 20px;
  }
}

/* Checkbox styling */
.custom-payment-option {
  margin: 15px 0;
  padding: 10px;
  background: #f8f8f8;
  border-radius: 4px;
}

/* Order creation Progress Modal  */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.progress-container {
  width: auto;
  height: 16px;
  background-color: #eee;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-left: -20px;
  margin-top: -20px;
  margin-right: -20px;
}

.progress-bar-indeterminate {
  position: absolute;
  height: 100%;
  width: 30%;
  background: linear-gradient(to right, #4f46e5, #6366f1);
  animation: indeterminateMove 1.2s infinite ease-in-out;
  border-radius: 8px;
}

@keyframes indeterminateMove {
  0% {
    left: -30%;
  }
  100% {
    left: 100%;
  }
}

.display-font {
  font-family: Times New Roman;
  font-weight: 500;
  line-height: 1.6;
}


@media only screen and (max-width: 768px){
  .modal-content{
    width: 90%;
  }

  .display-font{
    font-size: 1rem;
  }
}


@media only screen and (min-width: 768px){
  .modal-content{
    width: 35%;
  }

  .display-font{
    font-size: 1.5rem;
  }
}

/* Order creation Progress Modal  */
.progress-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.progress-modal-overlay.show {
  visibility: visible;
  opacity: 1;
}

.progress-modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.progress-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.progress-container-drawer {
  width: auto;
  height: 16px;
  background-color: #eee;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-left: -20px;
  margin-top: -20px;
  margin-right: -20px;
}

.progress-bar-indeterminate-drawer {
  position: absolute;
  height: 100%;
  width: 30%;
  background: linear-gradient(to right, #4f46e5, #6366f1);
  animation: indeterminateMove 1.2s infinite ease-in-out;
  border-radius: 8px;
}

@keyframes indeterminateMove {
  0% {
    left: -30%;
  }
  100% {
    left: 100%;
  }
}

.display-font-drawer {
  font-family: Times New Roman;
  font-weight: 500;
  line-height: 1.6;
}


@media only screen and (max-width: 768px){
  .modal-content-drawer{
    width: 90%;
  }

  .display-font-drawer{
    font-size: 1.5rem;
  }
}


@media only screen and (min-width: 768px){
  .modal-content-drawer{
    width: 35%;
  }

  .display-font-drawer{
    font-size: 1.5rem;
  }
}

/*error popup*/
.error-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 66%;
  transform: translate(-50%, -50%); /* Center horizontally & vertically */
  z-index: 1000;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 1.25rem 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  animation: slideInCenter 0.3s ease-in-out;
}

.error-popup-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.error-close-btn {
 position: absolute;
  top: -25px;
  right: -6px;
  font-size: 3.2rem;
  color: #991b1b;
  background: none;
  border: none;
  cursor: pointer;
}

.hidden {
  display: none;
}

.viewcart-error-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 66%;
  transform: translate(-50%, -50%); /* Center horizontally & vertically */
  z-index: 1000;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 1.25rem 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  animation: slideInCenter 0.3s ease-in-out;
}

.viewcart-error-popup-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.viewcart-error-close-btn {
 position: absolute;
  top: -25px;
  right: -6px;
  font-size: 3.2rem;
  color: #991b1b;
  background: none;
  border: none;
  cursor: pointer;
}

@media only screen and (max-width: 768px){
  .viewcart-error-popup{
    width: 100%;
  }
}


@media only screen and (min-width: 768px){
  .viewcart-error-popup{
    width: 15%;
  }
}

@@keyframes slideInCenter {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/*iframe */

/* Iframe styling */
 #iframeModal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.5);
    }

    #iframeModal .modal-content {
      background-color: #fff;
      margin: 5% auto;
      width: 70%;
      padding: 0;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      position: relative;
    }

    #iframeModal .close-btn {
      position: absolute;
      top: 8px;
      right: 16px;
      font-size: 28px;
      color: #aaa;
      cursor: pointer;
    }

    #iframeModal .close-btn:hover {
      color: #000;
    }

  @media screen and (max-width: 767px) {
    #iframeModal .modal-content {
      width: 100%;
      margin: 0;
      height: 100%;
      border-radius: 0;
    }

    #iframeModal iframe {
      height: 100vh; /* Optional: full height on mobile */
      width: 100%;
    }
  }

  @media screen and (min-width: 768px) {
    #iframeModal iframe {
      height: 80vh; /* Optional: full height on mobile */
      width: 100%;
    }
  }

.iframbuttonclose{
  background: transparent;
  border: none;
  padding: 7px;
  cursor: pointer;
}
 