﻿.titleTemplateModule {
    display: flex;
    justify-content: space-between;
    align-items:center
}
    .titleTemplateModule h3 {
        /*font-size: 20px;*/
        text-align: left;
        position: relative;
        margin: 0 10px 0 0;
        display: inline-block;
        font-weight: 600;
        color: #044d5b;
    }
    .titleTemplateModule .linkToAll {
        font-size: 12px;
        text-decoration: underline;
        word-break: keep-all;
        word-wrap: normal;
        white-space: nowrap;
    }

.titleTemplateModule + .linea {
    height: 2px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top:10px;
}
    .titleTemplateModule + .linea > .orange {
        width: 16px;
        margin-right: 10px;
        background-color: #eb5e46;
        height: 2px;
    }

    .titleTemplateModule + .linea > .azzurro {
        width: 16px;
        margin-right: 10px;
        background-color: #0aa5b3;
        height: 2px;
    }

    .titleTemplateModule + .linea > .gray {
        width: 100%;
        background-color: #ccc;
        height: 1px;
    }


    .titleTemplateModule .linkToAll a:hover {
        opacity: 0.7;
    }
