body {
  background-color: #132352;
	transition: opacity 0.1s ease-out;
	overscroll-behavior-x: none;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Dette forhindrer horisontal scrolling */
  scroll-behavior: smooth;
}


.fade-out {
    opacity: 0;
}

.nav-buttons {
	position: absolute;
    top: 0.5rem;
	z-index: 100;
}

.nav-top-wrapper {
	display: flex;
	flex-direction: column;
}

.nav-text-wrapper {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	
}

#mobile-dropdownList {
	height: auto;
	overflow: hidden; 
}

.nav-text {
	font-size: 0.9rem;
	color: #fff;
	font-family: korolev, sans-serif;
}


.dropdown {
  position: relative;
  display: inline-block;
  background-color: white;
	width: 100%;
  color: #132352;
  font-size: 0.9rem;
  font-family: korolev, sans-serif;
  font-weight: 500;
  border-radius: 0px 5px 5px 0px;
  cursor: pointer;
  padding: 0.5rem 1rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 0px 0px 5px 5px;
  left: 0;
  top: 1.9rem;
}

.dropdown-content a {
  color: #132352;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #F3F9FD;
  border-radius: 5px;
}

.show {
  display: block;

  display: block;
height: 12rem;
	overflow: scroll;

}

.selected-item::after {
  content: '\25BC'; /* Unicode character for a downward-pointing chevron */
  font-size: 0.5rem;
  position: absolute;
  right: 10px;
  top: 50%;
   transform: translateY(-50%);
}


.calc-wrap {
  grid-column: span 2; /* Span over two columns */
}


/*rabataftaler */

.discount-section {
    padding: 0px 30px;
    background-color: #fff;
    position: relative;
}

.discount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
}

.discount-container {
    width: 100%;
    max-width: 1440px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
  }

  .d-image-wrap {
    position: relative;
    aspect-ratio: 181 / 120;

  }

  .discount-image {
    position: absolute;
    width: 100%;
    border-radius: 8px;
  }

/* terms pop-up modal */


#myBtn {
   background-color: transparent; 
    color: white; /* White text */
    border: none; /* Remove border */
    cursor: pointer; /* Cursor style for clickable elements */
	display: flex;
	text-align: left;
	gap: 2px;
	font-size: 0.9rem;
	font-family: korolev, sans-serif;
}

/* The Modal (background) */
.modal {
    position: fixed; /* Stay in place */
    z-index: 999999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: none; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    display: none;
}

/* Modal Content */
.modal-content {
    position: relative;
    color: #001F46;
    font-family: korolev, sans-serif;
    font-weight: 500;
    border-radius: 5px;
    background-color: #fefefe;
    margin: 8rem auto;
    padding: 2rem;
    width: 40%; /* Could be more or less, depending on screen size */
    height: auto;
    overflow: auto;
}

/* Benefits content styling */
.benefits-content {
    display: none;
    padding: 1rem 0;
}

.benefits-content h2 {
    color: #001F46;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.benefits-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-content li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.4;
}

.benefits-content li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    background-image: url('../img/check.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* The Close Button */
.close {
    color: #001F46;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}



@media screen and (max-width: 991px) {
  .calculator-section {
    background-image: none;
    padding-left: 0%;
    padding-right: 0%;
    padding-top: 70px;
  }

  .calc-content-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-gap: 2rem;
  }

  .content-wrap {
    padding: 2rem 5% 2rem 5%;
    min-height: auto;
    height: auto;
  }

  .map-wrapper {
    width: 100%;
    min-height: 50vh;
    height: 500px;
  }

  .terms-wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }

	.modal {
		overflow: auto; /* Enable scroll if needed */
	}

.modal-content {
    width: 80%; /* Could be more or less, depending on screen size */
	padding: 1rem;
}
	
.terms-text {
    padding: 2rem;
}
	
.discount-grid {

        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
    }	

}

@media screen and (max-width: 767px) {
  .calculator-section {
    background-image: none;
    padding-top: 40px;
  }

  .map-wrapper {
    width: 100%;
    min-height: 50vh;
    height: 100vh;
  }

  .input-field-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .field-label {
    font-size: 16px;
    margin-bottom: 0.5rem;
  }

  .from-input, .to-input {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
	.w-input {
		max-width: 20rem;
	}
	
	.calculator-section {
    background-image: none;
    padding-top: 60px;
  }

  .content-wrap {
    padding: 1rem;
  }

  .map-wrapper {
    height: 100vh;
  }

  .input-field-wrapper {
    grid-template-columns: 1fr;
  }

  .field-label {
    margin-bottom: 0.5rem;
  }

	.modal {
		overflow: auto; /* Enable scroll if needed */
	}
	
	.modal-content {
    width: 90%; /* Could be more or less, depending on screen size */
}
.discount-grid {

        grid-template-columns: 1fr;
        grid-gap: 2rem;
    }
	
.nav-buttons {
	position: static;
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
	}
	


/*	
	.mobile-nav-dropdown {
  position: relative;
  display: none;
  background-color: white;
  min-width: 11rem;
  border-radius: 5px;
  cursor: pointer;
  padding: 0.5rem 1rem;
}
	
	.mobile-nav-dropdown::after {
  content: '\25BC'; 
  font-size: 0.5rem;
  position: absolute;
  right: 10px;
  top: 50%;
   transform: translateY(-50%);
}

.mobile-nav-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 0px 0px 5px 5px;
  left: 0;
  top: 1.7rem;
	padding-top: 0.5rem;
}

.mobile-nav-dropdown-content a {
  padding: 0.5rem 1rem;

}
	
	.mobile-nav-dropdown img {
	height: 1rem;
}
	
	.mobile-nav-dropdown-content img {
		height: 1rem;
	
	}

.mobile-nav-dropdown-content a:hover {
  background-color: #F3F9FD;
  border-radius: 5px;
}

.mobile-nav-show {
  display: block;
	display: flex;
    flex-direction: column;
}
	
	 */
	
	
#w-node-_29cc3733-1308-c545-f6ff-0ce0c04d1c8b-5dda7e41, #w-node-_29cc3733-1308-c545-f6ff-0ce0c04d1c8e-5dda7e41 {
	align-self: start; 
	}
	
	.dropdown {
		width: 100%;
		border-radius: 5px;
		max-width: 20rem;
	}

.field-label {
	margin-top: 1rem !important;
	}
	
	.from-input, .to-input { 
	border-radius: 5px;
	}
	
	#w-node-cef0619d-004c-66fe-e897-65371f768b26-5dda7e41 {
		justify-content: flex-start;
	}
	
	
	
	
	
}

/*----- MOBIL DROP DOWN -----*/
/* Dropdown container */
.mobile-dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button */
.dropbtn {
  background-color: transparent;
  color: #fff;
  padding: 8px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

/* Arrow next to selected item */
.arrow {
  margin-left: 10px;
  font-size: 0.5rem;
}

/* Dropdown content (hidden by default) */
.mobile-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f4f9fd;
  z-index: 1;
  border-radius: 8px;
  padding: 4px 8px 2px 8px;
}

/* Dropdown content links */
.mobile-dropdown-content a {
  display: block; /* Ensure each link takes up a full line */
  padding: 8px;
  text-decoration: none;
  color: #132352;
}

/* Show the dropdown content */
.show {
  display: block;
}

.mobile-dropdown-content img {
  height: 20px;
  width: auto;
}

#mobile-selectedItemImage {
  height: 20px;
  width: auto;
}

.mobile-dropdown{
		display: none;
	}

  .e45-container {
    padding: 40px;
  }

h4 {
  margin-bottom: 0px;
  color: #002f6c;
  margin-top: 0;
  font-family: korolev, sans-serif;
}

  .e45-or-ferry-module {
    display: flex;
    max-width: 1200px;
    background-color: #e3f1ff;
    border-radius: 5px;
    overflow: hidden;
    margin: 20px auto 70px auto; /* Center the module with margin */
}

.e45-or-ferry-image-section,
.e45-or-ferry-video-section,
.e45-image-section,
.e45-video-section {
    flex: 0 0 40%; /* 40% of the container width */
    margin: 0; /* Remove any default margins */
    padding: 0; /* Remove any default padding */
    display: flex;
    justify-content: center;
    align-items: center;
}

.e45-or-ferry-image,
.e45-image,
.e45-or-ferry-video,
.e45-video {
    width: 100%; /* Ensure the video/image fills the section */
    height: auto; /* Maintain aspect ratio */
    max-height: 600px; /* Limit the maximum height */
    object-fit: cover; /* Crop the video/image to fit the container */
}

.e45-or-ferry-text-section {
    flex: 1;
    padding: 20px 30px; /* 30px padding on left and right, 20px on top and bottom */
    box-sizing: border-box;
    margin: 0; /* Remove any default margins */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.e45-or-ferry-text-section h2 {
    color: #001f47;
    margin-top: 0;
    font-family: korolev, sans-serif;
}

.e45-or-ferry-text-section p {
    color: #001f47;
    line-height: 1.5;
    font-family: korolev, sans-serif;
    margin: 0; /* Remove any default margins */
    font-size: 16px;
}

.e45-section {
    display: flex;
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    margin: 100px auto;
}

.e45-text-section {
    flex: 1;
    padding: 20px 100px 20px 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.e45-text-section h2 {
    color: #002f6c;
    margin-top: 0;
    font-family: korolev, sans-serif;
}

.e45-text-section p {
    color: #002f6c;
    line-height: 1.5;
    font-family: korolev, sans-serif;
    font-size: 16px;
    margin: 20px 0;
}

.e45-text-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kombardo {
	margin-top: 2rem;
	margin-left: auto;
}

.e45-text-section ul li {
    color: #002f6c;
    line-height: 1.5;
    font-family: korolev, sans-serif;
    margin-bottom: 10px;
    padding-left: 40px; /* Space for the icon */
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.e45-text-section ul li .icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.e45-text-section ul li .icon svg {
    width: 100%;
    height: 100%;
}

.e45-image-section,
.e45-video-section {
    flex: 1;
    margin: 0;
    padding: 20px 0px; /* Add padding to create space between text and video/image */
    display: flex;
    justify-content: center;
    align-items: center;
}

.e45-image,
.e45-video {
    width: 100%;
    height: 500px; /* Set fixed height for higher aspect ratio */
    object-fit: cover; /* Crop the video/image to fit the container */
    border-top-left-radius: 100px; /* Rounded top left corner */
    border-bottom-right-radius: 100px; /* Rounded bottom right corner */
    border-top-right-radius: 20px; /* Rounded top left corner */
    border-bottom-left-radius: 20px; /* Rounded bottom right corner */
}

/* Specifik klasse til at ændre placeringen af billedet til højre */
.e45-section.image-right {
    flex-direction: row-reverse;
}

.e45-section.image-right .e45-image,
.e45-section.image-right .e45-video {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 80px; /* Rounded top right corner */
    border-bottom-left-radius: 80px; /* Rounded bottom left corner */
}

/* Small button adjustments */
.small-button {
    max-width: 400px; /* Ensures the button width is auto */
    margin-top: 50px;
    text-align: center;
}


/* Media query for mobile devices */
@media (max-width: 768px) {
    .e45-or-ferry-module,
    .e45-section, 
    .e45-section.image-right {
        flex-direction: column;
        margin: 30px auto; /* Increase margin for mobile */
    }

    .e45-container {
      padding: 0px;
    }

    .e45-or-ferry-image-section,
    .e45-or-ferry-video-section,
    .e45-image-section,
    .e45-video-section {
        order: -1; /* Move image/video section above text section */
    }

	.e45-or-ferry-text-section {
        padding: 15px 20px; /* Less padding for mobile */
	}
	
    .e45-text-section {
        padding: 0px 0px; /* Less padding for mobile */
    }

    .e45-image,
    .e45-video {
        width: 100%;
        height: auto; /* Auto height to maintain aspect ratio */
        max-height: 300px; /* Adjust height for mobile */
        object-fit: cover; /* Crop the video/image to fit the container */
        border-radius: 10px; /* Remove border radius for mobile */
    }

    .e45-section.image-right .e45-image,
    .e45-section.image-right .e45-video {
        border-radius: 0; /* Remove border radius for mobile */
    }

}

@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .strategic-section {
        padding: 20px;
    }

    .strategic-section h2 {
        font-size: 24px;
    }

    .tip-item h3 {
        font-size: 16px;
    }

    .tip-item p {
        font-size: 14px;
    }
	

}


@media screen and (max-width: 520px) {
	.mobile-dropdown{
		display: block;
	}
	.logo-buttons-wrapper{
	display:none;}
}

/* Step Form Styles */
.form-step {
    display: flex;
    flex-direction: column;
    margin: 0;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    scroll-margin-top: 20px;
}

.step-heading {
    color: #fff;
    font-family: korolev, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    max-width: 80%;
}

.heading-wrapper {
  width: 100%;
  margin-top: 13%;
}


.logo {
  width: 10rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
    .step-heading {
        font-size: 1.5rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}

.form-step[v-show="false"] {
  opacity: 0;
}

/* Hide step 4 content while calculating */
.form-step[data-step="4"] {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}

.form-step[data-step="4"]:not(.is-calculating) {
  opacity: 1;
  pointer-events: auto;
}

.step-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.back-button {
  background-color: transparent;
  color: #fff;
  border: none;
  padding-right: 1.5rem;
  border-radius: 99rem;
  font-family: korolev, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.next-button {
    background-color: #2CF6A5;
    color: #132352;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 99rem;
    font-family: korolev, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.next-button:hover {
    background-color: #24d68f;
}

.next-button:disabled {
    background-color: rgba(44, 246, 165, 0.5);
    cursor: not-allowed;
}


.from-input, .to-input {
    height: 50px;
    padding-left: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    background-color: #fff;
    font-family: Roboto, sans-serif;
    color: #333;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

/* Input validation error styling */
.input-error {
  border-color: #ff3b30 !important;
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

/* Geocoding error message styling */
.geocoding-error {
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #fff5f5;
  border-left: 4px solid #ff3b30;
  color: #ff3b30;
  border-radius: 4px;
  font-size: 14px;
  animation: fadeIn 0.3s ease-in-out;
}

.geocoding-error p {
  margin: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.field-label {
    white-space: nowrap;
    min-width: 3rem;
}

@media screen and (max-width: 767px) {
    .step-indicator {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .step:not(:last-child):after {
        width: calc((100vw / 4) - 4rem);
        max-width: 5rem;
    }
}

@media screen and (max-width: 479px) {
    .step {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }
    
    .step:not(:last-child):after {
        width: calc((100vw / 4) - 3rem);
        max-width: 4rem;
    }
}

.booking-cta {
  max-width: 170px;
  grid-column-gap: 1rem;
  color: #001f47;
  background-color: #2bf6a5;
  border-radius: 300px;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 2rem;
  font-size: 20px;
  font-weight: 700;
  display: none; /* Hide by default */
}

/* Show the booking button when step 3 is active */
.step-3-active .booking-cta {
  display: flex;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  margin-top: 1rem;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

.slider-wrapper label {
  display: block;
  color: #fff;
  font-family: korolev, sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.custom-slider {
  position: relative;
  height: 8px;
  width: 100%;
  margin: 20px 0;
  touch-action: none;
}

.slider-track {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 4px;
  pointer-events: none;
}

.slider-track-fill {
  position: absolute;
  height: 100%;
  background-color: #0130A1;
  width: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  pointer-events: none;
}

.slider-thumb {
  width: 2.6rem;
  height: 2.6rem;
  background-color: #2CF6A5;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #132352;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  touch-action: none;
}

.slider-thumb:active {
  cursor: grabbing;
}

.slider-value {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.slider-value:active {
  cursor: grabbing;
}

.slider-value::before,
.slider-value::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px;
  border-color: transparent;
  pointer-events: none;
}

.slider-value::before {
  left: 3px;
  border-right-color: #132352;
  border-left-width: 0;
}

.slider-value::after {
  right: 3px;
  border-left-color: #132352;
  border-right-width: 0;
}

.slider-input {
  position: absolute;
  width: 100%;
  height: 44px;
  opacity: 0;
  cursor: grab;
  z-index: 3;
  margin: 0;
  left: 0;
  margin-top: -18px;
  -webkit-tap-highlight-color: transparent;
}

/* Remove old range slider styles */
.custom-range {
  display: none;
}

/* Ticket Styles */
.ticket {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  width: 100%;
  margin: 1.5rem auto;
  position: relative;
}

.ticket-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: fit-content;
  transform: translateY(0);
  will-change: transform, box-shadow;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.form-step:not([v-show="false"]) .ticket-card {
  opacity: 1;
  transform: translateY(0);
}

.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.ticket-card.expanded {
  height: auto;
  margin-bottom: 2rem;
}

.ticket-card.selected {
  border: 2px solid #001f47;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.ticket-card.selected .ticket-select {
  background-color: #001f47;
  color: white;
}

.ticket-card:not(.expanded) {
  overflow: hidden;
}

.ticket-color {
  height: 6px;
  width: 100%;
}

.ticket-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 3rem; /* Add space for the see-benefits link */
}

.ticket-content h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.ticket-description {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.8rem;
  text-align: center;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
  color: #132352;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price span {
  font-size: 1rem;
  margin-left: 0.25rem;
  font-weight: 500;
  line-height: 1;
}

.ticket-select {
  background-color: #2CF6A5;
  color: #132352;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  cursor: pointer;
  margin: 1rem 0;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  width: 100%;
}

.ticket-select:hover {
  background-color: #20e090;
}

.ticket-benefits {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-10px) translateZ(0);
}

.ticket-card.expanded .ticket-benefits {
  max-height: 1000px;
  opacity: 1;
  margin: 0.5rem 0;
  transform: translateY(0) translateZ(0);
}

.ticket-benefits li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #333;
  opacity: 0;
  transform: translateY(10px) translateZ(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ticket-card.expanded .ticket-benefits li {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

.ticket-card.expanded .ticket-benefits li:nth-child(1) { transition-delay: 0.1s; }
.ticket-card.expanded .ticket-benefits li:nth-child(2) { transition-delay: 0.15s; }
.ticket-card.expanded .ticket-benefits li:nth-child(3) { transition-delay: 0.2s; }
.ticket-card.expanded .ticket-benefits li:nth-child(4) { transition-delay: 0.25s; }
.ticket-card.expanded .ticket-benefits li:nth-child(5) { transition-delay: 0.3s; }
.ticket-card.expanded .ticket-benefits li:nth-child(6) { transition-delay: 0.35s; }

.ticket-benefits li img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  margin-top: 2px;
}

.ticket-benefits li.positive {
  color: #333;
}

.ticket-benefits li.negative {
  color: #666;
}

.ticket-benefits li.clock {
  color: #333;
}

.see-benefits {
  color: #000000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.see-benefits:hover {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .ticket {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .ticket-card {
    max-width: 100%;
  }

  .ticket-card:hover {
    transform: translateY(-2px);
  }

  .ticket-card.expanded {
    transform: translateY(-4px);
  }

  .ticket-card.expanded ~ .ticket-card {
    transform: translateY(0);
  }
}

.input-field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

.field-label {
  white-space: nowrap;
  margin-bottom: 0.5rem;
  color: #fff;
  font-family: korolev, sans-serif;
  font-size: 1rem;
}

.from-input, .to-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  color: #132352;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .input-field-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.comparison-card {
  background-image: linear-gradient(84deg, #001f47 12%, #0031aa);
  border-radius: 6px;
  padding: 1.2rem 1.8rem;
  color: white;
  width: 78%;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  will-change: opacity, transform;
}

.comparison-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.form-step:not([v-show="false"]) .comparison-card {
  opacity: 1;
  transform: translateY(0);
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: korolev, sans-serif;
  width: 100%;
  text-align: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-top: none;
  border-bottom: none;
  gap: 0.5rem;
}

/* Første række skal aldrig have top-border */
.first-row {
  border-top: none;
  padding-top: 0;
  padding-bottom: 0.2rem;
}

.second-row {
  border-bottom: 1px solid white;
}

/* Fjerner special case for last-of-type */
.comparison-row:last-of-type:not(:last-child) {
  border-bottom: none;
}

.comparison-row > div:first-child {
  text-align: left;
}

.price-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-align: right;
}

.unit {
  font-size: 0.8em;
  font-weight: 300;
}

.success-price .unit {
  font-size: 0.4em;
  font-weight: 300;
}

.price-value .unit {
  font-size: 0.8em;
  font-weight: 300;
}

.monthly-savings {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  border-top: none;
}

.blueclass-message {
  width: 100%;
}

/* Primær overskrift - fed tekst */
.monthly-savings-title {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-align: center;
  padding: 0.2rem 0;
}

/* Sekundær tekst - lettere vægt */
.monthly-savings-label {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 300;
  text-align: center;
}

/* Beløb */
.monthly-savings-amount {
  color: #fff;
  font-family: korolev, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  padding: 1.2rem 0;
}

.monthly-savings-amount .unit {
  font-size: 0.35em;
  font-weight: 200;
  color: #ffffff;
  margin-left: -6px;
}

/* Kilometer besparelse */
.monthly-savings-trips {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: 0.5rem 0;
}

/* Tidsbesparelse */
.monthly-savings-time {
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 300;
  text-align: center;
  font-style: italic;
}

/* Besked når der ikke er besparelse */
.no-savings-message {
  text-align: center;
  width: 100%;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.5rem;
  padding: 1rem 0;
}

.success-top {
  text-align: center;
    width: 100%;
    color: #ffffff;
    font-weight: 700;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.success-price {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0.5rem 0;
}

.success-bot {
  font-size: 0.9rem;
  color: #ffffff;
  margin-top: 0.5rem;
  font-weight: 300;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .comparison-card {
    padding: .6rem;
    width: 100%;
  }

  .monthly-savings-amount {
    font-size: 2.5rem;
  }

  .monthly-savings-label {
    font-size: 1.2rem;
  }

  .comparison-row {
    text-align: none;
  }

  .monthly-savings-trips {
    font-size: 1rem;
    padding: 0.4rem;
  }
}

.info-button {
  display: block;
  background: #001f47;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: korolev, sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.info-button:hover {
  background: #0031aa;
}


.term-link {
  color: #0031aa;
  text-decoration: none;
}

.term-link:hover {
  text-decoration: underline;
}

.step-4-buttons {
  display: flex;
  justify-content: left;
  gap: 20px;
  margin-top: 2rem;
  width: 100%;
}

.step-4-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-family: korolev, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.clipcard-button {
  background-color: #2bf6a5;
  color: #001f47;
}

.clipcard-button:hover {
  background-color: #20d88d;
}

.new-calculation-button {
  background-color: transparent;
  color: #fff;
}

.new-calculation-button:hover {
  color: rgba(255, 255, 255, 0.8);
}

.clipcard-button svg {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.clipcard-button:hover svg {
  transform: translateX(5px);
}

@media screen and (max-width: 767px) {
  .modal-content {
    margin: 10% auto;
    width: 90%;
    padding: 1.5rem;
  }

  .step-4-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;  
  }

  .step-4-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start
  }

}

/* Price Swiper Styles */
.price-container {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.price-option {
  background: white;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.price-option:hover {
  border-color: #FFAD11;
}

.price-option.active {
  border-color: #FFAD11;
  background: #FFF8E7;
}

/* Opdateret pris selector med pile direkte ved siden af prisen */
.price-display {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0.55rem 0;
}

.price-with-controls {
  display: flex;
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  width: 100%;
  border: none;
  box-shadow: none;
}

.price-with-controls .price-value {
  font-size: 2rem;
  font-weight: 700;
  color: #132352;
  flex: 1;
  text-align: center;
  margin: 0;
  padding: 0;
  font-family: korolev, sans-serif;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-with-controls .unit {
  font-size: 1rem;
  margin-left: 0.25rem;
  font-weight: 500;
  line-height: 1;
}

.arrow-control {
    background-color: #ffad12;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.2s;
}

.arrow-control:hover {
    background-color: #d29119;
}

.arrow-control.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.arrow-control img {
  width: 20px;
  height: 20px;
}

/* Tooltip styles */
.tooltip-container {
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  vertical-align: top;
}

.info-icon {
  width: 16px;
  height: 16px;
  cursor: help;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.info-icon:hover {
  opacity: 1;
}

.tooltip {
  position: fixed;
  background-color: #ffffff;
  color: #001f47;
  padding: 12px 16px;
  border-radius: 6px;
  width: 200px;
  font-size: 0.8rem;
  opacity: 0;
  z-index: 9999;
  line-height: 1.3;
  font-weight: normal;
  text-align: left;
  white-space: normal;
  word-wrap: break-word;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  display: none;
  transition: opacity 0.3s ease;
  cursor: default;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  pointer-events: none;
}

.tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .tooltip {
    width: 180px;
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }
}

/* Add new tab styles */
.tab-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4px;
  width: 100%;
}

.tab-button {
  background: none;
  border: none;
  padding: 4px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  font-family: korolev, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-button.active {
  color: #2BF6A5;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #2BF6A5;
  transition: transform 0.2s ease;
}

.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, height 0.3s ease;
  padding: 4px 0;
  position: relative;
  width: 100%;
  min-height: 250px;
}

.tab-content.active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calculation-details,
.choices-details {
  padding: 12px 0;
}

.calculation-row,
.choice-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calculation-row:last-child,
.choice-row:last-child {
  border-bottom: none;
}

.calculation-row div:first-child,
.choice-row div:first-child {
  color: #ffffff;
  font-size: 13px;
}

.calculation-row div:last-child,
.choice-row div:last-child {
  font-weight: 500;
  color: #ffffff;
  text-align: right;
}

/* Detailed calculation styles */
.detailed-calculation {
  margin-bottom: 0.7rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.detailed-calculation:last-child {
  margin-bottom: 0;
}

.calculation-title {
  padding: 0.3rem 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  font-size: 13px;
}

.calculation-formula {
  padding: 0.1rem;
  font-size: 13px;
}

.calculation-section {
  padding: 20px;
}

.calculation-section h3 {
  color: #001f47;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.calculation-section p {
  color: #001f47;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.calculation-section:last-child p {
  margin-bottom: 0;
}

.calculation-details {
  background-color: #f5f7fa;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
}

.calculation-details h3 {
  color: #001f47;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.calculation-details p {
  color: #001f47;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
  font-family: monospace;
}

.calculation-details p:last-child {
  margin-bottom: 0;
}

.choices-details {
  padding: 16px;
  border-radius: 6px;
}

.choice-row {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #ffffff0f;
}

.choice-row div:first-child {
  flex: 0 0 40%;
  font-weight: 500;
}

.choice-value {
  flex: 1;
  word-break: break-word;
  max-width: 60%;
}

.route-path {
  line-height: 1.4;
}


@media screen and (max-width: 900px) {
  .heading-wrapper {
    width: 100%;
    margin-top: 5%;
    scroll-margin-top: 0;
  }


  .input-inner-wrapper {
    gap: 0;
  }

  .monthly-savings-amount {
    padding: 0.3rem 0;
  }

  .monthly-savings-title {
    font-size: 1.2rem;
  }

  h1.h1 {
    margin-right: 0;
    width: 100%;
    padding-right: 0;
  }

  .slider-wrapper {
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.slider-wrapper label {
  margin-bottom: 0;
}

  #myBtn {
    margin-top: 0.3rem;
  }

  .slider-thumb {
    width: 2.8rem;
    height: 2.8rem;
    pointer-events: none;
  }

  .slider-input {
    position: absolute;
    width: 100%;
    height: 55px;
    opacity: 0;
    z-index: 3;
    margin: 0;
    padding: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
    touch-action: auto;
  }

  .slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 55px;
    height: 55px;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
  }

  .slider-input::-moz-range-thumb {
    width: 55px;
    height: 55px;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
  }

  .slider-track {
    height: 10px;
  }

  .slider-track-fill {
    height: 10px;
  }

  .custom-slider {
    position: relative;
    height: 10px;
    margin: 35px 0;
    touch-action: none;
  }

  .slider-wrapper {
    position: relative;
    margin: 0.2rem 0 1rem 0;
    touch-action: none;
    gap: 0;
  }

  .slider-value {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
  }
}

.disclaimer-text {
  font-size: 0.8rem;
  color: #b9b9b9;
  margin-bottom: 5px;
  text-align: left;
  font-style: italic;
  max-width: 550px;
}

.conversation-starter {
  font-size: 1rem;
  color: #ffffff;
  margin-top: -10px;
  margin-bottom: 20px;
}

/* Bottom Banner Styles */
.bottom-banner {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background:#0031aa;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    font-family: 'proxima-nova', sans-serif;
    color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    visibility: visible;
}

.bottom-banner.initial-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(100px);
}

.bottom-banner.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(100px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.07);
  transition: background-color 0.3s ease;
  border-radius: 8px 8px 0 0;
}

.banner-header:hover {
  background: rgba(255, 255, 255, 0.12);
}

.banner-title {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0.2px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.help-icon {
  min-width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.banner-header:hover .help-icon {
  transform: scale(1.1);
}

.banner-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.banner-toggle svg {
  stroke: #ffffff;
}

.rotate-icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.banner-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 24px;
  color: #ffffff;
}

.banner-content.expanded {
  max-height: 320px;
  padding: 10px 24px 24px 24px;
  overflow-y: auto;
  background-color: #fefefe;
}

.banner-content p {
  margin: 0;
  line-height: 1.4;
  color: #001f47;
  font-size: 14px;
  padding-bottom: 10px;
}

.banner-content strong {
  color: #001f47;
  font-weight: 600;
}

.banner-content br {
  display: block;
  content: "";
  margin-top: 8px;
}

.banner-step-title {
  font-family: korolev, sans-serif;
}

@media screen and (max-width: 991px) {
  .bottom-banner {
    width: 95%;
  }
}

@media screen and (max-width: 767px) {
  .bottom-banner {
    bottom: 12px;
    width: 94%;
  }
  
  .banner-title {
    font-size: 14px;
  }
  
  .banner-header {
    padding: 12px 18px;
  }
  
  .banner-content.expanded {
    max-height: 320px;
    padding: 8px 18px 18px 18px;
  }
  
  .banner-content p {
    line-height: 1.5;
    font-size: 13px;
  }
  
  .banner-toggle {
    width: 24px;
    height: 24px;
  }

  .step-indicator {
    font-size: 12px;
    padding: 3px 6px;
  }
}

.banner-step-title {
  font-size: 16px;
  font-weight: 600;
  color: #001f47;
  margin: 0 0 8px 0;
  position: relative;
  display: inline-block;
}


