/*
    INIZIO PROGRESS BAR
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/

.meterToRight {
    text-align: left;
}
.meterToLeft {
    text-align: right;
}

.meterToRight, .meterToLeft {
    /*height: 50px;  Can be anything */
    width: 100%;
    position: relative;
    margin: 0 0 0 0; /* Just for demo spacing */
    background: none; /* #555*/
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    padding: 0 5px 0 5px;
    -webkit-box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
    -moz-box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
    box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
    font-size: 12px;
    font-family: 'Overpass Bold', 'Verdana', 'Arial', 'Sans Serif' /*'Roboto Bold'  'Chivo Bold'*/;
}

    .meterToRight > span, .meterToLeft > span {
        display: block;
        height: 100%;
        background-color: rgb(69,104,220);
        background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0, rgb(69,104,220)), color-stop(1, rgb(107,220,215)) );
        background-image: -moz-linear-gradient( center bottom, rgb(69,104,220) 37%, rgb(107,220,215) 69% );
        -webkit-box-shadow: inset 0 2px 9px rgba(255,255,255,0.3), inset 0 -2px 6px rgba(0,0,0,0.4);
        -moz-box-shadow: inset 0 2px 9px rgba(255,255,255,0.3), inset 0 -2px 6px rgba(0,0,0,0.4);
        box-shadow: inset 0 2px 9px rgba(255,255,255,0.3), inset 0 -2px 6px rgba(0,0,0,0.4);
        position: relative;
        overflow: hidden;
        /*padding: 3px 5px 3px 5px;*/
        font-size: 0.7em;
        color: #fff;
    }

    .meterToLeft > span {
        -webkit-border-top-right-radius: 8px;
        -webkit-border-bottom-right-radius: 8px;
        -moz-border-radius-topright: 8px;
        -moz-border-radius-bottomright: 8px;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        -webkit-border-top-left-radius: 20px;
        -webkit-border-bottom-left-radius: 20px;
        -moz-border-radius-topleft: 20px;
        -moz-border-radius-bottomleft: 20px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        float: right;
        text-align: left;
    }

    .meterToRight > span {
        -webkit-border-top-right-radius: 20px;
        -webkit-border-bottom-right-radius: 20px;
        -moz-border-radius-topright: 20px;
        -moz-border-radius-bottomright: 20px;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        -webkit-border-top-left-radius: 8px;
        -webkit-border-bottom-left-radius: 8px;
        -moz-border-radius-topleft: 8px;
        -moz-border-radius-bottomleft: 8px;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        float: left;
        text-align: right;
    }

        .meterToLeft > span:after, .meterToRight > span:after, .animate > span > span {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, rgba(255, 255, 255, .2)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .2)), color-stop(.75, rgba(255, 255, 255, .2)), color-stop(.75, transparent), to(transparent) );
            background-image: -moz-linear-gradient( -45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent );
            z-index: 1;
            -webkit-background-size: 50px 50px;
            -moz-background-size: 50px 50px;
            -webkit-animation: move 2s linear infinite;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
            -moz-border-radius-topright: 8px;
            -moz-border-radius-bottomright: 8px;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            -webkit-border-top-left-radius: 20px;
            -webkit-border-bottom-left-radius: 20px;
            -moz-border-radius-topleft: 20px;
            -moz-border-radius-bottomleft: 20px;
            border-top-left-radius: 20px;
            border-bottom-left-radius: 20px;
            overflow: hidden;
        }

.animate > span:after {
    display: none;
}

.meterToLeft > .numeroProgress, .meterToRight > .numeroProgress {
    color:rgb(107,220,215);
    display: inline-block;
}

@-webkit-keyframes move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 50px 50px;
    }
}

.green > span {
    background-color: #4568dc;
    background-image: -moz-linear-gradient(top, #4568dc, #6BDCD7);
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #4568dc),color-stop(1, #6BDCD7));
    background-image: -webkit-linear-gradient(#4568dc, #6BDCD7);
    line-height: 15px;
}

.nostripes > span > span, .nostripes > span:after {
    -webkit-animation: none;
    background-image: none;
}
/*FINE PROGRESS BAR*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*INIZIO SNACKBAR*/
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #000; /* Black background color */
    border: 2px solid #f1f1f4;
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 5px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbar.show {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.7s;
        animation: fadein 0.5s, fadeout 0.5s 2.7s;
    }

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}
/*FINE SNACKBAR*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* caricamentoContenuti.aspx */

.ui-dialog .ui-widget-header {
    border: 1px solid #2c866f;
    background: #4568dc url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x;
    text-align: left;
    font-family: 'Overpass Bold', 'Verdana', 'Arial', 'Sans Serif' /*'Roboto Regular'  'Chivo Regular'*/;
}

.ui-dialog #dialog-testo {
    font-family: 'Overpass Regular', 'Verdana', 'Arial', 'Sans Serif' /*'Roboto Regular'  'Chivo Regular'*/;
}

.ui-dialog .ui-dialog-buttonset .ui-state-default {
    color: #000000;
}

.ui-dialog .ui-dialog-buttonset .ui-state-hover {
    color: #000000;
}
