﻿
.modEventsFilterBar {
    margin: 20px 0px 15px;
    padding: 0px 15px;
    background: #F1F1F1;
}

    .modEventsFilterBar .btn-group {
        margin-right: 10px;
    }

    .modEventsFilterBar button {
        white-space: nowrap;
    }

    .modEventsFilterBar .dropdown-menu {
        max-height: 205px;
        overflow: auto;
    }

        .modEventsFilterBar .dropdown-menu li.active a {
            color: #FFFFFF;
            background: #777777;
        }

/*--------------------------------------------*/

.events_view_filters {
}

    .events_view_filters > p {
        float: left;
        margin: 15px;
    }

    .events_view_filters > .pagination {
        margin: 0px;
    }

/*--------------------------------------------*/

.events_view_title {
    font-size: 1.3em;
}

    .events_view_title h2 {
        margin-bottom: 10px;
    }

.events_previous_date a,
.events_next_date a {
    display: inline-block;
    height: 42px;
    color: #666666;
    text-decoration: none;
    vertical-align: middle;
}

.events_previous_date span,
.events_next_date span {
    vertical-align: middle;
    line-height: 38px;
}

.events_previous_date .glyphicon,
.events_next_date .glyphicon {
    font-size: 3em;
    color: #666;
    margin-top: -5px;
    vertical-align: middle;
    line-height: 42px;
}

.events_previous_date .glyphicon {
    float: left;
}

.events_next_date .glyphicon {
    float: right;
}

/*--------------------------------------------*/

.events_heading_row {
    margin-top: 15px;
    padding: 5px 15px;
    color: #FFFFFF;
    background: #444444;
}

.events_range {
    color: #666666;
    font-size: 0.7em;
}

.date_row {
    padding-bottom: 10px;
    padding-top: 10px;
    transition: background 0.3s;
}

    .date_row.col-xs-12 {
        float: none;
    }

    .date_row:hover {
        background: #ebf0f8;
    }

    .date_row.featured_event {
        color: #fff;
        background: #3d4f59;
    }

        .date_row.featured_event:hover {
            background: #2c3e48;
        }

        .date_row.featured_event a {
            color: #fff;
        }

/*--------------------------------------------*/

.year_calendar {
    --basic-color: #000;
    --row-bg: linear-gradient(90deg, rgba(var(--event-color-rgb), .2), rgba(var(--blue-rgb),.2));
}

.events_heading_row {
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 5px 15px;
    color: #FFFFFF;
    background: var(--event-color);
    border-radius: 25px;
}

.events_range {
    color: #666666;
    font-size: 0.7em;
}

.month_row {
    padding: 12px 15px 5px 0;
    font-size: 1.2em;
    margin-bottom: 5px;
    border-bottom: 2px solid var(--blue-lightest);
}

.date_row {
    padding: 0;
    color: var(--basic-color);
    font-size: .9em;
    margin-bottom: 5px;
    border-left: 6px solid rgba(var(--event-color-rgb), 1);
    background: var(--row-bg);
    background-size: calc(100% + 100px);
    transition: background 0.3s;
}

    .date_row.col-xs-12 {
        float: none;
    }

    .date_row:hover {
        /*background: linear-gradient(90deg, rgba(var(--event-color-rgb), .2) 80%, rgba(var(--blue-rgb),.2));*/
        background-position: -100px;
    }

    .date_row a {
        display: block;
        padding: .8em;
        color: #000;
        font-weight: 300;
    }

    .date_row .event_title {
        display: flex;
        justify-content: space-between;
        align-items: end;
    }

    .date_row .event_details {
        display: flex;
        gap: 10px;
        align-items: center;
    }

        .date_row .event_details .module_inline_metadata {
            padding: 0px 16px;
            font-size: .9em;
            line-height: 1.5em;
            height: fit-content;
        }

    .date_row .event_detail {
        display: flex;
        width: 150px;
        gap: 10px;
        justify-content: end;
        font-weight: 700;
    }

        .date_row .event_detail i {
            max-width: 0;
            width: 100%;
            display: inline-block;
            overflow: hidden;
            transition: all .3s ease;
        }


    .date_row:hover .event_detail i {
        max-width: 30px;
    }

    .date_row .comment,
    .day_view .comment {
        position: absolute;
        box-sizing: content-box;
        top: -9999px;
        left: 0px;
        right: 0px;
        padding: 0px 15px;
        overflow: hidden;
        visibility: hidden;
        background-color: #3A4967;
    }

        .date_row .comment.ready,
        .day_view .comment.ready {
            position: static;
            visibility: visible;
            height: 0px;
            transition: height 0.1s ease-in 0.1s;
        }

        .date_row .comment.ready {
            margin: 10px -15px -10px -15px;
        }

        .date_row .comment.visible,
        .day_view .comment.visible {
            border-bottom: 1px solid #FFFFFF;
            transition: height 0.1s ease-out;
        }

        .date_row .comment p,
        .day_view .comment p {
            margin: 0px;
            color: transparent;
            transition: color 0.1s ease-in;
        }

            .date_row .comment p:first-child,
            .day_view .comment p:first-child {
                padding-top: 15px;
            }

            .date_row .comment p:last-child,
            .day_view .comment p:last-child {
                padding-bottom: 15px;
            }

            .date_row .comment p + p,
            .day_view .comment p + p {
                margin-top: 6px;
            }

        .date_row .comment.visible p,
        .day_view .comment.visible p {
            transition: color 0.1s ease-out 0.1s;
        }

.event_schedule {
    padding: 10px;
}

    .event_schedule .schedule_event {
        --event-theme: var(--blue);
        position: relative;
        display: flex;
        gap: 15px;
        padding: 7px;
    }

        .event_schedule .schedule_event > span:first-of-type {
            font-size: 3em;
            height: 30px;
            line-height: 1.3em;
            font-weight: 700;
            width: 60px;
            min-width: 60px;
            color: var(--blue);
            font-family: var(--heading-font);
        }

        .event_schedule .schedule_event .card {
            display: block;
            flex-grow: 1;
            background: var(--blue-lightest);
            padding: 15px;
            border-radius: 15px;
        }

            .event_schedule .schedule_event .card:hover {
                background: #cbeeff;
            }

            .event_schedule .schedule_event .card span:not(.inline) {
            }

            .event_schedule .schedule_event .card .private {
                font-weight: 400;
                margin-left: 5px;
                color: var(--warm-dark-grey);
            }

            .event_schedule .schedule_event .card .title {
                margin-bottom: 4px;
                color: var(--blue-dark);
                display: block;
            }

            .event_schedule .schedule_event .card .tags {
                font-weight: 400;
                font-size: 0.95em;
                color: var(--blue-dark);
                margin-left: 10px;
                padding-left: 10px;
                border-left: 1px solid var(--blue);
            }

                .event_schedule .schedule_event .card .tags.artp_awards {
                    color: #0F9583;
                }

                .event_schedule .schedule_event .card .tags.artp_courses_webinars {
                    color: #26acac;
                }

                .event_schedule .schedule_event .card .tags.artp_national_strategy_day {
                    color: #5B4194;
                }

                .event_schedule .schedule_event .card .tags.artp_annual_conference {
                    color: var(--pink-dark);
                }

            .event_schedule .schedule_event .card .date {
                font-weight: 400;
                color: var(--blue);
            }


/*--------------------------------------------*/


.calendar {
    --event-color: #60bbe8;
    --event-bg-color: #e0eeff;
    --event-bg-hover-color: #bae8ff;
    --event-tag-color: #0079c1;
}

a.calendar_event {
    background: var(--event-bg-color);
    border-left: 5px solid var(--event-color);
    color: #000;
    display: block;
    line-height: 1.4em;
    margin-bottom: 2px;
    padding: 8px 6px;
    border-radius: 10px;
    font-size: .9em;
    font-weight: 400;
    text-decoration: none;
    transition: all .3s ease;
}

    a.calendar_event:hover {
        filter: brightness(0.9) saturate(1.5);
        background: var(--event-bg-hover-color)
    }

    a.calendar_event.date_passed:hover {
        filter: brightness(0.9) saturate(0)
    }



.date_passed {
    opacity: .7;
    filter: saturate(0)
}

.calendar_day_number a {
    color: #666
}


/*--------------------------------------------*/
#events_order_nav .expandable {
    margin-left: -10px;
    margin-right: -10px;
}

#events_order_nav .btn {
    margin-top: 10px;
}

#events_order_nav ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

    #events_order_nav ul li {
        margin: 0px;
        padding: 0px;
    }

#events_order_nav .basket {
    display: block;
    float: right;
    padding: 5px 10px;
    color: #D5E6F9;
    text-decoration: none;
    background-color: #0C265D;
    border-radius: 5px;
}

    #events_order_nav .basket:hover {
        background-color: #2C467D;
    }

    #events_order_nav .basket i,
    #events_order_nav .basket .count {
        padding-right: 5px;
        color: #FFFFFF;
        font-size: 1.2em;
        line-height: 1.3em;
    }

/*--------------------------------------------*/

.event_overview {
    padding: 15px;
    background: #fff;
}

#cert_container.cpd_certificate {
    font-family: Inter, Arial, sans-serif;
}

    #cert_container.cpd_certificate strong {
        color: #2E2E2E;
    }

    #cert_container.cpd_certificate img.logo {
        width: 520px;
    }

    #cert_container.cpd_certificate .title_hours {
        margin: 17px 0px 13px 0px;
    }

    #cert_container.cpd_certificate p.attendance_statement {
        color: #0c4f96;
        margin-top: 32px;
        font-size: 36px !important;
        font-weight: 500;
    }

    #cert_container.cpd_certificate p.statement_top .name {
        display: inline-block;
        margin-top: 6px;
        margin-bottom: 2px;
        font-size: 28px !important;
        line-height: 26px !important;
    }

    #cert_container.cpd_certificate p.statement_bottom {
        margin-top: 6px;
        margin-bottom: 65px;
        line-height: 22px !important;
    }

        #cert_container.cpd_certificate p.statement_bottom .metadata {
            display: inline-block;
            margin-top: 4px;
        }

            #cert_container.cpd_certificate p.statement_bottom .metadata .eventName {
                font-size: 35px !important;
                margin-top: 19px;
                display: block;
            }

    #cert_container.cpd_certificate .signatures {
        width: 600px;
        margin: 0 auto 50px;
    }

        #cert_container.cpd_certificate .signatures p {
            font-family: Inter, Arial, sans-serif !important;
            font-size: 16px !important;
            color: #2E2E2E !important;
            line-height: 22px !important;
        }

        #cert_container.cpd_certificate .signatures img {
            height: 50px;
            margin-bottom: 15px;
        }

    #cert_container.cpd_certificate p.confirmation {
        margin: 18px 0px !important;
        font-size: 13px;
        line-height: 17px;
    }

/*--------------------------------------------*/

.event_booking {
    --color: var(--blue-light);
    --background: var(--off-white);
    padding: 15px;
    background: var(--background);
    border-left: 7px solid var(--color);
    margin-bottom: 15px;
}

    .event_booking h3 {
        font-size: 1.4em;
        margin-bottom: 0;
    }

    .event_booking .label {
        background: var(--color);
        color: #fff;
    }

    .event_booking:not(.completed) {
        --color: #fface1;
        --background: #fff6fe;
    }


.input-group-btn.discount {
    font-size: 13.5px;
}

.master_events {
}

    .master_events .well .checkbox label {
        padding-left: 0;
    }

    .master_events .well .checkbox input[type=radio] {
        margin: 4px 5px 0 0;
    }
