body{
    font-family: 'Inter';
    background-color: #f8f8f8;
}
.patina{
    display: flex;
    z-index: 30;
    position: fixed;
    width: 100%;
    height: 100%;
    align-content: center;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.patina-pagina{
    display: none;
    z-index: 30;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    align-content: center;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.alert-pers{
    width: 50%;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    border: solid thin #7a9ab1;
    text-align: center;
}
.alert-pers.login-modal{
    width: min(420px, 92vw);
    padding: 0;
    overflow: hidden;
}
.login-modal-header{
    background-color: #0d1d29;
    padding: 24px 20px 20px;
    text-align: center;
}
.login-modal-logo{
    width: min(220px, 72%);
    height: auto;
    display: inline-block;
}
.login-modal-body{
    padding: 20px 24px 24px;
}
label{
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.input-pers{
    width: 300px;
    -webkit-appearance: none;
    appearance: none;
    border: solid thin #7a9ab1;
    background-color: white;
    border-radius: 5px;
    padding: 5px;
}
.btn-pers{
    -webkit-appearance: none;
    appearance: none;
    background-color: #1c3e56;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    border: solid thin transparent;
    border-radius: 5px;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    min-width: 150px;
    transition: all ease 0.3s;
}
.btn-pers:hover{
    background-color: #7a9ab1;
}
.btn-invertito{
    -webkit-appearance: none;
    appearance: none;
    background-color: purple;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    border: solid thin transparent;
    border-radius: 5px;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    min-width: 150px;
    transition: all ease 0.3s;
}
.btn-invertito:hover{
    background-color: rgb(172, 71, 172);
}
.menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background-color: #1c3e56;
    text-align: center;
    overflow-y: scroll;
}
.menu::-webkit-scrollbar{
    width: 1px;
}
.btn-menu{
    -webkit-appearance: none;
    appearance: none;
    color: #e2f3ff;
    font-size: 12px;
    text-transform: uppercase;
    background-color: transparent;
    width: 80%;
    margin-left: 10%;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    border: none;
    transition: all ease 0.3s;
    margin-bottom: 10px;
}
.btn-menu:hover{
    background-color: #e2f3ff;
    color: #1c3e56;
}
.btn-menu.attivo{
    background-color: #e2f3ff;
    color: #1c3e56;
}
.ico-menu{
    margin-right: 10px;
    font-size: 20px;
}
.header{
    position: fixed;
    top: 0;
    width: calc(100% - 200px);
    padding-right: 10px;
    padding-left: 10px;
    left: 200px;
    background-color: #1c3e56;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
    z-index: 4;
}
.pagina{
    margin-top: 50px;
    width: calc(100% - 220px);
    margin-left: 210px;
}
.titolo{
    font-size: 15px;
    font-weight: 700;
}
.cont-box{
    width: 100%;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
}
.box{
    width: 300px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    border: solid thin #f1f1f1;
    transition: all ease 0.3s;
}
.box-100{
    width: 100%;
}
.box-50{
    width: calc(50% - 10px);
}
.box-link{
    cursor: pointer;
}
.box-link:hover{
    box-shadow: 0px 0px 10px #d1d1d1;
}
.tit-box{
    font-size: 20px;
}
.num-grande-box{
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: right;
}
.box-special{
    background-color: rgba(28, 62, 86, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: white;
    border: solid thin #1c3e56;
}
.box-special-2{
    background-color: rgba(28, 62, 86, 0.2);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: solid thin #1c3e56;
}
.h-box{
    display: flex;
    align-items: center;
    align-content: flex-start;
    justify-content: flex-start;
    gap: 10px;
}
.ico-box{
    width: 36px;
    height: 36px;
    background-color: white;
    color: #1c3e56;
    border-radius: 5px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.ico-box-red{
    background-color: coral;
    color: white;
}
.ico-box-purple{
    background-color: plum;
    color: purple;
}
.ico-box-blue{
    background-color: #1c3e56;
    color: #7a9ab1;
}
.ico-box-orange{
    background-color: darkorange;
    color: antiquewhite;
}
.ico-box-green{
    background-color: #6B8E6B;
    color: #afd4af;
}
.blinka{
    animation: blink infinite 0.5s linear;
}
@keyframes blink {
    0%{
        opacity: 0.2;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0.2;
    }
}
.btn-menu.no-link{
    font-weight: 200;
    letter-spacing: 3px;
}
.btn-menu.logo{
    justify-content: center;
}
.btn-menu.logo img{
    height: 30px;
}
.avatar{
    margin-left: 20px;
    -webkit-appearance: none;
    appearance: none;
    background-color: #e2f3ff;
    color: #1c3e56;
    text-transform: uppercase;
    border-radius: 50%;
    border:none;
    font-size: 12px;
    height: 30px;
    width: 30px;
}
.avatar-2{
    margin-left: 5px;
    width: 30px;
    height: 30px;
    background-color: rgba(226, 243, 255, 0.2);
    border: solid thin rgba(226, 243, 255, 1);
    color: rgba(226, 243, 255, 1);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-sizing: border-box;
    overflow: hidden;
}

.avatar-2 .material-icons-round{
    font-size: 18px;
    line-height: 1;
    display: block;
    margin: 0;
    padding: 0;
}
.menu-utente{
    position: fixed;
    top: 50px;
    background-color: #1c3e56;
    color: white;
    z-index: 5;
    right: 20px;
    padding: 20px;
    font-size: 12px;
    display: none;
}
.btn-menu-utente{
    -webkit-appearance: none;
    appearance: none;
    color: #e2f3ff;
    font-size: 12px;
    text-transform: uppercase;
    background-color: transparent;
    width: 100%;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    border: none;
    transition: all ease 0.3s;
}
.btn-menu-utente:hover{
    color: #f8f8f8
}
.h-pagina{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}
.bread-pagina{
    font-size: 12px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    gap: 20px;
}
.cont-table{
    width: 100%;
    border-radius: 10px;
    border: solid thin #e2f3ff;
}
.cont-table table{
    width: 100%;
    font-size: 12px;
}
.cont-table table th,td{
    padding: 10px;
}
.cont-table table th{
    background-color: #1c3e56;
    color: white;
}
.cont-table table th:first-child{
    border-top-left-radius: 10px;
}
.cont-table table th:last-child{
    border-top-right-radius: 10px;
}
.cont-table table tbody tr:nth-child(odd) td{
    background-color: #f1f1f1;
}
.paginatore{
    display: inline-flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    border: solid thin #d1d1d1;
    border-radius: 4px;
    padding: 5px;
}
.paginatore .material-icons-round{
    cursor: pointer;
}
.chip-table{
    font-size: 10px;
    background-color: #d1d1d1;
    border: solid thin #a1a1a1;
    display: inline-block;
    padding: 1px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 30px;
}
.chip-ok{
    border-color: rgb(107, 142, 107);
    background-color: rgba(107, 142, 107, 0.5);
}
.chip-ko{
    border-color: rgb(139, 0, 0);
    background-color: rgba(139, 0, 0, 0.8);
    color: white;
    font-weight: 700;
}
.chip-orange{
    border-color: darkorange;
    background-color: goldenrod;
    color: white;
    font-weight: 700;
}
.chip-link{
    cursor: pointer;
}
.cerca-pagina{
    margin-left: 20px;
}
.elenco-box{
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
}
.elenco-box-red{
    background-color: coral;
    color: white;
    font-weight: 500;
    font-size: 14px;
}
.ico-elenco-box{
    cursor:pointer;
    color:#333;
    font-size:16px;
    position:absolute;
    top:10px;
    right:30px;
}
.ico-in-elenco{
    width: 60%;
    height: 30px;
    margin-left: 20%;
    display: inline-flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 20px;
    border-radius: 50px;
    border: solid thin #1c3e56;
    background-color: rgba(28, 62, 86, 0.8);
    margin-top: 20px;
}
.ico-ico-in-elenco{
    cursor: pointer;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 30px;
    height: 20px;
    border-radius: 30px;
    background-color: #e2f3ff;
}
.ico-ico-in-elenco .material-icons-round{
    font-size: 15px;
    color: #1c3e56;
}
.box-allegato-add{
    position: relative;
    border: 2px dashed #cfcfcf;
    cursor: pointer;
    transition: 0.2s;
}
.box-allegato{
    text-align: center;
}
.box-allegato-add:hover{
    background: #f8f8f8;
}
.box-allegato-add.dragover{
    border-color: limegreen;
    background: #f2fff2;
    transform: scale(1.02);
}
.box-allegato-add small{
    font-size: 11px;
    color: #666;
}
.box-allegato>img{
    width: 50px;
}

.cal-settimana{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}
.cal-settimana:hover .cal-giorno{
    opacity: 0.5;
}
.cal-giorno{
    aspect-ratio: 1/2;
    width: 14%;
    border-right:dashed thin #d1d1d1;
    border-bottom:dashed thin #d1d1d1;
    padding: 4px;
    transition: all ease 0.3s;
}
.cal-settimana .cal-giorno:hover{
    opacity: 1;
    background-color: #e1e1e1;
}
.cal-giorno:nth-child(7){
    border-right: none;
}
.cal-settimana:last-child .cal-giorno{
    border-bottom: none;
}
.cal-giorno-week{
    aspect-ratio: initial;
    border-right:solid thin #d1d1d1;
    border-bottom:solid thin #d1d1d1;
    background-color: #3765ae;
    color: white;
    font-size: 14px;
    text-align: center;
}
.cal-giorno-oggi{
    background-color: #f1f1f1;
}
.cal-giorno-sett{
    width: 100%;
    padding: 10px;
    border-bottom: dashed thin #d1d1d1;
    min-height: 100px;
}
.cal-giorno-sett:last-child{
    border: none;
}
.cal-chip-giorno{
    background-color: #3765ae;
    color: white;
    display: inline-block;
    font-size: 12px;
    padding: 2px;
    text-align: center;
    border-radius: 5px;
    width: 40px;
}
.cal-attivita-m{
    width: 100%;
    border-radius: 5px;
    background-color: #ec6294;
    color: white;
    padding: 4px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 10px;
    overflow: hidden;
}
.cal-attivita-m-fullday{
    background-color: #c66a12 !important;
}
.cal-attivita-m-multiday{
    border-left: solid 3px rgba(255,255,255,0.75);
    padding-left: 6px;
}
.cal-attivita-badge{
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    color: #ffffff;
    border-radius: 8px;
    padding: 1px 6px;
    font-size: 9px;
    margin-bottom: 3px;
}
.cal-attivita-m-more{
    width: calc(100% + 8px);
    margin-left: -4px;
    border-radius: 0;
}
.cal-attivita-m-more-left{
    width: calc(100% + 4px);
    margin-left: 0px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.cal-attivita-m-more-right{
    width: calc(100% + 4px);
    margin-left: -4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.cal-attivit-week{
    width: 100%;
    border-radius: 5px;
    background-color: #ec6294;
    color: white;
    padding: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 12px;
}
.cal-attivit-week-fullday{
    background-color: #c66a12;
}
.cal-day-header{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.cal-day-allday{
    padding: 10px;
    border: dashed thin #d1d1d1;
    border-radius: 8px;
    margin-bottom: 10px;
}
.cal-day-grid{
    width: 100%;
}
.cal-day-row{
    width: 100%;
    display: flex;
    align-items: flex-start;
    border-top: solid thin #f1f1f1;
}
.cal-day-hour{
    width: 70px;
    min-width: 70px;
    padding: 10px 6px;
    font-size: 11px;
    color: #6f6f6f;
}
.cal-day-events{
    width: calc(100% - 70px);
    padding: 6px 0;
}
.barra-progresso{
    width: 50%;
    height: 10px;
    background-color: #e1e1e1;
    border-radius: 5px;
    overflow: hidden;
    display: inline-block;
}
.barra-progresso div{
    width: 50%;
    background-color: #6B8E6B;
    height: 10px;
    border-radius: 5px;
}
.ico-materiale{
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ico-materiale .material-icons-round{
    font-size: 20px;
}
.ico-materiale-img{
    background: linear-gradient(135deg, #4f8df7, #57c5f7);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(79, 141, 247, 0.25);
}
.news-informatori-box{
    max-height: 220px;
    overflow-y: auto;
    border: solid thin #d1d1d1;
    border-radius: 8px;
    padding: 10px;
    background: #fafafa;
}