:root {
  /* --fc-non-business-color: rgb(201, 0, 0); */
  --fc-small-font-size: 0.9em;
  --fc-button-text-color: #fff;
  --fc-button-bg-color: #2c3e50;
  --fc-button-border-color: #0000;
}
.fc .fc-header-toolbar.fc-toolbar {
  flex-wrap: wrap-reverse;
  column-gap: 10px;
  row-gap: 20px;
}

.fc .fc-header-toolbar.fc-toolbar {
  margin-bottom: 30px;
}

.fc .fc-button {
  color: #000;
  background-color: #fff;
  border-radius: 50px;
  border: 2px solid #000;
  padding-left: 0;
  padding-right: 0;
  white-space: nowrap;
}

.fc .fc-button:focus {
  /* outline: 4px dotted;
  outline: 15px auto -webkit-focus-ring-color; */
  outline: 0px;
  box-shadow: 0 0 0 0.2rem rgba(238, 145, 5, 0);
}

.fc .fc-button-group {
  align-items: center;
}

.fc .fc-button-primary:disabled {
  /* not DRY */
  color: rgb(128, 128, 128);
  /* color: var(--fc-button-text-color, #fff); */
  background-color: #f1f1f1;
  border-color: #f1f1f1;
}

/*************************************/
.fc .fc-prev-button.fc-button.fc-button-primary {
  padding: 0;
  min-width: 32px;
  min-height: 32px;
  height: 100%;
  margin-right: 6px !important;
}
.fc .fc-next-button.fc-button.fc-button-primary {
  padding: 0;
  min-width: 32px;
  min-height: 32px;
  height: 100%;
}

/*************************************/
/*************************************/
.fc .fc-button-primary {
  font-size: 13px;
  padding: 7px 10px;
  line-height: 14px;
  height: 100%;
  background-color: #f1f1f1;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.fc .fc-button.fc-button-primary.fc-button-active {
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  transition: all 0.2s ease;
}

.fc .fc-button.fc-button-primary:hover {
  color: #000;
  background-color: #f1f1f1;
  border: 2px solid #000;
  transition: all 0.2s ease;
}
.fc .fc-button.fc-button-primary:focus {
  color: #000;
  border: 2px solid #000;
}

.fc .fc-button.fc-button-primary:not(:disabled):active:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(46, 2, 2, 0);
}
.fc .fc-button.fc-button-primary:not(:disabled).fc-button-active:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(46, 2, 2, 0);
}
/*************************************/
/*************************************/
/* .fc .fc-button-primary {
  font-size: 13px;
  padding: 7px 10px;
  line-height: 14px;
  height: 100%;
  background-color: #f1f1f1;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.fc .fc-button-primary.fc-listMonth-button.fc-button-active {
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  transition: all 0.2s ease;
}

.fc .fc-button-primary.fc-listMonth-button:hover {
  color: #000;
  background-color: #f1f1f1;
  border: 2px solid #000;
  transition: all 0.2s ease;
}
.fc .fc-button-primary.fc-listMonth-button:focus {
  color: #000;
  border: 2px solid #000;
}

.fc .fc-button-primary.fc-listMonth-button:not(:disabled):active:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(46, 2, 2, 0);
}
.fc .fc-button-primary.fc-listMonth-button:not(:disabled).fc-button-active:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(46, 2, 2, 0);
} */
/*************************************/
/*************************************/
/*************************************/

.fc-direction-ltr .fc-button-group > .fc-button:not(:first-child) {
  margin-left: 0;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.fc-direction-ltr .fc-button-group > .fc-button:not(:last-child) {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  margin-right: 16px;
}
.fc-direction-rtl .fc-button-group > .fc-button:not(:first-child) {
  margin-right: 0;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  margin-right: 16px;
}
.fc-direction-rtl .fc-button-group > .fc-button:not(:last-child) {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.fc-icon-chevron-left:before {
  /* content: ''; */
  font-family: 'fcicons' !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.fc-icon-chevron-right:before {
  /* content: ''; */
  font-family: 'fcicons' !important;
  padding-left: 0px;
  padding-right: 0px;
}

.fc-direction-ltr .fc-toolbar > * > :not(:first-child) {
  margin-left: 30px; /* space between */
}
