html {
/* CALENDAR COLORS */

    --calendar-dark-gray: rgb(182, 182, 182);
    --calendar-light-gray: rgb(242, 242, 242);
    --calendar-dark-blue: rgb(47, 78, 161);
    --calendar-light-blue: rgb(161, 185, 219);
    --calendar-green: rgb(127, 198, 119);
}

#day-scheduler-main {
    display: flex;
    flex-direction: row;
    margin: 0;
    position: relative;
    overflow-x: auto;
    overflow-y: auto;
    /*height: 100%;*/ /*El no tener esto nos permite hacer scroll de la zona de trabajo de scheduling*/
}

#day-sch-items-container,
.scheduling-popup-container {
    display: flex;
    flex-direction: column;
}

#day-sch-items-container.left {flex: 2;}
#day-sch-items-container.right {flex: 8;}

/*** Intervention-monitoring-popup ***/

.intervention-monitoring-popup {
    text-align: left;
    background: var(--v-light-gray);
    position: absolute;
    left: 25%;
    right: 25%;
    top: 50%;
    transform: translateY(-50%);
    max-height: 90vh;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    overflow-x: auto;
    overflow-y: auto;
}

.intervention-monitoring-popup-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1em;
    /* padding-top: 1em; */
}

.intervention-monitoring-popup-item-container {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
    margin: .3em 0 .3em 0;
    min-height: 3em;
}

.intervention-monitoring-popup-icon {display: inline-flex; flex: 1.5; margin-right: 1em;}
.intervention-monitoring-popup-icon-2 {display: inline-flex; margin-right: 1em;}
.intervention-monitoring-popup-input {display: inline-flex; flex: 9;}

.intervention-monitoring-popup-header {
    display: flex;
    flex: 1;
    min-height: 3em;
    height: auto;
    flex-direction: row;
    align-items: center;
    /* border-bottom: solid 1px var(--gray); */
    font-size: 18px;
}

.intervention-monitoring-popup-button{
    background: none;
    width: 100%;
    height: 100%;
    padding: 1em 1.25em;
    border: solid 1px var(--ubk-blue);
    border-radius: .6em;
    box-sizing: border-box;
    margin: 1em 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.intervention-monitoring-popup-button.selected {
    background: var(--light-gray);
}

.add-reason-type-radiobutton-area {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 2.5rem;
    grid-auto-rows: 2.5rem;
    grid-row-gap: 0.5rem;
    row-gap: 0.5rem;
    min-height: 0;
    min-width: 0;
}

.add-reason-type-radiobutton-area > * {
    min-width: 0;
}

.add-reason-type-radiobutton {
    display: flex;
    align-items: center;
    margin: 0 .1em;
}

.intervention-monitoring-popup-select-container {
    display: flex;
    width: auto;
    height: 2em;
    align-items: center;
    border: solid 2px var(--ubk-blue);
    border-radius: 5px;
    /*background: var(--light-gray);*/
    margin-right: auto;
}

.intervention-monitoring-popup-label {
    margin-bottom: 1em;
    border-bottom: solid 1px var(--light-gray);
    padding-bottom: 0.3rem;
    font-style: italic;
}

.intervention-monitoring-popup-label .main-header {
    margin: 0px;
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 0.3px;
}

.intervention-monitoring-popup-label .sub-header1 {
    font-style: italic;
    margin: 0.5em 0;
}

.intervention-monitoring-popup-label .sub-header-info {
    padding: 0.3em 0;
}

.intervention-monitoring-popup-label .sub-header-info-key {
    font-weight: bold;
    margin-right: 0.3em;
}

.intervention-monitoring-popup-label .sub-header-info-val {
    text-transform: capitalize;
}

.intervention-monitoring-popup-label .badge-container {
    margin: 0.6em 0 0.5em 0;
}

.intervention-monitoring-popup-label .badge--cancelled {
    font-style: normal;
    background: #E49189;
    padding: 0.3em;
    border-radius: 5px;
    color: white;
}

.intervention-monitoring-popup-label .badge--completed {
    font-style: normal;
    background: #7fc677;
    padding: 0.3em;
    border-radius: 5px;
    color: white;
}

.intervention-monitoring-popup-label .badge--upcoming {
}

.btn.scheduler {
    background: var(--ubk-blue);
    border: solid 2px var(--ubk-blue);
    color: white;
    border-radius: 5px;
    display: inline-block;
    box-sizing: border-box;
    height: 24px;
    line-height: 24px;
    outline: 0;
    padding: 0 .5rem;
    text-transform: uppercase;
    font-size: 12px;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
}

.intervention-monitoring-period-select{
    display: flex;
    flex: 1;
    margin: .2em .5em;
    justify-content: flex-start;
    background: none;
    border: none;
}

.add-intervention-monitoring-textarea-container {
    /*display: flex;
    padding: 0 2em;
    align-items: center;
    width: 95%;
    justify-content: center;*/
}

.add-intervention-monitoring-textarea-input {
    /*display: flex;
    border: solid 1px var(--light-gray);
    padding: 5px 10px;
    margin: 1em 0 .5em 0;
    width: 95%;
    resize: none;*/

    height: 6em;
    width: 24rem;
    border-radius: 0.5em;
}


.intervention-monitoring-date-select-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: solid 1px var(--light-gray);
    border-radius: 5px;
    background: var(--light-gray);
    height: 2em;
}

.intervention-monitoring-time-select-items {
    display: inline-flex;
    flex: 2;
    padding: .2em 1em;
    justify-content: center;
}

.intervention-monitoring-select-container .scheduling-date-select-items:not(:last-child) {
    border-right: solid 1px var(--dark-gray);
}

/*** DAY SCHEDULER - left side items and new event popup ***/

.add-scheduler-new-event-popup {
     text-align: left;
     background: var(--v-light-gray);
     position: absolute;
     left: 25%;
     right: 25%;
     top: 50%;
     transform: translateY(-50%);
     max-height: 90vh;
     border-radius: 10px;
     overflow: hidden;
     padding: 20px;
     overflow-x: auto;
     overflow-y: auto;
     white-space: pre-line;
 }

.add-scheduler-single-intervention-popup {
     text-align: left;
     background: var(--v-light-gray);
     position: absolute;
     left: 5%;
     right: 5%;
     top: 50%;
     transform: translateY(-50%);
     max-height: 90vh;
     border-radius: 10px;
     overflow: hidden;
     padding: 20px;
     overflow-x: auto;
     overflow-y: auto;
 }

.scheduling-popup-item-container {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
    margin: .3em 3em .3em 0;
    min-height: 3em;
    max-height: 3.5em;
}

.scheduling-popup-icon {display: inline-flex; flex: 1; margin-right: 1em;}
.scheduling-popup-input {display: inline-flex; flex: 9;} /* Será utilizado en un futuro para hacerlo tan limpio como el de calendar*/

.scheduling-title-item {
    display: flex;
    flex: 1;
    text-align: left;
    border: none;
    background: none;
    border-bottom: solid 2px var(--blue);
    padding: 5px 10px;
    margin: 5px 0;
    font-size: 20px;
}

.scheduling-date-select-container {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;
    border: solid 1px var(--light-gray);
    border-radius: 5px;
    background: var(--light-gray);
    height: 2em;
}

.scheduling-date-time-select-items {
    display: inline-flex;
    flex: 2;
    padding: .2em 1em;
    justify-content: center;
}

.scheduling-date-select-container .scheduling-date-select-items:not(:last-child) {
    border-right: solid 1px var(--dark-gray);
}

.scheduling-select-container {
    display: flex;
    width: auto;
    height: 2em;
    align-items: center;
    border: solid 2px var(--ubk-blue);
    border-radius: 5px;
    /*background: var(--light-gray);*/
    margin-right: auto;
}

.scheduling-period-select{
    display: flex;
    flex: 1;
    margin: .2em .5em;
    justify-content: flex-start;
    background: none;
    border: none;
}

.scheduling-selected-staff {
    display: flex;
    width: 30%;
    height: 2em;
    align-items: center;
    border: solid 1px var(--light-gray);
    border-radius: 5px;
    margin: .2em auto .2em 0;
    /*flex-direction: row;*/
}

.scheduling-selected-staff-name {
    display: flex;
    flex: 1;
    margin: .2em .5em;
    justify-content: flex-start;
    font-size:14px;
}

.add-event-date-location {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.add-event-date {
    color: gray;
    display: flex;
    /*flex: 1;*/
    text-align: center;
    border: solid 2px var(--gray);
    border-radius: 5px;
    padding: 5px 0;
    margin: .5em 0;
    width: 70%;
}

.add-event-date-scheduler {
    display: flex;
    flex: 1;
    margin: .2em .5em;
    justify-content: flex-start;
    background: none;
    border: none;
    width 40%;
}

.selected-calendars-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    /*align-items: center;*/
    /*margin: .3em 3em .3em 0;*/
    min-height: 3em;
}

/**** DAY SCHEDULER - right side items ****/

.day-sch-right-side-container {
    display: flex;
    flex-direction: row;
    margin-left: 1em;
    font-size: 12px;
}

/* header */

.day-sch-right-side-container.header {min-height: 60px; height: 60px;}

.day-calendar-header-left {display: flex; flex: 1;}

.day-calendar-header-identifier-list {display: flex; flex: 11; flex-direction: row;}

.day-sch-identifier-container {
    display: flex;
    flex: 1;
    padding: .3em 1em;
    justify-content: flex-end;
    align-items: center;
}

.day-sch-identifier-name {
    text-transform: uppercase;
    font-size: 14px;
}

/* day event row */

.day-sch-right-side-container.day-event {height: auto;}

.day-calendar-day-event-gmt-container {display: flex; width: 80px; /*flex: 1;*/ flex-direction: column;}

.day-sch-gmt-text-container {
    display: flex;
    flex:  1;
    align-items: center;
    justify-content: center;
    border-bottom: solid 1px var(--gray);
    border-right: solid 1px var(--gray);
}

.day-sch-gmt-text {text-transform: uppercase;}

.day-calendar-day-event-list {display: flex; flex: 11; flex-direction: row; color: var(--white);}

.day-sch-day-event-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    border-bottom: solid 1px var(--gray);
    border-right: solid 1px var(--gray);
}

.day-sch-day-event-item-container {
    display: flex;
    margin-right: 1.5em;
    margin-bottom: .3em;
    margin: 0 1.5em .3em .5em;
}

.day-sch-day-event-item {
    display: flex;
    width: calc(100% - 1em);
    height: 20px;
    align-items: center;
    background: var(--light-red);
    border-radius: 4px;
    padding-left: 1em;
}



/* main events table */

#day-calendar-main-events-table-screen {max-height: 900px; /*780px;*/ overflow-y: hidden; /*auto;*/ margin-left: 1em; font-size: 12px;}

.main-events-list {height: 1320px; /*1152px;*/ display: flex; margin-top: -420px;}

.main-events-hour-axis-container {
    display: inline-flex;
    width: 80px;
    /*flex: 1;*/
    flex-direction: column;
    position: relative;
}

#main-events-table-column {
    display: inline-flex;
    flex: 1;
    flex-direction: column;
    position: relative;
}

.main-events-hour-container,
.main-events-body-column-cell {
    display: flex;
    height: 60px; /*48px;*/
}

.main-event-hour-text-container {
    display: inline-flex;
    flex: 3;
}

.main-event-hour-text {
    position: relative;
    top: 48px;/*42px;*/
    width: 100%;
    text-align: right;
}

.main-event-hour-border {
    display: inline-flex;
    flex: 1;
    border-right: solid 1px var(--gray);
    border-bottom: solid 1px var(--gray);
    margin-left: 1em;
}

.main-events-body-container {
    display: inline-flex;
    flex: 11;
    flex-direction: row;
    color: var(--white);
}

.main-events-table-cell {
    display: inline-flex;
    flex: 1;
    flex-direction: column;
    border-right: solid 1px var(--gray);
    border-bottom: solid 1px var(--gray);
}

.evento-prueba-calculo {
    border: solid 1px var(--white);
    border-radius: 5px;
    position: absolute;
    overflow: hidden;
}

.prueba-evento1 {
    height: 78px;
    width: 95%;
    top: 1%;
    left: 1%;
    background: blue;
    border: solid 1px;
    border-radius: 5px;
    position: absolute;
    z-index: 4;
    padding: 8px;
}

.prueba-evento2 {
    height: 78px;
    width: 30%;
    top: 20%;
    left: 60%;
    background: green;
    border: solid 1px;
    border-radius: 5px;
    position: absolute;
    z-index: 5;
    padding: 8px;
}

.prueba-evento3 {
    height: 448px;
    width: 50%;
    top: 50%;
    left: 1%;
    background: gray;
    border: solid 1px;
    border-radius: 5px;
    position: absolute;
    z-index: 6;
    padding: 8px;
}

.prueba-evento4 {
    height: 128px;
    width: 70%;
    top: 10%;
    left: 1%;
    background: yellow;
    border: solid 1px;
    border-radius: 5px;
    position: absolute;
    z-index: 4;
    padding: 8px;
}

.prueba-evento5 {
    height: 78px;
    width: 60%;
    top: 60%;
    left: 1%;
    background: blue;
    border: solid 0px;
    border-radius: 5px;
    position: absolute;
    z-index: 5;
}

.prueba-evento6 {
    height: 200px;
    width: 30%;
    top: 70%;
    left: 1%;
    background: red;
    border: solid 0px;
    border-radius: 5px;
    position: absolute;
    z-index: 6;
}

.prueba-evento7 {
    height: 780px;
    width: 60%;
    top: 5%;
    left: 1%;
    background: orange;
    border: solid 0px;
    border-radius: 5px;
    position: absolute;
    z-index: 4;
}

.prueba-evento8 {
    height: 100px;
    width: 60%;
    top: 70%;
    left: 10%;
    background: blue;
    border: solid 0px;
    border-radius: 5px;
    position: absolute;
    z-index: 5;
}

.prueba-evento9 {
    height: 138px;
    width: 60%;
    top: 75%;
    left: calc(99% - 60%);
    background: green;
    border: solid 0px;
    border-radius: 5px;
    position: absolute;
    z-index: 6;
}



/**** semicorchete arrows "<" ****/

.semicorchete-arrow-container {
    padding: 0 1em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.semicorchete-arrow-btn {
    transition: transform .5s;
    width: 1em;
}

.semicorchete-arrow-btn.top {
    -webkit-transform: ratate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.semicorchete-arrow-btn.right {
    -webkit-transform: ratate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.semicorchete-arrow-btn.left {
    -webkit-transform: ratate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

/***************************
 *****SCHEDULER LEGEND *****
 ***************************/


.scheduler-legend {
    border: dotted var(--ubk-blue);
    margin-top: 50px;
    height: auto;
}


.legend-row {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
    height: 70%;
}

.legend-title {
    margin-top: 5px;
    margin-left: 5px;
    font-weight: bold;
    white-space: nowrap;
    width: 50%;
}

.title1 {
    color: var(--calendar-dark-gray);
}

.title2 {
    color: var(--calendar-dark-blue);
}

.title3 {
    color: var(--calendar-green);
}

.legend-text1 {
    width: 45%;
    margin-right: 5px;
    font-size: small;
}

.legend-text2 {
    width: 45%;
    font-size: small;
}

.legend-text3 {
    font-size: small;
     width: 100%;
}

.legend-symbol {
    border-radius: 5px;
    margin-right: 5px;
    width: 5%;
    height: 50%;
}



.symbol1 {
    background: var(--calendar-dark-gray);
    border: 3pt solid var(--calendar-dark-gray);
    margin-left: 5px;
}

.symbol2 {
    background: var(--calendar-dark-blue);
    border: 3pt solid var(--calendar-dark-blue);
}

.symbol3 {
    background: var(--calendar-light-gray);
    border: 3pt solid var(--calendar-dark-gray);
    margin-left: 5px;
}

.symbol4 {
    background: var(--calendar-light-blue);
    border: 3pt solid var(--calendar-dark-blue);
}

.symbol5 {
    background: var(--calendar-light-gray);
    border: 3pt dotted var(--calendar-dark-gray);
    margin-left: 5px;
}

.symbol6 {
    background: var(--calendar-light-blue);
    border: 3pt dotted var(--calendar-dark-blue);
}

.symbol7 {
    background: var(--calendar-green);
    border: 3pt solid var(--calendar-green);
    margin-left: 5px;
}



/***************************
 *****INTERVENTION LIST ****
 ***************************/

 .intervention-list-row {
    border-bottom: solid;
}

.intervention-list-col {
    display: inline-block;
    margin-right: .8em;
}

.col-separator {
    width: 3%;
    background: var(--ubk-blue)
    }

.date-summary {
    font-weight: bold;
    text-align: center;
}

.cancel-button {
    width: 15%;
    align-self: center;}

.cal__event--dark-gray {
    background: var(--calendar-dark-gray);
}

.cal__event--light-gray {
    background: var(--calendar-light-gray);
}

.cal__event--dark-blue {
    background: var(--calendar-dark-blue);
}

.cal__event--light-blue {
    background: var(--calendar-light-blue);
}

.cal__event--green {
    background: var(--calendar-green);
}

.rbc-calendar {
    height: 800px;
}

/*
* Necesario para que el evento del calendario no solape la ventana modal
*/
.rbc-row-content {
    z-index: 0;
}

.daily-calendar__layout {
    /* flex: 1.5; */
    /* margin: 1em 1em auto 2em; */
    width: 73%;
    padding: 1em;
}

.cal__event--red {
    background: var(--red);
}

.cal__event--semi-trans-white {
    background: var(--semi-transparent-white);
    color: black;
}

.sche-cal {
    /* width: 500px; */
}

.sche-cal__main {
    display: flex;
    /* justify-content: space-evenly; */
}

.sche-cal__main-title {
    display: flex;
    justify-content: center;
}

.sche-cal__prof-title {
    display: flex;
    justify-content: flex-end;
    margin: 1rem 2rem 1rem 0;
}

.sche-cal__section {
    /* width: 40%; */
    flex: 1.5;
    margin: 0 3rem;
}

.sche-cal__section-calendar {
    flex: 3;
    margin: 0 1rem;
}

.sche-cal__lef-elem {
    margin: 1.5rem 0;
    display: flex;
    justify-content: space-between;
}

.sche-cal__lef-elem-checkbox {
    margin: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    /* background-color: var(--light-gray); */
    align-items: center;
}

.sche-cal__lef-elem--centered {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.sche-cal__lef-elem--start {
    margin: 1.5rem 0;
    display: flex;
    justify-content: flex-start;
}

.rbc-event.sche-cal__event--available {
    background-color: var(--calendar-green);
    color: black;
    border: none;
}

.rbc-event.sche-cal__event--out-of-working-time {
    background-color: var(--calendar-dark-gray);
    color: black;
    border: none;
}

.rbc-event.sche-cal__event--out-of-working-time-interv-end {
    background-color: var(--calendar-light-gray);
    color: black;
    border-color: var(--calendar-dark-gray);
    border-width: 3pt;
}

.rbc-event.sche-cal__event--interv-other-user {
    background-color: var(--calendar-light-blue);
    color: black;
    border-style: dotted;
    border-color: var(--calendar-dark-blue);
    border-width: 4pt;
}

.rbc-event.sche-cal__event--interv-other-prof {
    background-color: var(--calendar-light-blue);
    color: black;
    border-color: var(--calendar-dark-blue);
    border-width: 3pt;
}

.rbc-event.sche-cal__event--interv-user-with-prof {
    background-color: var(--calendar-dark-blue);
    color: white;
}

.intervention__li--date-header {
    list-style: none;
    font-weight: bold;
    font-size: 1.3rem;
    margin-left: 1em;
    margin-top: 0.7em;
}

.intervention__li {
    list-style: none;
    display: flex;
    margin: 0.5em;
}

.intervention__li--container {
    margin-bottom: 1em;
    margin-top: 0.7em;
}

.intervention__li-data-container {
    display: block;
    flex: 5
}

.intervention__li-data {
    display: block;
}

.intervention__li-date-str {
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    font-style: italic;
}

.intervention__li-button {
    flex: 1;
}

.intervention__li--cancelled {
    color: var(--red)
}

.intervention__li--completed {
    color: var(--green)
}

.intervention__li--non-scheduled {
    /* color: var(--yellow) */
    color: #b59f32
}

.intervention__li--upcoming {

}

.intervention__li--selected {
    background-color: #77a6ce;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px;
}

.intervention__list--collapsed {
    display: none;
}

.service-title-collaps {
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 0;
    background-color: #f5f4f4;
    border-radius: 5px;
    padding: 0.5em;
    margin: 1em auto 1em;
    display: flex;
    justify-content: space-between;
}

.service-title-button {
    border: none;
    background-color: white;
    border-radius: 5px;
}

.cal-event__cell--cancelled {
    background-color: var(--red);
}

.cal-event__cell--completed {
    background-color: var(--green);
}

.cal-event__cell--regular {
    background-color: var(--semi-transparent-white);
    color: black;
}

.cal-event__cell-all-profs--red--cancelled {
    border: 4px solid red !important;
    background-color: var(--red);
}

.cal-event__cell-all-profs--red--completed {
    border: 4px solid red !important;
    background-color: var(--green);
}

.cal-event__cell-all-profs--red--regular {
    border: 4px solid red !important;
    background-color: var(--semi-transparent-white);
    color: black;
}
.cal-event__cell-all-profs--blue--cancelled {
    border: 4px solid blue !important;
    background-color: var(--red);
}

.cal-event__cell-all-profs--blue--completed {
    border: 4px solid blue !important;
    background-color: var(--green);
}

.cal-event__cell-all-profs--blue--regular {
    border: 4px solid blue !important;
    background-color: var(--semi-transparent-white);
    color: black;
}
.cal-event__cell-all-profs--green--cancelled {
    border: 4px solid green !important;
    background-color: var(--red);
}

.cal-event__cell-all-profs--green--completed {
    border: 4px solid green !important;
    background-color: var(--green);
}

.cal-event__cell-all-profs--green--regular {
    border: 4px solid green !important;
    background-color: var(--semi-transparent-white);
    color: black;
}

.cal-event__cell-all-profs--yellow--cancelled {
    border: 4px solid yellow !important;
    background-color: var(--red);
}

.cal-event__cell-all-profs--yellow--completed {
    border: 4px solid yellow !important;
    background-color: var(--green);
}

.cal-event__cell-all-profs--yellow--regular {
    border: 4px solid yellow !important;
    background-color: var(--semi-transparent-white);
    color: black;
}
.cal-event__cell-all-profs--brown--cancelled {
    border: 4px solid brown !important;
    background-color: var(--red);
}

.cal-event__cell-all-profs--brown--completed {
    border: 4px solid brown !important;
    background-color: var(--green);
}

.cal-event__cell-all-profs--brown--regular {
    border: 4px solid brown !important;
    background-color: var(--semi-transparent-white);
    color: black;
}

.cal-event__cell-all-profs--orange--cancelled {
    border: 4px solid orange !important;
    background-color: var(--red);
}

.cal-event__cell-all-profs--orange--completed {
    border: 4px solid orange !important;
    background-color: var(--green);
}

.cal-event__cell-all-profs--orange--regular {
    border: 4px solid orange !important;
    background-color: var(--semi-transparent-white);
    color: black;
}
.cal-event__cell-all-profs--purple--cancelled {
    border: 4px solid purple !important;
    background-color: var(--red);
}

.cal-event__cell-all-profs--purple--completed {
    border: 4px solid purple !important;
    background-color: var(--green);
}

.cal-event__cell-all-profs--purple--regular {
    border: 4px solid purple !important;
    background-color: var(--semi-transparent-white);
    color: black;
}

.rbc-selected {
    background-color: #77a6ce;
}

.cal-header__container {
    display: flex;
    justify-content: space-between;
}

.cal-header__btn-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cal-header__btn--selected {
    border: none;
    /*font-weight: bold;*/
    font-size: 1.2rem;
    background-color: var(--ubk-blue);

    color: white;
    border-radius: 5px;
    display: inline-block;
    box-sizing: border-box;
    /*height: 28px;*/
    /*line-height: 24px;*/
    outline: 0;
    padding: .5rem .75rem;
    /*text-transform: uppercase;*/
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.cal-header__btn {
    border: 1px solid white;
    /*font-weight: bold;*/
    font-size: 1.2rem;
    background-color: white;

    border-radius: 5px;
    display: inline-block;
    box-sizing: border-box;
    /*height: 28px;*/
    /*line-height: 24px;*/
    outline: 0;
    padding: .5rem .75rem;
    /*text-transform: uppercase;*/
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.cal-header__date {
    letter-spacing: 0;
}

.interv-filter-select {
    font-size: 1.2rem;
    padding: 0.3em;
    border-radius: 5px;
    background-color: white;
}

.interv-popup-interv-status {
    text-align: center;
    margin: 0 auto 2em;
}

.interv-popup-interv-status > .text {
    color: white;
    padding: 0.5em;
    border-radius: 5px;
}

.interv-popup-interv-status > .text.done {
    background-color: var(--green);
}

.interv-popup-interv-status > .text.cancelled {
    background-color: var(--red);
}

.interv-popup-interv-status > .info {
    margin-top: 0.5em;
}

.interv-popup-interv-status .reason-title {
    font-weight: bold;
}

.interv-popup-interv-status .reason {
    padding-left: 0.3em;
}

.interv-popup-interv-status .comment-title {
    font-weight: bold;
}

.interv-popup-interv-status .comment {
    padding-left: 0.3em;
}

.interv-popup-interv-status .comment-container {
    padding-top: 0.3em;
}

.interventions-head-title-container {
    margin-bottom: 1em;
}

.interventions-head-title-container .title {
    font-size: 1.5rem;
    font-weight: bold;
}

.interventions-head-title-container .group-by-services {
    display: flex;
    justify-content: space-between;
    margin: 1em 0 2em;
    align-items: center;
    border-radius: 5px;
    padding: 0.6em;
    background-color: #f5f4f4;
    cursor: pointer;
}

.interventions-head-title-container .checkbox {
    transform: scale(1.5);
    cursor: pointer;
}

.create-event-btn__layout {
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}

.create-event-btn {
    background-color: #2e4da0;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.5em;
    font-size: 1.125em;
}

.prof-event-title-popup {
    font-size: 1.5rem;
    font-weight: bold;
}

.prof-event-title-popup-container {
    margin: 0 auto;
}

.prof-event-row-container {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
    margin: .3em 5em;
    min-height: 3em;
    max-height: 3.5em;
}

.prof-event-row-title {
    margin-right: 1em;
    width: 20%;
}

.prof-list {
    padding: 1em;
}

.prof-list__item {
    border: 1px solid;
    border-radius: 5px;
    /*padding: 0.5em;*/
    margin-bottom: 0.5rem;
    display: flex;
}

.prof-list__item-input {
    transform: scale(1.5);
    margin: 0.5em;
}

.prof-list__item-color-band {
    /*background: red;*/
    width: 5%;
}

@media only screen and (max-width: 1024px) {
    /*body {
        font-size: 0.9rem;
    }*/

    #day-scheduler-main {
        flex-direction: column-reverse;
    }

    .daily-calendar__layout {
        width: 100%;
        padding: 0;
    }
}
