﻿/*PER ONE DAY*/
.shuttle-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    padding: 25px;
    margin-top: 20px;
}

.shuttle-card2 {
    background: #fff;
    border: 1px solid #E60012;
    padding: 25px;
    margin-top: 20px;
    font-weight:900;
    margin-bottom:20px;
}

.shuttle-card h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
}

.shuttle-info {
    font-size: 14px;
    color: black;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align:center;
}


.shuttle-selector {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 300px;
    gap: 10px;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto;
}

    .shuttle-selector li {
        flex: 1;
        min-width: 140px;
        

    }

    .shuttle-selector input[type="radio"] {
        display: none;
    }


    .shuttle-selector label {
        display: block;
        padding: 12px 10px;
        border: 1px solid #e0e0e0;
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.2s ease;
        
    }


        .shuttle-selector label:hover {
            border-color: #000;
        }


    .shuttle-selector input[type="radio"]:checked + label {
        background: #000;
        color: #fff;
        border-color: #000;
    }

@media (max-width: 600px) {
    .shuttle-selector {
        flex-direction: column;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

        .shuttle-selector li {
            width: 100%;
            
        }
}

.status-msg {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.butt_sec {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.navetta_zone{
    margin-bottom:20px;
}
/*PER ONE DAY*/
