/** Shopify CDN: Minification failed

Line 56:52 Expected ")" to end URL token

**/

.bundle-item__subscribe-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
   
    border: 1px solid #000;
    width: max-content;
    padding: 3px 8px;
    margin: 8px auto 8px;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
 .bundle-item__controls {
  
    display: flex;
    justify-content: center;
}

.bundle-item__subscribe, .bundle-item__remove {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: GTAMERICA, sans;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 14px;
    cursor: pointer;
}


.bundle-selling_plan_select{
      width: 187px;
    border: 1px solid;
   height:25px;
    padding-right: 22px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
    background-image: url(data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 7.75L6.46967 8.28033L7 8.81066L7.53033 8.28033L7 7.75ZM12.7197 0.96967L6.46967 7.21967L7.53033 8.28033L13.7803 2.03033L12.7197 0.96967ZM7.53033 7.21967L1.28033 0.96967L0.21967 2.03033L6.46967 8.28033L7.53033 7.21967Z' fill='%23221F1F'/%3E%3C/svg%3E);
}
.phone-input{
    width: 187px;
    border: 1px solid black;
   
  height:25px;
  font-size:14px;
}
.phone-select{
    display: flex;
    justify-content: center;
    margin-bottom: 3px;
  
}
.reminder-options{
  font-size:14px;
  padding-top:0;
  width: 187px;     
  border: 1px solid;
}

.phone-subscribe{
      display: flex;
    justify-content: center;
  margin-bottom: 3px;
}

 /* Tooltip container 595959*/
   /* Tooltip container */
    .tooltip {
        position: relative;
        display: inline-block;
        cursor: pointer;
        font-size: 18px;
        font-weight: bold;
        width: 24px;
        height: 24px;
        text-align: center;
        line-height: 24px;
        border-radius: 50%;
        background-color: #595959;
        color: #fff;
    }

    /* Tooltip text */
    .tooltip-text {
      font-size: 9px; /* Set font size to 9px */
        line-height: 14px; /* Appropriate line height for 9px font */
        visibility: hidden;
        width: 250px;
        background-color: #333;
        color: #fff;
        text-align: left;
        padding: 10px;
        border-radius: 6px;
        position: absolute;
        left: -260px; /* Position to the left of the question mark */
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        transition: opacity 0.3s, transform 0.3s;
        white-space: normal;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
      z-index: 9999; /* Ensure the tooltip is on top of everything */
    }

    /* Show tooltip on hover */
    .tooltip:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
        transform: translateY(-50%) translateX(-10px);
    }

     /* Small arrow pointing right */
    .tooltip-text::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 100%;
        transform: translateY(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: transparent transparent transparent #333;
    }

    /* Parent container styling */
    .bundle-item__footer {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 4px;
          flex-direction: column;

    }

.bundle-item__row {
    display: flex;
    align-items: center;
    gap: 10px; /* Adjust spacing */
}

/* Media query for mobile */
@media (max-width: 768px) {
    .tooltip .tooltip-text {
        left: -180px; /* Moves the tooltip left */
        transform: none; /* Disables centering */
        white-space: normal; /* Allows text wrapping */
        width: 200px; /* Adjust width for readability */
    }

    .tooltip::after { 
        display: none; /* Hides the arrow */
    }
}

.hidden {
    display: none !important;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  z-index:100;
}

.overlay-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#confirm-submit {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}
#subscription-plan-select{
      font-family: var(--font-body-family);
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
}
#subscription-phone{
    font-family: var(--font-body-family);
}