﻿/* RPS - These rules maintain the row height 
         when hovering the bottom event in an adjacent day. */

 .fc-content-skeleton > table > tbody > tr {
  height: 15px;
}

.fc-content-skeleton > table > tbody > tr > td {
  height: 15px;
}

.fc-more-cell > div {
  display: block;
  padding: 0 5px 5px 5px;
} 
/* End RPS  adjacent day fix */

 .fc-toolbar .fc-right {
    width: 60%;
}

.fc-right .of-button-group {
  margin-left: 20px;
}

.fc-right .of-button-group .btn {
  width: 120px;
}

.fc-right .fc-button-group,
.fc-center .fc-button-group {
  margin-left: 20px;
  margin-bottom: 20px;
}

.fc-right .fc-button-group:last-child,
.fc-center .fc-button-group:last-child {
  margin-bottom: 0;
}

.fc-event__hover {
  display: none;
  position: absolute;
  top: 0;
  left: calc(50% + 1px);
  transform: translateX(-50%);
  z-index: 99999;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 2px;
  margin: -1px;
  min-width: calc(100% + 2px);
  white-space: nowrap;
  background-color: inherit;
  color: inherit;
  padding: inherit;
  border: inherit;
  box-sizing: border-box;
}

.fc-event:hover .fc-event__hover {
  display: block;
} 

/* ensure modal is above button */
 .fc-toolbar .fc-state-active,
.fc-toolbar .ui-state-active {
  z-index: 1;
} 

/* fix modal layout in calendar */
 .fc-view .modal * {
  box-sizing: border-box;
}


 /* Filters */
 .fc-toolbar-chunk:last-child {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
 }
    .fc-toolbar-chunk:last-child .multiselect-native-select {
        display: block;
    }   