*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p{
    font-size: 1em;
}

.booking_area .container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.container-orario{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    height: 475px;
    max-width: 475px;
    justify-content: flex-start;
    background: white;
    text-align: left;
}

.orario{
    border: solid tomato 1px;
    border-radius: 8px;
    width: 90px;
    height: 40px;
    margin: 10px;
}

.link_pos {
    text-decoration: underline;
    cursor:pointer;
}

form{
    padding: 10px;
}

input [type="radio"]{
    list-style-type: none;
}

input{
    background: #e08644;
    padding: 5px;
    border-radius: 8px;
    border: none;
    transition: .2s ease-in-out;
}

/*Capire se possibile farlo solo se attivo*/
input:hover{
    background: #cf7434;
    color: white;
    scale: 1.03;
}

.prenotaBtn{
    width: 100%;
    text-align: center;
    padding: 10px;
}

.prenotaBtn input{
    text-align: center;
}

.form_prenotazione{
    padding: 10px;
}

.sceltaMultipla > input{
    visibility: hidden;
    position: absolute;
    padding: 10px;
}

.sceltaMultipla > input + div{
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    background: #e08644;
    padding: 5px 10px;
    margin: 5px 0px 5px 0px;
    min-width: 60px;
}

.sceltaMultipla > input:checked + div{
    background: #ba6223;
    color: white;
    box-shadow: 0 0 1px 3px #9e4d13 inset;
}

.disabilitato{
    background: gainsboro;
    pointer-events: none;
}

.code {
    padding: 20px;
    font-size: 1.7em;
    text-align: center;
}

.invia {
    font-family: var(--poppins);
    font-size: 14px;
    font-weight: 500;
    color: #f6f6f7;
    display: inline-block;
    text-align: center;
    background: #e08644;
    border: 1px solid #211745;
    border-radius: 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 6px 20px;
}

.sports_widget_btn button{
    border: none;
    transition: .2s ease-in-out;
}

.sports_widget_btn button:hover{
    background: #cf7434;
    color: white;
    scale: 1.03;
    border-radius: 14px;
}

.sports_widget_btn .act_selected{
    background: #ba6223;
    color: white;
    box-shadow: 0 0 1px 3px #9e4d13 inset;
}

@media only screen and (max-width: 1000px) {

    body{
        width: 100%;
    }

    .container-orario{
        text-align: left;
    }

    .booking_area .container{
        flex-direction: column;
    }
}