/* Center filter titles */
.shared-list h4.events-filter-title {
    text-align: center;
}

/* Filter Print Button */
.print-group {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}
    .print-group .eventsPrintLink {
        display: inline-block;
        padding: 5px 15px 4px;
        font-family: 'Brown-Regular', Arial, sans-serif;
        font-size: 16px;
        color: #444;
        text-align: center;
        background-color: #dac596;
    }
        .print-group .eventsPrintLink:hover {
            opacity: 0.8;
        }


/* Filter Range Selector */
.shared-list ul.timeWindowBtns {
    display: flex;
    justify-content: space-between;
    margin: 0;
    margin-bottom: 20px;
    list-style: none;
}
    .shared-list ul.timeWindowBtns li {
        flex: 2;
        text-align: center;
    }
        .shared-list ul.timeWindowBtns li a {
            font-size: 16px;
            font-weight: normal;
            line-height: 30px;
            color: #fff;
        }
            .shared-list ul.timeWindowBtns li a:hover,
            .shared-list ul.timeWindowBtns li a.active,
            .shared-list ul.timeWindowBtns li a.selected {
                color: #fff;
                border-bottom: 1px solid #dac596;
                font-weight: bold;
            }


/* Filter Date Fields */
.shared-list .date-inputs-container {
    display: flex;
    margin-top: 16px;
}
    .shared-list .date-inputs-container .date {
        flex: 2;
    }

    .shared-list .date-inputs-container .date-sep {
        flex: 1;
    }


/* List view headers (One time event/Ongoing) */
.shared-list .headings {
    display: block;
    width: 95%;
    margin-bottom: 10px;
    font-family: 'Freight Display W01 Bold', Times, Georgia;
    text-transform: uppercase;
    color: #444;
    cursor: default;
}
    .shared-list h6.headings {
        color: #666;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .shared-list h5.headings + h6.headings {
        margin-top: 0;
    }

    .shared-list.layout-grid .headings {
        display: none;
    }

@media (min-width: 64.063em) {
    .shared-list .headings {
        width: 75%;
    }
}

/* Filter Calendar */
.shared-list .date-picker-wrapper table thead,
.shared-list .date-picker-wrapper table tr.even,
.shared-list .date-picker-wrapper table tr.alt,
.shared-list .date-picker-wrapper table tr:nth-of-type(even) {
    background: transparent;
}

.shared-list .date-picker-wrapper table .caption .next .fa,
.shared-list .date-picker-wrapper table .caption .prev .fa {
    width: 100%;
    padding: 5px 12px;
    background-color: #dac596;
    font-size: 16px;
    color: #444;
    cursor: pointer;
    text-align: right;
}

.shared-list .date-picker-wrapper table .caption .prev .fa {
    text-align: left;
}

.shared-list .date-picker-wrapper table .caption .next:hover .fa,
.shared-list .date-picker-wrapper table .caption .prev:hover .fa {
    opacity: 0.8;
}

.shared-list .date-picker-wrapper .month-wrapper {
    border: none !important;
    width: 100% !important;
    max-width: 250px;
}
    .shared-list .date-picker-wrapper .month-wrapper table {
        width: 100% !important;
        background: transparent;
        max-width: 250px;
        margin-bottom: 25px;
        border: none;
    }
        .shared-list .date-picker-wrapper .month-wrapper table tr td {
            padding: 0;
            padding-bottom: 3px;
        }

        .shared-list .date-picker-wrapper .month-wrapper table thead tr th,
        .shared-list .date-picker-wrapper .month-wrapper table thead tr td {
            padding: 5px 0;
        }

    .shared-list .date-picker-wrapper .month-wrapper table .month-name {
        font-size: 20px;
        width: 100%;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        font-family: 'Freight Display W01 Bold', Times, Georgia;
        font-weight: normal;
    }

    .shared-list .date-picker-wrapper .month-wrapper table .week-name {
        border-bottom: 1px solid #e3e3e3;
    }
        .shared-list .date-picker-wrapper .month-wrapper table .week-name th {
            vertical-align: top;
            text-align: center;
            text-transform: capitalize;
            color: #fff !important;
            font-family: 'Freight Display W01 Bold', Times, Georgia;
            font-weight: normal;
            font-size: 16px;
        }
            .shared-list .date-picker-wrapper .month-wrapper table tbody tr {
                padding-bottom: 5px;
            }

    .shared-list .date-picker-wrapper .month-wrapper table .day {
        padding: 8px;
        color: #fff;
        text-align: center;
        font-family: 'Brown-Regular', Arial, sans-serif;
        font-size: 14px;
    }
        .shared-list .date-picker-wrapper .month-wrapper table .day.invalid {
            opacity: 0.4;
        }
            .shared-list .date-picker-wrapper .month-wrapper table .day:not(.invalid):hover {
                color: #252525;
                cursor: pointer;
                background-color: rgba(233, 217, 176, 0.7) !important;
            }

        .shared-list .date-picker-wrapper .month-wrapper table .day.real-today.checked,
        .shared-list .date-picker-wrapper .month-wrapper table .day.checked,
        .shared-list .date-picker-wrapper .month-wrapper table .day.checked:hover {
            color: #444;
            background: #e9d9b0;
            font-family: 'Brown-Regular', Arial, sans-serif;
        }

        .shared-list .date-picker-wrapper .month-wrapper table .day.toMonth.hovering {
            color: #252525 !important;
            background-color: rgba(233, 217, 176, 0.5);
        }
