.container-sotto-menu {
    display: flex;
    width: 100%;
    margin-top: 20px;
    padding: 0 10% 0 10%;
}

.sotto-menu-mercati {
    display: flex;
    border-bottom: 1px solid #d8d8d8;
    flex-grow: 1;
    min-height: 50px;
    margin-top: 32px;
    flex-wrap: wrap;
}

    .sotto-menu-mercati a {
        cursor: pointer;
        font-size: 15px;
        color: #000000;
        border-left: 1px solid #d8d8d8;
        display: flex;
        flex-grow: 1;
        justify-content: center;
        flex-direction: row;
        padding-top: 15px;
    }

        .sotto-menu-mercati a span {
            display: flex;
            flex-direction: column;
            font-weight: 600;
        }

            .sotto-menu-mercati a span::after {
                content: attr(data-text);
                content: attr(data-text) / "";
                height: 0;
                visibility: hidden;
                overflow: hidden;
                user-select: none;
                pointer-events: none;
                font-weight: 600;
            }
        
        .sotto-menu-mercati a:not(:first-child) {
            border-left: 1px solid #d8d8d8;
        }

        .sotto-menu-mercati a:last-child {
            border-right: 1px solid #d8d8d8;
        }

        .sotto-menu-mercati span:hover, .sotto-menu-mercati a:hover span {
            font-weight: 700;
            color: #000000;
        }

.fa-circle {
    font-size: 17px;
    margin-right: 8px;
    color: #CCCBCB;
}

.active-icon {
    color: #87C668;
}

.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);
    }
}