* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
input[type="text"], textarea, input[type="email"], input[type="submit"], button {
    -webkit-appearance: none;
}
html, body {
	height:100%;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    overflow-x: hidden;
    background-color: #eeeeee;
}
a {
	text-decoration:none;
	transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
strong {
    font-weight:600;
}
.clear {
    clear:both;
}
h3 {
    text-align:center;
    text-transform:uppercase;

}

.dialog {
    z-index: 0 !important;
    opacity: 0 !important;
}

/*****  LOGIN PAGE  *****/
.bgLogin {
    background-color: #222;
}
.loginContent {
    width: 100%;
    display: block;
    margin: auto;
    height: 100%;
    padding: 5%;
}
.logoLogin {
    width:100%;
    max-width:150px;
    display:block;
    margin:auto;
}
.formLogin {
    width: 90%;
    max-width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}
    .formLogin .inputLogin {
        width: 100%;
        border-radius: 40px;
        font-family: 'Poppins', sans-serif;
        color:#fff;
        font-size:16px;
        padding:10px 20px 10px 70px;
    }
    .formLogin .inputWrapper {
        position: relative;
        width: 100%;
        margin-bottom: 10px;
    }
        .formLogin .loginIcon:before {
            content: "\f007";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: #fff;
            font-size: 25px;
            position: absolute;
            top:50%;
            left:30px;
            transform:translateY(-50%);
            -webkit-transform:translateY(-50%);
        }
        .formLogin .pswIcon:before {
            content: "\f13e";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: #fff;
            font-size: 25px;
            position: absolute;
            top: 50%;
            left: 30px;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
        }
    .formLogin .loginUser {
        background-color: #a1a1a1;
        border: 0px;
        font-family: 'Poppins', sans-serif;
    }
    .formLogin .pswUser {
        background-color: #222;
        border: 2px solid #fff;
    }
    .formLogin ::-webkit-input-placeholder {
        color: #fff !important;
        opacity: 1 !important;
    }
    .formLogin ::-moz-placeholder {
        color: #fff !important;
        opacity: 1 !important;
    }

    .formLogin :-ms-input-placeholder {
        color: #fff !important;
        opacity: 1 !important;
    }
    .formLogin :-moz-placeholder {
        color: #fff !important;
        opacity: 1 !important;
    }
    .formLogin .loginSubmit {
        background-color: #65b22e;
        border: 0px;
        padding: 10px 20px;
        cursor: pointer;
    }
    .formLogin .loginSubmit:hover {
        background-color: #549f1f;
    }
.showPsw {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 20px;
    color: #65b22e;
    cursor:pointer;
}
.pswDimenticata {
    color:#fff;
    text-align:center;
    margin-top:50px;
    display:block;
}
.errore {
    color: #fff;
    text-align: center;
    margin-top: 10px;
    display: block;
    font-size:12px;
}
    .errore a:link, .errore a:visited {
        color: #fa6908;
    }
    .errore a:hover {
        color: #fff;
    }
    .pswDimenticata:hover {
        color: #65b22e;
    }
.tastoAssistenza {
    width: 100%;
    max-width: 230px;
    border-radius: 40px;
    color: #fff;
    font-size: 13px;
    background-color: #65b22e;
    padding: 12px;
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    text-align: center;
    text-transform: uppercase;
}
    .tastoAssistenza:hover {
        background-color: #549f1f;
    }

/*******  HEADER NAVIGATION  *******/
nav {
    background-color: #222;
    width: 100%;
    height: 70px;
    top: 0px;
    left: 0px;
    position: fixed;
    z-index: 100;
    border-bottom: 1px solid #000;
}
.hamburger {
    padding: 23px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
    .hamburger:hover {
        opacity: 0.7;
    }
    .hamburger.is-active:hover {
        opacity: 0.7;
    }
    .hamburger.is-active .hamburger-inner,
    .hamburger.is-active .hamburger-inner::before,
    .hamburger.is-active .hamburger-inner::after {
        background-color: #fff;
    }
.hamburger-box {
    width: 35px;
    height: 24px;
    display: inline-block;
    position: relative;
}
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
    .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
        width: 35px;
        height: 4px;
        background-color: #fff;
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }
        .hamburger-inner::before, .hamburger-inner::after {
            content: "";
            display: block;
        }
        .hamburger-inner::before {
            top: -10px;
        }
        .hamburger-inner::after {
            bottom: -10px;
        }
.hamburger--slider .hamburger-inner {
    top: 2px;
}
    .hamburger--slider .hamburger-inner::before {
        top: 10px;
        transition-property: transform, opacity;
        transition-timing-function: ease;
        transition-duration: 0.15s;
    }
    .hamburger--slider .hamburger-inner::after {
        top: 20px;
    }
.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
    .hamburger--slider.is-active .hamburger-inner::before {
        transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
        opacity: 0;
    }
    .hamburger--slider.is-active .hamburger-inner::after {
        transform: translate3d(0, -20px, 0) rotate(-90deg);
    }
.avatarCircle {
    border-radius: 50%;
    float: right;
    width: 50px;
    height: 50px;
    background-size:cover;
    background-position:center center;
    margin: 10px 20px 0 0;
    border: 2px solid #fff;
}
.chatDaniele {
    float: right;
    margin: 19px 20px 0 0;
    border: 2px solid #fff;
    text-transform: uppercase;
    padding: 11px 10px 11px 25px;
    font-size: 9px;
    font-weight:500;
    border-radius: 20px;
    position: relative;
    display: block;
    color: #fff;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
    .chatDaniele:hover {
        color: #65b22e;
        border: 2px solid #65b22e;
    }
    .chatDaniele:link i, .chatDaniele:visited i {
        color: #65b22e;
        font-size: 16px;
        position:absolute;
        left:7px;
        top:7px;
    }
.notification {
    position: relative;
    width: 37px;
    height: 37px;
    background-color: #65b22e;
    border-radius: 4px;
    border: 1px solid #2b5d07;
    color: #fff;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    float: right;
    margin: 20px 20px 0 0;
    cursor: pointer;
}
    .notification:hover {
        background-color: #fa6908;
        border: 1px solid #444;
    }
    .notification i {
        font-size: 15px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
    .notification .numberNotification {
        position: absolute;
        top: -10px;
        right: -10px;
        padding: 3px 6px;
        line-height: 100%;
        border: 1px #fff solid;
        border-radius: 60px;
        background-color: #e11c1c;
        font-size: 11px;
    }
#notificationWindow {
    display:none;
    width: 400px;
    position: absolute;
    top: 64px;
    right: 10px;
    background: #FFF;
    border: 1px solid #cacaca;
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
    z-index: 9999;
}
    #notificationWindow:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        color: transparent;
        border: 10px solid #d8d8d8;
        border-color: transparent transparent #d8d8d8;
        margin-top: -20px;
        margin-left: 361px;
    }
    #notificationWindow h3 {
        background-color: #d8d8d8;
        padding: 13px 10px;
        font-size: 12px;
        border-bottom: 1px solid #cacaca;
        color: #555;
        font-weight: 600;
        letter-spacing: 1px;
    }
.notificationContent {
    width:100%;
    height:380px;
    overflow-y:scroll;
}
.notificationRow {
    width:100%;
    padding:20px 10px;
    border-bottom:1px solid #ccc;
    position:relative;
}
.iconaNotifica {
    width: 30px;
    height: 30px;
    position: relative;
    border-radius: 3px;
    margin-right: 5px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
.iconaVerde {
    background-color: #48a838;
    border: 1px solid #378e29;
}
    .iconaVerde:hover {
        background-color: #378e29;
    }
.iconaRossa {
    background-color: #de3931;
    border: 1px solid #b22821;
}
    .iconaNotifica i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        font-size:9px;
        color:#fff;
    }
.newNotifica {
    background-color: #f5f5f5;
}
.contenutoNotifica {
    display: inline-block;
    width: 280px;
    font-size: 13px;
    vertical-align: top;
    line-height: 16px;
    font-weight: 500;
    color: #555;
}
    .contenutoNotifica span {
        cursor: pointer;
        font-weight: 600;
        color: #fa6908;
        border-bottom: 1px solid #fa6908;
        transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
    }
    .contenutoNotifica span:hover {
        color: #222;
        border-bottom: 1px solid #222;
    }
.etichettaNew {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    border-radius: 3px;
    background-color: #42a132;
    border: 1px solid #318323;
    color: #fff;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1px;
}
.dataNotifica {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 10px;
    font-weight: 500;
    color: #666;
}
#notificationWindow .vediTutte:link, #notificationWindow .vediTutte:visited {
    background-color: #c54242;
    padding: 13px 5px;
    font-size: 12px;
    border-top: 1px solid #cacaca;
    text-align: center;
    width: 100%;
    display: block;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
}

#notificationWindow .vediTutte:hover {
    background-color: #b12d2d;
}
.menu {
    background-color: #333;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 90%;
    height: 100%;
    z-index: 99;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.6), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    padding:15px;
    display:none;
}
    .menu ul {
        margin-top:55px;
    }
        .menu ul li {
            border-bottom:1px solid #444;
        }
        .menu ul li:last-child {
            border-bottom: 0px;
        }
            .menu ul li a:link, .menu ul li a:visited {
                color: #999;
                display: block;
                padding: 13px 15px;
            }
            .menu ul li a:hover {
                background-color: #444;
                text-decoration:none;
            }
            .menu ul li a i {
                margin-right: 5px;
                color: #65b22e;
            }
.tastoAssistenzaMenu {
    width: 70%;
    color: #fff;
    font-size: 13px;
    background-color: #65b22e;
    padding: 12px;
    position: absolute;
    bottom: 20px;
    border-radius: 40px;
    text-align: center;
}

/******* STILE GENERALE PAGINE  *******/
.content {
    width: 96%;
    background-color: #fff;
    padding: 15px;
    margin: 80px 2% 30px 2%;
    border: 1px solid #ccc;
    min-height:100%;
}
.boxDashboard {
    float: left;
    width: 48%;
    border-radius: 3px;
    background-color: #65b22e;
    text-align: center;
    color: #fff;
    padding: 20px;
    margin: 0 1% 6px 1%;
    border: 1px solid #4e971b;
    border-bottom: 5px solid #4e971b;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
    .boxDashboard:hover {
        background-color: #222;
        border: 1px solid #000;
        border-bottom: 5px solid #000;
    }
    .boxDashboard i {
        font-size:40px;
        margin-bottom:20px;
    }
    .boxDashboard h1 {
        font-size: 13px;
        text-transform:uppercase;
        font-weight:600;
        letter-spacing:1px;
    }
.breadcrumb {
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}
    .breadcrumb i {
        color:#555;
        font-size:15px;
    }
    .breadcrumb span {
        margin:0 10px;
    }
    .breadcrumb a.linkBreadcrumb:link, .breadcrumb a.linkBreadcrumb:visited {
        border-bottom: 1px solid #fa6908;
        color: #fa6908;
    }
    .breadcrumb a:hover i {
        color: #fa6908;
    }
.notificaMessaggio {
    width: 96%;
    background-color: #fa6908;
    margin: 80px 2% 0 2%;
    border: 1px solid #d94700;
    color: #fff;
}
    .notificaMessaggio .notificaTitolo {
        background-color: #d94700;
        text-transform:uppercase;
        padding:15px;
        font-size:16px;
        font-weight:600;
        letter-spacing:1px;
    }
    .notificaMessaggio .notificaTitolo i {
        margin-right:5px;
    }
    .notificaMessaggio .notificaContent {
        padding:15px;
        width:100%;
    }
    .notificaMessaggio .notificaContent p {
        font-size:14px;
        line-height:20px;
    }
footer {
    width: 100%;
}
    footer .riferimentiFooter {
        text-align: center;
        background-color: #222;
        color: #fff;
        font-weight: 400;
        padding: 10px;
        font-size: 10px;
    }
    footer .btnFooter {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
        footer .btnFooter .btnFooterContent {
            background-color: #333;
            padding: 15px 10px;
            flex-grow: 1;
            flex-basis: 0;
            text-align: center;
            border-right: 1px solid #222;
            cursor: pointer;
        }
            footer .btnFooter .btnFooterContent:last-child {
                border-right:0px;
            }
            footer .btnFooter .btnFooterContent:hover i, footer .btnFooter .btnFooterContent:hover span {
                color: #65b22e;
            }
            footer .btnFooter .btnFooterContent i {
                color: #666;
                transition: all 0.2s linear 0s;
                -moz-transition: all 0.2s linear 0s;
                -webkit-transition: all 0.2s linear 0s;
                -o-transition: all 0.2s linear 0s;
                font-size:20px;
            }
            footer .btnFooter .btnFooterContent span {
                color: #666;
                display: block;
                font-size: 12px;
                margin-top: 5px;
                transition: all 0.2s linear 0s;
                -moz-transition: all 0.2s linear 0s;
                -webkit-transition: all 0.2s linear 0s;
                -o-transition: all 0.2s linear 0s;
            }
footer a:link, footer a:visited {
    color:#fff;
}
    footer a:hover {
        color: #65b22e;
    }
.inputHalfContent {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.inputHalfContent02 {
    width: 100%;
    display: inline-block;
}
    .inputHalfContent02 div {
        display:inline-block;
        width:49%;
    }
.inputHalf {
    width:49%;
}
.inputFull {
    width:100%;
}
    .inputHalf input, .inputFull input, .inputHalf select, .inputFull select {
        width: 100%;
        height: 40px;
        font-family: 'Poppins', sans-serif;
        padding-left: 5px;
        margin-bottom: 10px;
        display: inline-block;
        vertical-align: middle;
        background-color: #fafafa;
        border: 1px solid #ccc;
        border-radius: 2px;
        font-size: 14px;
    }
    .inputFull textarea {
        width: 100%;
        height: 150px;
        font-family: 'Poppins', sans-serif;
        padding: 5px;
        margin-bottom: 10px;
        display: inline-block;
        vertical-align: middle;
        border: 1px solid #ccc;
        font-size: 14px;
    }
    .inputHalf label, .inputFull label {
        font-size: 13px;
        margin-bottom: 5px;
        display: block;
    }

.salvaDati {
    width: 100%;
    border-radius: 5px;
    color: #fff;
    font-size: 13px;
    background-color: #fa6908;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 20px 0;
    border: 1px solid #d75600;
    cursor: pointer;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
    .salvaDati:hover {
        background-color: #d75600;
    }
.listaUtenti, .listaNotifiche, .listaNotificheUtente, .listaEsercizi, .listaVideo, .listaNotificheAuto {
    border-width: 0px !important;
}
.listaNotifiche, .listaNotificheUtente, .listaNotificheAuto {
    display: table;
    width: 100%;
}
    .listaUtenti li, .listaEsercizi li, .listaVideo li {
        display: inline-block;
        border-bottom: 1px solid #ccc;
        width: 100%;
        padding: 15px 0px;
        position: relative;
    }
        .listaUtenti li:hover, .listaEsercizi li:hover, .listaVideo li:hover {
            background-color: #eee;
        }
        .listaUtenti li:last-child, .listaEsercizi li:last-child, .listaVideo li:last-child {
            border-bottom: 0px;
        }
.avatarLista {
    width: 60px;
    border-radius: 50%;
    border: 1px solid #777;
    display: inline-block;
    vertical-align: middle;
    height: 60px;
    background-size: cover;
    background-position: center center;
}
.infoUtenteLista {
    display:inline-block;
    vertical-align:middle;
    margin-left:2%;
    color:#777;
    font-weight:500;
    width:53%;
}
    .infoUtenteLista a:link, .infoUtenteLista a:visited {
        color:#444;
    }
    .infoUtenteLista .nomeUtenteLista {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    color:#222;
}
.iconaLista {
    background-color: #fa6908;
    color: #fff;
    border-radius: 50%;
    padding: 7px 8px;
    font-size: 14px;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
    .iconaLista:hover {
        background-color: #333;
    }
.dettaglioUtente {
    display: inline-block;
    vertical-align: middle;
    width: 22%;
}
    .dettaglioUtente i {
        background-color: #65b22e;
        color: #2b5d07;
        padding: 7px;
        border: 1px solid #2b5d07;
        font-size: 14px;
        float: right;
        cursor: pointer;
        transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
    }
        .dettaglioUtente i:hover {
            background-color:#333;
            color:#fff;
        }
.boxRicercaAggiungi {
    width:100%;
    margin-bottom:20px;
}
    .boxRicercaAggiungi .boxSearch {
        width:84%;
        display:inline-block;
    }
        .boxRicercaAggiungi .boxSearch span {
            width: 100%;
            display: inline-block;
        }
        .boxRicercaAggiungi .boxSearch .k-icon:before {
            left:inherit !important;
        }
            .boxRicercaAggiungi .boxSearch input[type="text"] {
                width: 100%;
                border: 1px solid #ccc;
                height: 40px;
                padding-left: 5px;
                display: inline-block;
                font-family: 'Poppins', sans-serif;
            }
    .boxRicercaAggiungi .addUtente {
        width: 14%;
        display: inline-block;
        margin-left: 2%;
        height: 40px;
        background-color: #fa6908;
        vertical-align: top;
        position: relative;
        color: #fff;
        cursor:pointer;
        border: 1px solid #d94700;
        transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
    }
    .boxRicercaAggiungi .addReport {
        width:40px;
        display: inline-block;
        height: 40px;
        background-color: #fa6908;
        vertical-align: top;
        position: relative;
        color: #fff;
        cursor: pointer;
        border: 1px solid #d94700;
        transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
    }
        .boxRicercaAggiungi .addUtente:hover, .boxRicercaAggiungi .addReport:hover {
            color:#fff;
            border:1px solid #000;
            background-color: #333;
        }
        .boxRicercaAggiungi .addUtente i, .boxRicercaAggiungi .addReport i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            -webkit-transform: translate(-50%,-50%);
        }
.swipeTab {
    width:100%;
    border:1px solid #ccc;
    margin-bottom:20px;
}
    .swipeTab ul {
        width: 100%;
        white-space: nowrap;
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
    }
        .swipeTab ul li {
            border-bottom: 2px solid #fa6908;
            display:inline-block;
            border-right: 1px solid #eee;
            font-size: 13px;
            font-weight: 600;
        }
            .swipeTab ul li a:link, .swipeTab ul li a:visited {
                color: #222;
                padding: 15px;
                display:block;
            }
                .swipeTab ul li a.active {
                    background-color: #65b22e;
                    color: #fff;
                    font-weight: 500;
                }
.tabContent {
    width:100%;
}
    .tabContent .tab {
        position:relative;
        width:100%;
        display:none;
    }
    .tabContent .tab.tabVisible {
        display:block;
    }
        .tabContent .tab .headerTab, .headerTab {
            width: 100%;
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }
            .tabContent .tab .headerTab p, .headerTab p {
                text-transform: uppercase;
                font-size: 15px;
                font-weight: 600;
                vertical-align: middle;
                margin-top: 5px;
            }
            .tabContent .tab .headerTab .add, .headerTab .add {
                background-color: #65b22e;
                color: #222;
                width: 30px;
                height: 30px;
                border: 1px solid #2b5d07;
                position: relative;
                vertical-align: middle;
            }
                .tabContent .tab .headerTab .add:hover, .headerTab .add:hover {
                    background-color: #499015;
                    cursor: pointer;
                }
                .tabContent .tab .headerTab .add i, .headerTab .add i {
                    color: #fff;
                    font-size: 10px;
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%,-50%);
                    -webkit-transform: translate(-50%,-50%);
                }
.boxNota, .boxScheda {
    border: 1px solid #ccc;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
}
    .boxNota .testoNota, .boxScheda .testoScheda {
        padding: 15px;
    }
    .boxNota .footerNota, .boxScheda .footerScheda {
        background-color: #eee;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        border-top: 1px solid #ccc;
    }
        .boxNota .footerNota p, .boxScheda .footerScheda p {
            margin-top: 10px;
        }
        .boxNota .footerNota .pulsantiNota i, .boxScheda .footerScheda .pulsantiScheda i {
            background-color: #fa6908;
            padding: 8px;
            border-radius: 0px;
            color: #fff;
            vertical-align: middle;
            margin-left: 5px;
            cursor: pointer;
            transition: all 0.2s linear 0s;
            -moz-transition: all 0.2s linear 0s;
            -webkit-transition: all 0.2s linear 0s;
            -o-transition: all 0.2s linear 0s;
        }
            .boxNota .footerNota .pulsantiNota i:hover, .boxScheda .footerScheda .pulsantiScheda i:hover {
                background-color: #222;
            }
.avatarProfilo {
    width: 100%;
    border: 1px solid #ccc;
    margin: 20px auto 10px auto;
    border-radius: 5px;
}

.bottoneAvatar {
    width: 100%;
    max-width: 200px;
    border-radius: 40px;
    border: 0px;
    color: #fff;
    font-size: 13px;
    background-color: #65b22e;
    padding: 7px;
    display: block;
    margin: 15px auto 0 auto;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    cursor:pointer;
}
    .bottoneAvatar:hover {
        background-color: #509d19;
    }
.boxValutazione {
    border:1px solid #ccc;
    padding:10px;
    background-color:#eee;
    margin-bottom:20px;
}
    .boxValutazione .titoloBoxValutazione {
        font-weight: 600;
        color: #c10909;
        margin-bottom: 15px;
    }
.alimentoContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dettAlimento {
    width: 75%;
    font-size: 11px;
    font-weight: 600;
}
.dettAlimento02 {
    display: block;
    width: 75%;
    font-size: 11px;
    font-weight: 600;
}
    .dettAlimento .titoloAlimento, .dettAlimento02 .titoloAlimento, .ricercaContent .titoloAlimento {
        text-transform: uppercase;
        font-weight: 600;
        font-size: 15px;
        line-height: 17px;
        color: #222;
    }
    .dettAlimento .titoloAlimento, .dettAlimento02 .titoloAlimento {
        text-decoration:underline;
        display:table;
    }
        .dettAlimento .titoloAlimento:hover, .dettAlimento02 .titoloAlimento:hover {
            color: #fa6908;
            cursor: pointer;
        }
.espandiAlimento {
    display:none;
}
.buttonsAlimento {
    width: 25%;
    text-align: right;
}
    .buttonsAlimento i {
        color: #777;
        padding: 4px;
        font-size: 16px;
    }
        .buttonsAlimento i:hover {
            color: #65b22e;
            cursor: pointer;
        }
.listaAlimenti {
    border-width:0px !important;
}
    .listaEsercizi li, .listaAlimenti li {
        display: inline-block;
        border-bottom: 1px solid #ccc;
        width: 100%;
        padding: 15px 0px;
        position: relative;
    }
        .listaEsercizi li:last-child, .listaAlimenti li:last-child {
            border-bottom: 0px;
        }
.imgEsercizio {
    width: 80px;
    height: 80px;
    border-radius: 3px;
    border: 1px solid #ccc;
    background-image: url(../img/alternati.jpg);
    background-position: center center;
    background-size: cover;
    float:left;
    margin-right:10px;
}
.titoloEsercizio {
    font-size:17px;
    font-weight:600;
    margin-bottom:5px;
}
.noteEsercizio {
    font-size: 13px;
    line-height: 19px;
    text-align: justify;
}
.bottoneModificaEsercizio {
    width:150px;
    color: #fff;
    font-size: 12px;
    font-weight:600;
    background-color: #65b22e;
    padding: 10px;
    text-align: center;
    text-transform:uppercase;
    margin-top:10px;
    letter-spacing:1px;
}
#calendar {
    width: 100%;
    margin-top: 15px;
}
    #calendar .k-calendar-view {
        width: 100% !important;
        height: 100% !important;
    }
.k-calendar td.k-state-focused .k-link {
    box-shadow: none !important;
}
.k-window-titlebar.k-header {
    background-color: #65b22e !important;
}
.k-calendar td {
    border-radius: 0 !important;
    border-color: #cccccc !important;
    border-width:1px !important;
}
.k-calendar .k-today {
    background-color: #fa6908 !important;
}
.k-calendar .k-footer .k-nav-today {
    color: #222 !important;
    font-weight: 600 !important;
}
.k-calendar .k-footer .k-nav-today {
    background-color: #eee !important;
}
.k-calendar .k-content th {
    background-color: #eee !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #e6e6e6 !important;
}
.k-calendar .k-today .k-link {
    color: #fff !important;
    box-shadow: none !important;
}
.k-calendar td.k-state-selected .k-link {
    border-color: transparent;
    background-color: #fa6908;
}
.k-calendar .k-content .k-link {
    border-radius:0px !important;
}
.k-calendar .k-month .k-link {
    width: 100% !important;
    height: 100% !important;
}
.k-calendar > .k-header {
    background-color: #65b22e !important;
}
.k-autocomplete, .k-dropdown-wrap, .k-multiselect-wrap, .k-numeric-wrap, .k-picker-wrap, .k-textbox {
    border-width: 0px !important;
}
.k-datepicker {
    border:1px solid #ccc;
}
.periodoRiferimento {
    border: 1px solid #ccc;
    background-color: #eee;
    padding: 15px;
    color: #222;
}
    .periodoRiferimento p {
        text-transform: uppercase;
        font-weight: 500;
        line-height: 20px;
        text-align: center;
    }
    .periodoRiferimento .periodoRiferimentoContent {
        display: flex;
        justify-content: space-between;
    }
        .periodoRiferimento .periodoRiferimentoContent p {
            margin-bottom:0px;
            letter-spacing:0px;
            font-weight:600;
        }
        .periodoRiferimento .periodoRiferimentoContent span {
            font-size:12px;
            text-align:center;
            display:block;
        }
.boxPeriodo {
    border: 1px solid #ccc;
    padding: 15px;
    background-color: #eee;
    margin-top: 15px;
}
    .boxPeriodo .titoloBoxPeriodo {
        font-weight:600;
        text-transform:uppercase;
    }
    .boxPeriodo table {
        margin-top: 15px;
        border: 1px solid #e6e6e6;
        width: 100%;
        background-color: #fff;
        font-size: 13px;
    }
        .boxPeriodo table tr th {
            font-weight:600;
        }
        .boxPeriodo table tr td, .boxPeriodo table tr th {
            padding: 10px;
            border: 1px solid rgba(0,0,0,0.1);
            text-align: right;
        }
        .boxPeriodo table tr.med td {
            background-color: #fad8d8;
        }
        .boxPeriodo table tr.ob td {
            background-color: #d1f2cc;
        }
        .boxPeriodo table tr.rim td {
            background-color: #cef0f0;
        }
.buttonDettCal {
    width: 100%;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    background-color: #65b22e;
    padding: 13px;
    border-radius: 40px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 1px;
    display:block;
}
.contentTastiReport {
    display: flex;
    justify-content: space-between;
}
    .contentTastiReport a:link, .contentTastiReport a:visited {
        width: 45%;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        background-color: #65b22e;
        padding: 13px;
        border-radius: 40px;
        text-align: center;
        text-transform: uppercase;
        margin-top: 15px;
        letter-spacing: 1px;
    }
.boxReport {
    position:relative;
    width:100%;
    margin-top:15px;
    display:none;
}
    .boxReport .boxReportContent {
        background-color: #fff;
        border: 1px solid #e6e6e6;
        padding:10px;
        font-size:14px;
        line-height:20px;
        margin-bottom:20px;
    }
        .boxReport .boxReportContent .titoloReport {
            font-weight:600;
            text-transform:uppercase;
            margin-bottom:5px;
            font-size:15px;
        }
        .boxReport .boxReportContent div {
            width: 100%;
            height: 1px;
            background-color: #e6e6e6;
            margin:10px 0;
            display:block;
        }
        .boxReport .boxReportContent p {
            margin-bottom:5px;
        }
.rispostaCoach {
    color: #ea0b0b;
    font-weight:500;
}
.buttonEmail {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background-color: #3a81a7;
    padding: 8px 10px;
    border-radius: 3px;
    letter-spacing: 1px;
    border: 1px solid #244e65;
    float: left;
}
.buttonImpostazioni {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background-color: #65b22e;
    padding: 8px 10px;
    border-radius: 3px;
    letter-spacing: 1px;
    float: right;
    border: 1px solid #418412;
    margin-bottom: 20px;
}
    .buttonImpostazioni:hover.chiuso {
        background-color:#418412 !important;
    }
    .buttonImpostazioni:hover {
        background-color: #ba0007 !important;
    }

.boxPasto {
    border: 1px solid #cdcdcd;
    background-color: #eee;
    margin-top: 30px;
}
    .boxPasto .titoloPasto {
        padding: 10px;
        background-color: #ccc;
        color:#222;
        font-weight:600;
        text-transform:uppercase;
    }
        .boxPasto .titoloPasto .titoloPastoContent {
            display: flex;
            justify-content: space-between;
        }
            .boxPasto .titoloPasto .titoloPastoContent p {
                width: 80%;
                align-self: center;
            }
            .boxPasto .titoloPasto .titoloPastoContent i {
                border: 1px solid #cc5200;
                background-color: #fa6908;
                padding: 7px 9px;
                color: #fff;
                transition: all 0.2s linear 0s;
                -moz-transition: all 0.2s linear 0s;
                -webkit-transition: all 0.2s linear 0s;
                -o-transition: all 0.2s linear 0s;
                cursor:pointer;
            }
                .boxPasto .titoloPasto .titoloPastoContent i:hover {
                    background-color: #cc5200;
                }
    .boxPasto .elencoCibi {
        padding:10px;
    }
        .boxPasto .elencoCibi ul li {
            border-bottom: 1px solid #ccc;
            padding:15px 0;
        }
        .boxPasto .elencoCibi ul li:last-child {
            border-bottom:0px;
        }
.contentTitoloCibo {
    display: flex;
    justify-content: space-between;
    margin-bottom:10px;
}
    .contentTitoloCibo p {
        font-size:14px;
        font-weight:600;
        align-self:center;
    }
    .contentTitoloCibo i {
        color: #888;
        font-size: 15px;
        margin-left: 10px;
    }
.valori {
    width: 100%;
    display:flex;
}
    .valori span {
        width:20%;
        font-size:12px;
        text-align:center;
        border-bottom:0px;
    }
.totaliParziale {
    padding: 15px 11px;
    background-color: #777;
    color: #fff;
}

.totaliPasto {
    width: 100%;
    padding: 15px;
    background-color: #3a81a7;
    border: 1px solid #244e65;
    margin-top: 5px;
    color: #fff;
}

.obiettivoPasto {
    width: 100%;
    padding: 15px;
    background-color: #a3e474;
    border: 1px solid #7ebf4f;
    margin-top: 5px;
    color: #222;
}

.rimanentiPasto {
    width: 100%;
    padding: 15px;
    background-color: #feec70;
    border: 1px solid #ffd143;
    margin-top: 5px;
    color: #222;
}
.dataConsulenza {
    margin-bottom: 10px;
    font-size: 17px;
    text-align: center;
    display: block;
    padding-bottom:5px;
}
    .dataConsulenza i {
        margin-right:5px;
    }
.inizioConsulenza i {
    color: #4ca200;
}
.fineConsulenza i {
    color: #d30606;
}
.contrattoAttivo {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    padding: 10px;
    border: 3px solid #4ca200;
    border-radius: 30px;
    display: block;
    width: 250px;
    margin: 20px auto 0 auto;
    text-align: center;
}
.contrattoDisattivo {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    padding: 10px;
    border: 3px solid #d30606;
    border-radius: 30px;
    display: block;
    width: 250px;
    margin: 20px auto 0 auto;
    text-align: center;
}
.picProfilo {
    border-radius: 50%;
    width: 100%;
    max-width: 300px;
    height:300px;
    background-size:cover;
    background-position:center center;
    margin: 0 auto 30px auto;
    display: block;
    border: 1px solid #999;
}
.obiettivo {
    background-color: #fa6908;
    border: 1px solid #d94700;
    margin-top: 40px;
    display: table;
    color: #fff;
    width: 100%;
}
    .obiettivo .iconaObiettivo {
        background-color: #d94700;
        display:table-cell;
        width:17%;
        text-align:center;
        vertical-align:middle;
        font-size:20px;
        padding:10px;
    }
    .obiettivo .testoObiettivo {
        display: table-cell;
        vertical-align:middle;
        padding:10px;
        line-height:20px;
    }
.datiPersonali {
    margin-top:40px;
}
    .datiPersonali p {
        text-align:center;
        font-size:17px;
    }
/*.stampaCredenziali {
    background-color: #e11c1c;
    color: #fff;
    border-radius: 3px;
    display: block;
    width: 40px;
    height: 40px;
    float: right;
    margin-top: 20px;
    position:relative;
}
    .stampaCredenziali i {
        position:absolute;
        left:50%;
        top:50%;
        transform:translate(-50%,-50%);
        -webkit-transform:translate(-50%,-50%);
    }*/
.tabPastiA {
    width: 100%;
    margin-top: 20px;
    font-weight: 500;
    font-size:12px;
}
    .tabPastiA th, .tabPastiA td {
        padding: 15px 10px;
        text-align: center;
        vertical-align: middle;
    }
    .tabPastiA thead th {
        border: 1px solid #ccc;
        background-color: #eee;
        font-weight: bold;
        width: 25%;
    }
    .tabPastiA tbody td {
        border: 1px solid #ccc;
    }
.valorePositivo {
    background-color: #a3e474;
}
.valoreNegativo {
    background-color: #f2cccc;
}
.duplicaGiornata {
    float: left;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #244e65;
    background-color: #3a81a7;
    padding: 10px 12px;
    margin-right: 10px;
}
.resetGiornata {
    float: left;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #bb0606;
    background-color: #e11c1c;
    padding: 10px 12px;
    margin-right:10px;
}
.avanzate {
    float: left;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #244e65;
    background-color: #3a81a7;
    padding: 10px 12px;
    margin-right: 10px;
}
.printPDF {
    float: left;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #244e65;
    background-color: #3a81a7;
    padding: 10px 12px;
    margin-right: 10px;
}
.savePDF {
    float: left;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #244e65;
    background-color: #3a81a7;
    padding: 10px 12px;
    margin-right: 10px;
}
.calendarioBack {
    float: left;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #418412;
    background-color: #65b22e;
    padding: 10px 12px;
    margin-right: 10px;
}


.allenamentoGiornata {
    float: left;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #333;
    background-color: rgb(250, 105, 8);
    padding: 10px 12px;
    margin-right: 5px;
}
.riposoGiornata {
    float: left;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #418412;
    background-color: #65b22e;
    padding: 10px 12px;
    margin-left:5px;
}
.disableButton {
    float: left;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #333;
    background-color: #999;
    padding: 10px 12px;
}
.k-dropdown {
    border-radius: 0;
    height: 40px;
    border: 1px solid #ccc;
    background-color: #fafafa;
}
    .k-dropdown .k-state-default {
        border-color:transparent;
    }
.k-dropdown-wrap.k-state-hover, .k-dropdown-wrap.k-state-focused, .k-picker-wrap.k-state-hover, .k-picker-wrap.k-state-focused {
    box-shadow: none;
    -webkit-box-shadow: none;
    background-color: #fafafa;
}
.k-overflow-container .k-primary, .k-primary {
    border-color: #65b22e !important;
    background-color: #65b22e !important;
}
.k-picker-wrap.k-state-focused .k-input, .k-picker-wrap.k-state-hover .k-input {
    background-color: #fafafa;
}
.k-autocomplete.k-state-default, .k-dropdown-wrap.k-state-default, .k-numeric-wrap.k-state-default, .k-picker-wrap.k-state-default {
    border-color: #ccc;
}
.formGroup100 {
    width:100%;
    margin-bottom:15px;
}
.formGroup90 {
    width: 90%;
    margin-bottom: 15px;
    float: left;
    padding: 0 2px;
}
.formGroup85 {
    width: 85%;
    margin-bottom: 15px;
    float: left;
    padding: 0 2px;
}
.formGroup50 {
    width: 50%;
    float: left;
    margin-bottom: 15px;
    padding: 0 2px;
}
.formGroup45 {
    width: 45%;
    float: left;
    margin-bottom: 15px;
    padding: 0 2px;
}
.formGroup33 {
    width: 33.3333%;
    float: left;
    margin-bottom: 15px;
    padding: 0 2px;
}
.formGroup30 {
    width: 30%;
    float: left;
    margin-bottom: 15px;
    padding: 0 2px;
}
.formGroup29 {
    width: 29%;
    float: left;
    margin-bottom: 15px;
    padding: 0 2px;
}
.formGroup25 {
    width: 25%;
    float: left;
    margin-bottom: 15px;
    padding: 0 2px;
}
.formGroup14 {
    width: 14.28%;
    float: left;
    margin-bottom: 15px;
    padding: 0 2px;
}
.formGroup13 {
    width: 13%;
    float: left;
    margin-bottom: 15px;
    padding: 0 2px;
}
.formGroup10 {
    width: 10%;
    float: left;
    margin-bottom: 15px;
    padding: 0 2px;
}
    .formGroup100 label, .formGroup90 label, .formGroup85 label, .formGroup50 label, .formGroup45 label, .formGroup33 label, .formGroup30 label, .formGroup29 label, .formGroup25 label, .formGroup14 label, .formGroup13 label, .formGroup10 label {
        margin-bottom: 5px;
        display: block;
        font-weight: 500;
    }
.inputText, .selectText {
    width: 100%;
    height: 40px;
    font-family: "Poppins", sans-serif;
    padding-left: 5px;
    background-color: #fafafa;
    border: 1px solid #ccc;
    font-size: 14px;
}
.numericText {
    width: 100px !important;    
}
.inputRead {
    background-color: #e0e0e0;
    cursor: not-allowed;
    font-size: 14px;
}
.areaText {
    width: 100%;
    height: 200px;
    font-family: "Poppins", sans-serif;
    padding: 5px;
    background-color: #fafafa;
    border: 1px solid #ccc;
    font-size: 14px;
}
.inputTextReport {
    width: 90% !important;
}
.areaText02 {
    width: 100%;
    height: 100px;
    font-family: "Poppins", sans-serif;
    padding: 5px;
    background-color: #fafafa;
    border: 1px solid #ccc;
    font-size: 14px;
}
.inputTextDisabled {
    width: 100%;
    height: 40px;
    font-family: "Poppins", sans-serif;
    padding-left: 5px;
    background-color: #dfa2a2;
    border: 1px solid #c97a7a;
    color: #fff;
    cursor: not-allowed;
    font-size: 14px;
}
.inputSubmit {
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background-color: #65b22e;
    border-radius: 5px;
    border: 0px;
    padding: 15px 0;
    text-align: center;
    text-transform: uppercase;
    display: block;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
.inputClose {
    width: 100%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    background-color: #df0b01;
    border-radius: 5px;
    border: 0px;
    padding: 15px 0;
    text-align: center;
    text-transform: uppercase;
    display: block;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
    .inputClose:hover {
        background-color: #98221c;
    }
    .inputSubmit:hover, .btnIcon:hover {
        background-color: #569f22;
    }
.btnIcon {
    color: #fff;
    font-size: 12px;
    background-color: #65b22e;
    border-radius: 5px;
    border: 0px;
    padding: 7px 10px;
    text-align: center;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    font-weight:600;
}
.inputSubmitReset {
    width: 100%;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    background-color: #ccc;
    border-radius: 5px;
    border: 0px;
    padding: 15px 0;
    text-align: center;
    text-transform: uppercase;
    display: block;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
.btnScheda {
    width: 100%;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    background-color: #65b22e;
    padding: 13px 5px;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}
.accordion {
    background-color: #65b22e;
    color: #fff;
    text-align: left;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #549c20;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    transition: 0.4s;
    font-family: 'Poppins', sans-serif;
}

    .activeTab, .accordion:hover {
        background-color: #65b22e;
    }

.panel {
    padding: 0px;
    background-color: #e6e7e8;
    max-height: 0;
    border: 1px solid #cdcdcd;
    border-top: 0px;
    margin-bottom: 20px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

    .panel .panelContent {
        padding: 10px;
        display: block;
    }

.accordion:after {
    content: "\f0fe";
    font-family: 'Font Awesome\ 5 Free';
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 15px;
    color: #fff;
    float: right;
    margin-top: 2px;
}

.activeTab:after {
    content: "\f146";
    font-family: 'Font Awesome\ 5 Free';
}
.boxPeriodoDiario {
    width:100%;
    padding:10px;
    background-color:#fff;
    border:1px solid #ccc;
}
    .boxPeriodoDiario table {
        width: 100%;
        font-size: 13px;
    }
        .boxPeriodoDiario table thead {
            background-color: #fa6908;
            color:#fff;
        }
        .boxPeriodoDiario table tbody tr:nth-child(2n+1) {
            background-color: #fff;
        }
        .boxPeriodoDiario table tbody tr:nth-child(2n) {
            background-color: #f2f2f2;
        }
        .boxPeriodoDiario table td, .boxPeriodoDiario table th {
            padding: 10px;
            border: 1px solid #ccc;
            text-align: center;
        }
        .boxPeriodoDiario table th {
            font-weight:600;
        }
.noteDiarioAlimentare {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #e6e7e8;
    border: 1px solid #cdcdcd;
    font-size: 12px;
    line-height: 20px;
}
.titoloPeriodo {
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 20px;
}
    .titoloPeriodo span {
        color: #be3636;
    }
.pulsantiDiario {
    float: right;
    margin-top: 15px;
}
    .pulsantiDiario i {
        background-color: #fa6908;
        padding: 8px;
        border-radius: 0px;
        color: #fff;
        vertical-align: middle;
        margin-left: 5px;
    }
.boxVisite {
    width: 100%;
    padding: 40px 10px 10px 10px;
    background-color: #eeeeee;
    border: 1px solid #ccc;
    position:relative;
    margin-bottom:20px;
}
    .boxVisite table {
        margin: 15px 0;
        width: 100%;
        background-color: #fff;
    }
        .boxVisite table tr td {
            padding: 10px;
            border: 1px solid #ccc;
            width: 50%;
        }
.dataVisita {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #fff;
    background-color: #65b22e;
    padding: 10px 20px;
}
.fotoVisita {
    float: left;
    width: 33.3333%;
    padding: 0 3px;
    text-align: center;
    line-height: 18px;
    position:relative;
}
    .fotoVisita img {
        width:100%;
        border-radius:3px;
        border:1px solid #ccc;
        margin-bottom:10px;
    }
    .fotoVisita i, .fotoVisitaPreview i {
        position: absolute;
        bottom: 63px;
        right: 15px;
        padding: 10px;
        background-color: #fa6908;
        color: #fff;
        cursor: pointer;
        border-radius: 3px;
        border: 1px solid #d75600;
        transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
    }
        .fotoVisita i:hover, .fotoVisitaPreview i:hover {
            background-color: #d75600;
        }
.fotoVisitaPreview {
    width: 100%%;
    padding: 0 3px;
    text-align: center;
    line-height: 18px;
    position: relative;
}
    .fotoVisitaPreview img {
        width: 100%;
        max-width: 100%;
        border-radius: 3px;
        border: 1px solid #ccc;
        margin-bottom: 10px;
    }
.divider {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin: 20px 0;
}
.titoloSezione {
    font-size: 18px;
    font-weight: 700;
    color: #fa6908;
    margin-bottom: 10px;
}
.addEsercizioScheda {
    background-color: #fa6908;
    border: 1px solid #d94700;
    color: #fff;
    padding: 8px 10px;
    cursor: pointer;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    float:right;
}
    .addEsercizioScheda:hover {
        background-color: #d94700;
    }
.emailEsercizioScheda {
    background-color: #fa6908;
    border: 1px solid #d94700;
    color: #fff;
    padding: 8px 10px;
    cursor: pointer;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    float: right;
}

    .emailEsercizioScheda:hover {
        background-color: #d94700;
    }

.listaEserciziScheda {
    width: 100%;
    padding: 45px 10px 10px 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    position: relative;
}
    .listaEserciziScheda p {
        background-color: #fa6908;
        color: #fff;
        padding: 10px;
        font-weight: 600;
        position: absolute;
        top: 0px;
        left: 0px;
        width:100%;
    }
.esercizioContent {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}
    .esercizioContent:last-child {
        border-bottom: 0px;
        padding-bottom: 5px;
    }
    .esercizioContent span {
        font-weight: 600;
        color: #666;
        text-transform: uppercase;
        font-size: 13px;
        max-width: 70%;
    }
    .esercizioContent .pulsantiEsercizio i {
        border-radius: 0px;
        color: #999;
        font-size: 18px;
        vertical-align: middle;
        margin-left: 10px;
        cursor: pointer;
        transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
    }
        .esercizioContent .pulsantiEsercizio i:hover {
            color:#222;
        }
.titoloEsercizioScheda {
    width:100%;
    margin-bottom:20px;
}
    .titoloEsercizioScheda #addSettimana {
        background-color: #fa6908;
        border: 1px solid #d94700;
        color: #fff;
        padding: 8px 10px;
        float:left;
        margin-right:20px;
    }
    .titoloEsercizioScheda p {
        float: left;
        text-transform: uppercase;
        font-weight: 600;
        margin-top: 5px;
    }
.rigaEsercizio {
    width:100%;
    position:relative;
}
rigaEsercizioTesto {
    width: 100%;
    position: relative;
    display:none;
}
.rigaValori {
    float: left;
    width: 57.16%;
    padding: 0 2px;
    margin-bottom: 15px;
}
.addRiga, .addRigaTesto {
    text-align: center;
    display: block;
    color: #65b22e;
    font-size: 18px;
    margin-top: 10px;
}
.tabIntestazioneRigheScheda {
    width:100%;
}
    .tabIntestazioneRigheScheda tr td {
        width: 14.28%;
        padding: 3px 5px;
        font-weight: 600;
        font-size: 13px;
    }
.tabIntestazioneRigheTesto {
    width: 100%;
    display:none;
}
    .tabIntestazioneRigheTesto tr td {
        padding: 3px 5px;
        font-weight: 600;
        font-size: 13px;
    }
.rigaValoriTesto {
    display:none;
}
.k-switch-on .k-switch-handle {
    background-color: #65b22e !important;
}
.k-switch-on .k-switch-container {
    background-color: #abe680 !important;
}
.k-switch {
    margin-top:10px;
}
.rigaIntestazione {
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #65b22e;
    color:#fff;
}
    .rigaIntestazione div {
        text-align:center;
    }
    .tabNotifiche .rigaAdmin .colCestino i, .tabNotifiche .rigaUtente .colCestino i {
        color:#666;
    }
.cestinoNotifica:hover {
    cursor: pointer;
    color: #fa6908;
}
.colCestino {
    width: 10%;
    display: table-cell;
    vertical-align: middle;
    padding: 2px;
}
.colPic {
    width: 10%;
    padding: 5px;
    display: table-cell;
    vertical-align: middle;
}
    .colPic img {
        width: 100%;
        max-width: 70px;
        border-radius: 3px;
        border: 1px solid #999;
    }
.colTesto {
    width: 90%;
    padding: 15px 5px;
    display: table-cell;
    vertical-align:middle;
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
}
.listaNotificheUtente .colTesto {
    width:90%;
}
    .listaNotifiche .colTesto span, .listaNotificheUtente .colTesto span {
        cursor: pointer;
        font-weight: 600;
        color: #fa6908;
        border-bottom: 1px solid #fa6908;
        transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
    }
        .listaNotifiche .colTesto span:hover, .listaNotificheUtente .colTesto span:hover {
            color: #222;
            border-bottom: 1px solid #222;
        }
.rigaIntestazione .colTesto {
    padding: 5px;
}
.listaNotifiche li, .listaNotificheUtente li, .listaNotificheAuto li {
    background-color: #fff;
    padding: 10px 5px;
    display: table-row;
}
    .listaNotifiche li:nth-child(odd), .listaNotificheUtente li:nth-child(odd), .listaNotificheAuto li:nth-child(odd) {
        background-color: #ebebeb;
    }
.titoloScheda {
    color: #333;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 17px;
}
.boxSettimana {
    position:relative;
    width:100%;
    margin-top:20px;
}
    .boxSettimana .boxSettNum {
        color: #fff;
        background-color: #999;
        width: 41px;
        height: 37px;
        position: relative;
        float: left;
        margin: 0 10px 0 0;
        border-radius: 3px;
    }
    .boxSettimana p {
        font-weight:500;
        float: left;
        margin:10px 5px 0 0;
    }
        .boxSettimana .boxSettNum span {
            position:absolute;
            top:50%;
            left:50%;
            transform:translate(-50%,-50%);
        }
.settAttiva {
    background-color: #65b22e !important;
}
.cambioGiorno {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-top: 20px;
    background-color: #65b22e;
    padding: 10px;
    border: 1px solid #4b9019;
    color:#fff;
}
    .cambioGiorno i {
        color: #fff;
        transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
    }
    .cambioGiorno i:hover {
        color: #222;
    }
.elencoEserciziContent {
    width:100%;
    position:relative;
}
    .elencoEserciziContent .esercizioContentScheda {
        background-color: #efefef;
        padding: 10px 10px 50px 10px;
        border: 1px solid #ddd;
        position: relative;
        margin-top: 20px;
    }
    .elencoEserciziContent .esercizioContentScheda img {
        float:left;
        width:30%;
        border:1px solid #ccc;
    }
    .elencoEserciziContent .esercizioContentScheda .testoEsercizio {
        float:left;
        width:70%;
        padding-left:10px;
    }
        .elencoEserciziContent .esercizioContentScheda .titoloEsercizio {
            font-size:14px;
            margin-bottom:10px;
        }
        .elencoEserciziContent .esercizioContentScheda .testoEsercizio span {
            font-weight: 500;
            color: #555;
            font-size: 14px;
        }
.dettagliEsercizio {
    background-color: #fa6908;
    color: #fff;
    padding: 10px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    cursor:pointer;
    font-size: 12px;
}
.k-animation-container, .k-animation-container *, .k-animation-container :after, .k-block .k-header, .k-dialog .k-window-content, .k-list-container, .k-widget, .k-widget *, .k-widget :before {
    box-sizing: border-box !important;
}
.k-combobox, .k-combobox .k-input, .k-datepicker, .k-datetimepicker, .k-datetimepicker .k-input, .k-timepicker, .k-timepicker .k-input {
    height:42px !important;
}
.ricercaVisite {
    width: 100%;
    margin-bottom: 15px;
}
    .ricercaVisite p {
        margin-bottom: 20px;
        font-weight: 500;
    }
    .ricercaVisite label {
        font-size:12px;
    }
#ricercaVisiteBtn {
    color: #fff;
    font-size: 14px;
    background-color: #fa6908;
    border-radius: 5px;
    padding: 14px 15px;
    margin-top: 16px;
}
..k-calendar .k-header .k-link {
    padding: 8px 0px !important;
}
.checkBoxRiepilogo {
    padding: 10px;
    background-color: #eee;
    border: 1px solid #ccc;
    margin-bottom:20px;
}
    .checkBoxRiepilogo span {
        font-weight: 500;
        margin-bottom: 10px;
        display: block;
    }
    .checkBoxRiepilogo p {
        font-weight: 500;
        font-size: 12px;
        float: left;
        padding: 5px;
    }
.riepilogo {
    position: relative;
    width: 100%;
    overflow-y: scroll;
    margin-bottom: 20px;
}
.riepilogo table {
    width:100%;
    font-size:13px;
}
    .riepilogo table tr:nth-child(odd) {
        background-color: #eeeeee;
    }
    .riepilogo table th {
        font-weight: 600 !important;
        background-color: #65b22e !important;
        border-color: #51991d;
        color: #fff !important;
        padding: 10px !important;
    }
    .riepilogo table td {
        padding:10px;
        border-left:1px solid #ccc;
        text-align:center;
    }
.k-grid-header .k-header .k-link, .k-grid-header .k-link, .k-grid-header .k-link:link {
    color:#fff !important;
}
.k-grid tr:hover {
    background-color: #3a81a7 !important;
}
    .k-grid tr:hover td {
        color: #fff;
    }
.boxGraficiRiepilogo {
    padding: 10px;
    background-color: #eee;
    border: 1px solid #ccc;
}
    .boxGraficiRiepilogo p {
        text-align:center;
        margin-bottom:15px;
        font-weight:600;
        text-transform:uppercase;
        font-size:17px;
    }
    .boxGraficiRiepilogo img {
        float: left;
        width: 50%;
        padding: 10px;
    }
.boxPagamenti {
    border: 1px solid #ccc;
    width: 100%;
    background-color:#eee;
    padding:10px;
    margin-bottom:20px;
}
    .boxPagamenti .iconaPagamento {
        float: left;
        width: 18%;
    }
        .boxPagamenti .iconaPagamento i {
            font-size: 40px;
            display: block;
            color: #65b22e;
        }
    .boxPagamenti .testoPagamento {
        width:100%;
    }
        .boxPagamenti .testoPagamento p {
            font-size: 13px;
            margin-bottom:5px;
            line-height:20px;
        }
.elencoFatture {
    width:100%;
}
    .elencoFatture li {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding:15px 0;
        border-bottom:1px solid #ccc;
    }
    .elencoFatture li:last-child {
        border-bottom:0px;
        padding-bottom:0px;
    }
        .elencoFatture li p {
            font-weight:500;
        }
        .elencoFatture li .pulsantiFattura i {
            font-size:18px;
            color:#999;
            margin-left:10px;
        }
.elencoCampiFattura {
    margin-bottom:30px;
}
    .elencoCampiFattura li {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid #ccc;
    }
        .elencoCampiFattura li:last-child {
            border-bottom:0px;
        }
.riepilogoUtentiAttivi {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    font-weight: 500;
    align-items: center;
}
.riepilogoUtentiAttivi02 {
    width: 100%;
    display:block;
    margin: 20px 0;
    font-weight: 500;
}
.ricercaContent {
    padding:5px;
    border-bottom:1px solid #ccc;
    color:#222 !important;
}
.intestazioneRicerca {
    width: 100%;
    background-color: #65b22e;
    color: #fff;
    font-weight: 500;
    padding: 5px 10px;
}
.avatarListaRicerca {
    width: 40px;
    height:40px;
    background-size:cover;
    background-position:center center;
    display: inline-block;
    padding:10px;
    border:1px solid #ccc;
    float:left;
}
.infoListaRicerca {
    float: left;
    padding:0 0 0 10px;
    font-weight:500;
}
    .infoListaRicerca p {
        display: block;
        line-height:22px;
    }
    .infoListaRicerca span {
        font-size: 11px;
        display: block;
        line-height: 14px;
    }
.footerRicerca {
    background-color:#eee;
    padding:5px 10px;
    font-weight:500;
    font-size:13px;
}
.k-popup.k-list-container {
    padding: 0 !important;
}
.k-dialog.k-alert .k-window-titlebar .k-dialog-title {
    color: #fff;
    font-size: 17px;
}
.logoDesktop {
    display:none;
}
.messaggioCambioPsw {
    text-align: center;
    display: block;
    width: 100%;
    max-width: 400px;
    color: #fa6908;
    font-weight:600;
    padding: 10px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
#confirmPassword {
    color: #e11c1c;
    font-weight: 600;
    margin-top: 10px;
    display: block;
}
.k-calendar > .k-header .k-link.k-state-hover {
    background-color: #55a21e;
}
.periodoRiferimentoCalendario {
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 30px;
    font-size: 15px;
    line-height:25px;
    font-weight: 500;
    text-align:center;
}
.dettaglioMacro {
    display:none;
    margin-top:30px;
}
.periodoNote {
    font-size:14px;
    line-height:20px;
}
.tabDiarioMacro tr th {
    font-size:14px !important;
    font-weight:bold !important;
    padding:15px 10px !important;
}
.tabDiarioMacro tr td {
    font-size: 14px !important;
    color: #fff !important;
    padding: 15px 10px !important;
}
span.icona i {
    cursor: pointer;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    font-size:15px;
}
span.icona i:hover {
    color:#444;
}
.pulsanteCopiaTabMacro {
    float: left !important;
    margin-top: 20px;
}

.pulsantiTabMacro {
    float:right;
    margin-top:20px;
}
    .pulsantiTabMacro span {
        border-radius: 4px;
        padding: 10px;
        color: #fff;
        cursor: pointer;
        float: right;
        margin-right: 5px;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
    }
    .pulsantiTabMacro .pulsanteVerde {
        background-color: #65b22e;
        border: 1px solid #4e931d;
    }
        .pulsantiTabMacro .pulsanteVerde:hover {
            background-color: #4e931d;
        }
    .pulsantiTabMacro .pulsanteRosso {
        background-color: #f42727;
        border: 1px solid #c81f1f;
    }
        .pulsantiTabMacro .pulsanteRosso:hover {
            background-color: #c81f1f;
        }
    .pulsantiTabMacro .pulsanteArancio {
        background-color: #fa6908;
        border: 1px solid #d55601;
    }
        .pulsantiTabMacro .pulsanteArancio:hover {
            background-color: #d55601;
        }
.k-calendar .k-header .k-link {
    padding:0px !important;
    border-radius:0px !important
}
.k-calendar .k-nav-next, .k-calendar .k-nav-prev, #calendar span.k-icon {
    width: 30px !important;
    height: 30px !important;
}
.k-calendar .k-header {
    padding: 8px 4px !important;
}
#fileToUpload, .avvisoUpload {
    text-align: center;
    margin: 15px 0 0 0;
}
span.k-colorpicker {
    border: 1px solid #ccc;
}
.noteContent, .schedeContent {
    display:block;
    width:100%;
}
.tastoAggiungiAlimento {
    border: 1px solid #cc5200;
    background-color: #fa6908;
    width: 30px;
    height: 30px;
    display: inline-block;
    color: #fff;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    cursor: pointer;
    vertical-align: top;
    position:relative;
}
.tastoAggiungiAlimento i {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
}
.inputTextSmall {
    height: 30px;
    width: 180px;
    border: 1px solid #ccc;
    display: inline-block;
    vertical-align: top;
}
.quantityContent {
    margin-top:10px;
}
#windowAddVisite label {
    font-size:12px;
}
.formFotoVisite {
    text-align: center;
    background-color: #f6f6f6;
    padding:20px;
    border:1px solid #ccc;
    margin-bottom:15px;
    position:relative;
}
    .formFotoVisite p { 
        font-size:12px;
    }
    .formFotoVisite .bottoneAvatar {
        margin:15px auto;
    }
.contentBottoni {
    display:none;
}
.obiettivoContent, .contentBottoni {
    float: left;
    margin-left: 10px;
}
    .obiettivoContent p {
        float: left;
        font-weight:500;
        font-size:12px;
        margin: 10px 10px 0 0;
    }
.avatarContent {
    width: 100%%;
    padding: 30px;
    background-color: #fff;
    margin-bottom:20px;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #ccc;
}
    .avatarContent .inputFull input {
        background-color:transparent !important;
        border:0px !important;
    }
.prev_day, .next_day {
    position: relative;
    border: 1px solid #cc5200;
    background-color: #fa6908;
    padding: 0 15px;
    color: #fff;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
    .prev_day:hover, .next_day:hover {
        background-color: #cc5200;
    }
    .prev_day i, .next_day i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
    }
span.k-numerictextbox {
    background-color: transparent !important;
    border: 1px solid #ccc !important;
    width:100px;
}
.divisoreAltriAlimenti {
    background-color: #fa6908;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 20px;
}
    .divisoreAltriAlimenti i {
        margin-right:5px;
    }
#calendarCopiaPasto {
    display:block;
    margin:auto;
}
    #calendarCopiaPasto .k-calendar-view {
        width:100% !important;
    }
.intestazioneScheda, .rigaScheda {
    width: 100%;
    display: table;
    border-collapse: collapse;
}
    .intestazioneScheda div {
        display: table-cell;
        width: 25%;
        text-align: center;
        font-size: 12px;
        background-color: #65b22e;
        padding: 10px;
        border: 1px solid #4b9019;
        color:#fff;
        font-weight:500;
    }
    .rigaScheda div {
        display: table-cell;
        width: 25%;
        text-align: center;
        font-size: 12px;
        background-color: #fff;
        border: 1px solid #ccc;
        padding: 10px;
    }
.rigaSchedaTesto {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 12px;
    background-color: #fff;
}
.avatarEsercizio {
    width: 70%;
    border: 1px solid #777;
    display: block;
    vertical-align: middle;
    margin:0 auto 10px auto;
}
.nomeEsercizio {
    display: block;
    vertical-align: middle;
    width: 100%;
    text-align:center;
}
    .nomeEsercizio p {
        font-weight: 500;
        color:#333;
    }
    .nomeEsercizio span {
        color: #777;
        font-size:12px;
    }
.noteEsercizioScheda {
    font-size: 13px;
    line-height: 19px;
    text-align: justify;
    margin-top:20px;
    display:none;
}
.dettaglioEsercizio {
    display: block;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}
    .dettaglioEsercizio i, .dettaglioVideo i {
        background-color: #65b22e;
        color: #2b5d07;
        padding: 7px;
        border: 1px solid #2b5d07;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
    }
        .dettaglioEsercizio i:hover, .dettaglioVideo i:hover {
            background-color: #2b5d07;
            color:#fff;
        }
.caricamentoSuccesso {
    display: none;
    font-weight: 500;
    color: #65b22e;
}
.imgAttuale {
    width:100%;
    max-width:350px;
    border:1px solid #ccc;
}
    .imgAttuale img {
        width:100%;
    }
.frameVideoContent {
    display: inline-block;
    width: 25%;
    vertical-align: middle;
}
    .frameVideo {
        height: 0;
        overflow: hidden;
        padding-bottom: 56.25%;
        padding-top: 30px;
        position: relative;
    }
        .frameVideo iframe, .frameVideo object, .frameVideo embed {
            height: 100%;
            left: 0;
            position: absolute;
            top: 0;
            width: 100%;
        }
.dettaglioVideo {
    display: inline-block;
    margin-left: 2%;
    text-align:right;
    width:10%;
}
.nomeVideo {
    vertical-align: middle;
    display: inline-block;
    margin-left: 2%;
    width: 57%;
    text-align: left;
    font-weight:500;
}
.k-grid-header .k-header {
    color: #fff;
    background-color: #65b22e;
    border: 1px solid #4b8124;
}
.k-window-titlebar {
    padding: 15px 16px !important;
}
    .k-window-titlebar .k-window-action {
        width: 45px !important;
        height: 45px !important;
    }
.aggiungiDomandaReport {
    font-size: 25px;
    color: #fa6908;
    cursor: pointer;
    margin:35px auto 0 auto;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
.aggiungiDomandaReport:hover {
    color:#222;
}
.rispostaSiNoContent {
    display:none;
}
.selectIcone {
    font-family: "Font Awesome 5 Free";
}
.icon-picker-list {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    padding-left: 0;
}
    .icon-picker-list li {
        display: flex;
        flex: 0 0 10%;
        float: left;
        width: 10%;
    }
    .icon-picker-list a {
        background-color: #f9f9f9;
        border: 1px solid #fff;
        color: black;
        display: block;
        flex: 1 1 auto;
        font-size: 12px;
        line-height: 1.4;
        padding: 10px;
        text-align: center;
        user-select: none;
    }
        .icon-picker-list a:hover,
        .icon-picker-list a.active {
            background-color: #65b22e;
            color: #fff;
            cursor: pointer;
            text-decoration: none;
        }
    .icon-picker-list .far {
        font-size: 24px;
    }
.rating-stars ul {
    list-style-type: none;
    padding: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
}
    .rating-stars ul > li.star {
        display: inline-block;
    }
        .rating-stars ul > li.star > i.fa {
            font-size: 25px; 
            color: #ccc;
            cursor:pointer;
        }
        .rating-stars ul > li.star.hover > i.fa {
            color: #FFCC36;
        }
        .rating-stars ul > li.star.selected > i.fa {
            color: #FF912C;
        }
.iconaReport {
    font-size: 45px;
    margin-right: 10px;
    background-color: #65b22e;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
    .iconaReport:hover {
        background-color: #fa6908;
    }
.iconaSelected {
    background-color: #fa6908 !important;
}
#sigarettegiornoVal, #smessoanniVal {
    display:none;
}
#gridMassimali .k-header.k-grid-toolbar, #gridContratti .k-grid-toolbar {
    border-color: #fa6908 !important;
    background-color: #fa6908 !important;
}
.k-grid .k-header .k-button {
    background-color: #222;
    border-color: #000;
}
.k-grid .k-header .k-button:hover {
    background-color: #444;
    border-color: #222;
}
#gridMassimali .k-button {
    font-size:13px;
}
.k-edit-form-container .k-primary {
    color: #fff;
}
.k-popup-edit-form span.k-numerictextbox {
    width: 150px !important;
}
#windowCompilaReport textarea {
    height:140px;
}
.formGroupCentrato {
    text-align:center;
}
.contentDateGrafico .formGroup30 {
    float: none;
    width: 100%;
    text-align: center;
}
.iconaTab {
    text-align:center;
}
    .iconaTab i {
        background-color: #fa6908;
        color: #fff;
        cursor: pointer;
        border: 1px solid #d94700;
        transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
        padding:10px;
    }
        .iconaTab i:hover {
            background-color:#333;
            border:1px solid #222;
        }
.domandaContent {
    background-color:#efefef;
    padding:10px;
    border-radius:3px;
    border:1px solid #ccc;
}
.inputAddDomanda {
    background-color: #fa6908;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    border: 1px solid #d94700;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
    .inputAddDomanda:hover {
        background-color: #d94700;
    }
.divElencoDomandeReport {
    margin-top:20px;
}
    .divElencoDomandeReport p {
        font-size:15px;
        font-weight:500;

    }
.elencoDomandeReport {
    margin-top: 10px;
}
.rigaDomanda {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}
    .rigaDomanda .domanda {
        font-weight: 500;
        color: #fa6908;
    }
    .rigaDomanda .buttonDelDomanda {
        cursor: pointer;
        color: #222;
        font-size: 20px;
        transition: all 0.2s linear 0s;
        -moz-transition: all 0.2s linear 0s;
        -webkit-transition: all 0.2s linear 0s;
        -o-transition: all 0.2s linear 0s;
    }
        .rigaDomanda .buttonDelDomanda:hover {
            color: #fa6908;
        }
.sliderReport .reportCampoContent {
    margin-top: 10px;
}
.sliderReport .reportCampoContent02 {
    display:inline-block;
    width:150px;
    margin-top:10px;
}
    .sliderReport .formGroup50 span.k-numerictextbox {
        width: 150px;
    }
.contentVerticale {
    height:230px;
}
.titoloReportWindow {
    font-size:20px;
    font-weight:500;
    margin-bottom:15px;
}
.tabReport {
    width:100%;
    margin-bottom:20px;
}
    .tabReport th {
        padding: 10px;
        background-color: #65b22e;
        color: #fff;
        font-weight: 500;
        border: 1px solid #4b9417;
    }
    .tabReport td {
        padding: 10px;
        background-color: #f7f7f7;
        border: 1px solid #ccc;
        text-align: center;
        vertical-align: middle;
    }
.reportView .rating-stars ul > li.star > i.fa, .reportView .iconaReport {
    cursor: default;
}
.reportView .iconaReport {
    font-size: 25px;
}
    .reportView .iconaReport:hover {
        background-color: #65b22e;
    }
.reportView .rigaDomanda {
    display: inline-block;
}
.reportView .areaText {
    background-color:transparent;
    border:0px;
    padding:0px;
    height:100px;
}
.commentoAdmin {
    width: 100%;
    height: 200px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    border:0px;
}


.divCharScroll {
    overflow-x: auto;
    white-space: nowrap;
}
.boxRicercaTabAlimentare .boxSearch {
    width:100%;
}
.boxRicercaTabAlimentare .addUtente {
    width: 49.3%;
    margin-left: 0%;
    margin-top: 10px;
}
.k-scrollview {
    border:0px;
}
.k-scrollview-next, .k-scrollview-prev {
    background-color: #65b22e;
    height: auto;
    top: auto;
    bottom: 0px;
    padding: 10px;
}
    .k-scrollview-next span, .k-scrollview-prev span {
        color: #fff;
        font-size:30px;
    }
.k-scrollview-prev {
    right: 60px;
    left: inherit;
}
.iconaReportDomanda {
    font-size: 35px;
    margin-right: 10px;
    background-color: #65b22e;
    padding: 5px 15px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    display: inline-block;
}
    .iconaReportDomanda i {
        vertical-align:middle;
    }
    .iconaReportDomanda span {
        font-size: 20px;
        font-weight:500;
        margin-left: 10px;
        display: inline-block;
        vertical-align: middle;
    }
.reportCampoContent, .reportCampoContent02 {
    margin-bottom:10px;
}
.mottoIndex {
    position: absolute;
    left: 50%;
    bottom: 20px;
    font-size:11px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    text-align: center;
    color:#fff;
}
    .mottoIndex a:link, .mottoIndex a:visited {
        color:#fff;
    }
    .mottoIndex a:hover {
        color: #65b22e;
    }
.numericContent span.k-numerictextbox {
    background-color: #fafafa !important;
    border: 1px solid #ccc !important;
    width: 100px !important;
}
.ricettaModContent {
    background-color: #eee;
    border: 1px solid #ccc;
    padding: 10px;
}
.content404 {
	width:100%;
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	padding:0 15px;
}
	.content404 img {
		width:100%;
		max-width:418px;
		display:block;
		margin:auto;
	}
.tasto404 {
	width: 100%;
	max-width: 230px;
	border-radius: 40px;
	color: #fff;
	font-size: 13px;
	background-color: #65b22e;
	padding: 12px;
	text-align: center;
	text-transform: uppercase;
	margin:30px auto 0 auto;
	display:block;
}
.contentCommentoCoach {
    width: 100%;
    padding: 10px;
    background-color: #fa6908;
    border: 1px solid #d85700;
    color:#fff;
}
.visualizzaTicket {
    background-color: #65b22e;
    color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
    display: inline-block;
    margin: 5px 5px 0 0;
    cursor: pointer;
}
.titleFAQ {
    font-size:18px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:15px;
}
.btnAssistenza {
    display: block;
    background-color: #65b22e;
    border-radius: 4px;
    border: 1px solid #2b5d07;
    color: #fff;
    margin-top: 20px;
    font-size: 13px;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
}
    .btnAssistenza:hover {
        background-color: #2b5d07;
    }
.listaFAQ {
    margin-top:40px;
}
    .listaFAQ li {
        line-height: 20px;
        list-style-type: square;
        margin-left: 20px;
        margin-bottom:20px;
    }
        .listaFAQ li a:visited, .listaFAQ li a:link {
            color:#222;
            font-weight:500;
            text-transform:uppercase;
        }
        .listaFAQ li a:hover {
            color: #fa6908;
        }
.listaFaqInterno {
    margin-top: 20px;
}
    .listaFaqInterno li {
        line-height: 20px;
        list-style-type:decimal;
        margin-left: 20px;
        margin-bottom: 20px;
    }
.screenFAQ {
    width: 100%;
    max-width: 280px;
    border: 1px solid #ccc;
    margin: 10px auto 25px auto;
    display: block;
}
#windowAddVisite span.k-numerictextbox {
    width:100% !important;
}
#windowAddVisite .k-numeric-wrap.k-state-hover, #windowAddVisite .k-numeric-wrap.k-state-focused {
    box-shadow: none !important;
}
.distanza01 {
    margin-right:10px;
}
.distanza02 {
    margin-right:23px;
}
.labelOrdina {
    margin-top: 10px;
}
    .labelOrdina .spanOrdina {
        margin-right: 22px;
    }
.k-numeric-wrap.k-state-hover, .k-numeric-wrap.k-state-focused {
    box-shadow: none !important;
}
/********* MEDIA QUERIES VERSIONE DESKTOP **********/
@media only screen and (min-width : 1025px) {
    .ricettaModContent {
        padding: 20px;
    }
    .avatarEsercizio {
        width: 10%;
        display: inline-block;
        margin:auto;
    }
    .reportCampoContent {
        width: 50%;
        display: inline-block;
        margin-bottom: 15px;
    }
    .reportCampoContent02 {
        width: 30%;
        display: inline-block;
        margin-bottom: 15px;
    }
        .reportCampoContent02 span.k-numerictextbox {
            width: 110px;
        }
    .nomeEsercizio {
        display: inline-block;
        margin-left: 2%;
        width: 50%;
        text-align:left;
    }
    .dettaglioEsercizio {
        display: inline-block;
        width: 36%;
        margin-top: 0px;
    }
        .dettaglioEsercizio i {
            float:right;
        }
    .logoLogin {
        max-width: 190px;
    }
    .hamburger {
        display: none;
    }
    .menu ul li a:link, .menu ul li a:visited {
        padding: 25px 5px;
    }
    .menu {
        width: 300px;
        display: block !important;
    }
    .tastoAssistenzaMenu {
        width: 270px;
    }
    .content {
        width: auto;
        margin: 80px 20px 70px 320px;
    }
    .boxRicercaAggiungi .boxSearch {
        width: 92%;
    }
    .boxRicercaAggiungi .addUtente {
        width: 6%;
    }
    .infoUtenteLista {
        width: 67%;
    }
    .logoDesktop {
        display: block;
        margin: 15px;
        width: 100%;
        max-width: 110px;
        float: left;
    }
    footer {
        padding-left:300px;
    }
    .boxDashboard {
        width: 23%;
        padding: 40px 20px;
        margin: 0 1% 20px 1%;
    }
    .obiettivo, .buttonDettCal {
        width: 50%;
        margin: 40px auto;
    }
    .dettAlimento span, .ricercaContent span, .espandiAlimento {
        font-size: 13px;
    }
    .avatarContent {
        width: 32.3333%;
        float: left;
        padding: 30px;
        background-color: #fff;
        margin: 0 0.5%;
    }
    .avatarProfilo {
        margin: 0;
    }
    #fileToUpload, .avvisoUpload {
        text-align: left;
        margin: 15px 0 0 0;
        padding-left: 0px;
    }
    .bottoneAvatar {
        display: inline-block;
        margin: 20px auto;
    }
    .noteContent {
        display: flex;
        width: 100%;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .boxNota, .boxScheda {
        width: 32.3333%;
        margin: 20px 0.5% 0 0.5%;
        min-height: 200px;
    }
        .boxNota .footerNota, .boxScheda .footerScheda {
            position: absolute;
            bottom: 0px;
            left: 0px;
            width: 100%;
        }
    .boxValutazione .inputFull {
        width: 50%;
        display: inline-block;
        padding: 0 10px;
        margin-bottom: 20px;
        vertical-align: top;
    }
    .dettAlimento02 {
        display: flex;
        justify-content: space-between;
    }
    .inputTextSmall {
        width: 100px;
    }
    .quantityContent {
        margin-top:0px;
    }
    #windowAddVisite label {
        font-size: 15px;
    }
    .formFotoVisite {
        float:left;
        width:32.3333%;
        margin:0 0.5%;
    }
    .colCestino {
        width: 5%;
    }
    .colPic {
        width: 10%;
    }
    .colTesto {
        width: 90%;
    }
    .boxGraficiRiepilogo img {
        width: 25%;
        padding: 20px;
    }
    .tabPastiA {
        font-size: 14px;
    }
    .esercizioContent span {
        max-width: 100%;
    }
    .elencoEserciziContent .esercizioContentScheda {
        width: 48%;
        float: left;
        margin: 20px 1%;
    }
    .labelInline {
        display: inline-block !important;
    }
    .formGroupCentrato {
        text-align:left;
    }
    .contentDateGrafico .formGroup30 {
        float: left;
        width: 30%;
        text-align: left;
    }
    .boxRicercaTabAlimentare .boxSearch {
        width: 75%;
    }
    .boxRicercaTabAlimentare .addUtente {
        margin-top: 0px;
        margin-left: 1%;
    }
    .distanza01 {
        margin-right: 0;
    }
    .distanza02 {
        margin-right: 0;
    }
    .riepilogoUtentiAttivi02 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .labelOrdina {
        margin-top:0;
    }
        .labelOrdina .spanOrdina {
            margin-right: 0;
        }
}
@media only screen and (max-width : 414px) {
	#notificationWindow {
		width: 330px;
		right: 20px;
	}
	#notificationWindow::before {
		margin-left: 300px;
	}
	.contenutoNotifica {
		width: 240px;
	}
}
@media only screen and (max-width : 320px) {
    body {
        background-color:#fff;
    }
    .content {
        width: 100%;
        padding: 10px;
        margin: 80px 0 0 0;
        border: none;
    }
    .periodoRiferimentoCalendario {
        padding: 5px;
        margin-bottom: 15px;
        font-size: 13px;
        line-height: 19px;
    }
    .breadcrumb {
        margin-bottom:15px;
    }
    .breadcrumb span {
        margin: 0px 5px;
    }
    .periodoRiferimento {
        padding: 10px;
    }
    nav {
        height: 60px;
    }
    .hamburger {
        padding: 17px 10px;
    }
    .avatarCircle {
        width: 45px;
        height: 45px;
        margin: 8px 10px 0 0;
        border: 1px solid #fff;
    }
    .chatDaniele {
        margin: 12px 10px 0 0;
    }
    .notification {
        margin: 15px 20px 0 0;
    }
    #notificationWindow {
        width: 300px;
    }
    .contenutoNotifica {
        width: 230px;
    }
    .totaliPasto, .obiettivoPasto {
        padding: 10px 5px;
    }
    .buttonImpostazioni {
        margin-bottom:15px;
    }
    .boxPasto {
        margin-top:15px;
    }
    .menu ul {
        margin-top: 45px;
    }
    .breadcrumb p {
        line-height:20px;
    }
}

/******** CLASSI DI SOVRASCRIZIONE ********/
.noMarginBottom {
    margin-bottom:0px;
}
.marginBottom10 {
    margin-bottom: 10px;
}
.marginBottom20 {
    margin-bottom: 20px;
}
.marginBottom30 {
    margin-bottom: 30px;
}
.marginBottom40 {
    margin-bottom: 40px;
}
.marginBottom50 {
    margin-bottom: 50px;
}
.noMarginBottom {
    margin-bottom:0px !important;
}
.marginLeft5 {
    margin-left:5px;
}
.marginRight5 {
    margin-right: 5px;
}
.marginTop20 {
    margin-top: 20px;
}
.marginTop25 {
    margin-top: 25px;
}
.marginTop30 {
    margin-top: 25px;
}
.marginTop80 {
    margin-top:80px;
}
.floatLeft {
    float:left;
}
.floatRight {
    float: right;
}
.paddingTop20 {
    padding-top:20px;
}
.alignCenter {
    text-align:center;
}
.alignLeft {
    text-align:left;
}
.labelInlineBlock {
    display:inline-block !important;
}
/******** CLASSI COLORE GIORNI CALENDARIO ********/
.db-pasto-style, .db-pasto-style-0 {
    background-color: #abcf91;
}
.db-pasto-style-1 {
    background-color: #91cfa7;
}

.db-pasto-fatto {
    background-color: #e7d963;
}

.db-pasto-dacompilare {
    background-color: #abcf91;
}

.db-notpasto-style {
    background-color: #8bce5a;
}

