.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;
    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, .sotto-menu-mercati a span { /*  Aggiunto  */
            font-weight: 600;
            color: #000000;
        }
        .sotto-menu-mercati span:hover, .sotto-menu-mercati a:hover span {
            font-weight: 700;
            color: #000000;
        }

.fa-circle {
    font-size: 19px;
    margin-right: 15px;
    color: #CCCBCB;
    margin-top: 1px
}

.active-icon {
    color: #87C668;
}

.select-mercato {
    width: fit-content;
    font-weight: 600;
    font-size: 1.3em;
    height: 65px;
}

.select-div {
    padding-right: 10px;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.selectdiv {
    min-width: 160px;
    margin-right: 10px;
    height: 50px;
    position: relative;
}

    .selectdiv:after {
        content: '\f078';
        font: normal normal normal 17px/1 FontAwesome;
        color: #00783D;
        right: 9px;
        top: 13px;
        position: absolute;
        pointer-events: none;
    }

/* IE11 hide native button (thanks Matt!) */
.selectdiv select::-ms-expand {
    display: none;
}

.selectdiv select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    max-width: 190px;
    height: 35px;
    float: right;
    margin: 5px 0px;
    padding: 0px 15px;
    font-size: 15px;
    line-height: 1.75;
    color: #333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #00783D;
    -ms-word-break: normal;
    word-break: normal;
    border-radius: 10px;
    outline: #00783D;
}

.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);
    }
}
