/********
 * Colors
 ********/
/************
 * Typography
 ************/
/*
 * We can use the font weight fot the bold styling example below
 * .test-font { font-family: $font-default; } regular
 * .test-font-bold { font-family: $font-default; font-weight: $font-weight-bold; }
 * @see: _typography.scss
*/
/*****************
 * Global elements
 *****************/
/****************
 * Sizing/Spacing
 ****************/
/*******
 * Forms
 ******/
/***********
 * Bootstrap
 ***********/
/**********
 * Mappings
 *********/
/*
 * IMPORTANT:
 *   - This file should *only contain* variables not considered UN style guide *
 */
/**
  Help theming for rtl languages.
*/
/* background opacity */
/*
 * This handles indentation for the depth of child levels for accordion
 * TODO: improve this implementation, overly complex due to previous design
 */
/*
 * Reset the button appearance to make it look like regular text.
 *
 * The padding can be optionally passed, as it is usually overriden.
 *
 * @param {Number} $padding - The padding to apply to the button.
 */
.fc {
  --fc-small-font-size: 0.875rem;
  --fc-event-text-color: #404040;
}

.fc .btn {
  min-width: 0;
}

.fc .btn span.fa {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

@media (max-width: 991.98px) {
  .fc .fc-scroller-liquid {
    height: auto;
  }
  .fc .fc-view-harness {
    height: auto !important;
  }
  .fc .fc-view-harness-active > .fc-view {
    position: static;
  }
}
.fc .fc-header-toolbar {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 576px) {
  .fc .fc-header-toolbar {
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .fc .fc-header-toolbar {
    flex-wrap: nowrap;
  }
}
.fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) {
  flex: 0 0 auto;
  order: 2;
}

.fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) .btn {
  padding-inline: 1.2rem;
}

@media (min-width: 992px) {
  .fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) {
    order: 1;
  }
}
.fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(2) {
  flex: 0 0 100%;
  order: 1;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(2) {
    flex: 1;
    order: 2;
    margin-bottom: 0;
  }
}
.fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) {
  display: flex;
  flex: 0 0 auto;
  order: 3;
}

.fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) .btn-group:nth-child(2) {
  display: none;
}

@media (min-width: 992px) {
  .fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) .btn-group:nth-child(2) {
    display: block;
  }
}
.fc .fc-header-toolbar .fc-toolbar-title {
  text-align: center;
}

@media (min-width: 992px) {
  .fc .fc-header-toolbar .fc-toolbar-title {
    margin-inline-start: 1rem;
    text-align: left;
  }
}
.fc .fc-header-toolbar .fc-today-button {
  text-transform: uppercase;
}

.fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn {
  color: #212529;
  background-color: #fff;
  border-color: #009edb;
  color: #1c4969;
}

.fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn:hover {
  color: #212529;
  background-color: #bfe6f6;
  border-color: #bfe6f6;
}

.fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn:focus, .fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn.focus {
  color: #212529;
  background-color: #bfe6f6;
  border-color: #bfe6f6;
  box-shadow: 0 0 0 0.2rem rgba(5, 140, 192, 0.5);
}

.fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn.disabled, .fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn:disabled {
  color: #212529;
  background-color: #fff;
  border-color: #009edb;
}

.fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn:not(:disabled):not(.disabled):active, .fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn:not(:disabled):not(.disabled).active, .show > .fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn.dropdown-toggle {
  color: #fff;
  background-color: #0a5a82;
  border-color: #0a5a82;
}

.fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn:not(:disabled):not(.disabled):active:focus, .fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn:not(:disabled):not(.disabled).active:focus, .show > .fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(5, 140, 192, 0.5);
}

.fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn.disabled, .fc .fc-header-toolbar .fc-toolbar-chunk:last-child .btn:disabled {
  border-color: #f5f5f5;
  background-color: #f5f5f5;
  color: #bfbfbf;
}

.fc table tr:hover {
  background-color: transparent;
}

@media (max-width: 767.98px) {
  .fc table thead {
    display: table-header-group;
  }
  .fc table tbody tr {
    display: table-row;
  }
  .fc table tbody td {
    display: table-cell;
  }
  .fc table tbody td::before {
    display: none;
  }
}
.fc .fc-scrollgrid-section-header table {
  border-color: #bfbfbf;
}

.fc .fc-scrollgrid-section-header .fc-scroller th {
  background-color: #f2fafd;
  color: #1c4969;
  text-transform: uppercase;
}

.fc .fc-scrollgrid-section-header .fc-scroller th:not(:last-of-type) {
  border-right: 1px solid #bfbfbf;
}

.fc .fc-scrollgrid.table-bordered {
  border-width: 1px;
  border-color: #bfbfbf;
}

.fc .fc-scrollgrid.table-bordered > thead {
  border-width: 0;
}

.fc .fc-scrollgrid.table-bordered > thead > tr > td {
  border-width: 0;
}

.fc .fc-scrollgrid.table-bordered .fc-scroller tbody > tr {
  border-color: #bfbfbf;
}

.fc .fc-scrollgrid.table-bordered .fc-scroller tbody > tr > td {
  border-right: 1px solid #bfbfbf;
}

.fc .fc-daygrid-day .fc-daygrid-day-top {
  flex-direction: row;
}

.fc .fc-daygrid-day .fc-daygrid-day-number {
  padding: 0.25rem;
}

.fc .fc-daygrid-day.fc-day-other {
  background-color: #e6e6e6;
}

.fc .fc-daygrid-day.fc-day-other .fc-daygrid-day-top {
  opacity: 1;
  color: #525252;
}

.fc .fc-daygrid-day-events {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fc .fc-daygrid-event {
  margin-top: 0.25rem;
  border: none;
  padding: 0.125rem 0.25rem;
  white-space: wrap;
}

.fc .fc-daygrid-event .fc-event-main-frame {
  display: block;
}

.fc .fc-daygrid-event.fc-event-end, .fc .fc-daygrid-event.fc-event-start {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}

.fc .fc-daygrid-event .fc-event-time {
  display: inline;
  font-weight: normal;
}

.fc .fc-daygrid-event .fc-event-title-container {
  display: inline;
}

.fc .fc-daygrid-event .fc-event-title-container .fc-event-title {
  display: inline;
}

.fc .fc-dayGridMonth-view .fc-day-today .fc-daygrid-day-frame {
  margin-bottom: -4px;
  border: 2px solid #aa5d00;
  border-radius: 3px;
  background-color: #fffadf;
}

.fc .fc-list .fc-list-table {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 992px) {
  .fc .fc-list .fc-list-table {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
}
.fc .fc-list .fc-list-day {
  border: none;
  color: #1c4969;
  font-size: 1.5rem;
  font-family: var(--uw-font-display);
  text-align: left;
}

.fc .fc-list .fc-list-day > * {
  position: static;
}

.fc .fc-list .fc-list-day:first-child .fc-list-day-cushion {
  padding: 0;
}

@media (min-width: 992px) {
  .fc .fc-list.fc-listDay-view .fc-list-day {
    display: none;
  }
}
.fc .fc-list .fc-list-day-cushion {
  padding: 2rem 0 0 0;
}

.fc .fc-list .fc-list-event {
  display: block;
  position: relative;
  border-top: none;
  border-bottom: 1px solid #bfbfbf;
}

@media (min-width: 992px) {
  .fc .fc-list .fc-list-event {
    display: table-row;
  }
}
.fc .fc-list .fc-list-event:hover td {
  background-color: #f2fafd;
}

.fc .fc-list .fc-list-event-graphic {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 0;
  width: 0.25rem;
}

.fc .fc-list .fc-list-event-dot {
  display: none;
}

.fc .fc-list .fc-list-event-time {
  padding-left: 1rem;
  font-size: 1.125rem;
}

@media (max-width: 991.98px) {
  .fc .fc-list .fc-list-event-time {
    padding-bottom: 0;
  }
}
.fc .fc-list .fc-list-event-title a {
  color: #0a5a82;
  font-size: 1.25rem;
  font-family: var(--uw-font-display);
}

.fc .fc-list .fc-list-event-description {
  margin: 0;
}

.fc .fc-list .fc-list-empty {
  height: auto;
}

.fc .fc-timegrid .fc-timegrid-divider {
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  padding: 0;
  height: 0.5rem;
}

.fc .fc-timegrid .fc-timegrid-slots tr {
  border: none;
  border-bottom: 1px dotted #bfbfbf;
}

.fc .fc-timegrid .fc-timegrid-slots tr:has(.fc-timegrid-slot-minor) {
  border-bottom: 1px solid #bfbfbf;
}

.fc .fc-timegrid .fc-timegrid-slots .fc-timegrid-slot-minor {
  border: none;
}

.fc .fc-timegrid .fc-timegrid-event {
  border: none;
}

.fc .fc-popover-header {
  padding: 0.5rem;
}

.fc .fc-more-popover .fc-popover-body {
  padding: 0.25rem 0.25rem 0.5rem 0.25rem;
}

.fc .ajax-throbber-wrapper {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  z-index: 1;
  inset: 0;
  background-color: rgba(28, 73, 105, 0.33);
}

.fc .ajax-throbber {
  --sk-color: #009edb;
}
