@charset "UTF-8";
/* CSS Document */
* {
    font-size: 14px;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #888da8;
}
body {
    background-color: #fff;
}
a {
    cursor: pointer;
    color: #515365;
    transition: all .2s ease-in-out;
}
a:not(.noPointer):hover {
    color: #005a78;
}
a:active {
    color: #194654;
}
p, pre {
    line-height: 20px;
}
span {
    color: #999;
}
pre {
    white-space: pre-line;
}

#page {
    min-width: 1024px;
}
#page > .pageContainer {
    margin: 60px auto 0px;
    position: relative;
}
.pageContainer {
    max-width: 1280px;
    min-width: 1024px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.pageContainer > .content {
    margin: 0px 40px;
}
#page > .pageContainer > .content {
    margin: 80px 40px;
}

#navBar {
    height: 60px;
    background-color: #515365;
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 11;
}
#navBar #logo {
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    line-height: 60px;
    float: left;
}
#navBar #logo:hover {
    color: #eaec2f;
}
#navBar input[type="submit"] {
    float: right;
    height: 60px;
    padding: 0px 20px;
    letter-spacing: 1px;
    font-weight: 700;
    background-color: #515365;
    color: #fff;
    cursor: pointer;
    transition: .2s all ease-in-out;
}
#navBar input[type="submit"]:hover, #indietro:hover {
    color: #515365;
    background-color: #fff;
}
#navBar input[type="text"] {
    padding: 10px;
    margin: 11px 45px 11px 0px;
    float: left;
}
#navBar .sep {
    float: left;
    width: 1px;
    background-color: #fff;
    height: 60px;
    margin: 0px 45px;
}
#navBar a:not(#logo):not(#indietro) {
    float: left;
    height: 60px;
    padding: 0px 20px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #515365;
    background-color: #eaec2f;
    line-height: 60px;
    text-transform: uppercase;
}
#navBar a:not(#logo):not(#indietro):hover {
    color: #fff;
    background-color: #0fab95;
}
#indietro {
    width: 60px;
    height: 60px;
    line-height: 60px;
    float: right;
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

main table {
    text-align: center;
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
}
main table table {
    border-collapse: collapse;
}
main table table tr:not(:last-of-type) {
    border-bottom: 2px solid #fff;
}
main table tr:nth-of-type(odd) table tr:not(:last-of-type) {
    border-bottom: 2px solid #f8f8f8;
}
main table th {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    background-color: #eee;
    position: relative;
}
main table th a {    
    font-size: 12px;
    display: block;
    position: absolute;
    line-height: 60px;
    text-align: center;
    width: 100%;
    top: 0px;
    left: 0px;
}
main table th a:hover {
    background-color: #0fab95 !important;
}
main table th a:after {
    content: "";
    position: absolute;
    display: block;
    width: 0px;
    height: 0px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #515365;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    transition: .2s all ease-in-out;
}
main table th a:hover:after {
    border-bottom: 5px solid #fff;
}
main table th a.desc:after {
    border-bottom: none;
    border-top: 5px solid #515365;
}
main table th a.desc:hover:after {
    border-top: 5px solid #fff;
}
main > table > tbody > tr:nth-of-type(even) td {
    background-color: #f8f8f8;
}
main > table > tbody > tr:nth-of-type(odd) td {
    background-color: #fff;
}
main table th, main table td {
    padding: 15px;
    transition: .2s all ease-in-out;
}
main table td {
    word-break: break-word;
}
main table:not(.date) tbody tr:hover td {
    background-color: #99cccc;
    color: #fff;
}
main table:not(.date) tbody tr td:hover, main table:not(.date) tbody tr td:hover * {
    background-color: #0fab95 !important;
}
.hov, .hov * {
    background-color: #99cccc !important;
    color: #fff !important;
}
.hov a:after {
    border-bottom: 5px solid #fff;
}
.hov a.desc:after {
    border-bottom: none;
    border-top: 5px solid #fff;
}
main > table > tbody > tr:not(.multi) > td:first-of-type, main > table > tbody > tr > td:first-of-type table td {
    cursor: pointer;
}
table.date tr td:last-of-type {
    transition: .2s all ease-in-out;
    cursor: pointer;
}
table.date tr td:last-of-type:hover {
    transform: scale(1.1);
    background-color: #dc3f3f !important;
    color: #fff;
}
table td:first-of-type.hov table td:hover {
    color: #eaec2f !important;
}

footer {
    margin-bottom: 40px;
}
footer img {
    width: 60px;
    float: left;
    margin-right: 20px;
}
footer .content {
    display: table;
}
footer .content > div {
    display: table-cell;
    vertical-align: middle;
}

#notifiche {
    margin-bottom: 60px;
    display: inline-block;
    position: fixed;
    z-index: 11;
    left: 0px;
    top: 50%;
    transform: translateY(calc(-50% + 40px));
    pointer-events: none;
}
#notifiche > div {
    padding: 20px 0px 20px 20px;
    background-color: red;
    margin-bottom: 20px;
    float: left;
    clear: both;
    transform: translateX(calc(-100% + 58px));
    transition: .4s all ease-in-out;
    pointer-events: all;
    box-shadow: 4px 0px 12px -6px rgba(29,34,41,.2);
}
#notifiche > div:hover {
    transform: none;
}
#notifiche .sedici {
    background-color: #99cccc;
    color: #fff;
}
#notifiche .chiamata {
    background-color: aliceblue;
}
#notifiche .intervento {
    background-color: #eaec2f;
}
#notifiche > div > span {
    display: inline-block;
    width: 58px;
    text-align: center;
}

#paginazione {
    text-align: center;
    position: fixed;
    z-index: 9;
    background-color: #eee;
    line-height: 50px;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%,-50%);
    overflow: hidden;
}
#paginazione a, #paginazione div {
    float: left;
}
#paginazione div {
    margin: 0px 10px;
}
#paginazione a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
}
#paginazione a:hover {
    background-color: rgba(29,33,41,.5);
    color: #fff;
    transform: scale(1.2);
}
.off {
    opacity: .2;
    pointer-events: none;
}

.error {
    box-shadow: 0px 0px 0px 1px #de5944;
}

#ntf {
    position: fixed;
    z-index: 1;
    top: 60px;
    padding: 10px 20px;
    left: 0px;
    width: calc(100% - 40px);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    font-weight: 600;
}

#ntf.consegne {
    background-color: #99cccc;
    color: #fff;
}
#ntf.consegne-datate {
    background-color: #bf301d;
    color: #fff;
}
#ntf.chiamate {
    background-color: aliceblue;
}
#ntf.interventi {
    background-color: #eaec2f;
}
#ntf > a {
    margin-left: 10px;
    font-size: 12px;
}