/** Shopify CDN: Minification failed

Line 24:0 Comments in CSS use "/* ... */" instead of "//"
Line 25:0 Comments in CSS use "/* ... */" instead of "//"
Line 26:0 Comments in CSS use "/* ... */" instead of "//"
Line 45:4 Comments in CSS use "/* ... */" instead of "//"
Line 94:2 Comments in CSS use "/* ... */" instead of "//"
Line 123:2 Comments in CSS use "/* ... */" instead of "//"
Line 195:2 Comments in CSS use "/* ... */" instead of "//"
Line 221:2 Comments in CSS use "/* ... */" instead of "//"
Line 348:2 Comments in CSS use "/* ... */" instead of "//"
Line 355:0 Unexpected "}"
... and 1 more hidden warnings

**/
body {
    font-family: 'Geometria', sans-serif!important; 
}

h1, h2, h3, p, option, select, button {
    font-family: 'Geometria', sans-serif!important;
}

//h1, h2 {
//  color:#D6443B!important;
//}

button{
      font-weight: bold!important;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Keep the overlay full-screen to cover the background */
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
}

.upsell-modal {
    //color:red;
    display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Keep the overlay full-screen to cover the background */
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background-color: #fff;
  margin: auto; /* Centered vertically with some top margin */
  padding: 30px 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 350px; /* Adjust to make the modal narrower */
  position: relative;
  text-align: center;
  /* Adjust height to fit content */
  max-height: calc(100vh - 40px); /* Ensure the modal doesn't exceed the viewport height */
  overflow-y: auto; /* Enable scrolling within the modal if content overflows */
}

.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.upsell-item {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the content horizontally */
  margin: 20px 0;
  flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

.upsell-image {
  flex: 0 0 auto;
}

.upsell-image img {
  width: 65px;
  height: auto;
  //border-radius: 8px;
}

.upsell-details {
  margin-left: 20px;
  text-align: left;
  flex: 1 1 auto; /* Allow details to take up remaining space */
}

.upsell-details h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
}

.upsell-details p {
  margin: 0;
  font-size: 16px;
}

.config-option {
  margin: 0 0 12px 0;
}

.add-upsell-btn {
  width: 100%;
  background-color: #D6443B;
  color: white;
  padding: 12px 20px;
  border: none;
  //border-radius: 5px;
  cursor: pointer;
}

.add-upsell-btn:hover {
  background-color: #b93834;
}

.shopify-policy__container {
max-width: 1200px !important;
}

/* Main layout: image left, configurator right */
.custom-product-page {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  gap: 50px;
}

/* The image container */
.product-image {
  flex: 1;
  /* max-width: 400px;*/
  /*border-radius: 15%;*/
}

.product-image img {
  width: 100%;
  height: auto;
  /* border-radius: 15%;*/
}

/* Configurator section */
.product-info {
  flex: 1;
  max-width: 500px; /* Adjust this value to control the width of the right section */
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
}

.product-info h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

/* Dropdown styling */
.config-option {
  margin-bottom: 13px;
}

.config-option label {
  display: block;
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: #333;
}

.config-option select {
  width: 100%;
  padding: 10px;
  /* font-size: 1rem; */
  //border-radius: 5px;
  border: 1px solid #ccc;
}

/* Right-align the total price */
#total-price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 10px;
  color: #333;
  text-align: center;
}

.terms-checkbox{
  margin-top:20px;
  font-size: 1em;
  line-height: normal;
}

/* Add to Cart button */
.add-to-cart-btn {
  background-color: #D6443B;
  color: #fff;
  padding: 15px;
  border: none;
  cursor: pointer;
  //border-radius: 5px;
  margin: 20px 0;
  width: 100%;
}

.add-to-cart-btn:disabled {
    background-color: #cccccc; /* Light gray background */
    color: #666666; /* Darker text color */
    cursor: not-allowed; /* Show "not allowed" cursor */
    opacity: 0.6; /* Reduce opacity to give a grayed-out effect */
}


/* Responsive layout */
@media screen and (max-width: 768px) {
  .custom-product-page {
    flex-direction: column;
    align-items: center;
  }

  .product-image, .product-info {
    flex: none;
  }

  .product-info {
    text-align: center;
  }
}



.custom-dropdown {
  position: relative;
  width: 200px;
  cursor: pointer;
}

.selected-option {
  background-color: #f0f0f0;
  padding: 10px;
  border: 1px solid #ccc;
}

.dropdown-options {
  display: none;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  z-index: 1;
}

.dropdown-option {
  padding: 10px;
  background-color: #fff;
}

.dropdown-option:hover {
  background-color: #f0f0f0;
}

/* Custom colors for different options */
.dropdown-option em {
  font-style: italic;
}



/* Upsell Section Styling */
.upsell-section {
  display: none;
  margin-top: 30px;
  padding: 20px;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  background-color: #fafafa;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.upsell-section label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
}

.upsell-content {
  display: flex;
  margin-bottom: -10px;
  gap: 15px;
}



.upsell-info {
  margin: 0;
}

.upsell-title {
  font-weight: bold;
  color: #0073e6;
  text-decoration: none;
}

.upsell-title:hover {
  text-decoration: underline;
}

.upsell-price {
  color: #333;
  margin: 0;
}

.upsell-quantity {
  margin: 0;
}

.upsell-quantity label {
  margin: 0;
}

/* Styling for the dropdown (select) */
.upsell-quantity select {
  width: 60px;
  padding: 5px;
  border: 1px solid #ccc;
  //border-radius: 5px;
  background-color: white;
}

  .upsell-quantity input {
    width: 80px;
  }
}

/* Price breakdown styling */
.price-breakdown {
    text-align: right;
}

/* License and upsell costs are smaller and less emphasized */
.license-cost, .upsell-cost {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

/* Total cost is bold and larger */
.total-cost {
    font-size: 1.3em;
    color: #D6443B;;
}


.price-summary {
    margin-top: 10px;
    font-weight:bold;
}

.breakdown-content {
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    margin-top: 5px;
    font-size: 1.1rem; /* Make the font smaller */
    line-height: 1.5; /* Increase line spacing for clarity */
}

.toggle-breakdown {
    background-color: #ED6E37;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 5px 10px;
    cursor: pointer;
    margin: 5px 0px;
    //font-size: 0.8em; /* Smaller button text */
}

.toggle-breakdown:hover {
    background-color: #D6443B;
}

.breakdown-content {
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    line-height: 1.5;
}

.separator {
    margin: -5px 0 15px 0 !important;
    border-bottom: 1px solid #ddd; /* Optional line for visual separation */
}


.calculation-step {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

.price-summary p, .breakdown-content div {
    margin: 0 0; /* Ensures consistent spacing between paragraphs */
}

.advantage-text{
  color:green!important;
  font-size: 0.9em;
}

.tip-message {
    color: #D6443B; /* Font color */
    padding: 10px; /* Spacing inside the box */
    text-align: center; /* Center the text */
    border: 2px solid #D6443B; /* Border with the warning color */
    border-radius: 5px; /* Rounded corners */
    margin-top: 15px; /* Space above the warning */
    font-weight: bold; /* Bold text */
    margin-left: auto;
    margin-right: auto; /* Center the box horizontally */
    background-color: transparent; /* Ensure no background color */
}

/* CSS for the spinner (loading circle) */
.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin: -10px 0;
}

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

/* Carousel container styling */
.product-image-carousel {
  width: 50%; /* Default to half screen on larger displays */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  position: relative; /* Added to position thumbnails correctly */
  transition: transform 0.3s ease-in-out;
}

/* Each slide defaults to full width of the container */
.carousel-slide {
  min-width: 100%;
  display: none; /* Hide all slides initially */
}

.carousel-slide.active {
  display: block; /* Show only the active slide */
}

/* Ensuring images cover the full carousel area */
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes the image cover the entire slide without distortion */
}

/* Carousel controls */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: rgba(0, 0, 0, 0.7); /* Darken on hover */
}

/* Responsive styling for small screens */
@media (max-width: 768px) {
  .product-image-carousel {
    width: 100%; /* Full width on smaller screens */
  }
}

/* Thumbnails Section */
.carousel-thumbnails {
  display: flex;
  justify-content: space-between; /* Distribute thumbnails evenly */
  padding: 0; /* Remove any padding */
  overflow: hidden; /* Prevent thumbnails from spilling out of the container */
  gap: 0; /* Remove gaps between thumbnails */
}

.carousel-thumbnails .thumbnail {
  flex: 1 0 auto; /* Allow thumbnails to grow/shrink evenly */
  max-width: calc(100% / 8); /* Adjust width for X thumbnails in a row */
  aspect-ratio: 1; /* Maintain a square aspect ratio for thumbnails */
  display: flex; /* Center-align the image inside the thumbnail */
  align-items: center; /* Vertically center the image */
  justify-content: center; /* Horizontally center the image */
  cursor: pointer;
  border: 2px solid transparent; /* Border that wraps tightly around thumbnail */
  transition: border-color 0.3s ease;
  overflow: hidden; /* Prevent image overflow */
}

.carousel-thumbnails .thumbnail img {
  width: 100%; /* Ensure image fills the container width */
  height: 100%; /* Ensure image fills the container height */
  object-fit: cover; /* Maintain aspect ratio while filling the container */
}


.carousel-thumbnails .thumbnail img {
  width: 100%; /* Ensure the thumbnail fills its container */
  height: auto;
  object-fit: cover; /* Maintain aspect ratio */
}

.carousel-thumbnails .thumbnail.active-thumbnail {
  border-color: #000; /* Highlight active thumbnail */
}






/*--- NEW LICENSE CONFIGURATOR ---*/
/* 1) Container & Gruppen */
.custom-arktis-picker {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.custom-arktis-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* 2) Button‑Grundstyle */
.custom-arktis-btn {
  position: relative;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  background-color: #fff;
  color: #333;
  /*font-size: 1rem;*/
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

/* 3) Paket‑Gruppe als Radio‑Toggle */
.custom-arktis-group-paket .custom-arktis-btn {
  padding-left: 2.5rem;
}

.custom-arktis-group-paket .custom-arktis-btn::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border: 2px solid #ccc;
  border-radius: 50%;
  background-color: transparent;
}

.custom-arktis-group-paket .custom-arktis-btn.is-active {
  color: #006fbf;
  border-color: #006fbf;
  background-color: rgba(0, 111, 191, 0.1);
}

.custom-arktis-group-paket .custom-arktis-btn.is-active::before {
  background-color: #006fbf;
  border-color: #006fbf;
}

/* 4) Dauer & groupCount‑Gruppe als Pill‑Toggle */
.custom-arktis-group-dauer .custom-arktis-btn,
.custom-arktis-group-groupCount .custom-arktis-btn {
  border-radius: 0.5rem;
}

.custom-arktis-group-dauer .custom-arktis-btn.is-active,
.custom-arktis-group-groupCount .custom-arktis-btn.is-active {
  background-color: #006fbf;
  color: #fff;
  border-color: #006fbf;
}

/* 5) Disabled‑Zustand (für Auf‑Anfrage‑Modus) */
.custom-arktis-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 6) „Auf Anfrage“-Box */
.custom-arktis-request-card {
  padding: 1rem;
  border: 1px solid #ccc;
  margin-top: 25px;
  background-color: #f9f9f9;
  color: #006fbf;
  font-weight: bold;
  text-align: center;
  border-radius: 0.5rem;
}

/* 7) Helfer‑Klasse zum Ausblenden */
.custom-hidden {
  display: none !important;
}

/* 8) Labels über den Gruppen */
.custom-arktis-label {
  color: #6b7280;       /* Grauton */
  /* font-size: 0.875rem;  /* ca. 14px */
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.custom-arktis-group-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}


/* --- Bundle‑Info Widget --- */
.custom-bundle-info {
  margin: 0.5rem 0;
}

.custom-bundle-info__title {
  color: #6b7280;       /* Grauer Überschrifttext */
  /*font-size: 0.875rem*/;
  margin-bottom: 0.5rem;
}

.custom-bundle-info__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-bundle-info__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 1.2rem;
  color: #333;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.custom-bundle-info__list li::before {
  content: '✔';
  color: #2BD97C;        /* Grünes Häkchen */
  font-weight: bold;
  display: inline-block;
}

.price-item__sale{
  font-size: 3.5rem;
  font-weight: bold;
  color: #1A99BC;
}

.Bird{
  font-weight: bold;
  color: #1A99BC;
}