.header-fisso {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
body {
    padding-top: 80px;
}

/* Hover righe tabella */

.tabella-hover table tbody tr {
    transition:
        background-color 0.2s ease,
        transform 0.15s ease,
        box-shadow 0.2s ease;
}

/* Effetto hover */

.tabella-hover table tbody tr:hover {
    background-color: rgba(243, 144, 48, 0.08) !important;

    box-shadow:
        inset 4px 0 0 #F39030;

    cursor: pointer;
}

.container-gradiente {
    background: linear-gradient(
        135deg,
        #e7ebf0 0%,
        #a2b1bf 100%
    );

    padding-top: 150px;

    padding-bottom: 100px;

    box-sizing: border-box;
}