﻿

.module_inline_title {
    margin-top: 0px;
    margin-bottom: 2px;
}

.module_inline_metadata {
    margin: 0px;
    font-style: italic;
}

.module_inline_image {
    float: left;
    margin-right: 14px;
}

.module_inline_content {
    margin-top: 8px;
    margin-bottom: 0px;
}

/*-----------------------------------------------------------------------------------------------*/

.module_listing h2 {
    margin-bottom: 5px;
}

.module_listing_subheading {
    color: #888888;
    font-size: 1.2em;
}

.module_listing p {
    margin-top: 0px;
    margin-bottom: 14px;
}

h2.media-heading + p {
    margin-top: 0px;
}

/*-----------------------------------------------------------------------------------------------*/

.module_article_title,
.module_article_title:last-child {
    margin-bottom: 5px;
    font-weight: 600;
}

.module_article_subheading {
    margin-top: 0px;
    color: #888888 !important;
    font-size: 2em;
}

.module_article_metadata {
    display: block;
    font-family: Poppins;
    font-size: 1.4em;
    margin: 0;
}

.module_article_location {
    font-style: italic;
    margin: 5px 0 2em;
}

    .module_article_location .bi {
        color: var(--theme-color-dark);
    }

/*-----------------------------------------------------------------------------------------------*/

.loader {
    width: 30px;
    height: 30px;
    border: 3px dotted var(--green);
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}

    .loader.danger {
        border-color: var(--red-superdark);
    }

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/*-----------------------------------------------------------------------------------------------*/

body.editing .hide_on_edit {
    display: none !important;
}

/*-----------------------------------------------------------------------------------------------*/

/* Calendar */
.calendar {
    margin: 15px 0;
}

.calendar_day_label {
    color: var(--grey-dark);
}

.calendar_week {
    clear: both;
    border-left: 1px solid var(--grey-mid);
}

    .calendar_week.calendar_week_1 .calendar_day_inner {
        border-top: 1px solid var(--grey-mid);
    }

.calendar_day {
    float: left;
    width: 14.28%;
}

.other_month.calendar_day {
    opacity: 0.6;
}

.calendar_day_today {
    background: rgba(var(--theme-rgb), .3);
}

.calendar_day_inner {
    position: relative;
    border-right: 1px solid var(--grey-mid);
    border-bottom: 1px solid var(--grey-mid);
    padding: 5px;
    min-height: 100px;
}

.calendar_day_number {
    position: absolute;
    top: 5px;
    left: 5px;
    color: #666666;
    font-size: .8em;
}

.calendar_day_saturday .calendar_day_inner,
.calendar_day_sunday .calendar_day_inner {
    background: rgba(200, 200, 200,.3);
}

/*-----------------------------------------------------------------------------------------------*/
/* Data Pager */

.data_pager a,
.data_pager .data_pager_button {
    padding: 5px;
    background-color: #eef;
    border: 1px solid #bbb;
    margin: 0 2px;
}

.data_pager .data_pager_first {
    margin-left: 0;
    background-color: transparent;
    border: 0;
}

.data_pager .data_pager_last {
    margin-right: 0;
    background-color: transparent;
    border: 0;
}

.data_pager .data_pager_current {
    background-color: #f9f9f9;
}

.data_pager a.aspNetDisabled.data_pager_button {
    text-decoration: none;
    color: inherit;
}

.page_content .pagination .active a {
    color: #FFFFFF;
}

.pagination > li > a,
.pagination > li > span {
    border: none !important;
    color: var(--black);
    background: none;
    border-left: none;
    border-right: none;
    border-width: 2px;
    border-radius: 15px !important;
    font-weight: 300;
}

.pagination > li:hover > a,
.pagination > li:hover > span {
    color: var(--theme-color-superdark);
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
}

.pagination > li:first-child > a, .pagination > li:first-child > span,
.pagination > li:last-child > a, .pagination > li:last-child > span {
}

.pagination > .disabled > a,
.pagination > .disabled > span {
    border-color: var(--grey-mid) !important;
    color: var(--grey-mid) !important;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background-color: var(--theme-color-dark);
    border-color: var(--theme-color-dark) !important;
}

/*-----------------------------------------------------------------------------------------------*/
.nav-tabs {
}

    .nav-tabs > li > a {
    }

    .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    }

    .nav-tabs.white > li.active > a {
        background: #000;
        color: var(--mint-dark);
    }

    .nav-tabs.white > li > a:hover {
        background: #8becb742;
    }

    .nav-tabs + .tab-content {
        padding: 1em;
    }
/*-----------------------------------------------------------------------------------------------*/
.note {
    border-left: 3px solid var(--theme-color);
    background: #fff;
    padding: 5px 10px;
}

    .note.green {
        background: var(--mint);
    }

    .note + .note {
        margin-top: 5px;
    }


.card {
    display: flex;
    flex-flow: column;
    padding: 10px;
    background: #fff;
}

    .card:not(.square) {
        border-radius: var(--border-radius);
    }

    .card:not(.flat) {
        box-shadow: rgba(0,0,0,.1) 2px 2px 3px;
    }

    .card.card_content {
        padding: 25px;
    }

    .card .card_image img {
        width: 100%;
        max-height: 150px;
        object-fit: cover;
        border-radius: var(--border-radius);
    }

    .card .card_header {
        display: flex;
        padding: 15px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .card .card_content {
        padding: 15px;
    }

        .card .card_content .card_content_image {
            float: right;
            margin-left: 14px;
            margin-bottom: 10px;
            max-width: 100%;
        }

    .card .card_footer {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: end;
        margin-top: auto;
        padding: 15px;
    }

        .card .card_footer p {
            flex-basis: 100%;
        }

        .card .card_footer.justify-right {
            justify-content: end;
        }

    .card.image_card {
        position: relative;
        padding: 0 !important;
        overflow: hidden;
        background: none;
        text-align: center;
        min-height: 200px;
    }

        .card.image_card.cover .card_content + img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100% !important;
            object-fit: cover;
            filter: brightness(.9);
        }

        .card.image_card.darkened .card_content + img {
            filter: brightness(.5) saturate(1.2);
        }

        .card.image_card .card_content {
            display: flex;
            flex-flow: column;
            flex-grow: 1;
            width: 100%;
            position: relative;
            padding: 25px;
            z-index: 2;
        }

        .card.image_card:not(.cover) .card_content {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
        }

        .card.image_card.center .card_content {
            justify-content: center;
            align-items: center;
        }

        .card.image_card.bottom .card_content {
            justify-content: end;
        }

        .card.image_card.left .card_content {
            align-items: start;
            text-align: left;
        }

        .card.image_card.right .card_content {
            align-items: end;
            text-align: right;
        }

.card_grid {
    display: grid;
    gap: 1em;
}

    .card_grid.two_col {
        grid-template-columns: repeat(2, 1fr);
    }

/*-----------------------------------------------------------------------------------------------*/
/* REVIEWS */
.review_box {
    background: #eff1f7;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VmZjFmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #eff1f7 0%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eff1f7), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #eff1f7 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #eff1f7 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #eff1f7 0%, #ffffff 100%);
    background: linear-gradient(top, #eff1f7 0%, #ffffff 100%);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

    .review_box > div {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .review_box .review_name {
        font-size: 1.2em;
        padding-top: 3px;
        display: block;
    }

    .review_box .review_number a {
        color: #A2A2A2;
    }

    .review_box .review_date {
        font-size: 0.8em;
        color: #8B867A;
        white-space: nowrap;
    }

    .review_box .review_comment {
        margin: 7px 0;
        font-size: 0.9em;
        line-height: 1.4em;
    }

    .review_box blockquote, blockquote {
        /*margin: 1em 3em;
        color: #999;
        border-left: 2px solid #999;
        padding-left: 1em;*/
        font-size: inherit;
        font-style: italic;
    }

        .review_box blockquote .quote_name,
        blockquote .quote_name {
            font-style: normal;
            color: #777;
        }

    .review_box .review_rating {
        float: right;
        font-weight: bold;
    }

    .review_box .review_rate {
        float: right;
        display: block;
        padding-right: 15px;
    }

    .review_box .quoteLink {
        float: right;
        font-size: 0.8em;
        background: url('../quote.html') center right no-repeat;
        padding-right: 15px;
        color: #A2A2A2;
    }

    .review_box .review_rating_good {
        color: #67A851;
    }

    .review_box .review_rating_neutral {
        color: #8B867A;
    }

    .review_box .review_rating_bad {
        color: #CF2929;
    }

/*-----------------------------------------------------------------------------------------------*/
/* TABLES */

.tabledefault {
    width: 100%;
    border-collapse: collapse;
}

    .tabledefault th {
        padding: 3px;
        font-weight: bold;
        background-color: #DFDFDF;
        border-bottom: solid 2px #CCCCCC;
        border-right: solid 1px #CCCCCC;
    }

    .tabledefault tr:hover td {
        background: #DFDFDF;
    }

    .tabledefault td {
        padding: 8px;
        background-color: #EFEFEF;
        border-bottom: 1px solid #FFFFFF;
        border-top: 1px solid transparent;
    }

/*-----------------------------------------------------------------------------------------------*/

.social_share {
    display: flex;
    color: #999999;
    justify-content: end;
    align-items: center;
    gap: 10px;
    margin-bottom: 1em;
}

    .social_share ul {
        display: flex;
        gap: 5px;
        margin: 0px;
        padding: 0px;
        list-style-type: none;
    }

        .social_share ul li {
            border-radius: 50px;
            background: var(--theme-color-dark);
            transition: all .3s ease;
        }

            .social_share ul li a {
                display: block;
                color: #fff;
                height: 32px;
                width: 32px;
                padding: 5px 9px;
            }

            .social_share ul li:hover {
                background: var(--theme-color-superdark);
            }
/*-----------------------------------------------------------------------------------------------*/
.feature_row h1 {
    font-size: 2.3em;
}

.feature_row img {
    max-width: 100%;
}

.feature_row .media-left img {
    max-width: none;
}

.feature_row .btn-default {
    float: right;
}

.feature_row .feature_column {
    border-right: 1px solid #D8D8D8;
}

    .feature_row .feature_column:last-child {
        border-right: none;
    }

/*-----------------------------------------------------------------------------------------------*/

.columnised_nav hr.spacer {
    display: none;
}

.navigation_row {
    /*color: #000000;
    font-weight: 600;
    font-size: 0.9em;*/
    margin-bottom: 10px;
}

    .navigation_row h2 {
        font-size: 1.4em;
        color: var(--theme-color-dark);
        font-weight: 600;
        /*margin-top: 0px;
    font-weight: 600;*/
    }

    .navigation_row img {
        max-width: 100%;
        height: auto !important;
    }

    .navigation_row p:last-child {
        margin-bottom: 14px;
    }


/*-----------------------------------------------------------------------------------------------*/

.panel {
    border-radius: var(--border-radius);
    box-shadow: none;
    border: none;
}

    .panel .panel-heading {
        border-top-left-radius: var(--border-radius);
        border-top-right-radius: var(--border-radius);
    }

.panel-default > .panel-heading {
    background: var(--mint);
    border: none;
}

/*-----------------------------------------------------------------------------------------------*/

.custom_tooltip {
    border-radius: 50px !important;
    padding: 3px 13px !important;
    box-shadow: rgba(0,0,0,.3) 3px 3px 3px !important;
    /*border: none !important;*/
    border: 1px solid var(--light-gray) !important;
    font-size: .9em !important;
    font-family: 'Inter' !important;
}

/*-----------------------------------------------------------------------------------------------*/
.mybaus_help {
}

    .mybaus_help .modal-backdrop.in {
        opacity: .8 !important;
    }

    .mybaus_help .modal-content {
        background: none;
        border: none;
        box-shadow: none;
    }

        .mybaus_help .modal-content p {
        }

        .mybaus_help .modal-content h1 {
            font-size: 3.8em;
            margin-bottom: .5em;
        }

            .mybaus_help .modal-content h1 span {
                color: var(--mint);
            }

    .mybaus_help .step {
        display: none;
    }

    .mybaus_help .flex {
        display: flex;
        gap: 2em;
    }

    .mybaus_help .arrow-container {
        overflow: hidden;
    }

        .mybaus_help .arrow-container img {
            width: 100%;
        }

    .mybaus_help .border {
        overflow: hidden;
        backdrop-filter: brightness(4.8);
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 25px;
    }

    .mybaus_help .icon_key p {
        display: flex;
        align-items: center;
    }

    .mybaus_help .icon_key i {
        font-size: 1.8em;
        margin-right: 15px;
    }

    .mybaus_help .content {
        position: relative;
        background: rgba(0,0,0,.6);
        padding: 1.5em 2em;
        border-radius: var(--border-radius);
        height: fit-content;
    }

        .mybaus_help .content + .content {
            margin-top: 1em;
        }

        .mybaus_help .content p {
            font-size: 1.2em;
        }

    .mybaus_help .next {
        display: flex;
        gap: 11px;
        width: fit-content;
        cursor: pointer;
    }

        .mybaus_help .next i {
            position: relative;
            top: 2px;
        }

    .mybaus_help .close {
        text-shadow: none;
        opacity: 1;
        line-height: inherit;
        font-size: inherit;
    }

    .mybaus_help > .close {
        font-size: 3em;
        top: 30px;
        right: 30px;
        position: relative;
        color: #fff;
        z-index: 99;
    }

    .mybaus_help #all_steps a {
        margin: 5px auto;
    }

    .mybaus_help #start {
        max-width: 600px;
        margin: 200px auto 0;
    }

    /*#region Info Sidebar*/
    .mybaus_help #info-sidebar .top {
        height: 50px;
        margin-top: 30px;
        margin-bottom: 45px;
    }

        .mybaus_help #info-sidebar .top #header_border {
            height: 100%;
            width: 225px;
            margin-left: auto;
        }

    .mybaus_help #info-sidebar #sidebar_border {
        height: 515px;
        margin-left: -42px;
        width: 290px;
    }

    .mybaus_help #info-sidebar .arrow-container {
        width: 200px;
    }

    .mybaus_help #info-sidebar .arrow-access-menu {
        position: absolute;
        top: -103px;
        right: -133px;
        height: 177px;
    }

        .mybaus_help #info-sidebar .arrow-access-menu #arrow-access-menu {
            transform: scaleY(-1) rotate(74deg);
        }

    .mybaus_help #info-sidebar .arrow-sidebar {
        position: absolute;
        top: calc(100% - 33px);
        left: -36px;
        height: 177px;
    }

        .mybaus_help #info-sidebar .arrow-sidebar #arrow-sidebar {
            transform: rotate(-225deg);
        }

    /*#endregion*/

    /*#region Info Feed*/
    .mybaus_help #info-feed {
        margin-top: 120px;
    }

        .mybaus_help #info-feed .card p {
            font-size: 1em;
        }

        .mybaus_help #info-feed .card + .flex {
            margin-top: 80px;
        }

        .mybaus_help #info-feed .arrow-post-clickthrough {
            position: absolute;
            width: 125px;
            right: -50px;
            top: calc(100% - 250px);
        }

            .mybaus_help #info-feed .arrow-post-clickthrough #arrow-post-clickthrough {
                transform: scaleY(-1) rotate(104deg);
            }

        .mybaus_help #info-feed .arrow-post-interactions {
            position: absolute;
            width: 125px;
            top: calc(100% - 229px);
            left: -61px;
        }

            .mybaus_help #info-feed .arrow-post-interactions #arrow-post-interactions {
                transform: rotate(-65deg);
            }

    /*#endregion*/

    /*#region Info Post*/
    .mybaus_help #info-post .arrow-comment-interactions {
        position: absolute;
        top: calc(100% - 60px);
        right: -25px;
    }

        .mybaus_help #info-post .arrow-comment-interactions #arrow-comment-interactions {
            transform: scaleY(-1) rotate(-15deg);
            max-width: 170px;
        }

    .mybaus_help #info-post .arrow-post-replies {
        position: absolute;
        top: -47px;
        right: -153px;
    }

        .mybaus_help #info-post .arrow-post-replies #arrow-post-replies {
            max-width: 187px;
            transform: scaleY(-1) rotate(30deg);
        }
    /*#endregion*/

    /*#region Info Notifs*/
    .mybaus_help #info-notif {
        margin-top: 120px;
    }

        .mybaus_help #info-notif .notif_content > div {
            /*max-height: 0;
        overflow: hidden;*/
        }

        .mybaus_help #info-notif .btn.white {
        }

            .mybaus_help #info-notif .btn.white.active {
                background: #8becb742;
            }

        .mybaus_help #info-notif .notif_content {
            margin-top: 2em;
        }

        .mybaus_help #info-notif .header_actions {
            color: #000 !important;
            display: flex;
            gap: 1em;
            font-size: 2em;
            background: #fff;
            padding: 8px 30px;
            border-radius: 50px;
            width: fit-content;
        }

            .mybaus_help #info-notif .header_actions .bi.bi-bell {
                color: var(--green);
            }
    /*#endregion*/

    .mybaus_help #info-profile {
        margin-top: 120px;
    }

    .mybaus_help #final {
        max-width: 600px;
        margin: 200px auto 0;
    }

        .mybaus_help #final .close {
            float: none;
        }

/*-----------------------------------------------------------------------------------------------*/
/*.profile_pending_notice {
    padding: 10px 15px;
    color: #FFFFFF;
    background: #0072AA;
}*/
.profile_progress {
    position: relative;
    height: 15px;
    margin-bottom: 20px;
    background: var(--grey-mid);
    border-radius: 50px;
}

.profile_progress_bar {
    /*background: url("../../images/progress.jpg") repeat-x;*/
    background: var(--green);
    height: 100%;
    border-radius: 50px;
    width: 0;
    position: relative;
    /* -webkit-box-shadow: 4px 0px 5px -2px rgba(0, 0, 0, 0.55);
    -moz-box-shadow: 4px 0px 5px -2px rgba(0, 0, 0, 0.55);
    box-shadow: 4px 0px 5px -2px rgba(0, 0, 0, 0.55);*/
}

.profile_progress_percent {
    padding: 2px 6px;
    background: var(--green);
    color: #fff;
    position: absolute;
    top: 22px;
    left: 100%;
    text-align: center;
    margin-left: -15px;
    font-family: Arial, sans-serif;
}

    .profile_progress_percent:after {
        content: " ";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 5px 10px 5px;
        border-color: transparent transparent var(--green) transparent;
        position: absolute;
        margin-left: -5px;
        top: -5px;
        left: 50%;
    }

/*-----------------------------------------------------------------------------------------------*/
/* Surgical outcomes pages */

.page_outcome_hospital .expandable_heading .expandable_title,
.page_outcome_surgeon .expandable_heading .expandable_title {
    text-align: left;
}

.page_outcome_hospital .page_content h2:first-child,
.page_outcome_surgeon .page_content h2:first-child {
    margin-top: 14px;
}

/*-----------------------------------------------------------------------------------------------*/
/* Surgical outcomes graphs */

.graph_container {
    border: 1px solid #ededed;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.graph_heading {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    padding: 10px;
    background: #EAEAEA;
    color: #444;
    position: relative;
}

    .graph_heading,
    .graph_heading:first-child {
        margin-top: 10px;
    }

.graph_legend {
    padding-top: 10px;
    white-space: nowrap;
}

td.legendLabel {
    padding: 5px;
    line-height: 1.4em;
}

.legendColorBox {
    padding-left: 5px;
}

#total_by_operation_graph .flot-text .flot-y-axis .flot-tick-label {
    line-height: 1.3em;
}

.flot-x-axis {
    line-height: 1.4em;
}

/*---------------------------------------------------------------*/
/* Member Certificate */

#cert_container {
    height: 1350px;
    padding: 20px 50px;
    position: relative;
    width: 950px;
}

    /* Header */

    #cert_container header img {
        margin-right: 40px;
        width: 120px;
    }

    #cert_container header h1 {
        color: rgb(51, 153, 102);
        font-size: 18pt;
        font-weight: bold;
        margin: 0 0 15px 0;
        text-transform: uppercase;
    }

    #cert_container header p {
        line-height: 1em;
        margin: 0;
    }

    #cert_container header small {
        font-size: 11pt;
        font-weight: bold;
        line-height: 0;
    }

    /* Body */

    #cert_container .spacer {
        margin: 60px 0;
    }

    #cert_container p {
        font-size: 14pt;
        line-height: 1.6em;
    }

    #cert_container img {
        width: 180px;
    }

    /* Footer */

    #cert_container footer {
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0;
    }

        #cert_container footer p {
            line-height: 1em;
            margin: 0;
        }

        #cert_container footer small {
            font-size: 10pt;
            line-height: 0;
        }

        #cert_container footer .footer_spacer {
            padding: 0 10px;
        }

/*-----------------------------------------------------------------------------------------------*/

.primary_hospital {
    background: #F6EFFF;
    padding: 1em 1.5em;
}

.master_mybaus .primary_hospital {
    background: #f2f6fd;
}

.primary_hospital h3 {
}

/*-----------------------------------------------------------------------------------------------*/

.election_winner td {
    color: #FFFFFF;
    font-weight: 600;
    background: var(--green);
}

/*-----------------------------------------------------------------------------------------------*/

.btn-group.category_selector .dropdown-menu {
    min-width: 250px;
    padding: 8px;
}

.btn-group.category_selector li:first-child {
    margin-bottom: 8px;
}

.btn-group.category_selector .checkboxes {
    max-height: 200px;
    overflow-y: auto;
}

.btn-group.category_selector .clear_button {
    cursor: pointer;
}

/*-----------------------------------------------------------------------------------------------*/

.twitter_unavailable {
    padding: 15px;
    text-align: center;
    background: #e5e5e5;
    border-radius: 5px;
}

    .twitter_unavailable .twitter_unavailable_head {
        padding: 0 0 15px;
    }

    .twitter_unavailable span {
        display: block;
    }

    .twitter_unavailable a {
        padding: 10px 15px;
        margin: 15px 0 0;
        display: inline-block;
        background: #35b7f3;
        color: #fff !important;
        border-radius: 5px;
        text-decoration: none;
        transition: background 0.3s linear;
    }

        .twitter_unavailable a:hover {
            background: #1a83b3;
        }

/*-----------------------------------------------------------------------------------------------*/

.quote {
    position: relative;
    margin: 1em 0 2em;
    padding: 0 2em;
}

    .quote::before,
    .quote::after {
        font-family: 'Poppins', sans-serif;
        position: absolute;
        content: '"';
        font-size: 5em;
        line-height: 1em;
        height: 20px;
        color: var(--theme-color);
    }

    .quote::before {
        left: 0;
        top: -10px;
    }

    .quote::after {
        right: 10px;
        bottom: 0;
    }

.alert {
    --alert-color: var(--green);
    --alert-color-light: var(--mint);
    --alert-color-dark: var(--mint);
    /*------------------------*/
    box-shadow: none;
    text-shadow: none;
    border-width: 2px;
    color: var(--black) !important;
    border-radius: var(--border-radius);
    background-image: none !important;
    background: var(--alert-color-light);
    border-color: var(--alert-color);
}

    .alert.inline_alert {
        display: inline-block;
        width: fit-content;
        padding: 10px 30px;
        margin: 0;
        font-size: .95em;
        line-height: 1.05em;
        /* to keep in line with buttons */
        position: relative;
        bottom: -1px;
    }

        .alert.inline_alert p {
            width: fit-content;
        }

    .alert a {
        color: var(--alert-color);
    }

        .alert a:hover {
            color: var(--alert-color-dark);
        }

    .alert.alert-info {
        --alert-color: var(--blue-dark);
        --alert-color-light: #c9e7f0;
        --alert-color-dark: var(--blue-superdark);
    }

    .alert.alert-success {
        --alert-color: var(--green);
        --alert-color-light: var(--mint);
        --alert-color-dark: var(--green-superdark);
    }

    .alert.alert-warning {
        --alert-color: var(--orange-dark);
        --alert-color-light: #fdeed7;
        --alert-color-dark: var(--orange-superdark);
    }

    .alert.alert-danger {
        --alert-color: var(--red-dark);
        --alert-color-light: #fdd;
        --alert-color-dark: var(--red-superdark);
    }

    .alert.alert-grey {
        --alert-color: #ddd;
        --alert-color-light: #eee;
    }

/*-----------------------------------------------------------------------------------------------*/

.notifications_consent {
    padding: 10px;
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    background-color: #EEEEEE;
    border-bottom: 2px solid var(--green);
}

    .notifications_consent h4 {
        margin: 0px;
    }

    .notifications_consent .prompt {
        margin: 0px;
    }

        .notifications_consent .clearfix + .prompt,
        .notifications_consent .prompt + .prompt {
            margin-top: 6px;
        }

    .notifications_consent .enable_container {
        margin-top: 10px;
    }

    .notifications_consent .close_prompt {
        float: right;
    }

/*-----------------------------------------------------------------------------------------------*/

.notifications_summary .current_devices_heading {
    margin-bottom: 4px;
}

    .notifications_summary .current_devices_heading + p {
        margin-top: 4px;
    }

.notifications_summary .enable_prompt {
    margin-top: 20px;
    font-size: 1.1em;
    padding: 14px;
    border: 1px solid #999999;
    border-radius: 10px;
    background-color: #F2F2F2;
}

    .notifications_summary .enable_prompt p:first-child {
        margin-bottom: 6px;
    }

    .notifications_summary .enable_prompt p:last-child {
        margin-top: 6px;
    }

/*-----------------------------------------------------------------------------------------------*/

.widget_flickr{
    display: flex;
    flex-flow: column-reverse;
}

.widget_flickr img {
    height: 100%;
    max-width: 100%;
}

.widget_flickr .text{
    padding: 10px 12px;
    font-size: .9em;
    margin-bottom: 0;
}

.flickr-embed .flickr-embed-photo {
}

    .flickr-embed .flickr-embed-photo a {
        height: 100%;
    }

    .flickr-embed .flickr-embed-photo img {
        object-fit: cover;
    }

.widget_video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    background: #F2F2F2;
}

.widget_video iframe {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
}

/*-----------------------------------------------------------------------------------------------*/

.ath-container {
    pointer-events: auto !important;
    position: fixed;
    z-index: 2147483641;
    padding: 0.7em 0.6em;
    width: 18em;
    background: #8BECB7;
    background-size: 100% auto;
    box-shadow: 0 0.2em 0 #00A272;
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    text-align: center;
}

.ath-ios.ath-phone {
    bottom: 1.8em;
    left: 50%;
    margin-left: -9em;
}

.ath-ios.ath-tablet {
    right: 0.4em;
    top: 1.8em;
}

.ath-container:before {
    content: '';
    position: relative;
    display: block;
    float: right;
    margin: -0.7em -0.6em 0 0.5em;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIQAAACECAMAAABmmnOVAAAAdVBMVEUAAAA5OTkzMzM7Ozs3NzdBQUFAQEA/Pz8+Pj5BQUFAQEA/Pz8+Pj5BQUFAQEA/Pz9BQUE+Pj4/Pz8/Pz8+Pj4/Pz8/Pz8/Pz8+Pj4/Pz8+Pj4/Pz8/Pz8/Pz8/Pz8/Pz8+Pj4/Pz8/Pz8/Pz8/Pz9AQEA/Pz+fdCaPAAAAJnRSTlMACQoNDjM4OTo7PEFCQ0RFS6ytsbS1tru8vcTFxu7x8vX19vf4+C5yomAAAAJESURBVHgBvdzLTsJAGEfxr4C2KBcVkQsIDsK8/yPaqIsPzVlyzrKrX/5p0kkXEz81L23otc9NpIbbWia2YVLqdnhlqFlhGWpSDHe1aopsSIpRb8gK0dC3G30b9rVmhWZIimTICsvQtx/FsuYOrWHoDjX3Gu31gzJxdki934WrAIOsAIOsAIOiAMPhPsJTgKGN0BVsYIVsYIVpYIVpYIVpYIVpYIVpYIVpYIVpYIVlAIVgEBRs8BRs8BRs8BRs8BRs8BRs8BRs8BRTNmgKNngKNngKNngKNngKNhiKGxgiOlZoBlaYBlaYBlaYBlaYBlaYBlaYBlaYBlZIBlBMfQMrVAMr2KAqBENSHFHhGEABhi5CV6gGUKgGUKgGUKgGUFwuqgEUvoEVsoEVpoEUpgEUggF+gKTKY+h1fxSlC7/Z+RrxOQ3fcEoAPPHZBlaYBlaYBlaYBlZYBlYIhvLBCstw7PgM7hkiWOEZWGEaWGEaWGEaIsakEAysmHkGVpxmvoEVqoEVpoEVpoEVpoEVpoEVpoEVkoEVgkFQsEFSsEFQsGEcoSvY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnmbNAUT2c2WAo2eAo2eAo2eAo2eAo2eArNEPFACjZ4CjZ4CjZ4CjaIird/rBvFH6llNCvewdli1URWCIakSIZesUaDoFg36dKFWk9zCZDei3TtwmCj7pC22AwikiIZPEU29IpFNliKxa/hC9DFITjQPYhcAAAAAElFTkSuQmCC);
    background-color: rgba(255,255,255,0.8);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 50%;
    width: 2.7em;
    height: 2.7em;
    text-align: center;
    overflow: hidden;
    color: #FFFFFF;
    z-index: 2147483642;
}

.ath-container.ath-icon:before {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    float: none;
}

.ath-action-icon {
    display: inline-block;
    vertical-align: middle;
    background-position: 50%;
    background-repeat: no-repeat;
    text-indent: -9999em;
    overflow: hidden;
}

.ath-ios .ath-action-icon {
    width: 1.6em;
    height: 1.6em;
    background-image: url(data:image/png;base64,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);
    margin-top: -0.3em;
    background-size: auto 100%;
}

.ath-container p {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2147483642;
    font-size: 1.1em;
}

.ath-ios.ath-phone:after,
.ath-ios.ath-tablet:after {
    content: '';
    background: #8BECB7;
    position: absolute;
    width: 2em;
    height: 2em;
    left: 50%;
    margin-left: -1em;
    transform: scaleX(0.9) rotate(45deg);
}

.ath-ios.ath-phone:after {
    bottom: -0.9em;
    box-shadow: 0.2em 0.2em 0 #00A272;
}

.ath-ios.ath-tablet:after {
    top: -0.9em;
    z-index: 2147483641;
}

.ath-application-icon {
    position: relative;
    padding: 0;
    border: 0;
    margin: 0 auto 0.2em auto;
    height: 6em;
    width: 6em;
    z-index: 2147483642;
}

.ath-container.ath-ios .ath-application-icon {
    border-radius: 1em;
    box-shadow: 0 0.2em 0.4em rgba(0,0,0,0.3), inset 0 0.07em 0 rgba(255,255,255,0.5);
    margin: 0 auto 0.4em auto;
}

@media only screen and (orientation: landscape) {
    .ath-container.ath-phone {
        width: 24em;
    }

    .ath-ios.ath-phone {
        margin-left: -12em;
    }
}

/*-----------------------------------------------------------------------------------------------*/
