﻿
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css");

:root {
    --light: 80;
    /* the threshold at which colors are considered "light." Range: integers from 0 to 100,
recommended 50 - 70 */
    --threshold: 60;
    
}



html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    
    background-color: white;
    font-size: 14px;
   
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
    
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.loading-bar {
    position: absolute;
    top: calc(50% - 3px);
    left: calc(50% - 250px);
    width: 500px;
    height: 6px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2)
}

.loading-bar::after {
    content: '';
    display: block;
    width: 200px;
    height: 100%;
    background-color: #dc105a;
    animation: progressbar-slide 1s infinite;
    animation-timing-function: ease-in-out;
}

button.mat-button .mat-icon,
a.mat-button .mat-icon,
a.mat-raised-button .mat-icon,
a.mat-flat-button .mat-icon,
a.mat-stroked-button .mat-icon {
    vertical-align: top;
    font-size: 1.25em;
}

/* Rules for sizing the icon. */
.material-icons.md-18 {
    font-size: 18px;
    vertical-align: middle;
}

.material-icons.md-24 {
    font-size: 24px;
    vertical-align: middle;
}

.material-icons.md-36 {
    font-size: 36px;
    vertical-align:  middle;
}

.material-icons.md-48 {
    font-size: 48px;
    vertical-align: middle;
}


.page-header {
    /*background-color: #f7f7f7;*/
    background-color:transparent;
    border-bottom: 1px solid #d6d5d5;
    justify-content: center;
    height: 3rem;
    display: flex;
    align-items: center;
    font-size: medium
}

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
    color: rgba(0, 0, 0, 0.54);
}

    .material-icons.md-dark.md-inactive {
        color: rgba(0, 0, 0, 0.26);
    }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
    color: rgba(255, 255, 255, 1);
}

.material-icons.md-light.md-inactive {
    color: rgba(255, 255, 255, 0.3);
}

.material-icons.middle {
    vertical-align: middle;
}

.material-icons.orange600 {
    color: #FB8C00;
}

.material-icons.blue {
    color: cornflowerblue;
}

.alert-custom {
    background-color: rgba(255, 255, 255, 0.3)
    color: #fff;
}

.icon-txt {
    font-size: 10px;
    text-align: center;
}


.holiday {
    background-color: lightcoral;
    color: dimgray;
}

.weekdays {
    
    background-color: #79a0e6;
    color: darkgray;
}

.textDay
{
    font-size: small;

}

.e-details:before {
    content: '\e79b';
}

.e-3DBar2:before {
    content: '\e880';
}


.control-wrapper {
    
    width: 350px;
    
}

@@media (max-width: 900px) {
    .control-wrapper {
        width: 300px;
    }

   
}



.rz-button-text {
    font-size: smaller;
    margin: 0px;
    padding: 0px;
}

.column-width {
    width: 75px;
}

.note-report {
    white-space: pre-line;
}

.edocument-accordion-control {
    width: 250px;
    background-color: white;
    /*    border-right: solid 4px #d1dbe7;*/
    /*    margin-bottom: 10px;*/
    overflow-y: auto;
    margin-top: 0px;
    top: 80px;
    bottom: 10px;
    position: absolute;
    z-index: 2;
}

.edocument-accordion-content {
    position: absolute;
    top: 251px;
    bottom: 50px;
    left: 529px;
    right: 20px;
    z-index: 1;
}

.edocument-accordion-content-full {
    position: absolute;
    top: 251px;
    bottom: 50px;
    left: 275px;
    right: 20px;
    z-index: 1;
}

.sf-icon-ArrowheadRight {
    font-family: 'ArrowheadRight' !important;
    speak: none;
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-left: 0px;
}

.sf-icon-ArrowheadRight::before {
    content: "\e700";
    font-size: 8px;
}

/* Style the list */
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #eee;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}

.avatar {
    vertical-align: middle;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid black;
    margin: 10px;
}

td {
    vertical-align: middle;
}


.containerleft {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .containerleft {
        width: 540px;
    }
}

@media (min-width: 768px) {
    .containerleft {
        width: 720px;
    }
}

@media (min-width: 992px) {
    .containerleft {
        width: 960px;
    }
}

@media (min-width: 1200px) {
    .containerleft {
        width: 1140px;
    }
}

@media (max-width: 768px) {
    .rz-datatable-reflow table,
    .rz-datatable-reflow tbody,
    .rz-datatable-reflow tr {
        display: block;
    }
    html {
        font-size: 12px;
    }
    
    .rz-datatable-data td .rz-cell-data {
        font-size: 11px;
    }

}

/*#div-avatar {
    display: flex;
    width: 400px;
    margin: 100px auto;
    border-radius: 3px;
    justify-content: center;
}
*/
.e-avatar {
    margin: 2px;
}

.e-avatar.green {
    background-color: #87eb87;
}

.e-avatar.violet {
    background-color: #ee82ee;
}

.e-avatar.blue {
    background-color: #7171e4;
}

.e-avatar.red {
    background-color: #d86e6e;
}

.e-avatar.rose {
    background-color: #bc8f8f;
}




.label-floating {
    color: #222e3c;
    font-size: medium;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48
}

.bg-chat {
    background-image: url('../img/chat-bg2.png');
}

.text-visible {
    /* Any lightness value below the threshold will result in white, any above will result in black */
    
    mix-blend-mode: difference;
    color: white;
}

pre {
    font-size: 1em;
    font-family: Arial, Times, serif;
    white-space: pre-line;
}

.msg-chat {
   /* max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis !important;
    word-break: break-all !important;
    white-space: normal !important;*/
}

.pdf-box {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    
}

.tooltip-box
{
    background-color: yellow;
    color: dimgray;
}

.scheduler-day {
    cursor: pointer;
}

.scheduler-day:hover {
    text-decoration: underline;
}

.scheduler-day:active {
    text-decoration: underline;
}

.scheduler-day label
{
    cursor: pointer;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48
}

.offcanvas {
    bottom: initial;
}


.text-overlay {
    background-color:gray;
    opacity: .5;
    color: white;
}

.quadrato {
    width: 25px;
    height: 25px;
}

.DayWork {
    background-color:#b6cff5;
    color: #131313;

}

.DayHoliday {
    background-color: #fcbcbc;
    color: #131313;

}

.Note {
    background-color: #ffffcc;
    border-left: 6px solid #ffeb3b;
    min-height: 300px;
    
}


.container-scheduler {
    min-width: 800px;
}

pre {
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    overflow: auto;
}