/** Shopify CDN: Minification failed

Line 174:12 Expected ":"
Line 174:14 Expected identifier but found "0"

**/
  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Roboto";
    }

    flex {
      display: flex
    }

    row {
      flex-direction: row;
    }

    #multi-step-flow {
      margin: auto;
      display: flex;
      flex-direction: column;
      text-align: center;
      padding: 40px 25px 25px 25px;
      max-width: 900px;
      height: 90dvh;
      max-height: 90dvh;
    }

    .gap {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .red {
      color:rgb(203, 14, 14)
    }
    .progress-bar {
      display: flex;
      flex-direction: row;
      width: 100%;
      gap: 5px;
      align-items: center;
    }

    .progress-bar-labels {
      display: flex;
      position: relative; /* nødvendigt til absolute midterdiv */
      align-items: center;
    }

    .progress-bar-labels p {
      color: grey;
    }

    .label-left {
      margin-right: auto; /* skubber center og højre til højre */
    }

  .label-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .label-right {
    margin-left: auto; /* skubber til højre */
  }

    .dot {
      width: 15px;
      height: 15px;
      border-radius: 50px;
    }

    .line {
      height: 6px;
      flex: 1;
      border-radius: 0.25rem;
    }

    .line-child {
      width: 50%;
      border-radius: 0.25rem;
      height: 100%;
    }

    #line-2-1 {
      width: 0%;
    }

    .filled {
      background-color: #64682A;
    }

    .not-filled {
      background-color: lightgrey;
    }

    h3 {
      font-size: 1.5rem;
    }

    .step {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding-top: 35px;
    }

    .show {
    display: flex;
    }

    .hide {
    display: none !important;
    }

    .secondary-text {
      color: grey;
      font-size: 0.8rem;
    }

    .step-1-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .zip-container {
      display: flex;
      flex-direction: row;
      justify-content: center;
    }

    #zipcode {
        width: 100%;
    }

    .bicycle-image {
      width: 300px;
      margin: auto;
    }

    input {
      width: 200px;
      height: 50px;
      border-radius: 12px;
      padding-left: 15px;
      margin-right: 10px;
      border: 1.5px solid black;
      box-sizing:border-box;
    }

    button {
      height: 50px;
      border-radius: 12px;
      background-color: hsla(64.09,81.48%,10.59%,1);
      color: white;
      cursor: pointer;
      box-sizing:border-box;
      border: none;
      font-weight: 700;
      padding: 0;
      margin; 0;
      display: flex;
      align-items: center;
      align-content: center;
      justify-content: center;
      font-size: 1rem;
    }

    #zip-result {
    font-size: 1rem;
    font-weight: 500px;
  }

  .next-step-container {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
    background-image: url("/cdn/shop/files/Product_and_Service_Catalog_Website_4.svg?v=1762786166");
    background-size: cover;
    padding: 20px;
    height: fit-content;
    justify-content: center;
    gap: 10px;
  }


  .price-container {
    display:flex;
    flex-direction: column;
    justify-content: left;
  }

  .price-from {
    display: flex;
    flex-direction: row;
  }

  .strong {
    font-weight: 700;
  }

  .next-step-btn {
    background-color: #2E3105;
    color: white;
    height: 50px;
    width: 100%;
    max-width: 400px;
  }

  /* step 2 */
  select {
  width: 100%;
  max-width: 400px;
  border: 2px solid black;
  border-radius: 12px;
  height: 50px;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px !important;
  margin: auto;
  cursor: pointer;
  }

  button img {
    height: 20px;
    width: 20px;
    margin-left: 20px;
  }

.baby-info-container {
  display: flex;
  flex: 1;
  gap: 10px;
  text-align: left;
  flex-direction: column;
}

#baby-name {
  width: 100%;
  border-width: 2px;
}

.radio-btn-container {
  display: flex;
  flex-direction: row;
  width: fit-content;
}

.radio-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

input[type="radio"] {
  /* Add if not using autoprefixer */
  border-radius: 50;
  width: 25px;
  height: 25px;
}

  /* delivery */

/* === Scrollbar container for dato felter === */
#tuesday-picker-container {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 12px 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

/* Hvert dato-kort */
#tuesday-picker-container .baby-info-container {
  /* min-width: 160px; */
  flex: 1;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #F8F8F8;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #E4E4E4;
}

/* Teksten inde i kortet */
#tuesday-picker-container .baby-info-container p {
  font-size: 14px;
  margin-bottom: 6px;
}

/* Input felt */
#tuesday-picker-container input[type="text"] {
  width: 100%;
  padding: 7px 8px;
  border-radius: 6px;
  border: 1px solid #CFCFCF;
  font-size: 14px;
}

/* Lille fade effekt i siderne */
#tuesday-picker-container::before,
#tuesday-picker-container::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 20px;
  pointer-events: none;
}
#tuesday-picker-container::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
#tuesday-picker-container::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

#tuesday-picker {
  width: 100%;
}


/* pop-up */

/* Popup + small helpers (kan flyttes til multi-step.css hvis du foretrækker) */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 94%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-content h4 {
  margin-top: 0;
}

.popup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.popup-row p {
  margin: 0;
  min-width: 95px;
}

.popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

#save-delivery-dates {
  width: 200px;
}

#close-delivery-popup {
  width: 150px;
}

.secondary-btn {
  background: white;
  border: 2px solid #2E3105;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  color: #2E3105;
}

.small-muted {
  font-size: 13px;
  color: #666;
}

#edit-more-dates-container {
  display: none;
  flex: 1;
  text-align: left;
  flex-direction: column-reverse;

}

#edit-more-dates-btn {
  margin-top: 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
}

#edit-more-dates-btn img {
  width: 25px;
}

#total-price {
  color: green;
  font-weight: 700;
}

.submit-form-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 400px;
  justify-content: space-between;
  align-items: center;
}

.submit-form-container .price-from {
  flex-direction: column !important;
}

.submit-form-container .price-container {
  text-align: left;
}

#submit-form {
  width: fit-content !important;
  padding: 0px 25px;
}



/* hide footer on this page */

.shopify-section-group-footer-group {
  display: none;
}

#age-menu-link a {
  color: green;
}