.vro-flight-cards {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
}
.vro-flight-card {
background: #F9FAFB;
border-radius: 10px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vro-flight-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.vro-flight-card-header {
background: linear-gradient(135deg, #1AA3FF, #0d47a1);
color: white;
padding: 15px 15px;
display: flex;
align-items: center;
justify-content: space-between;
}
.vro-flight-airline {
display: flex;
align-items: flex-start;
gap: 10px;
flex: 1;
}
.vro-flight-airline-logo-container {
width: 70px;
height: 45px;
background: white;
border-radius: 6px;
padding: 5px;
display: flex;
align-items: center;
justify-content: center;
}
.vro-flight-airline-logo {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.vro-flight-airline-info {
flex: 1;
}
.vro-flight-information {
font-size: 0.85em;
opacity: 0.9;
}
.vro-flight-airline-name {   
color: #fff !important;
margin: 0;
}
.vro-flight-type {
background: rgba(255, 255, 255, 0.2);
padding: 1px 8px;
border-radius: 100px;
font-weight: 500;
font-size: 15px;
}
.vro-flight-type.transit {
background: #ff9800;
color: white;
}
.vro-flight-type.langsung {
background: #1AA3FF;
color: white;
}
.vro-flight-route {
padding: 15px;
}
.vro-route-simple {
display: flex;
align-items: center;
width: 100%;
padding: 10px 0;
}
.vro-route-airport {
display: flex;
flex-direction: column;
align-items: center;
}
.vro-route-airport:first-child {
align-items: flex-start;
text-align: left;
}
.vro-route-airport:last-child {
align-items: flex-end;
text-align: right;
}
.vro-airport-code {
font-size: 1.2em;
font-weight: 700;
color: #111827;
}
.vro-airport-name {
font-size: 0.8em;
color: #9CA3AF;
white-space: nowrap;
}
.vro-route-separator {
flex: 1;
display: flex;
align-items: center;
padding: 0 5px;
}
.vro-route-dash {
height: 1px;
background: transparent;
border-top: 1px dashed #c2c2c2;
flex: 1;
margin: 0 5px;
} .vro-flight-duration {
text-align: center;
font-size: 0.8em;
color: #9CA3AF;
margin: 10px 0;
padding: 5px 0;
border-top: 1px dashed #e0e0e0;
border-bottom: 1px dashed #e0e0e0;
}
.vro-flight-footer {
background: #F9FAFB;
padding: 15px 15px;
display: flex;
gap: 10px;
align-items: center;
border-top: 1px solid #ddd;
}
.vro-ticket-status {
font-size: 12px;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 5px;
}
.vro-ticket-status i {
font-size: 12px;
}
.vro-ticket-confirmed {
color: #1AA3FF;
}
.vro-ticket-tentative {
color: #9CA3AF;
}
.vro-flight-date {
font-size: 12px;
color: #9CA3AF;
} @media (max-width: 768px) {
.vro-flight-cards {
grid-template-columns: 1fr;
}
.vro-route-simple { flex-direction: row;
align-items: center;
gap: 0;
padding: 8px 0;
}
.vro-route-airport {
width: auto;
align-items: center !important;
text-align: center !important;
}
.vro-route-separator {
width: auto;
padding: 0 5px;
}
}.vro-hotels {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 18px;
}
@media (max-width: 768px) {
.vro-hotels {
grid-template-columns: 1fr;
}
}
.vro-hotel-card {
border: 1px solid #ddd;
border-radius: 15px;
padding: 18px;
}
.vro-hotel-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 16px;
}
.vro-hotel-header h3 {
margin: 0;
}
.vro-hotel-rating {
font-weight: 500;
}
.vro-hotel-media {
position: relative;
margin-bottom: 16px;
border-radius: 15px;
overflow: hidden;
}
.vro-hotel-slides {
position: relative;
overflow: hidden;
}
.vro-hotel-slide {
display: none;
aspect-ratio: 9/16;
}
.vro-hotel-slide.active {
display: block;
}
.vro-hotel-slide img,
.vro-hotel-slide iframe {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 15px;
display: block;
}
.vro-hotel-controls {
position: absolute !important;
bottom: 16px !important;
right: 16px !important;
z-index: 10 !important;
pointer-events: none !important;
} .vro-hotel-video {
position: relative;
width: 100%;
padding-bottom: 177.78%; height: 0;
overflow: hidden;
cursor: pointer;
}
.vro-hotel-video img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.vro-hotel-video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
display: block;
} .vro-hotel-video .vro-video-play {
position: absolute !important;
top: 50% !important;
left: 50% !important;
transform: translate(-50%, -50%) !important;
background: none !important;
border: none !important;
cursor: pointer !important;
opacity: 0.8 !important;
transition: opacity 0.2s ease !important;
padding: 0 !important;
margin: 0 !important;
z-index: 2 !important;
}
.vro-hotel-video .vro-video-play:hover {
opacity: 1 !important;
}
.vro-hotel-video .vro-video-play svg {
width: 68px !important;
height: 48px !important;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) !important;
} .vro-hotel-slide img.vro-lazy {
background: #f0f0f0;
min-height: 200px;
} .vro-hotel-counter {
display: flex !important;
align-items: center !important;
background: rgba(255, 255, 255, 0.7) !important;
border-radius: 20px !important;
padding: 4px 8px !important;
pointer-events: auto !important;
gap: 3px !important;
}
.vro-hotel-counter .vro-counter-prev,
.vro-hotel-counter .vro-counter-next {
background: none !important;
border: none !important;
color: #3F4752 !important;
cursor: pointer !important;
font-size: 15px !important;
padding: 4px 6px !important;
border-radius: 50% !important;
transition: background 0.2s ease !important;
line-height: 1 !important;
min-width: 24px !important;
height: 24px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
.vro-hotel-counter .vro-counter-prev:hover,
.vro-hotel-counter .vro-counter-next:hover {
background: white !important;
}
.vro-hotel-counter .vro-counter-text {
color: #3F4752 !important;
font-size: 15px !important;
font-weight: 500 !important;
min-width: 30px !important;
text-align: center !important;
user-select: none !important;
}
.vro-hotel-info h4 {
margin: 0 0 8px 0;
}
.vro-hotel-meta {
display: flex;
justify-content: space-between;
align-items: center;
}
.vro-travel-info {
margin: 0;
font-size: 13px;
color: #9CA3AF;
}
.vro-maps-link {
color: #9CA3AF !important;
font-weight: 500;
font-size: 13px;
text-decoration: none;
}
.vro-maps-link:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.vro-hotel-controls {
bottom: 12px !important;
right: 12px !important;
}
.vro-hotel-counter {
padding: 3px 6px !important;
gap: 3px !important;
}
.vro-hotel-counter .vro-counter-prev,
.vro-hotel-counter .vro-counter-next {
min-width: 20px !important;
height: 20px !important;
font-size: 13px !important;
}
.vro-hotel-counter .vro-counter-text {
font-size: 13px !important;
min-width: 25px !important;
}
}.vro-ads-container {
position: relative;
width: 100%;
max-width: 100%;
margin: 0 auto;
border-radius: 10px;
overflow: visible;
}
.vro-ads-single {
width: 100%;
border-radius: 10px;
overflow: hidden;
}
.vro-ads-single img {
width: 100%;
height: auto;
display: block;
max-width: 100%;
border-radius: 10px;
}
.vro-ads-slider {
position: relative;
}
.vro-ads-slides {
position: relative;
width: 100%;
overflow: hidden;
border-radius: 10px;
transition: height 0.3s ease-in-out;
}
.vro-ads-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
will-change: opacity, transform;
backface-visibility: hidden;
transform: translate3d(0, 0, 0);
}
.vro-ads-slide.active {
position: relative;
opacity: 1;
visibility: visible;
}
.vro-ads-slider .vro-ads-slide img {
width: 100%;
height: auto;
max-width: 100%;
display: block;
border-radius: 10px;
}
.vro-ads-slide img {
width: 100%;
height: auto;
display: block;
max-width: 100%;
object-fit: cover;
object-position: center;
}
.vro-ads-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: linear-gradient(135deg, #ffffffc2, #ffffffc2) !important;
width: 0px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 20;
transition: all 0.3s ease;
border: none;
padding: 20px !important;
border-radius: 4px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.vro-ads-nav:active {
transform: translateY(-50%) scale(0.95);
}
.vro-ads-nav i {
font-size: 15px;
color: #111827;
line-height: 1;
}
.vro-ads-prev {
left: -20px;
}
.vro-ads-next {
right: -20px;
}
@media (max-width: 992px) {
.vro-ads-nav {
width: 36px;
height: 50px;
opacity: 0.9;
}
.vro-ads-nav i {
font-size: 16px;
}
.vro-ads-prev {
left: 8px;
}
.vro-ads-next {
right: 8px;
}
}
@media (max-width: 480px) {
.vro-ads-nav {
padding: 15px !important;
width: 0;
height: 30px;
}
.vro-ads-nav i {
font-size: 12px !important;
}
.vro-ads-prev {
left: -15px;
}
.vro-ads-next {
right: -15px;
}
} .vro-ads-container.loading {
min-height: 200px;
background: #f5f5f5;
display: flex;
align-items: center;
justify-content: center;
}
.vro-ads-container.loading::after {
content: '';
width: 40px;
height: 40px;
animation: vro-ads-spin 1s linear infinite;
}
@keyframes vro-ads-spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
} .vro-ads-nav[aria-hidden="true"] {
display: none;
} .vro-ads-container:focus-within .vro-ads-nav {
opacity: 1;
} .vro-ads-slide {
will-change: opacity;
} .vro-ads-slide img {
object-fit: cover;
object-position: center;
}.vro-itinerary-timeline {
position: relative;
padding-left: 40px;
}
.vro-itinerary-timeline::before {
content: '';
position: absolute;
left: 18px;
top: 0;
bottom: 0;
width: 0;
border-left: 2px dashed #ddd;
z-index: 0;
} .vro-itinerary-item {
position: relative;
margin-bottom: 15px;
padding-left: 15px;
transition: all 0.3s ease;
}
.vro-itinerary-item:last-child {
margin-bottom: 0;
} .vro-itinerary-item.vro-hidden {
display: none;
} .vro-itinerary-item.vro-partial-show {
position: relative;
overflow: hidden;
max-height: 200px;
margin-bottom: 20px;
width: 100%;
display: block;
}
.vro-itinerary-item.vro-partial-show::after {
content: '';
position: absolute;
left: 0; 
right: 0; 
bottom: 0;
height: 90px;
background: linear-gradient(
180deg,
rgba(255,255,255,0) 0%,
rgba(255,255,255,0.85) 60%,
rgba(255,255,255,0.97) 85%,
rgba(255,255,255,1) 100%
);
pointer-events: none;
z-index: 10;
}
.vro-itinerary-item.vro-partial-show .vro-itinerary-content {
position: relative;
z-index: 2;
background: transparent;
} .vro-itinerary-marker {
position: absolute;
left: -42px;
top: 0;
width: 40px;
height: 40px;
background: #F9FAFB;
border: 1px solid #ddd;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}
.vro-day-number {
font-weight: 700;
font-size: 18px;
color: #111827;
line-height: 1;
} .vro-itinerary-content {
border-radius: 15px;
padding: 20px;
border: 1px solid #DDDDDD;
}
.vro-itinerary-description {
margin-bottom: 15px;
}
.vro-itinerary-description p {
margin: 0 0 10px 0;
}
.vro-itinerary-description p:last-child {
margin-bottom: 0;
} .vro-itinerary-gallery {
position: relative;
width: 100%;
overflow: hidden;
border-radius: 15px;
box-shadow: none;
border: 1px solid #DDDDDD;
} .vro-itinerary-slides {
display: flex;
transition: transform 0.5s ease;
width: 100%;
position: relative;
} .vro-itinerary-slide {
min-width: 50%; width: 50%;
max-width: 50%;
position: relative;
margin: 0 !important;
padding: 0 !important;
box-sizing: border-box;
} @media (max-width: 768px) {
.vro-itinerary-slide {
min-width: 100%;
width: 100%;
max-width: 100%;
}
} .vro-itinerary-slide img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
margin: 0 !important;
padding: 0 !important;
box-sizing: border-box;
} .vro-gallery-video {
position: relative;
width: 100%;
height: 100%;
aspect-ratio: 16/9;
}
.vro-gallery-video iframe {
width: 100%;
height: 100%;
border: none;
} .vro-itinerary-controls {
position: absolute !important;
bottom: 0 !important;
left: 0 !important;
right: 0 !important;
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
padding: 0 16px 12px !important;
z-index: 10 !important;
pointer-events: auto !important;
margin: 0 !important;
opacity: 1 !important;
transition: none !important;
}   .vro-itinerary-prev,
.vro-itinerary-next {
background: rgba(255, 255, 255, 0.7) !important;
border: none !important;
border-radius: 50% !important;
width: 32px !important;
height: 32px !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
cursor: pointer !important;
color: #333 !important;
transition: all 0.2s ease !important;
pointer-events: auto !important;
padding: 0 !important;
margin: 0 !important;
position: absolute !important;
bottom: 16px !important;
z-index: 20 !important;
box-shadow: none !important;
} .vro-itinerary-prev {
right: 56px !important;
left: auto !important;
}
.vro-itinerary-next {
right: 16px !important;
left: auto !important;
} .vro-itinerary-prev svg,
.vro-itinerary-next svg {
width: 16px !important;
height: 16px !important;
stroke: #333 !important;
stroke-width: 2px !important;
fill: none !important;
transition: all 0.2s ease !important;
}
.vro-itinerary-prev:hover,
.vro-itinerary-next:hover {
background: #fff !important;
transform: scale(1.1) !important;
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
}
.vro-itinerary-prev:active,
.vro-itinerary-next:active {
transform: scale(0.95) !important;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
}
.vro-itinerary-prev:hover svg,
.vro-itinerary-next:hover svg {
stroke: #000 !important;
} .vro-itinerary-pagination {
display: flex !important;
gap: 2px !important;
position: absolute !important;
left: 16px !important;
right: auto !important;
bottom: 20px !important;
padding: 0 !important;
background: none !important;
border-radius: 0 !important;
pointer-events: auto !important;
margin: 0 !important;
z-index: 15 !important;
backdrop-filter: none !important;
height: auto !important;
align-items: center !important;
}
.vro-itinerary-pagination .dot {
width: 8px !important;
height: 8px !important;
border-radius: 50% !important;
background: rgba(255, 255, 255, 0.5) !important;
cursor: pointer !important;
transition: all 0.3s ease !important;
border: none !important;
padding: 0 !important;
pointer-events: auto !important;
margin: 0 3px !important;
display: block !important;
text-indent: -9999px !important;
overflow: hidden !important;
box-shadow: none !important;
}
.vro-itinerary-pagination .dot.active {
background: #fff !important;
transform: scale(1.4) !important;
margin: 0 6px !important;
} @media (max-width: 768px) {
.vro-itinerary-prev,
.vro-itinerary-next {
width: 28px !important;
height: 28px !important;
bottom: 12px !important;
}
.vro-itinerary-prev {
right: 48px !important;
left: auto !important;
}
.vro-itinerary-next {
right: 12px !important;
left: auto !important;
}
.vro-itinerary-pagination {
left: 12px !important;
bottom: 16px !important;
}
.vro-itinerary-pagination .dot {
width: 6px !important;
height: 6px !important;
margin: 0 2px !important;
}
.vro-itinerary-pagination .dot.active {
margin: 0 4px !important;
}
.vro-itinerary-controls {
padding: 0 12px 8px !important;
}
}
@media (max-width: 480px) {
.vro-itinerary-prev,
.vro-itinerary-next {
width: 24px !important;
height: 24px !important;
bottom: 8px !important;
}
.vro-itinerary-prev {
right: 40px !important;
left: auto !important;
}
.vro-itinerary-next {
right: 8px !important;
left: auto !important;
}
.vro-itinerary-pagination {
left: 8px !important;
bottom: 12px !important;
}
.vro-itinerary-controls {
padding: 0 8px 6px !important;
}
} .vro-toggle-btn {
background: linear-gradient(135deg, #f7f7f7, #f7f7f7) !important;
border: none;
border-radius: 0;
color: #111827 !important;
font-weight: 600;
font-size: 15px;
cursor: pointer;
padding: 0;
margin: 0;
display: inline-flex;
align-items: center;
gap: 6px;
box-shadow: none;
transition: color 0.2s;
text-decoration: underline transparent;
}
.vro-toggle-btn:hover,
.vro-toggle-btn:focus {
text-decoration: underline;
background: none;
}
.vro-toggle-icon {
transition: transform 0.3s;
}
.vro-toggle-btn:active .vro-toggle-icon {
transform: translateY(1px);
}
.vro-itinerary-toggle {
text-align: center;
margin-top: 24px;
} @media (max-width: 768px) {
.vro-itinerary-timeline {
padding-left: 32px;
}
.vro-itinerary-timeline::before {
left: 16px;
}
.vro-itinerary-item {
padding-left: 32px;
}
.vro-itinerary-marker {
left: 0;
width: 38px;
height: 38px;
}
.vro-day-number {
font-size: 15px;
}
.vro-itinerary-content {
padding: 15px;
}
.vro-itinerary-title {
font-size: 16px;
}
.vro-toggle-btn {
padding: 10px 20px;
font-size: 13px;
}
}
@media (max-width: 480px) {
.vro-itinerary-timeline {
padding-left: 24px;
}
.vro-itinerary-timeline::before {
left: 12px;
}
.vro-itinerary-item {
padding-left: 15px;
}
.vro-itinerary-marker {
left: -28px;
width: 35px;
height: 35px;
}
.vro-day-number {
font-size: 15px;
}
.vro-itinerary-content {
padding: 12px;
}
.vro-itinerary-title {
font-size: 15px;
}
.vro-itinerary-controls {
padding: 0 8px 6px;
}
.vro-itinerary-prev,
.vro-itinerary-next {
width: 24px;
height: 24px;
}
.vro-itinerary-prev svg,
.vro-itinerary-next svg {
width: 12px;
height: 12px;
}
.vro-toggle-btn {
padding: 8px 16px;
font-size: 12px;
}
}.vro-faq-product {
display: flex;
flex-direction: column;
gap: 15px;
}
.vro-faq-product .vro-faq-item { border: 1px solid var(--e-global-color-border, #DDDDDD);
border-radius: 8px;
transition: all 0.3s ease;
overflow: hidden;
}
.vro-faq-product .vro-faq-item:hover {
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.vro-faq-product .vro-faq-question {
margin: 0;
}
.vro-faq-product .vro-faq-question button { background: none;
border: none;
font: inherit;
color: inherit;
text-align: left;
width: 100%;
cursor: pointer;   padding: 1.25rem calc(1.25rem + 1.5em) 1.25rem 1.25rem;
position: relative; display: block; transition: background-color 0.2s ease;
}
.vro-faq-product .vro-faq-question button::after {
content: '+';
font-size: 1.5em;
font-weight: 300;
color: var(--e-global-color-primary, #111827);
transition: transform 0.3s ease, color 0.3s ease;
transform: translateY(-50%) rotate(0deg);
position: absolute;
right: 1.25rem; top: 50%;
} .vro-faq-product .vro-faq-question .vro-faq-question-text {
display: block;
white-space: normal;
overflow-wrap: anywhere; word-break: break-word; }
.vro-faq-product .vro-faq-item.active {
background-color: var(--e-global-color-bg_shape, #f9fafb);
}
.vro-faq-product .vro-faq-item.active .vro-faq-question button::after {
content: '−';
transform: translateY(-50%) rotate(180deg);
}
.vro-faq-product .vro-faq-answer {
max-height: 0;
overflow: hidden;
opacity: 0;
padding: 0 1.25rem;
transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.2s ease-in;
line-height: 1.7; background-color: var(--e-global-color-bg_shape, #f9fafb);
}
.vro-faq-product .vro-faq-item.active .vro-faq-answer {
max-height: 1000px;
opacity: 1;
padding: 0.5rem 1.25rem 1.25rem 1.25rem;
transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out, opacity 0.3s ease-in-out 0.1s;
} @media (max-width: 600px) {
.vro-faq-product .vro-faq-question button { padding: 1rem calc(1rem + 1.25em) 1rem 1rem;
}
.vro-faq-product .vro-faq-question button::after {
font-size: 1.25em;
right: 1rem; }
}.elementor-widget-video .elementor-widget-container,.elementor-widget-video:not(:has(.elementor-widget-container)){overflow:hidden;transform:translateZ(0)}.elementor-widget-video .elementor-wrapper{aspect-ratio:var(--video-aspect-ratio)}.elementor-widget-video .elementor-wrapper iframe,.elementor-widget-video .elementor-wrapper video{background-color:#000;border:none;display:flex;height:100%;width:100%}.elementor-widget-video .elementor-open-inline .elementor-custom-embed-image-overlay{background-position:50%;background-size:cover;inset:0;position:absolute}.elementor-widget-video .elementor-custom-embed-image-overlay{cursor:pointer;text-align:center}.elementor-widget-video .elementor-custom-embed-image-overlay:hover .elementor-custom-embed-play i{opacity:1}.elementor-widget-video .elementor-custom-embed-image-overlay img{aspect-ratio:var(--video-aspect-ratio);display:block;-o-object-fit:cover;object-fit:cover;-o-object-position:center center;object-position:center center;width:100%}.elementor-widget-video .e-hosted-video .elementor-video{-o-object-fit:cover;object-fit:cover}.e-con-inner>.elementor-widget-video,.e-con>.elementor-widget-video{width:var(--container-widget-width);--flex-grow:var( --container-widget-flex-grow )}.elementor-button.elementor-hidden,.elementor-hidden{display:none}.e-form__step{width:100%}.e-form__step:not(.elementor-hidden){display:flex;flex-wrap:wrap}.e-form__buttons{flex-wrap:wrap}.e-form__buttons,.e-form__buttons__wrapper{display:flex}.e-form__indicators{align-items:center;display:flex;flex-wrap:nowrap;font-size:13px;justify-content:space-between;margin-bottom:var(--e-form-steps-indicators-spacing)}.e-form__indicators__indicator{align-items:center;display:flex;flex-basis:0;flex-direction:column;justify-content:center;padding:0 var(--e-form-steps-divider-gap)}.e-form__indicators__indicator__progress{background-color:var(--e-form-steps-indicator-progress-background-color);border-radius:var(--e-form-steps-indicator-progress-border-radius);overflow:hidden;position:relative;width:100%}.e-form__indicators__indicator__progress__meter{background-color:var(--e-form-steps-indicator-progress-color);border-radius:var(--e-form-steps-indicator-progress-border-radius);color:var(--e-form-steps-indicator-progress-meter-color);height:var(--e-form-steps-indicator-progress-height);line-height:var(--e-form-steps-indicator-progress-height);padding-right:15px;text-align:right;transition:width .1s linear;width:var(--e-form-steps-indicator-progress-meter-width,0)}.e-form__indicators__indicator:first-child{padding-left:0}.e-form__indicators__indicator:last-child{padding-right:0}.e-form__indicators__indicator--state-inactive{color:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-inactive [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-inactive-secondary-color,#fff)}.e-form__indicators__indicator--state-inactive object,.e-form__indicators__indicator--state-inactive svg{fill:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-active{border-color:var(--e-form-steps-indicator-active-secondary-color,#fff);color:var(--e-form-steps-indicator-active-primary-color,#39b54a)}.e-form__indicators__indicator--state-active [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active object,.e-form__indicators__indicator--state-active svg{fill:var(--e-form-steps-indicator-active-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed{color:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator--state-completed [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator__label{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator--shape-none{background-color:initial;color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed object,.e-form__indicators__indicator--state-completed svg{fill:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator__icon{align-items:center;border-style:solid;border-width:1px;display:flex;font-size:var(--e-form-steps-indicator-icon-size);height:var(--e-form-steps-indicator-padding,30px);justify-content:center;margin-bottom:10px;overflow:hidden;width:var(--e-form-steps-indicator-padding,30px)}.e-form__indicators__indicator__icon img,.e-form__indicators__indicator__icon object,.e-form__indicators__indicator__icon svg{height:auto;width:var(--e-form-steps-indicator-icon-size)}.e-form__indicators__indicator__icon .e-font-icon-svg{height:1em}.e-form__indicators__indicator__number{align-items:center;border-style:solid;border-width:1px;display:flex;height:var(--e-form-steps-indicator-padding,30px);justify-content:center;margin-bottom:10px;width:var(--e-form-steps-indicator-padding,30px)}.e-form__indicators__indicator--shape-circle{border-radius:50%}.e-form__indicators__indicator--shape-square{border-radius:0}.e-form__indicators__indicator--shape-rounded{border-radius:5px}.e-form__indicators__indicator--shape-none{border:0}.e-form__indicators__indicator__label{text-align:center}.e-form__indicators__indicator__separator{background-color:#babfc5;height:var(--e-form-steps-divider-width);width:100%}.e-form__indicators--type-icon,.e-form__indicators--type-icon_text,.e-form__indicators--type-number,.e-form__indicators--type-number_text{align-items:flex-start}.e-form__indicators--type-icon .e-form__indicators__indicator__separator,.e-form__indicators--type-icon_text .e-form__indicators__indicator__separator,.e-form__indicators--type-number .e-form__indicators__indicator__separator,.e-form__indicators--type-number_text .e-form__indicators__indicator__separator{margin-top:calc(var(--e-form-steps-indicator-padding, 30px) / 2 - var(--e-form-steps-divider-width, 1px) / 2)}.elementor-field-type-hidden{display:none}.elementor-field-type-html{display:inline-block}.elementor-field-type-tel input{direction:inherit}.elementor-field-type-recaptcha_v3 .elementor-field-label{display:none}.elementor-field-type-recaptcha_v3 .grecaptcha-badge{z-index:1}.elementor-button .elementor-form-spinner{order:3}.elementor-form .elementor-button .elementor-button-content-wrapper{align-items:center}.elementor-form .elementor-button .elementor-button-text{white-space:normal}.elementor-form .elementor-button svg{height:auto}.elementor-form .elementor-button .e-font-icon-svg{height:1em}.elementor-form .elementor-button .elementor-button-content-wrapper{gap:5px}.elementor-form .elementor-button .elementor-button-icon,.elementor-form .elementor-button .elementor-button-text{flex-grow:unset;order:unset}.elementor-select-wrapper .select-caret-down-wrapper{font-size:11px;inset-inline-end:10px;pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.elementor-select-wrapper .select-caret-down-wrapper svg{aspect-ratio:unset;display:unset;width:1em;fill:currentColor;overflow:visible}.elementor-select-wrapper .select-caret-down-wrapper i{font-size:19px;line-height:2}.elementor-select-wrapper.remove-before:before{content:""!important}.elementor-message-svg:before{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxMSIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDE0IDExIj48cGF0aCBmaWxsPSIjMDA4QTIwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00Ljc1IDguMTUgMS42IDUgLjU1IDYuMDVsNC4yIDQuMiA5LTlMMTIuNy4yeiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9zdmc+");background-position:50%;background-repeat:no-repeat;content:"";height:1em;width:1em}[data-elementor-type=popup] .elementor-section-wrap:not(:empty)+#elementor-add-new-section,[data-elementor-type=popup]:not(.elementor-edit-area){display:none}.elementor-popup-modal.dialog-type-lightbox{background-color:transparent;display:flex;pointer-events:none;-webkit-user-select:auto;-moz-user-select:auto;user-select:auto}.elementor-popup-modal .dialog-buttons-wrapper,.elementor-popup-modal .dialog-header{display:none}.elementor-popup-modal .dialog-close-button{display:none;inset-inline-end:20px;margin-top:0;opacity:1;pointer-events:all;top:20px;z-index:9999}.elementor-popup-modal .dialog-close-button svg{fill:#1f2124;height:1em;width:1em}.elementor-popup-modal .dialog-widget-content{background-color:#fff;border-radius:0;box-shadow:none;max-height:100%;max-width:100%;overflow:visible;pointer-events:all;width:auto}.elementor-popup-modal .dialog-message{display:flex;max-height:100vh;max-width:100vw;overflow:auto;padding:0;width:640px}.elementor-popup-modal .elementor{width:100%}