#calendar-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.fc-header-toolbar {
  /*
  the calendar will be butting up against the edges,
  but let's scoot in the header's buttons
  */
  padding-top: 1em;
  padding-left: 1em;
  padding-right: 1em;
}
   
.cal-spinner {
   display: block; 
   text-align: center;
}
   
.icon-spinner {
  position: relative;
  width: 20px;
  height: 20px; 
  margin:50px auto;  
  -webkit-animation: spinner 2s infinite linear;
  animation: spinner 2s infinite linear;

   
}
   
.env-form-element__label{
   font-size: 1em;   
   font-weight:bold;
}
   
.rotate {
	animation: rotation 2s infinite linear;
   width: 3em;
   height: 3em;
}

.fc-list-heading .fc-widget-header a{
    text-transform: capitalize;
}

.fc-day-header {
   text-transform: capitalize;
}
   
#campus-calendar-select {  
   max-width: 30em;
}

.fc-left {
    width: 16em;
}

.fc-unthemed td.fc-today{
   background:#fce3a3;
}

@media screen and (max-width: 992px) {
      
  .fc-toolbar{
     display: block;
  }  
   
   .fc-center{
      margin-bottom: 1rem;
   }
   
   .fc-timeGridWeek-button,
   .fc-dayGridMonth-button {
      display: none;
   }
   
   .fc-left {
      margin-bottom: 0.5em;
   }
}

