/*Search Section*/
*{
    max-width: 100vw;
}

body{
    height: 100vh;
    background-image: url("../img/tennis.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.header_area{
    width: 100vw;
    box-shadow: none;
    background-color: transparent;
}

.wrapper{
    margin: 0 auto;
    margin-top: 2em;
    width: 500px;
    max-width: 80vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    background: rgba(212, 216, 216, .9);
    padding: 20px 36px;
    border-radius: 18px;
    align-items: center;
    margin-bottom: 1em;
}

h2{
    font-size: 2em;
    color: #E08644;
}

h4{
    padding: 10px;
    font-size: .7em;
}

.inputBox{
    min-width: 80%;
    font-size: .7em;
    padding: 5px 0px;
}

input{
    padding: 5px 5px;
    border-radius: 8px;
    border: solid 1px #E08644;
    width: 100%;
}

input:focus{
    outline-color: #b36935;
}

a{
    font-size: .7em;
}

.btnAccesso{
    margin: 10px;
    margin-bottom: 30px;
    padding: 10px;
    width: 60%;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    background: #e08644;
    border-radius: 20px;
    border: none;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.btnAccesso:hover{
    border-radius: 13px;
    background: #c4743a;
    color: white;
    scale: 1.05;
}

h5{
    margin: 10px;
    font-size: .7em;
}

.opzioniAccesso{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.opzioniAccesso div{
    min-width: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin: .3em;
    padding: 10px 5px;
    border-radius: 8px;
    background: rgba(255, 255, 255);
    /*border: solid 1px #E08644;*/
    font-size: .7em;
}

.opzioniAccesso img{
    width: 30px;
    max-width: 30%;
}

.opzioniAccesso div:hover{
    cursor: pointer;
    background: #F4F5F5;
    color: #E08644;
    scale: 1.05;
}

.opzioniAccesso div:hover img{
    filter: invert(80%) sepia(30%) saturate(5723%) hue-rotate(330deg) brightness(94%) contrast(86%);
}

h5 a{
    font-size: 1em;
}

@media (max-width: 767px) {
    .header_area .container .header-wrapper .header_top{
        justify-content: space-around;
    }

    .container .header_top{
        flex-direction: row;
    }

    .container .header_top .header_btn{
        flex-direction: row;
    }

    .container .header_top .header_btn .btns{
        font-size: .7em;
    }

    .logo{
        width: 70px;
    }

    .btnAccesso{
        width: 80%;
    }

    .opzioniAccesso div{
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .opzioniAccesso img{
        width: 4em;
    }
}

@media (max-width: 530px) {
    .opzioniAccesso div{
        font-size: .5em;
    }
}

@media (max-width: 340px) {

}