/* HEADER */

.header{

    background: transparent;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;

}

.header img{
    padding-left: 20px;
}

.header ul{
    display: flex;
    flex-direction: row;
}

.header nav{
    display: flex;
}

.header li{
    margin: 0 15px;
}

.header li:first-child{
    margin-left: 0;
}

.header li:last-child{
    margin-right: 20px;
}

.header select{
    -webkit-appearance: none;
    outline: none;
    background: transparent !important;
    border: none;
    font-size: 100%;
    width: 60px;
    color: #fcfcfc;
    /* background: none !important; */
}

.header button{
    border: none;
    border-radius: 10px 0px 10px 0px;
    background-color: #175689;
    color: #fff;
    padding: 5px 20px;
}

.dropMenu ul{
    z-index: 9999999;
    display: none;
    position: fixed;
    top: 62px;
    right: 166px;
    background-color: #fff;

    padding: 10px;
    border-radius: 15px 0px;
    -webkit-box-shadow: 1px 0px 16px 4px rgb(139, 139, 139);
    -moz-box-shadow: 1px 0px 16px 4px rgb(139, 139, 139);
    box-shadow: 1px 0px 16px 4px rgb(139, 139, 139);
}

.dropMenu li{
    margin: 10px 15px;
}

.dropMenu li a{
    color: #8c8c8c !important;
}

.dropMenu:hover ul{
    display: initial;
}

.mobile{
    display: none;
}

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

    .desktop{
        display: none;
    }

    .mobile{
        display: inherit;
        display: flex;
        flex-direction: row;
    }

    .header li:first-child{
        margin-left: 0;
    }
    
    .header li:last-child{
        margin-right: 0;
    }

    .header img{
        width: 33%;
    }

    .header{
        flex-direction: row;
    }

    .header ul{
        flex-direction: column;
    }

    .primeiraLinha{
        flex-direction: row !important;
        margin-top: 15px;
        margin-right: 10px;
    }

    .segundaLinha{
        flex-direction: row !important;
        justify-content: center;
        margin-top: 15px;
    }

    .dropMenu ul {
        z-index: 9999999;
        display: none;
        position: fixed;
        top: 62px;
        right: 12px;
        background-color: #fff;
        padding: 10px;
        border-radius: 15px 0px;
        -webkit-box-shadow: 1px 0px 16px 4px rgb(139, 139, 139);
        -moz-box-shadow: 1px 0px 16px 4px rgb(139, 139, 139);
        box-shadow: 1px 0px 16px 4px rgb(139, 139, 139);
    }
}