/* Basic styling for the booking popup - Updated to use class selectors */
.vwtd-booking-popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 20px;
	z-index: 9999;
	max-width: 1000px;
	max-height: 650px;
	width: 90%;
	flex-direction: column;
	overflow-y: auto;
	font-family: 'VW Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	height: 86vh;
}

/* Force overlay to cover entire viewport */
.vwtd-popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
    z-index: 9998;  
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

/* Ensure popup is completely hidden when closed */
.vwtd-booking-popup.closed {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Ensure popup content is hidden when popup is closed */
.vwtd-booking-popup.closed * {
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Additional rules to ensure popup is completely hidden when closed */
.vwtd-booking-popup.closed {
    transform: translate(-50%, -50%) scale(0.8) !important;
    filter: blur(5px) !important;
}

/* Note: More comprehensive styles are defined in the template file */
/* These basic styles serve as fallbacks */

/* Participants validation warning styling */
.vwtd-participants-warning {
    color: #ef4444;
    font-size: 14px;
    margin-top: 5px;
    padding: 8px 12px;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vwtd-participants-warning::before {
    content: "⚠️";
    font-size: 16px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.calendar-day {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 14px;
	font-weight: normal;
	min-height: 27px;
	max-height: 27px;
	width: 100%;
	border: 1px solid #DFE4E8;
	border-radius: 8px;
}
.calendar-day.available {
	justify-content: center;
	border-radius: 8px;
	color: var(--darker_blue);
	text-align: center;
	font-family: "VW Text";
	font-size: 14px;
	font-style: normal;
	line-height: normal;
	border: 1px solid var(--dark_blue);
	min-height: 27px;
	max-height: 27px;
}
  .calendar-day.selected {
    border-radius: 8px;
    background: #001E50 !important;
    color: white !important;
    text-align: center;
    font-family: "VW Text";
    font-size: 14px;
    font-style: normal;
    line-height: normal;
  }
.calendar-day.header {
	background: none;
	color: var(--darker_blue);
	font-weight: normal;
	cursor: default;
	font-size: 14px;
    border:0;
}

.calendar-day.disabled {
    color: #96A3A8;
    cursor: not-allowed;
}

.time-slots-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.time-slot {
	background: #fff;
	border: 2px solid var(--dark_blue);
	border-radius: 8px;
	padding: 14px 8px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 12px;
	font-weight: 500;
}
.slot-time {
	font-weight: 700;
    margin-bottom:2px;
}
.time-slot.selected {
    border-color: var(--dark_blue);
    background: var(--dark_blue);
    color: white;
}
.time-slot:hover {
	border-color: var(--dark_blue);
	background: var(--dark_blue);
	color: #fff;
}
.time-slot.full {
    background: #fee2e2;
    border-color: #fecaca;
    color: #991b1b;
    cursor: not-allowed;
}

.popup-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--dark_blue);
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
}

.review-field {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
}

.field-label {
    font-weight: 500;
    color: #374151;
}

.field-value {
    color: #6b7280;
}

.field-value.empty {
    color: #ef4444;
    font-style: italic;
}

/* VW Fonts */
@font-face {
    font-family: 'VW Head';
    src: url('../fonts/vw-head/VWHeadWeb-Regular.woff2') format('woff2'),
        url('../fonts/vw-head/VWHeadWeb-Regular.woff') format('woff'),
        url('../fonts/vw-head/VWHeadWeb-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VW Head';
    src: url('../fonts/vw-head/VWHeadWeb-Bold.woff2') format('woff2'),
        url('../fonts/vw-head/VWHeadWeb-Bold.woff') format('woff'),
        url('../fonts/vw-head/VWHeadWeb-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VW Head';
    src: url('../fonts/vw-head/VWHeadWeb-Light.woff2') format('woff2'),
        url('../fonts/vw-head/VWHeadWeb-Light.woff') format('woff'),
        url('../fonts/vw-head/VWHeadWeb-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VW Text';
    src: url('../fonts/vw-text/VWTextWeb-Regular.woff2') format('woff2'),
        url('../fonts/vw-text/VWTextWeb-Regular.woff') format('woff'),
        url('../fonts/vw-text/VWTextWeb-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VW Text';
    src: url('../fonts/vw-text/VWTextWeb-Bold.woff2') format('woff2'),
        url('../fonts/vw-text/VWTextWeb-Bold.woff') format('woff'),
        url('../fonts/vw-text/VWTextWeb-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VW Text';
    src: url('../fonts/vw-text/VWTextWeb-Light.woff2') format('woff2'),
        url('../fonts/vw-text/VWTextWeb-Light.woff') format('woff'),
        url('../fonts/vw-text/VWTextWeb-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VW Text';
    src: url('../fonts/vw-text/VWTextWeb-Medium.woff2') format('woff2'),
        url('../fonts/vw-text/VWTextWeb-Medium.woff') format('woff'),
        url('../fonts/vw-text/VWTextWeb-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Hero Section */
.vw-hero-section {
    position: relative;
    height: 90vh;
    min-height: 400px;
    background: url('../hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 40px;
    overflow: hidden;
}

.vw-hero-content {
    width: 100%;
    text-align: left;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
}

.vw-hero-title {
    font-family: 'VW Head', sans-serif;
    font-size: 6rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.vw-hero-subtitle {
    font-family: 'VW Text', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.vw-hero-logo-container {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vw-hero-logo-line {
    position: absolute;
    width: calc(34% - 10px);
    top: 50%;
    right: 0;
    height: 2px;
    background: white;
    transform: translateY(-50%);
    z-index: 1;
}

.vw-hero-logo-line1 {
    width: calc(62% - 10px);
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: white;
    transform: translateY(-50%);
    z-index: 1;
}

.vw-hero-logo {
    position: relative;
    width: 56px;
    height: 56px !important;
    z-index: 2;
    filter: brightness(0) invert(1);
    background: transparent;
    right: -14%;
}

.vw-hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(rgba(0, 30, 80, 0.6), rgba(0, 30, 80, 0.4));
    transform: translateY(-50%);
    z-index: -1;
    backdrop-filter: blur(5px);
}

.vw-language-buttons {
    position: absolute;
    top: 10px;
    left: 30px;
    z-index: 4;
    display: flex;
}

.vw-language-btn {
    color: white;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'VW Head', sans-serif;
    font-weight: normal;
}

.vw-language-btn:hover {
    color: #001E50;
}

.vw-language-btn.active {
    font-weight: bolder;
}

.vw-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vw-hero-section {
        height: 50vh;
        min-height: 300px;
        background-attachment: scroll;
    }

    .vw-hero-title {
        font-size: 2.5rem;
        font-family: 'VW Head', -apple-system, BlinkMacSystemFont, sans-serif !important;
        font-display: swap;
    }

    .vw-hero-subtitle {
        font-size: 1.1rem;
        font-family: 'VW Text', -apple-system, BlinkMacSystemFont, sans-serif !important;
        font-display: swap;
    }

    .vw-hero-logo {
        width: 50px;
}

    .vw-language-buttons {
        top: 1px;
        left: 20px;
    }

    .vw-hero-logo-line1 {
        width: calc(60% - 25px);
    }

    .vw-hero-logo-line {
        width: calc(32% - 25px);
    }

    .vw-language-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .vw-hero-logo-container {
        top: 48px;
    }
}

@media (max-width: 480px) {
    .vw-hero-title {
        font-size: 2rem;
        font-family: 'VW Head', -apple-system, BlinkMacSystemFont, sans-serif !important;
        font-display: swap;
    }

    .vw-hero-subtitle {
        font-size: 1rem;
        font-family: 'VW Text', -apple-system, BlinkMacSystemFont, sans-serif !important;
        font-display: swap;
    }

    .vw-hero-logo {
        width: 30px;
        right: 0;

    }

    .vw-hero-logo-line1 {
        width: calc(45%);
    }

    .vw-hero-logo-line {
        width: calc(45%);
    }

    .vw-language-buttons {
        left: 15px;
    }

    .vw-language-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .vw-hero-logo-container {
        top: 30px !important;
    }

    


}

/* Global Font Updates */
body {
    font-family: 'VW Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'VW Head', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Button Styles */
.vw-btn {
    font-family: 'VW Head', sans-serif;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.vw-btn-primary {
    background: linear-gradient(135deg, #001E50 0%, #0033A0 100%);
    border-radius: 24px;
    color: white;
}

.vw-btn-primary:hover {
    background: linear-gradient(135deg, #002666 0%, #0040CC 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 30, 80, 0.4);
}

.vw-btn-secondary {
    background: transparent;
    color: #001E50;
    border: 2px solid #001E50;
}

.vw-btn-secondary:hover {
    background: #001E50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 30, 80, 0.3);
}

/* Content Wrapper */
.vw-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Language switching functionality */
.vw-language-javascript {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Event Sections */
.vw-events-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.vw-section-title {
    font-family: 'VW Head', sans-serif;
    font-size: 2rem;
    font-weight: normal;
    color: #000;
    margin-bottom: 30px;
    text-align: left;
}

.vw-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vw-event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 350px;

}

.vw-event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0px;
    margin-bottom: 15px;
}

.vw-event-link {
    font-family: 'VW Head', sans-serif;
    font-weight: bold;
    color: #0040C5;
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.4;
}

.vw-event-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .vw-events-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
}

    .vw-section-title {
        font-size: 1.8rem;
    }

    .vw-event-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .vw-events-grid {
        grid-template-columns: 1fr;
    }

    .vw-section-title {
        font-size: 1.5rem;
    }

    .vw-event-image {
        height: 160px;
    }
}

/* Improved card shadows and spacing */
.city-card,
.event-card {
    box-shadow: 0 10px 40px rgba(0, 30, 80, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card:hover,
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 30, 80, 0.2);
}

.select2-container {
    z-index: 9999;
}
.select2-results__option {
    font-size: 12px;
}

.popup-header h2 {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	font-family: 'VW Head', -apple-system, BlinkMacSystemFont, sans-serif;
}
.popup-header {
	background: white;
	color: var(--darker_blue);
	padding: 16px 28px 4px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
}
.close-popup-btn {
	background: none;
	border: none;
	color: black;
	font-size: 28px;
	cursor: pointer;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
	top: auto;
	right: auto;
    z-index:1000;
    position:relative;
}
.progress-container {
	padding: 20px 32px;
	flex-shrink: 0;
}
.popup-content {
	flex: 1;
	overflow-y: auto;
	padding: 25px 32px;
	background: #FAFAFA;
	min-height: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
/* Let JavaScript control step visibility */
.vwtd-booking-popup .step-content { 
    display: none; 
    flex: 1;
}

/* Ensure proper step visibility */
.vwtd-booking-popup .step-content.active { 
    display: flex !important;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.vwtd-booking-popup .step-content:not(.active) { 
    display: none !important; 
}
.step-header h3 {
	margin: 0;
	font-size: 20px;
	color: var(--darker_blue);
	font-weight: 600;
	font-family: 'VW Head', -apple-system, BlinkMacSystemFont, sans-serif;
}
.step-header {
    margin-bottom: 28px;
}
.description-content {
	display: flex;
	gap: 32px;
	align-items: flex-start;
	padding-bottom: 30px;
}
.city-image-container {
	flex: 0 0 360px;
}
  
.city-image-container img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 0;
}
.experience-description {
	margin-bottom: 24px;
}
.description-text {
	flex: 1;
	max-width: 400px;
}
.experience-text {
	margin: 0;
	color: #000;
	line-height: 1.5;
	font-size: 14px;
	font-family: 'VW Text', -apple-system, BlinkMacSystemFont, sans-serif;
}
.info-box h4 {
	margin: 0 0 10px 0;
	color: #000;
	font-size: 16px;
	font-weight: 700;
	font-family: 'VW Head', -apple-system, BlinkMacSystemFont, sans-serif;
}
.info-box p {
	margin: 0 0 10px 0;
	color: #000;
	line-height: 1.5;
    font-size:14px;
}
.info-box p:last-child {
    margin-bottom: 0;
}
.experience-title h4 {
    margin: 0 0 15px 0;
    color: var(--darker_blue);
    font-size: 16px;
    font-weight: 700;
    font-family: 'VW Head', -apple-system, BlinkMacSystemFont, sans-serif;
}
.info-box{
    margin-bottom:12px;
}
.event-details p{
    margin-bottom:5px;
}
.see-location a {
	color: var(--dark_blue);
	font-weight: 700;
	font-size: 16px;
	text-transform: none !important;
	text-decoration: none;
	border-bottom: 1px solid var(--dark_blue);
}
.see-location {
	display: flex;
	align-items: center;
	column-gap: 12px;
}
.event-details p strong {
	color: var(--dark_blue);
}
.btn-primary,
.btn-secondary {
    padding:14px 48px;
    border-radius: 24px;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family:'VW Text';
}
  
.btn-primary {
    background: var(--dark_blue);
    color: #fff;
}
  
.btn-secondary {
    background: #fff;
    padding:12px 48px;
    color: var(--dark_blue);
    border: 2px solid var(--dark_blue);
}
  
.btn-secondary:hover {
    color: #fff;
    background: var(--dark_blue);
} 
  
.btn-primary:disabled,
.btn-secondary:disabled {
    background: #DFE4E8 !important;
    color: #6A767D !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}
#next-btn {
	margin-left: auto;
}
.popup-footer {
	padding: 24px 32px;
	background: #fff;
	border-top: 1px solid #DFE4E8;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	flex-shrink: 0;
}
.sub-heading {
	font-size: 20px;
	color: var(--darker_blue);
	font-family: 'VWHead';
	margin-bottom: 28px;
}
.cars-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.car-item .car-info {
	padding: 20px 20px 20px 16px;
	background: #fff;
	text-align: left;
	position: relative;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
    display:flex;
    column-gap:10px;
}
.car-item .car-check {
	width: 24px;
    min-width:24px;
	height: 24px;
	background: transparent;
	border: 1px solid var(--dark_blue);
	border-radius: 50%;
	margin-left: auto;
    position:relative;
}
.car-item.selected .car-info .car-check {
	background: var(--dark_blue);
}
.car-item {
	padding: 0;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 7px;
	position: relative;
}
.car-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 160px;
	background: linear-gradient(180deg, #FFFFFF 21.63%, #D3D5D7 100%);
	border-radius: 7px;
	box-shadow: 0px 0px 5.4px -1.8px #00000033;
}
.cars-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.car-item.selected::after {
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:calc(100% - 2px);
    z-index:9;
    border:1px solid #C2CACF;
	height: 158px;
    border-radius: 7px;
}
.car-item .image-container {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    z-index:10;
}
.car-item .car-check::before {
	content: "";
	width: 4px;
	height: 9px;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	position: absolute;
	left: 8px;
	transform: rotate(33deg);
	top: 5px;
}
.car-details-title {
	text-align: left;
	margin-bottom: 28px;
	color: var(--darker_blue);
	font-weight: bold;
	font-size: 20px;
}
.car-details-row {
	display: flex;
	gap: 32px;
	align-items: flex-start;
	position: relative;
}
.car-image-left {
	flex: 0 0 360px;
	position: relative;
}
.car-image-container {
	position: relative;
	width: 100%;
	height: 250px;
}
.car-color-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 160px;
	z-index: 1;
	background: linear-gradient(180deg, #FFFFFF 21.63%, #D3D5D7 100%);
	border-radius: 8px;
	box-shadow: 0px 0px 6px -2px #00000033;
}
.car-info-right {
	flex: 1;
	max-width: 400px;
}
.car-details-container {
    margin: 0;
    padding: 0;
}
.car-model-info h4 {
	font-size: 20px;
	font-weight: bold;
	color: #000;
	margin: 0 0 12px 0;
	line-height: 1.2;
}
.car-model-info p {
	font-family: 'VW Text', sans-serif;
	font-size: 14px;
	color: #000;
	margin: 0;
	line-height: 1.5;
	margin-bottom: 16px;
}
.car-technical-details p {
	font-family: 'VW Head', sans-serif;
	font-size: 12px;
	font-weight: 300;
	color: #96A3A8;
	margin: 0;
	line-height: 1.2;
}
.car-image {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.date-time-selection {
	display: flex;
	column-gap: 50px;
}
.calendar-container {
	background: #fff;
	border-radius: 8px;
	padding: 26px 30px;
	border: 1px solid #C2CACF;
	flex: 1 1 100%;
}
.calendar-wrapper {
	flex: 1 1 100%;
	width: 380px;
	max-width: 380px;
}
.time-slots-container {
	border-radius: 0;
	padding: 12px 20px 12px 50px;
	flex: 1 1 100%;
	border-left: 1px solid #C2CACF;
}
.time-slots-container h4 {
	margin: 0 0 16px 0;
	color: var(--darker_blue);
	font-size: 16px;
}
.calendar-header button {
	background: var(--dark_blue);
	color: #fff;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.calendar-header h4 {
	margin: 0;
	color: var(--darker_blue);
	font-size: 16px;
}  
.info-box .highlight {
    font-weight: 600;
    background: #fbbf24;
    padding: 2px 6px;
    border-radius: 4px;
}
  
.summit-info {
    border-radius: 8px;
    padding: 0 20px;
    margin-top: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.time-slot.full {
    background: #fee2e2;
    border-color: #fecaca;
    color: #991b1b;
    cursor: not-allowed;
}
.select-date-first {
	grid-column: 1 / -1;
	color: #000;
	font-style: normal;
	padding: 0;
	font-size: 14px;
	text-align: left;
}
.form-group {
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-row .flex-1 {
    grid-column: span 1;
}
.form-row .flex-2 {
    grid-column: span 2;
}

.loading-available-slots {
    grid-column: 1 / -1;
	font-size: 14px;
	color: #000;
	text-align: left;
}
.calendar-day.disabled.other-month {
	opacity: 0;
}
#step-participants, #step-email, #step-name, #step-employee, #step-contact {
	margin: 0 auto;
	margin-top: 0;
	width: 100%;
}
 /* Step indicators styling and positioning */
.step-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    position:relative;
    z-index:2;
}

.step-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #F5F5F5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--dark_blue);
    cursor: pointer;
}

.step-indicator.active, .step-indicator.completed {
    background: var(--dark_blue);
    color: #fff;
    border-color:var(--dark_blue);
}

.step-indicator .step-checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
}

/* Tooltip for step indicators */
.step-indicator {
    position: relative;
}

.step-indicator::after {
    content: attr(data-step);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #001e50;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.step-indicator:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Progress bar styling */
.progress-bar {
    position: relative;
    top: 22px;
    z-index: 1;
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #00437A;
    border-radius: 2px;
    transition: width 0.3s ease;
}
.cols-holder {
	display: flex;
	column-gap: 16px;
    margin-bottom:24px;
}
.each-col {
	flex: 1 1 100%;
	position: relative;
	display: flex;
}
.form-width{
    max-width:640px;
}
.mandatory-fields {
	color: #96A3A8;
	font-size: 12px;
	text-align: left;
	font-family: 'VW Head';
}
.form-inputs input {
    background:#fafafa;
	width: 100%;
	border-radius: 8px;
	border: 1px solid #C2CACF;
	height: 56px;
	outline: 0;
	box-shadow: none;
	padding: 20px 16px 5px;
	font-size: 16px;
	font-family: 'VW Text';
    color:var(--darker_blue);
}
.each-col label, .vwtd-select-placeholder{
	position: absolute;
	top: 8px;
	font-size: 12px;
	color: var(--darker_blue);
	left: 16px;
	line-height: 1;
    cursor:pointer;
}
.phone-input-wrapper {
	width: 190px;
    min-width:190px;
	border: 1px solid #C2CACF;
	border-radius: 8px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right: 0;
}
.form-inputs .phone-input-inner input {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	/*padding-left: 54px;*/
}
.phone-input-inner {
	flex: 1 1 100%;
	position: relative;
}
.form-inputs span.select2-container, .form-inputs span.select2-container .selection, .form-inputs span.select2-container, .form-inputs span.select2-container .selection .select2-selection {
	height: 54px !important;
	border: 0;
    display:flex;
    align-items:center;
}
.form-inputs span.select2-container .selection .select2-selection {
	padding: 15px 40px 15px 10px !important;
	text-align: center;
	border-radius: 8px;
	background: #fafafa;
}
/*
.phone_prefix {
	position: absolute;
	bottom: 8px;
	left: 16px;
	font-weight: 600;
}
    */
body .select2 img, body .select2-results img {
	width: 20px !important;
	height: 20px !important;
}
[id^="select2-country_code_email-result"] {
    text-align: center;
}
.phone-input-wrapper .select2-selection__rendered {
	padding-right: 0 !important;
}
.phone-input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 14px;
	width: 25px;
    background:#fafafa url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23001E50%22%2F%3E%3C%2Fsvg%3E') no-repeat right 5px top 55%;
}
.phone-input-wrapper .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow{
    background:#fafafa url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20transform%3D%22rotate%28180%2010%2010%29%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7z%22%20fill%3D%22%23001E50%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat right 5px top 55%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b{
    display:none;
}
.address-notice p {
	margin: 0;
	color: var(--darker_blue);
	font-size: 12px;
	line-height: 1.5;
	font-family: 'VW Text', -apple-system, BlinkMacSystemFont, sans-serif;
	display: flex;
	align-items: center;
	column-gap: 12px;
}
.address-notice {
	margin-bottom: 24px;
}
.columns-two-thirds-one-third .each-col:nth-child(2), .columns-one-third-two-thirds .each-col:nth-child(1) {
	max-width: 33%;
}
.vwtd-select-option:hover {
    background-color: #fafafa;
}
.vwtd-select-option.selected {
	background-color: var(--dark_blue);
	color: #fafafa;
}
.vwtd-custom-select {
	position: relative;
	width: 100%;
	padding: 26px 42px 9px 16px;
	border: 1px solid #C2CACF;
	border-radius: 8px;
	font-family: 'VW Text', sans-serif;
	font-size: 16px;
	background-color: #FAFAFA;
	color: var(--darker_blue);
	cursor: pointer;
	transition: border-color 0.2s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 56px;
}
/* Custom Select Dropdown Styling - Immune to Select2 and other plugins */
.vwtd-custom-select-wrapper {
    position: relative;
    width: 100%;
}
.vwtd-select-arrow {
	transition: transform 0.2s ease;
	background: #fafafa url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23001E50%22%2F%3E%3C%2Fsvg%3E') no-repeat bottom center;
	width: 25px;
	height: 25px;
	position: absolute;
	right: 16px;
	top: 15px;
}
.vwtd-custom-select.active .vwtd-select-arrow {
    transform: rotate(180deg);
}
.vwtd-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #FAFAFA;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.vwtd-custom-select.active + .vwtd-select-options {
    display: block;
}

.vwtd-select-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: 'VW Text', sans-serif;
    font-size: 16px;
    color: #000;
}  

.terms-dropdown-section {
	border: 1px solid #C2CACF;
	border-radius: 8px;
	background: #fff;
    margin-bottom:8px;
}
.terms-dropdown-header {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 15px 20px 24px;
}
.terms-dropdown-header h4 {
	margin: 0;
	color: var(--darker_blue);
	font-weight: 600;
	font-size: 16px;
}
.terms-dropdown-header.active .dropdown-arrow {
    transform: rotate(180deg);
}
.dropdown-arrow {
    background: #ffffff url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23001E50%22%2F%3E%3C%2Fsvg%3E') no-repeat bottom center;
	width: 25px;
	height: 25px;
}
.terms-dropdown-content.open {
	max-height: 220px;
	overflow-y: auto;
}
.terms-text a {
	color: var(--dark_blue);
}
.terms-text p {
	margin-bottom: 15px;
	color: var(--darker_blue);
}
.terms-text {
	padding: 5px 24px 20px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--darker_blue);
}

.terms-text ul {
    margin: 10px 0;
    padding-left: 20px;
}

.terms-text li {
    margin-bottom: 8px;
}

.terms-language-section h5 {
	color: var(--darker_blue);
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #C2CACF;
}

.terms-checkbox {
    padding: 20px;
    background: white;
    border-top: 1px solid #C2CACF;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #000;
}

.checkbox-container input {
    margin-right: 12px;
    width: 18px;
    height: 18px;
}
 .vwtd-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  
  /* Custom Checkbox Styling - Immune to other plugin CSS */
  .vwtd-checkbox-input {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    overflow: hidden !important;
  }
  
  .vwtd-custom-checkbox {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 10px;
  }
  
  .vwtd-checkbox-input:checked + .vwtd-custom-checkbox {
    border-color: var(--dark_blue);
    background-color: var(--dark_blue);
  }
  
  .vwtd-checkbox-input:checked + .vwtd-custom-checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }
  
  .vwtd-checkbox-text {
    font-family: 'VW Text', sans-serif;
    font-size: 14px;
    color: #000;
    cursor: pointer;
  }
  
  /* Custom Terms Checkbox Styling - Immune to other plugin CSS */
  .vwtd-terms-checkbox {
    margin-top: 0;
    text-align: center;
  }
  
.vwtd-terms-checkbox-label {
	display: flex;
	align-items: center;
	padding: 20px 24px;
	gap: 12px;
	cursor: pointer;
	font-family: 'VW Text', sans-serif;
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	background: #fff;
	border: 1px solid #C2CACF;
	border-radius: 8px;
}
  
  .vwtd-terms-checkbox-input {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    overflow: hidden !important;
  }
  
  .vwtd-custom-terms-checkbox {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 1px solid var(--dark_blue);
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    font-family: 'VW Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  .vwtd-terms-checkbox-input:checked + .vwtd-custom-terms-checkbox {
    border-color: var(--dark_blue);
    background-color: var(--dark_blue);
  }
  
  .vwtd-terms-checkbox-input:checked + .vwtd-custom-terms-checkbox::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
  }
  
  .vwtd-terms-checkbox-text {
    font-family: 'VW Text', sans-serif;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    text-align: left;
  }

.notice-passenger-confirm p {
	display: flex;
	align-items: center;
	column-gap: 12px;
	font-size: 12px;
}
.notice-passenger-confirm {
	background: #0040C5;
	color: #fff;
	padding: 20px 24px;
	border-radius: 8px;
}
.review-container {
	display: flex;
	flex-wrap: wrap;
	column-gap: 12px;
	padding-top: 12px;
}
.review-description {
    color: #6b7280;
    font-size: 14px;
    margin: 10px 0 0 0;
    line-height: 1.5;
}
.address-review-line {
    margin-bottom: 8px;
}
.address-label {
    font-weight: 600;
    color: #374151;
    display: inline-block;
    min-width: 100px;
}
.review-section {
	background: #fff;
	border: 1px solid #C2CACF;
	border-radius: 8px;
	padding: 16px 16px 24px 24px;
	transition: all 0.2s ease;
	flex: 1 1 100%;
	max-width: calc(50% - 6px);
	margin-bottom: 12px;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.review-header h4 {
	margin: 0;
	color: var(--darker_blue);
	font-size: 16px;
	font-weight: 700;
}
.edit-text {
	font-size: 10px;
	font-weight: 500;
	padding: 3px 9px;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	background: transparent;
	border: 1px solid var(--dark_blue);
	border-radius: 22px;
	color: var(--dark_blue);
	column-gap: 2px;
}
.review-content {
	color: #4b5563;
	line-height: 1.5;
	font-size: 12px;
}
.review-placeholder {
    color: #9ca3af;
    font-style: normal;
}
.placeholder-text {
    color: #9ca3af;
    font-style: normal;
}
.review-field {
	display: flex;
	margin-bottom: 12px;
	align-items: start;
}
.review-field:last-child {
    margin-bottom: 0;
}
.field-label {
	font-weight: 600;
	color: var(--darker_blue);
	min-width: 140px;
	display: inline-block;
	font-size: 12px;
	font-family: 'VWHead';
}
.field-value {
    color: #1f2937;
    font-weight: 500;
}
.field-value.empty {
    color: #9ca3af;
    font-style: normal;
}
.review-table {
	width: 100%;
	border-collapse: collapse;
	color: var(--darker_blue);
	font-family: 'VWText';
}
.review-table td:first-child {
	font-weight: bold;
	padding-right: 15px;
	white-space: nowrap;
	width: 1%;
}
.review-table td {
	padding: 5px 0;
}
#review-car-image img {
	max-width: 100%;
}
#review-car-name {
	margin-top: 7px;
}
.confirmation-success-message h4, .success-message h4 {
	margin: 0 0 15px 0;
	color: var(--darker_blue);
	font-size: 20px;
}
.booking-summary {
	background: #fff;
	border: 1px solid #C2CACF;
	max-width: 375px;
	border-radius: 8px;
	padding: 25px;
	margin-top: 20px;
	width: 100%;
}
.booking-details h4 {
	font-size: 20px;
	margin-bottom: 16px;
	color: #000;
}
.booking-details p {
	font-size: 14px;
	color: #000;
	line-height: 1.5;
	margin-bottom: 5px;
	font-family: 'VWHead';
	font-weight: 300;
}
.booking-details p:last-child {
	margin-bottom: 0;
}
.confirmation-success-message p, .success-message p {
	color: #000;
	line-height: 1.6;
}
.confirmation-container {
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align: center;
}

.confirmation-success-message,.success-message {
    margin-bottom: 30px;
}
.booking-details img {
	max-width: 100%;
	margin-top: -130px;
}  
#final-booking-summary.with-car-image {
	margin-top: 70px;
}
.vwtd-language-selection-title {
	font-family: 'VW Head', sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: var(--darker_blue);
	margin-bottom: 30px;
	text-align: left;
}
.vwtd-radio-input {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    overflow: hidden !important;
}
.vwtd-custom-radio {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--dark_blue);
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 8px;
}
.vwtd-radio-input:checked + .vwtd-custom-radio {
	border-color: var(--dark_blue);
	background-color: var(--dark_blue);
}
.vwtd-radio-input:checked + .vwtd-custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left:-4px;
    margin-top:-4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}
.vwtd-language-label {
    font-family: 'VW Text', sans-serif;
    font-size: 16px;
    color: #000;
    cursor: pointer;
}
.standtour-divider {
	background: #C2CACF;
	width: 1px;
	height: 100%;
	min-height: 300px;
}
.st-title {
	font-family: 'VW Head', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 22px;
	color: var(--darker_blue);
}
.standtour-intro-row {
	display: flex;
	column-gap: 50px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.standtour-intro-left {
	margin: 0 auto;
	text-align: center;
	flex: 1 1 100%;
	display: flex;
	min-height: 300px;
	align-items: center;
	justify-content: center;
	max-width: 380px;
}
.standtour-intro-right {
	border-left: 1px solid #C2CACF;
	padding-left: 50px;
	min-width: 50%;
	padding-right: 50px;
}
#st-event-title, #st-event-city{
    font-weight: bold;
}
.st-right-text {
    color: #000000;
    font-size: 14px;
}
.st-right-text p {
	margin-bottom: 10px;
}
.each-col.select-col {
	max-width: calc(66% - 8px);
}
#step-terms .form-width, #step-review .form-width {
	max-width: 720px;
}
.cancellation-question .iaa-intro-title {
	margin-bottom: 40px;
}
body.vwtd-popup-open {
    overflow: hidden;
    position: relative;
}
html.vwtd-popup-open {
    overflow: hidden;
}
.step-content {
    display: none;
    animation: fadeIn 0.3s ease;
    flex: 1;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.participants-form {
    text-align: center;
}

.participants-question {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 60px;
    color: #333;
    font-family: 'VW Head', -apple-system, BlinkMacSystemFont, sans-serif;
    text-align: center;
    margin-top: 0;
}

.participants-question small {
    font-family: 'VW Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 1rem;
    display: block;
}

.country-code-select {
    flex: 0 0 120px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px 8px;
    font-size: 14px;
    color: #333;
    outline: none;
    cursor: pointer;
}

.country-code-select:focus {
    border-color: #0c0053;
    box-shadow: 0 0 0 3px rgba(12, 0, 83, 0.1);
}

.contact-input:last-of-type:not(#email_contact) {
    margin-bottom: 0;
}

.vwtd-sign-language-header {
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.vwtd-radio-label {
    margin-right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vwtd-radio-label:last-child {
    margin-right: 0;
}

.vwtd-sign-language-note {
    color: #6b7280;
    margin-top: 8px;
}

/* Language and Sign Language Step Styling */
.vwtd-language-selection-section {
    margin-bottom: 40px;
    text-align: center;
}  
.vwtd-language-options {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}
.vwtd-language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.vwtd-sign-language-section {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}
.vwtd-sign-language-header {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}
.vwtd-sign-language-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(1000%) hue-rotate(240deg) brightness(0.3) contrast(100%);
}
.vwtd-sign-language-text {
    font-family: 'VW Head', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #0c0053;
}
.vwtd-sign-language-checkbox {
    display: flex;
    justify-content: flex-start;;
}
.field-note {
    margin-top: 5px;
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}
/* Unique VWTD Form Styling Classes */
  .vwtd-form-group {
    margin-bottom: 20px;
  }
  
  .vwtd-form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'VW Text', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
  }

  .vwtd-address-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .vwtd-address-row .vwtd-form-group {
    flex: 1;
    margin-bottom: 0;
  }
  
  .vwtd-street-field,
  .vwtd-number-field,
  .vwtd-city-field,
  .vwtd-postal-field {
    margin-bottom: 20px;
  }
  
  .vwtd-street-field input,
  .vwtd-number-field input,
  .vwtd-city-field input,
  .vwtd-postal-field input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'VW Text', sans-serif;
    font-size: 16px;
    background-color: white;
    color: #374151;
    transition: border-color 0.2s ease;
  }
  
  .vwtd-street-field input:focus,
  .vwtd-number-field input:focus,
  .vwtd-city-field input:focus,
  .vwtd-postal-field input:focus {
    outline: none;
    border-color: #0c0053;
    box-shadow: 0 0 0 3px rgba(12, 0, 83, 0.1);
  }
 /* Ensure custom elements are not affected by other plugins */
  .vwtd-custom-radio,
  .vwtd-custom-checkbox,
  .vwtd-custom-select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    box-sizing: border-box !important;
  }
  
  /* Force override any conflicting styles */
  .vwtd-radio-input,
  .vwtd-checkbox-input,
  .vwtd-terms-checkbox-input {
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  
body .phone-input-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
	font-size: 14px;
	display: flex;
	align-items: center;
	column-gap: 10px;
}
#select2-country_code_email-results {
	text-align: left;
}
#select2-country_code_email-results li {
	display: flex;
	column-gap: 10px;
	align-items: center;
    text-align:left;
}