/** Shopify CDN: Minification failed

Line 33:0 Unexpected "<"
Line 77:0 Unexpected "<"

**/
/* new custom css here */

/* New custom css here*/
.variant-wrapper {
    position: relative;
    font-size: 14px;
  }
  .size-guide-cta {
    position: absolute;
    right: 4px;
    top: 0px;
    display: flex;
  }
  .size-guide-icon {
    width: 15px;
    margin-right: 3px;
  }
  #size_chat {
    overflow: visible;
  }
  .jquery-modal.blocker {
    z-index: 3;
  }

/* Product page local shipping container 1 line modification */

<style>
  .custom-shipping-container {
    display: flex;
    padding: 6px 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background-color: #f6f6f6;
    border-radius: 20px;
  }

  .custom-shipping-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .text-block-shipping {
    font-size: 11px;
    color: #604647;
  }

  .shipping-date {
    font-weight: bold;
  }

  .free-shipping {
    font-weight: bold;
  }

  .green-circle {
    animation: fade 1s ease-in-out infinite;
  }

  @keyframes fade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }

  @media only screen and (max-width: 767px) {
    .custom-shipping-container .text-block-shipping {
      font-size: 9px !important;
    }
  }
</style>

