﻿
/*Colori calendario ------------------------------------------------------------------*/

.GlyphState {
    width: 10px;
}

.coloreAssegnato {
    background: #5FC68F !important;
    text-shadow: 0 0 3px white;
}

.coloreDisponibilità {
    background: #9ECCF8 !important;
    text-shadow: 0 0 3px white;
}

.coloreFestivo {
    background: #F2FDB9 !important;
    text-shadow: 0 0 3px white;
}

.coloreSelezionato {
    /*background: #3B4135 !important;*/
    text-shadow: 0 0 3px white;
    border: 3px solid #3276AE;
    border-radius: 6px;
}

.coloreOggi {
    background: #9C9C9C !important;
    text-shadow: 0 0 3px white;
}


/*Colori riga tabella disponibilità --------------------------------------------------*/

/*Verde - turno assegnato*/
.assignedShift {
    background-color: #62CA7D !important;
    /*box-shadow: 0px 0px 10px #3D6146 inset;*/
}

/*Giallo - turno disponibilità ma non assegnato*/
.disponibilityShift {
    background-color: #9ECCF8 !important;
    /*box-shadow: 0px 0px 10px #213036 inset;*/
}

/*Bianco*/
.normalShift {
    background-color: white;
    /*box-shadow: 0px 0px 0px white;*/
}


/*Colori paginone -------------------------------------------------------------------*/

.canvasLegenda {
    width: 150px;
    height: 15px;
    border-radius: 10px;
}

.bianco {
    background-color: white;
    /*box-shadow: 0px 0px 10px #BABABA inset;*/
    border: 1px solid black;
}

.azzurro {
    background-color: #0d84cc; /*#4BBCED;*/
    /*box-shadow: 0px 0px 10px #236D8D inset;*/
}

.azzurroSW {
    background-color: #66acd6;
    /*box-shadow: 0px 0px 10px #236D8D inset;*/
}

.azzurroSede {
    background-color: #8abfde;
    /*box-shadow: 0px 0px 10px #236D8D inset;*/
}

.arancio {
    background-color: #FF7600;
    /*box-shadow: 0px 0px 10px #B25200 inset;*/
}

.rosa {
    background-color: #FFB7B7;
    /*box-shadow: 0px 0px 8px #970040 inset;*/
}

.verde {
    background-color: #62CA7D;
    /*box-shadow: 0px 0px 10px #3D6146 inset;*/
}

.grigio {
    background-color: grey;
    /*box-shadow: 0px 0px 5px #6C6C6C inset;*/
}

.grigio-stisce {
    background: repeating-linear-gradient( 45deg, #CFCFCF, /* Gray start */
    #CFCFCF 5px, /* Gray end */
    #787777 5px, /* Red start */
    #787777 10px /* Red end */
    );
    /*box-shadow: 0px 0px 5px #6C6C6C inset;*/
}

.warningCell {
    background-color: yellow;
    /*box-shadow: 0px 0px 5px #6C6C6C inset;*/
}

.anomaliaRossa {
    background-color: red;
    /*box-shadow: 0px 0px 5px #6C6C6C inset;*/
}

.anomaliaViola {
    background-color: #F9008D;
    /*box-shadow: 0px 0px 5px #6C6C6C inset;*/
}

.textInfo {
    color: black;
}

.malattia {
    /*background: #DDDDDD;*/
    /*box-shadow: 0px 0px 4px red inset;*/
    border-radius: 5px;
}

.legge104 {
    border-radius: 5px;
}

.legge104-da-approvare {
    font-weight: bold;
    color: red !important;
    font-size: 12px;
}

.legge104-approvata {
    font-weight: bold;
    font-size: 12px;
    color: green !important;
}

.label-paginone {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    /*margin-left: 3px;*/
    background-color: #d8e5f5;
    color: #4a4a4a;
    font-size: 11px;
    text-shadow: 0 0 2px white;
}

.form-control-label {
    border-top-left-radius: 0;
}

@keyframes blink {
    50% {
        background-color: #ff0000;
    }
}

.abnormal-blink {
    animation: blink 3.5s infinite alternate;
}


/******************** Progress Bar ********************/


/* Styling the determinate progress element */

progress[value] {
    border: none;
    width: 100%;
    height: 10px;
    background-color: whiteSmoke;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;
    color: royalblue;
    position: relative;
}

    progress[value]::-webkit-progress-bar {
        background-color: whiteSmoke;
        border-radius: 3px;
        box-shadow: 0 2px 3px rgba(0,0,0,.5) inset;
    }

    progress[value]::-webkit-progress-value {
        position: relative;
        background-size: 35px 20px, 100% 100%, 100% 100%;
        border-radius: 3px;
        animation: animate-stripes 5s linear infinite;
    }

@keyframes animate-stripes {
    100% {
        background-position: -100px 0;
    }
}


/*progress[value]::-webkit-progress-value:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    top: 7px;
    right: 7px;
    background-color: white;
    border-radius: 100%;
}


progress[value]::-moz-progress-bar {
    background-image: -moz-linear-gradient( 135deg, transparent, transparent 33%, rgba(0,0,0,.1) 33%, rgba(0,0,0,.1) 66%, transparent 66%), -moz-linear-gradient( top, rgba(255, 255, 255, .25), rgba(0,0,0,.2)), -moz-linear-gradient( left, #09c, #f44);
    background-size: 35px 20px, 100% 100%, 100% 100%;
    border-radius: 3px;
}

.css3::-webkit-progress-value {
    background-image: -webkit-linear-gradient( 135deg, transparent, transparent 33%, rgba(0,0,0,.1) 33%, rgba(0,0,0,.1) 66%, transparent 66%), -webkit-linear-gradient( top, rgba(255, 255, 255, .25), rgba(0,0,0,.2)), -webkit-linear-gradient( left, #09c, #ff0);
}

.css3::-moz-progress-bar {
    background-image: -moz-linear-gradient( 135deg, transparent, transparent 33%, rgba(0,0,0,.1) 33%, rgba(0,0,0,.1) 66%, transparent 66%), -moz-linear-gradient( top, rgba(255, 255, 255, .25), rgba(0,0,0,.2)), -moz-linear-gradient( left, #09c, #ff0);
}*/


.mogm-progress {
    width: 45px;
    height: 12px;
    border: 1px solid #f7f7f7;
    background-color: whitesmoke;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.45) inset;
    border-radius: 4px;
}

    .mogm-progress div {
        height: 100%;
        color: #fff;
        text-align: right;
        line-height: 22px; /* same as #progressBar height if we want text middle aligned */
        width: 0;
        /*background-color: #0099ff;*/
        border-radius: 5px;
    }

.progress-green {
    background-color: #0c7300;
}

.progress-yellow {
    background-color: #bcd208;
}

.progress-orange {
    background-color: #c57109;
}

.progress-red {
    background-color: #ff0000;
}


.btn span.glyphicon {
    opacity: 0.1;
}

.btn.active span.glyphicon {
    opacity: 1;
    color: green;
}

.tr-style-success {
    width: 2px;
    background: #5cb85c;
    border-bottom: 2px solid #5cb85c;
}

.tr-style-info {
    width: 2px;
    background: #5bc0de;
    border-bottom: 2px solid #5bc0de;
}

.full-width {
    width: 100% !important;
}

.table thead > tr > th, .table tbody > tr > th, .table tfoot > tr > th, .table thead > tr > td, .table tbody > tr > td, .table tfoot > tr > td {
    padding: 4px;
    line-height: 1.428571429;
    vertical-align: top;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.cx-logo-sv-shift {
    width: 16px;
}

.shift-with-location-discrepancy {
    border: 3px solid white;
    border-radius: 100%;
    background: white;
}

.help-cursor {
    cursor: help;
}
