.qs-datepicker-container {
    font-size: 1rem;
    font-family: sans-serif;
    color: #000;
    position: absolute;
    width: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 9001;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid grey;
    border-radius: .263921875em;
    overflow: hidden;
    background: #fff;
    -webkit-box-shadow: 0 1.25em 1.25em -.9375em rgba(0, 0, 0, .3);
    box-shadow: 0 1.25em 1.25em -.9375em rgba(0, 0, 0, .3)
}

.qs-datepicker-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.qs-centered {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.qs-hidden {
    display: none
}

.qs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .75);
    color: #fff;
    width: 100%;
    height: 100%;
    padding: .5em;
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.qs-overlay.qs-hidden {
    opacity: 0;
    z-index: -1
}

.qs-overlay .qs-overlay-year {
    background: rgba(0, 0, 0, 0);
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    font-size: .875em;
    padding: .25em 0;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    display: block
}

.qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
    -webkit-appearance: none
}

.qs-overlay .qs-close {
    padding: .5em;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0
}

.qs-overlay .qs-submit {
    border: 1px solid #fff;
    border-radius: .263921875em;
    padding: .5em;
    margin: 0 auto auto;
    cursor: pointer;
    background: hsla(0, 0%, 50.2%, .4)
}

.qs-overlay .qs-submit.qs-disabled {
    color: grey;
    border-color: grey;
    cursor: not-allowed
}

.qs-overlay .qs-overlay-month-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.qs-overlay .qs-overlay-month {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% / 3);
    cursor: pointer;
    opacity: .5;
    -webkit-transition: opacity .15s;
    transition: opacity .15s
}

.qs-overlay .qs-overlay-month.active,
.qs-overlay .qs-overlay-month:hover {
    opacity: 1
}

.qs-controls {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: #d3d3d3;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transition: -webkit-filter .3s;
    transition: -webkit-filter .3s;
    transition: filter .3s;
    transition: filter .3s, -webkit-filter .3s
}

.qs-controls.qs-blur {
    -webkit-filter: blur(5px);
    filter: blur(5px)
}

.qs-arrow {
    height: 1.5625em;
    width: 1.5625em;
    position: relative;
    cursor: pointer;
    border-radius: .263921875em;
    -webkit-transition: background .15s;
    transition: background .15s
}

.qs-arrow:hover {
    background: rgba(0, 0, 0, .1)
}

.qs-arrow:hover.qs-left:after {
    border-right-color: orange
}

.qs-arrow:hover.qs-right:after {
    border-left-color: orange
}

.qs-arrow:after {
    content: "";
    border: .390625em solid rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    -webkit-transition: border .2s;
    transition: border .2s
}

.qs-arrow.qs-left:after {
    border-right-color: white;
    right: 50%;
    -webkit-transform: translate(25%, -50%);
    -ms-transform: translate(25%, -50%);
    transform: translate(25%, -50%)
}

.qs-arrow.qs-right:after {
    border-left-color: white;
    left: 50%;
    -webkit-transform: translate(-25%, -50%);
    -ms-transform: translate(-25%, -50%);
    transform: translate(-25%, -50%);
}

.qs-month-year {
    font-weight: 700;
    -webkit-transition: border .2s;
    transition: border .2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    position: relative;
    right: 80px;
    top: 2px;
}

.qs-left {
    position: relative;
    left: 324px;
}

.qs-right {
    position: relative;
    right: 8px;
}

.qs-month-year:active:focus,
.qs-month-year:focus {
    outline: none
}

.qs-month {
    padding-right: .5ex
}

.qs-year {
    padding-left: .5ex
}

.qs-squares {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .3125em;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transition: -webkit-filter .3s;
    transition: -webkit-filter .3s;
    transition: filter .3s;
    transition: filter .3s, -webkit-filter .3s
}

.qs-squares.qs-blur {
    -webkit-filter: blur(5px);
    filter: blur(5px)
}

.qs-square {
    width: calc(100% / 7);
    height: 2.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: background .1s;
    transition: background .1s;
    border-radius: .263921875em
}

.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
    background: orange
}

.qs-current {
    font-weight: 700;
    text-decoration: underline
}

.qs-active,
.qs-range-end,
.qs-range-start {
    background: #add8e6
}

.qs-range-start:not(.qs-range-6) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.qs-range-middle {
    background: #d4ebf2
}

.qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
    border-radius: 0
}

.qs-range-middle.qs-range-0 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.qs-range-end:not(.qs-range-0),
.qs-range-middle.qs-range-6 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.qs-disabled,
.qs-outside-current-month {
    opacity: .2
}

.qs-disabled {
    cursor: not-allowed
}

.qs-day,
.qs-empty {
    cursor: default
}

.qs-day {
    color: #00535A;
    font-family: 'Acumin Pro';
}

.qs-event {
    position: relative
}

.qs-event:after {
    content: "";
    position: absolute;
    width: .46875em;
    height: .46875em;
    border-radius: 50%;
    background: #ff7715;
    top: 4px;
    right: 4px;
}

.qs-event {}


.qs-controls {
    background-color: #003246;
    color: white;
    font-family: "Acumin Pro";
    height: 72px;
}

.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
    background-color: transparent;
    color: #ff7715;
}

#c-custom-agenda .c-agenda-row {
    border-bottom: 1px solid #003246
}

#c-custom-agenda .c-button-row {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #003246;
    padding-bottom: 42px;
}

#c-custom-agenda .c-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    flex-grow: 1;
}

#c-custom-agenda .c-button {
    border: 1px solid #003246;
    color: #003246;
    background-color: transparent;
    line-height: 50px;

    font-weight: normal;
    font-family: 'Acumin Pro';
    transition: none;
    height: 50px;
}

#c-custom-agenda #c-buttons .c-button:hover {
    color: white;
}

#c-custom-agenda #c-buttons .c-button:not(.c-button-highlight):hover {

    background-color: #003246;
}

#c-custom-agenda #select-date.c-button-highlight {
    cursor: default;
}

#c-custom-agenda #c-button-row .c-button-highlight {
    background-color: #009FB0;
    color: white;
    border: none;
}

#c-custom-agenda #c-button-row .c-filter-highlight {
    background-color: #009FB0;
    color: white;
    border: none;
}



#c-custom-agenda .c-filter {
    width: 240px;
    height: 50px;
    background-color: #003246;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    font-family: 'Acumin Pro';

}

#c-custom-agenda .c-filter-select-active {
    background-color: #009FB0;

}

#c-custom-agenda .c-cross-container {
    padding: 4px 8px;
    cursor: pointer;
}

#c-custom-agenda .c-filter-label {
    font-size: 18px;
    margin-right: 12px;
}

.c-filter-icon {
    flex-grow: 1;
    justify-content: right;
    display: flex;
    padding-right: 14px;
}

#c-custom-agenda .uk-text-lead {
    font-family: 'LFT Etica Condensed';
}


#c-custom-agenda #c-table-footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 64px;
}

#c-custom-agenda #c-table-footer a#prev-button,
#c-custom-agenda #c-table-footer a#next-button {
    border-radius: 100%;

    background-color: rgba(0, 50, 70);
    width: 32px;
    height: 32px;
    padding: 0px;

    margin-bottom: 4px;
}

#c-custom-agenda #c-table-footer .btn-disabled {
    background-color: rgba(0, 50, 70, 0.2) !important;
    border: none !important;
    transition: none !important;
}

#c-custom-agenda #c-table-footer>div {
    width: fit-content;
}

#c-custom-agenda .c-table-footer-prev-container,
#c-custom-agenda .c-table-footer-next-container {
    display: flex;
    justify-content: center;
    align-items: center;
}


#c-custom-agenda #c-table-footer .a-chevron-left,
#c-custom-agenda #c-table-footer .a-chevron-right {
    margin-top: -18px;
    margin-left: 0px;
}

#c-custom-agenda #c-table-footer-pagination a {
    border: none;
    background-color: transparent;

}

#c-custom-agenda .active-page-button {
    color: orange;
}

#c-custom-agenda .c-no-results {
    margin-top: 64px;
}

#c-custom-agenda .c-tm {
    font-size: 16px;
    padding-right: 3px;
}

#c-custom-agenda .c-column-1 {
    padding-right: 0px !important;
}

#c-custom-agenda .c-column-2 {
    padding-left: 0px !important;
    min-width: 110px;
}

#c-custom-agenda .c-column-3 {}

#c-custom-agenda .c-column-4 {
    min-width: 200px;
}

#c-custom-agenda .c-column-4 p {
    font-size: 20px;
}

#c-custom-agenda .c-filters {
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
}

#c-custom-agenda .c-filter-panel {
    position: relative;
    background: white;
    border-radius: 4px;
    z-index: 999;
    border: 1px solid #003246;
    top: 4px;
    padding-left: 24px;
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
}

#c-custom-agenda .c-filter-current {
    display: flex;
    align-items: center;
    user-select: none;
    height: 50px;
    padding-left: 16px;
    cursor: pointer;
}


#c-custom-agenda .c-filter-option {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
}

#c-custom-agenda .c-filter-option-label {
    color: #003246;
    font-size: 18px;
    padding-left: 8px
}

#c-custom-agenda input[type="checkbox"] {
    width: 24px;
    height: 24px;
    appearance: none;
    background: #EBF7F8;
    border-radius: 100%;
    outline: 1px solid #003246;
}

#c-custom-agenda input[type="checkbox"]:checked {
    appearance: none;
    background: #003246;
    box-shadow: inset 0px 0px 0px 3px #EBF7F8;
    outline: 1px solid black;
}


@media screen and (max-width: 960px) {

    #c-custom-agenda .c-button-row {
        flex-direction: column;
        gap: 12px 0px;
    }

    #c-custom-agenda #c-button-row a:not(.c-button-mobile) {
        display: none;
    }

    #c-custom-agenda #select-date,
    #c-custom-agenda #c-filter-select {
        display: block;
        width: 100%;
        text-align: center;
    }

    #c-custom-agenda .c-filter-label {
        display: none;
    }

    #c-custom-agenda td {
        width: 25% !important;
    }


}

#c-custom-agenda select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: calc(100% - 4px);
    background-position-y: 50%;
}


@media screen and (max-width: 440px) {

    #c-custom-agenda .qs-datepicker-container {
        width: 100%;

    }

    #c-custom-agenda .qs-left {
        left: calc(100% - 75px);
    }

    #c-custom-agenda .qs-month-year {
        left: -40px;
    }

}