﻿/* Flight Widget - Ultra Premium & Easy to Use */
/* ============================================== */

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatPlane {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(2deg);
    }

    75% {
        transform: translateY(5px) rotate(-2deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes swapRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(180deg);
    }
}

/* Widget Container */
.flight-widget-section {
    background: linear-gradient(-45deg, #0f172a, #1e3a5f, #0f172a, #1e293b);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    will-change: background-position;
    padding: 2.5rem 1rem;
    position: relative;
    overflow: hidden;
}

.flight-widget-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(176, 42, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(176, 42, 55, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Main Widget Box */
.flight-widget {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 28px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow:
        0 32px 64px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(176, 42, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(176, 42, 55, 0.15);
    position: relative;
}

/* Widget Header */
.widget-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.flight-widget-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.title-icon {
    font-size: 2rem;
    animation: floatPlane 3s ease-in-out infinite;
    will-change: transform;
    transform-style: preserve-3d;
}

.widget-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Trip Toggle - Premium Pills */
.trip-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    justify-content: center;
    background: #f1f5f9;
    padding: 0.3rem;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.trip-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    /* Improved contrast: was #64748b, now darker for WCAG compliance */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trip-btn i {
    font-size: 0.85rem;
}

.trip-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, #C93545 100%);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(176, 42, 55, 0.35);
}

.trip-btn:hover:not(.active) {
    color: var(--primary);
    background: rgba(176, 42, 55, 0.1);
}

/* Form Layout */
.flight-widget-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Location Section with Swap */
.location-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.75rem;
    align-items: end;
}

.location-input {
    position: relative;
}

.swap-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.swap-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
    transform: rotate(180deg);
}

.swap-btn.swapped {
    animation: swapRotate 0.3s ease;
}

/* Date Section */
.date-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Travelers Section */
.travelers-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Form Groups */
.flight-widget .form-group {
    position: relative;
}

.flight-widget .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flight-widget .form-group label i {
    color: var(--gold);
    font-size: 0.85rem;
}

.flight-widget .form-group input,
.flight-widget .form-group select {
    width: 100%;
    padding: 1rem 1.1rem;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: white;
    color: var(--primary);
}

.flight-widget .form-group input:hover,
.flight-widget .form-group select:hover {
    border-color: #cbd5e1;
}

.flight-widget .form-group input:focus,
.flight-widget .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(176, 42, 55, 0.15);
}

.flight-widget .form-group input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Input hint */
.input-hint {
    display: none;
    position: absolute;
    bottom: -18px;
    left: 0;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 500;
}

.form-group.focused .input-hint {
    display: block;
}

/* Error state */
.form-group.error input {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

/* Quick Date Buttons */
.quick-dates {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quick-date,
.quick-date-return {
    padding: 0.35rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: white;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-date:hover,
.quick-date-return:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
}

/* Travelers Display & Dropdown */
.travelers-display {
    width: 100%;
    padding: 1rem 1.1rem;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 500;
    background: white;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.travelers-display:hover {
    border-color: #cbd5e1;
}

.travelers-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 100;
    padding: 1rem;
    margin-top: 6px;
    display: none;
}

.travelers-dropdown.show {
    display: block;
    animation: slideDown 0.2s ease;
}

.traveler-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.traveler-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

.traveler-label i {
    color: var(--gold);
}

.traveler-counter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.counter-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--primary);
}

.counter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
}

.counter-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 24px;
    text-align: center;
}

/* Search Button */
.flight-widget-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #C93545 50%, var(--gold) 100%);
    background-size: 200% 200%;
    color: var(--primary);
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: 0 6px 20px rgba(176, 42, 55, 0.35);
}

.flight-widget-btn span:first-of-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
}

.flight-widget-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(176, 42, 55, 0.45);
}

.flight-widget-btn:active {
    transform: translateY(-1px);
}

/* Autocomplete Dropdown */
.flight-widget-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    margin-top: 6px;
}

.flight-widget-dropdown.show {
    display: block;
    animation: slideDown 0.2s ease;
}

.flight-widget-dropdown-item {
    padding: 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.flight-widget-dropdown-item:last-child {
    border-bottom: none;
}

.flight-widget-dropdown-item:hover {
    background: linear-gradient(135deg, rgba(176, 42, 55, 0.08) 0%, rgba(176, 42, 55, 0.03) 100%);
}

.flight-widget-dropdown-item .code {
    font-weight: 800;
    color: white;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--gold) 0%, #9A2030 100%);
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    min-width: 50px;
    text-align: center;
}

.airport-info {
    display: flex;
    flex-direction: column;
}

.airport-name {
    font-weight: 600;
    color: var(--primary);
}

.airport-city {
    font-size: 0.8rem;
    color: #64748b;
}

/* Trust Badges */
.flight-widget-trust {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.flight-widget-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: #f8fafc;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.flight-widget-badge:hover {
    background: rgba(176, 42, 55, 0.1);
}

.flight-widget-badge i {
    color: var(--gold);
}

/* ============================================== */
/* RESULTS SECTION */
/* ============================================== */

.widget-results-container {
    max-width: 900px;
    margin: 2rem auto 0;
    background: #f8fafc;
    border-radius: 20px;
}

.widget-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
}

.widget-results-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.widget-results-header p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
}

.new-search-btn {
    padding: 0.6rem 1.25rem;
    border: 2px solid var(--gold);
    border-radius: 50px;
    background: white;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.new-search-btn:hover {
    background: var(--gold);
    color: var(--primary);
}

/* Filters Bar */
.widget-filters-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 14px;
    margin: 1rem 1.5rem;
    border: 1px solid #e2e8f0;
}

.widget-filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-filter-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.widget-filter-group label i {
    color: var(--gold);
}

.widget-filter-group select {
    padding: 0.5rem 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    min-width: 160px;
}

.widget-filter-group select:focus {
    outline: none;
    border-color: var(--gold);
}

/* Flight Cards */
.widget-results-grid {
    padding: 0 1.5rem 1.5rem;
}

.widget-flight-card {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 160px 1fr 140px;
    gap: 1.25rem;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.widget-flight-card:hover {
    border-color: rgba(176, 42, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Best Deal Badge */
.widget-flight-card.best-deal {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fffbeb 0%, white 100%);
}

.best-deal-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, #C93545 100%);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(176, 42, 55, 0.4);
}

.widget-airline-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.widget-airline-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: white;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.widget-airline-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.widget-airline-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.widget-flight-number {
    font-size: 0.8rem;
    color: #64748b;
}

.widget-flight-times {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.widget-time-block {
    text-align: center;
}

.widget-time-block .time {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.widget-time-block .airport {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.widget-flight-path {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0 1rem;
}

.widget-path-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), #e5e7eb, var(--gold));
    position: relative;
}

.widget-path-line::after {
    content: '✈';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    color: var(--gold);
    background: white;
    padding: 0 0.3rem;
}

.widget-flight-path .duration {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 700;
}

.widget-flight-path .stops {
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
}

.widget-flight-path .stops.has-stops {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.widget-price-section {
    text-align: right;
}

.widget-price-section .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.widget-price-section .price-label {
    font-size: 0.8rem;
    color: #64748b;
}

.widget-book-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #C93545 100%);
    color: var(--primary);
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
    width: 100%;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(176, 42, 55, 0.3);
}

.widget-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(176, 42, 55, 0.4);
}

/* Loading Animation */
.widget-loading {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.widget-loading-plane {
    font-size: 4rem;
    animation: floatPlane 2s ease-in-out infinite;
    will-change: transform;
    transform-style: preserve-3d;
    margin-bottom: 1rem;
}

.widget-loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #e5e7eb;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.widget-loading-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.widget-loading-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.widget-loading-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 280px;
}

.widget-loading-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.widget-loading-step:nth-child(1) {
    animation-delay: 0.2s;
}

.widget-loading-step:nth-child(2) {
    animation-delay: 0.6s;
}

.widget-loading-step:nth-child(3) {
    animation-delay: 1s;
}

.widget-loading-step:nth-child(4) {
    animation-delay: 1.4s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.widget-loading-step i {
    color: var(--gold);
    font-size: 1rem;
}

.widget-loading-step span {
    color: #475569;
    font-size: 0.9rem;
}

/* No Results */
.widget-no-results {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 16px;
}

.widget-no-results i {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.widget-no-results h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.widget-no-results p {
    color: #64748b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .flight-widget-section {
        padding: 1.5rem 0.75rem;
    }

    .flight-widget {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .flight-widget-title {
        font-size: 1.4rem;
    }

    .location-section {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .swap-btn {
        width: 40px;
        height: 40px;
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .swap-btn:hover {
        transform: rotate(270deg);
    }

    .date-section,
    .travelers-section {
        grid-template-columns: 1fr;
    }

    .trip-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .quick-dates {
        flex-wrap: wrap;
    }

    .flight-widget-trust {
        gap: 0.5rem;
    }

    .flight-widget-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .widget-flight-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
        padding: 0;
        overflow: hidden;
    }

    .widget-airline-info {
        justify-content: center;
        background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
        padding: 1.25rem;
    }

    .widget-airline-info .widget-airline-name {
        color: white;
    }

    .widget-airline-info .widget-flight-number {
        color: rgba(255, 255, 255, 0.7);
    }

    .widget-flight-times {
        padding: 1.25rem;
        background: white;
    }

    .widget-price-section {
        text-align: center;
        background: #f8fafc;
        padding: 1.25rem;
        border-top: 1px solid #e2e8f0;
    }

    .widget-results-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .widget-filters-bar {
        flex-direction: column;
        margin: 1rem;
    }

    .widget-filter-group {
        width: 100%;
        justify-content: space-between;
    }

    .widget-filter-group select {
        flex: 1;
    }

    .best-deal-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Prevent iOS zoom */
@media screen and (-webkit-min-device-pixel-ratio: 0) {

    .flight-widget input[type="text"],
    .flight-widget input[type="date"],
    .flight-widget select {
        font-size: 16px;
    }
}

/* Remove tap highlight */
.flight-widget-dropdown-item,
.trip-btn,
.flight-widget-btn,
.widget-book-btn,
.swap-btn,
.quick-date,
.quick-date-return,
.counter-btn {
    -webkit-tap-highlight-color: transparent;
}