/* ************************************************************************************ */
/* Tutto quello che non è stato commentato come "parte da aggiungere" non va modificato */
/* ************************************************************************************ */

/* ********************************************************************* */
/* Parte da aggiungere al CSS per la gestione del contenitore principale */
/* ********************************************************************* */
.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

/* ******************************************************************* */
/* Parte da aggiungere al CSS per la gestione dell'oggetto sidebarMenu */
/* ******************************************************************* */
#sidebarMenu {
    width: 250px;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    transition: all 0.3s;
    background-image: linear-gradient(#ED1E25, #1471B7);
}

    #sidebarMenu.active {
        margin-right: -250px;
    }

    #sidebarMenu a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        color: white;
        display: block;
        transition: 0.3s;
    }

        #sidebarMenu a:hover {
            font-weight: 400;
        }
/* ******************************************************************* */
/* Fine parte relativa al'oggetto sidebarMenu */
/* ******************************************************************* */

/* ************************************************************* */
/* Parte da aggiungere per la gestione con contenitore "content" */
/* ************************************************************* */
#content {
    width: calc(100% - 250px);
    padding: 40px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    left: 0;
}

    #content.active {
        width: 100%;
    }
/* ************************************************************* */
/* Fine parte relativa all'oggetto "content" */
/* ************************************************************* */

body {
    background-image: linear-gradient(135deg, rgba(250, 190, 190, 0.25), rgba(190, 210, 230, 0.25));
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #1471B7;
    height: 100vh;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    color: #1471B7;
}

.bootstrap-select .dropdown-toggle {
    background-color: white;
}

.bootstrap-select .dropdown-menu li a {
    color: #1471B7;
}

.dropdown-item.active {
    color: white;
    background-color: #e9ecef;
}

.bs-searchbox .form-control {
    color: #1471B7;
}

#spinnerLogo {
    animation-name: provaAnimazione;
    animation-duration: 4s;
}

@keyframes provaAnimazione {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-control::placeholder { /* Per Chrome, Firefox, Opera, Safari */
    color: #1471B7;
    opacity: 1; /* Per Firefox */
    font-weight: 200;
    font-style: italic;
}

.form-control:-ms-input-placeholder { /* Per Internet Explorer 10 e 11 */
    color: #1471B7;
    font-weight: 200;
    font-style: italic;
}

.form-control::-ms-input-placeholder { /* Per Microsoft Edge */
    color: #1471B7;
    font-weight: 200;
    font-style: italic;
}

.table-condensed {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #1471B7;
    font-size: 14px;
}

div.dataTables_length select {
    background-color: transparent;
    border-style: solid;
    border-width: 1px;
    border-color: #1471B7;
    color: #1471B7;
}

div.dataTables_info {
    color: #1471B7;
}

.paginate_button {
    font-size: 16px;
    padding-left: 10px;
}

#pannello_utente {
    font-size: 12px;
    margin-bottom: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 30px;
}

#menu_home {
    font-size: 16px;
}

#logoRapicom:hover {
    cursor: pointer;
}

a:hover {
    cursor: pointer;
}

.elemento_breadcrumb {
    color: #ED1E25;
    font-weight: 300;
    text-decoration: none;
}

    .elemento_breadcrumb:hover {
        color: #ED1E25;
        font-weight: 300;
        text-decoration: none;
        border: none;
    }

.dati_ricarica {
    color: #1471B7;
    border-style: solid;
    border-color: #1471B7;
    border-width: 1px;
}

.button-home {
    /*height: 150px;*/
    min-height: 150px;
    max-height: 200px;
    min-width: 150px;
    color: #1471B7;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
}

.button-tagli {
    min-width: 100px;
    min-height: 50px;
    max-width: 150px;
    max-height: 150px;
    color: #1471B7;
}

.button-risultati {
    /*height: 150px;*/
    min-height: 100px;
    max-height: 150px;
    min-width: 100px;
    max-width: 150px;
    color: #1471B7;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
}

.navbar {
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    min-width: 150px;
}

.hover_element:hover {
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.da_leggere {
    color: orange;
}

.letto {
    color: green;
}

input[type='range'] {
    -webkit-appearance: none;
    background-color: #ddd;
    height: 12px;
    border-radius: 10px;
    width: 100%;
}

    input[type='range']::-webkit-slider-runnable-track {
        -webkit-appearance: none;
        height: 12px;
    }

    input[type='range']::-webkit-slider-thumb {
        -webkit-appearance: none;
        border-radius: 50%;
        cursor: pointer;
        height: 20px;
        width: 20px;
        border: 0;
    }

    input[type='range']::-moz-range-thumb {
        color: #1471B7;
        border-radius: 50%;
        cursor: pointer;
        height: 20px;
        width: 20px;
        border: 0;
    }

    input[type="range"]::-moz-range-track {
        background-color: #ddd;
    }

    input[type="range"]::-moz-range-progress {
        background-image: linear-gradient(to left, #ED1E25, #1471B7);
        height: 12px;
        border-radius: 10px;
    }

    input[type="range"]::-ms-fill-upper {
        background-color: #ddd;
        border-radius: 10px;
    }

    input[type="range"]::-ms-fill-lower {
        background-image: linear-gradient(to left, #ED1E25, #1471B7);
        border-radius: 10px;
    }

.blink_me {
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
