
/* Tab */
.tab-container {
    position: relative;
    display: block;
    width: 100%;
}

.tab-container .tabs {
    position: relative;
    width: 80%;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-wrap: wrap;
}

.tab-container .tabs::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: .8px;
}

.tab-container .tab {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    line-height: 1;
    opacity: .5;
    border: 1px solid transparent;
    border-radius: .25rem .25rem 0 0;
    padding: .5rem .625rem .5rem .5rem;
    transform: translateY(1px);
    transition: all .3s;
}

.tab-container .tab:hover {
    opacity: 1;
}

.tab-container .tab.active {
    opacity: 1;
}

.tab-container .tab .icon {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: .25rem;
    text-align: center;
    line-height: 2.625rem;
}

.tab-container .tab .text-container {
    overflow: hidden;
    margin: 0 0 0 .5rem;
}

.tab-container .tab .title {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.tab-container .tab .title>span {
    font-weight: 300;
}

.tab-container .tab .desc {
    font-size: 0.7rem;
    padding: 0 0 0 1.5rem;
    white-space: nowrap;
}

.tab-container .tab-contents {
    position: relative;
    width: 100%;
}

.tab-container .tab-content {
    display: none;
    position: relative;
    padding: 1rem 0;
    overflow: hidden;
}

.tab-container .tab-content.active {
    display: block;
}

.tab-container .tab-content>*:first-child {
    margin-top: 0;
}

.tab-container .tab-content>*:last-child {
    margin-bottom: 0;
}

@media screen and (max-width:767.98px) {
    .tab-container .tab {
        border-radius: 0;
    }

    .tab-container .tab .text-container {
        width: 0;
        margin: 0;
    }

    .tab-container .tab.active .text-container {
        width: auto;
        margin: 0 0 0 .5rem;
    }
}


/* Tab */
.tab-container .tabs::before {
    background: #bfbfbf;
}

.tab-container .tab {
    border-color: #bfbfbf;
    color: #363636;
}

.tab-container .tab.active {
    border-color: #bfbfbf;
    background: #fff;
}

.tab-container .tab .icon {
    color: #fff;
    background: #1d684a;
    background: var(--color2);
}

.tab-container .tab:nth-child(6n+2) .icon {
    background: #0d838d;
    background: var(--color4);
}

.tab-container .tab:nth-child(6n+3) .icon {
    background: #c0ca67;
    background: var(--color1);
}

.tab-container .tab:nth-child(6n+4) .icon {
    background: #d7d8d0;
    background: var(--color5);
}

.tab-container .tab:nth-child(6n+5) .icon {
    background: #47484d;
    background: var(--color0);
}

.tab-container .tab:nth-child(6n) .icon {
    background: #284e51;
    background: var(--color3);
}

@media screen and (min-width:768px) {
    .tab-container .tab {
        border-top-color: transparent;
        border-bottom-color: transparent;
        border-right-color: transparent;
        border-left-color: transparent;
    }

    .tab-container .tab.active+.tab {
        border-left-color: transparent;
    }

    .tab-container .tab:first-child:not(.active) {
        border-left-color: transparent;
    }
}



/* Calendar */
.calendar-container {
    width: 100%;
    padding: 1rem;
}

.calendar-container.border-top {
    border-top: 1px solid transparent;
}

.calendar-container.border-bottom {
    border-bottom: 1px solid transparent;
}

.calendar-container .calendar header .month {
    font-size: 2.125rem;
}

.calendar-container .calendar header .month .year {
    font-size: 1.375rem;
    font-weight: 200;
}

.calendar-container .calendar header .simple-calendar-btn {
    border-color: transparent;
    transform: none;
    margin: 0;
    background: none;
    font-size: 1.0625rem;
    transition: opacity .3s;
}

.calendar-container .calendar header .simple-calendar-btn:hover {
    opacity: .6;
}

.calendar-container .calendar header .simple-calendar-btn::before {
    display: none !important;
}

.calendar-container .calendar header .simple-calendar-btn::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.calendar-container .calendar header .btn-prev::after {
    content: '\f060';
}

.calendar-container .calendar header .btn-next::after {
    content: '\f061';
}

.calendar-container .calendar table {
    border-top: 1px solid transparent;
    margin: .5rem 0 0 0;
}

.calendar-container .calendar td {
    padding: 0;
    font-size: 1rem;
}

.calendar-container .calendar thead td {
    padding: .5rem 0 .375rem 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.calendar-container .calendar .day {
    width: 2.3125rem;
    height: auto;
    line-height: 1.5;
    border-radius: .25rem;
    border-color: transparent;
    transition: border-color .3s;
}

.calendar-container .calendar .day.has-event::after {
    display: none;
}

.calendar-container .calendar .day.wrong-month {
    opacity: .35;
}

.calendar-container .calendar .event-container .event {
    padding: .5rem 1rem;
    margin-bottom: .5rem;
    font-size: 1.0625rem;
    font-weight: 300;
}

.calendar-container .calendar .event-container .event-date {
    margin-bottom: .3125rem;
}

.calendar-container .calendar .event-container .event-summary {
    font-size: 1.25rem;
    font-weight: 500;
}

@media screen and (max-width:991.98px) {
    .calendar-container .calendar header .month {
        font-size: 2rem;
    }

    .calendar-container .calendar header .month .year {
        font-size: 1.3125rem;
    }

    .calendar-container .calendar header .simple-calendar-btn {
        font-size: .9375rem;
    }
}

/* Full Calendar */
.fullcalendar-container {
    width: 100%;
}

.fullcalendar-container .fullcalendar-wrapper {
    width: 100%;
    overflow: hidden !important;
    margin: 0;
}

.fullcalendar-container .fullcalendar-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}



.fullcalendar-container .fc-day-header.fc-widget-header {
    color: white;
    height: 2.75rem;
    font-weight: 300;
    line-height: 2.2;
}

.fc-dayGridMonth-view .fc-day-header.fc-widget-header {
    color: white
}

.fullcalendar-container.month .fc-toolbar.fc-header-toolbar {
    display: none;
}

.fullcalendar-container.month .fullcalendar-header>.calendar-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 300;
}

.fullcalendar-container.month .fullcalendar-header>.calendar-btn {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 300;
    transition: opacity .3s;
}

.fullcalendar-container.month .fullcalendar-header>.calendar-btn:hover {
    opacity: .75;
}

.fullcalendar-container.month .fullcalendar-header>.calendar-btn i {
    font-size: 1rem;
    margin: 0 .5rem 0 0;
}

.fullcalendar-container.month .fullcalendar-header>.calendar-btn:last-child i {
    margin: 0 0 0 .5rem;
}

.fullcalendar-container.month .fc .fc-row .fc-content-skeleton table .fc-day-number {
    color: transparent;
    height: 3.5rem;
}

.fullcalendar-container.month .fc td {
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
}

.fullcalendar-container.week>.fullcalendar-wrapper {
    margin: 0;
}

.fullcalendar-container.week .fc-toolbar.fc-header-toolbar {
    margin: 0 0 .5rem 0;
}

.fullcalendar-container.week .fc-button {
    box-shadow: none !important;
}

.fullcalendar-container.week .fc-toolbar.fc-header-toolbar h2 {
    font-size: 2rem;
    font-weight: 300;
}

.fullcalendar-container.week .fc-scroller {
    overflow: auto hidden !important;
    margin: .875rem 0 0 0;
}

.fullcalendar-container.week th.fc-axis.fc-widget-header:first-child {
    display: block;
}

.fullcalendar-container.week td.fc-axis.fc-widget-content:first-child {
    width: 6rem !important;
}

.fullcalendar-container.week td {
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
}

.fullcalendar-container.week .fc-bg>table {
    border-bottom: 1px solid #eee;
}

.fullcalendar-container.week .fc-bg td {
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.fullcalendar-container.week hr {
    display: none;
}

.fullcalendar-container.week .fc-content-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.fullcalendar-container.week .fc-timeGrid-view .fc-day-grid {
    position: relative;
    z-index: 2;
}

.fullcalendar-container.week .fc-timeGrid-view .fc-day-grid .fc-row {
    min-height: 3rem;
}

.fullcalendar-container.week .fc-timeGrid-view .fc-day-grid .fc-row .fc-content-skeleton {
    padding-bottom: 1rem;
}

.fullcalendar-container.week .fc .fc-axis {
    vertical-align: middle;
    padding: 0 .25rem;
    white-space: nowrap;
}

.fullcalendar-container.week .fc-ltr .fc-axis {
    text-align: right;
}

.fullcalendar-container.week .fc-rtl .fc-axis {
    text-align: left;
}

.fullcalendar-container.week .fc-time-grid-container,
.fullcalendar-container.week .fc-time-grid {
    position: relative;
    z-index: 1;
}

.fullcalendar-container.week .fc-time-grid {
    min-height: 100%;
}

.fullcalendar-container.week .fc-time-grid table {
    border: 0 hidden transparent;
}

.fullcalendar-container.week .fc-time-grid>.fc-bg {
    z-index: 1;
}

.fullcalendar-container.week .fc-time-grid .fc-slats,
.fullcalendar-container.week .fc-time-grid>hr {
    position: relative;
    z-index: 2;
}

.fullcalendar-container.week .fc-time-grid .fc-content-col {
    position: relative;
}

.fullcalendar-container.week .fc-time-grid .fc-content-skeleton {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 1.9375rem;
    right: 0;
}

.fullcalendar-container.week .fc-time-grid .fc-business-container {
    position: relative;
    z-index: 1;
}

.fullcalendar-container.week .fc-time-grid .fc-bgevent-container {
    position: relative;
    z-index: 2;
}

.fullcalendar-container.week .fc-time-grid .fc-highlight-container {
    position: relative;
    z-index: 3;
}

.fullcalendar-container.week .fc-time-grid .fc-event-container {
    position: relative;
    z-index: 4;
}

.fullcalendar-container.week .fc-time-grid .fc-now-indicator-line {
    z-index: 5;
}

.fullcalendar-container.week .fc-time-grid .fc-mirror-container {
    position: relative;
    z-index: 6;
}

.fullcalendar-container.week .fc-time-grid .fc-slats td {
    height: 1.5em;
    border-bottom: 0;
}

.fullcalendar-container.week .fc-time-grid .fc-slats .fc-minor td {
    border-top-style: dotted;
}

.fullcalendar-container.week .fc-time-grid .fc-highlight-container {
    position: relative;
}

.fullcalendar-container.week .fc-time-grid .fc-highlight {
    position: absolute;
    left: 0;
    right: 0;
}

.fullcalendar-container.week .fc-ltr .fc-time-grid .fc-event-container {
    margin: 0 2.5% 0 2px;
}

.fullcalendar-container.week .fc-rtl .fc-time-grid .fc-event-container {
    margin: 0 2px 0 2.5%;
}

.fullcalendar-container.week .fc-time-grid .fc-event,
.fullcalendar-container.week .fc-time-grid .fc-bgevent {
    position: absolute;
    padding: 1rem .0625rem;
}

.fullcalendar-container.week .fc-time-grid .fc-bgevent {
    left: 0;
    right: 0;
}

.fullcalendar-container.week .fc-time-grid-event {
    margin-bottom: 1px;
}

.fullcalendar-container.week .fc-time-grid-event-inset {
    -webkit-box-shadow: 0px 0px 0px 1px #fff;
    box-shadow: 0px 0px 0px 1px #fff;
}

.fullcalendar-container.week .fc-time-grid-event.fc-not-start {
    border-top-width: 0;
    padding-top: 1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.fullcalendar-container.week .fc-time-grid-event.fc-not-end {
    border-bottom-width: 0;
    padding-bottom: 1px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.fullcalendar-container.week .fc-time-grid-event .fc-content {
    overflow: hidden;
    max-height: 100%;
}

.fullcalendar-container.week .fc-time-grid-event .fc-time,
.fullcalendar-container.week .fc-time-grid-event .fc-title {
    padding: 0 1px;
    font-size: .9rem;
    line-height: 1.2;
}

.fullcalendar-container.week .fc-time-grid-event.fc-allow-mouse-resize .fc-resizer {
    left: 0;
    right: 0;
    bottom: 0;
    height: .5rem;
    overflow: hidden;
    line-height: .5rem;
    font-size: .75rem;
    font-family: monospace;
    text-align: center;
    cursor: s-resize;
}

.fullcalendar-container.week .fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after {
    content: '=';
}

.fullcalendar-container.week .fc-time-grid-event.fc-selected .fc-resizer {
    border-radius: .3125rem;
    border-width: 1px;
    width: .5rem;
    height: .5rem;
    border-style: solid;
    border-color: inherit;
    background: #fff;
    left: 50%;
    margin-left: -.3125rem;
    bottom: -.3125rem;
}

.fullcalendar-container.week .fc-time-grid .fc-now-indicator-line {
    border-top-width: 1px;
    left: 0;
    right: 0;
}

.fullcalendar-container.week .fc-time-grid .fc-now-indicator-arrow {
    margin-top: -.3125rem;
}

.fullcalendar-container.week .fc-ltr .fc-time-grid .fc-now-indicator-arrow {
    left: 0;
    border-width: .3125rem 0 .3125rem .3125rem;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.fullcalendar-container.week .fc-rtl .fc-time-grid .fc-now-indicator-arrow {
    right: 0;
    border-width: .3125rem 0 .3125rem .3125rem;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.fc-event {
    font-size: .50em !important;
}

@media screen and (max-width:1199.98px) {
    .fullcalendar-container.month .fullcalendar-header>.calendar-title {
        font-size: 2.75rem;
    }

    .fullcalendar-container.month .fullcalendar-header>.calendar-btn {
        font-size: 1.75rem;
    }

    .fullcalendar-container.month .fullcalendar-header>.calendar-btn i {
        font-size: .9375rem;
    }

    .fullcalendar-container.month .fc-day-header.fc-widget-header {
        height: 2.5rem;
    }

    .fullcalendar-container.month .fc td {
        font-size: 1.5625rem;
    }
}

@media screen and (max-width:767.98px) {
    .fullcalendar-container.month .fullcalendar-header>.calendar-title {
        font-size: 2.5rem;
    }

    .fullcalendar-container.month .fullcalendar-header>.calendar-btn {
        font-size: 1.625rem;
    }

    .fullcalendar-container.month .fullcalendar-header>.calendar-btn i {
        font-size: .875rem;
    }

    .fullcalendar-container.month .fc-day-header.fc-widget-header {
        height: 2.25rem;
    }

    .fullcalendar-container.month .fc td {
        font-size: 1.5rem;
        width: 7rem;
    }

    /* .fullcalendar-container.week td{font-size:1.5rem;}
.fullcalendar-container.week .fc-scroller{margin:3.375rem 0 0 0;} */
}

.fullcalendar-container .fullcalendar-header>.calendar-title {
    color: #000;
}

.fullcalendar-container .fullcalendar-header>.calendar-btn {
    color: #0d838d;
    color: var(--color4);
}

.fullcalendar-container .fc-day-header.fc-widget-header {
    background-color: #0d838d;
    background-color: var(--color4);
    border-color: #0d838d;
    border-color: var(--color4);
}

.fullcalendar-container .fc-unthemed td.fc-today {
    /* border-color: #0d838d !important;
    border-color: var(--color4) !important; */
    border-color: transparent !important;
    color: #000 !important;
}

.fullcalendar-container.week .fc-button {
    background-color: #0d838d;
    background-color: var(--color4);
    border-color: #0d838d;
    border-color: var(--color4);
}

div.fc-row.fc-widget-header {
    background-color: var(--color4);
}

th.fc-axis.fc-widget-header {
    border: none;
}