.secondo-livello-mobile {
    display: none;
}

.nomi-mercati {
    display: flex;
    align-items: stretch;
    padding: 0 10% 0 10%;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

    .nomi-mercati a {
        display: flex;
        align-items: center;
        background-color: #EAEAE9;
        font-weight: 600;
        color: #030504 !important;
        text-align: center;
        font-size: 15px;
        flex-grow: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 60px;
    }

        .nomi-mercati a:hover:not(.active-mercato) {
            background-color: #BDD78E;
        }
        
.active-mercato {
    background-color: #87C668 !important;
    color: #FFFFFF !important;
}

@media(max-width: 768px) {
    .nomi-mercati {
        display: none;
    }

    .secondo-livello-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5em;
        padding: 15px 10% 15px 10%;
    }

        .secondo-livello-mobile select {
            font-weight: 600;
            padding: 5px 5px 5px 5px;
            background-color: #87C668;
            color: #030504;
            min-height: 50px;
            outline: #87C668;
            width: 100%;
            text-align: center;
        }

            .secondo-livello-mobile select option {
                font-weight: 300;
                padding: 5px 5px 5px 5px;
                background-color: #EAEAE9;
                color: #030504;
            }
}

.errorLabel {
    color: red;
}

.submitSection {
    display: flex;
    flex-direction: column;
}

.loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    width: 25px;
    height: 25px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    margin: 0 auto;
    margin-bottom: 10px;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}