
/*CALENDAR*/
#calendar {
    height: 95% !important;
    box-shadow: none !important;
}
#calendar .fc-toolbar {
    height: auto;
    background-image: none !important;
}
.fc-toolbar-title {
    color: black !important;
    margin-right: 2.5rem !important;
}
#calendar .fc-toolbar:before {
    background: transparent !important;
    height: 0px;
}
.fc-toolbar h2 {
    font-weight: 500;
}
.fc-col-header-cell-cushion {
    color: white !important;
}
.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
    font-size: 24px;
    color: black;
}
.close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    float: right;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: .5;
}
.corporate-color {
    color: var(--main-color);
    font-weight: 700;
    font-size: 16px;
}
select {
    cursor: pointer;
}
.form-input {
    display: block;
    width: 100%;
    height: 38px;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: inset 0 0 0 rgb(0 0 0 / 0%);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.mt-4 {
    margin-top: 1.5rem;
}

.form-readonly {
    background-color: #ced4da !important;
    cursor: not-allowed;
}
.fc-event-title {
    color: black !important;
}
.fc-event-time {
    color: black !important;
}

.center-calendar {
    display: block;
    max-width: 1200px;
    width: 100%;
    margin: auto;
}
#calendar .fc-header-toolbar {
    background-color: #F6F7F7 !important;
}

.fc-event-title {
    height: 4rem !important;
}

.normal-fix .fc-timegrid-slots > table > tbody > tr {
    height: 4rem !important;
}
.ten .fc-timegrid-slots > table > tbody > tr {
    height: 6rem !important;
}

.more-than-ten .fc-timegrid-slots > table > tbody > tr {
    height: 12rem !important;
}

.max-size .fc-timegrid-slots > table > tbody > tr {
    height: 24rem !important;
}

.fc-scrollgrid-liquid > tbody > tr:nth-child(1) .fc-scroller-harness {
    height: 1px !important;
}

.fc-scrollgrid-liquid > thead > tr > th > div {
    height: 1px !important;
}

.fc-timegrid-body, .fc-timegrid-cols table{
    width: 100% !important;
}

.available{
    cursor: pointer;
}
.unavailable{
    cursor: not-allowed;
}
/*FIN CALENDAR*/

/*loding scree*/
.loading-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
    z-index: 9999;
  }
    
  
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  
  .loading-screen p {
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
  }
  
  
  .loader-wrapper {
    display: none;
  }
/*end loading screen*/