@charset "utf-8";

:root {
    --color-white: #fefefe;
    --color-white-two: #eee;
    --color-dark: #444;
    --warning-color: var(--theme-warning-color, #e7847b);
    --error-color: var(--theme-error-color, #e0565f);
    --notice-color: var(--theme-notice-color, #7c96bb);
    --confirmation-color: var(--theme-confirmation-color, #78a478);
    --focus-color: #2f4f78;
    --site-width: 1200px;
    --screen-size-big: 1.1;
    --screen-size-bigger: 1.2;
    --font-size: 13px;
    --side-bar-width: 299px;
}
@font-face {
    font-family: 'Open Sans Bold';
    font-style: normal;
    font-weight: bold;
    src: url('../../fonts/OpenSans-Bold.ttf');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    src: url('../../fonts/OpenSans-Regular.ttf');
}

html {
    /*scroll-behavior: smooth !important;*/

    /* The navbar is fixed, so a plain anchor jump would park the target heading
       underneath it. Keep every in-page link clear of the bar. */
    scroll-padding-top: 70px;
}
@media only screen and (min-width: 1500px) {
    :root {
        --font-size: calc(var(--font-size) * var(--screen-size-big));
        --site-width-calc: calc(var(--site-width) * var(--screen-size-big));
    }
    img {
        zoom: var(--screen-size-big);
    }
}
@media only screen and (min-width: 1800px) {
    :root {
        --font-size: calc(var(--font-size) * var(--screen-size-bigger));
        --site-width-calc: calc(var(--site-width) * var(--screen-size-bigger));
    }
    img {
        zoom: var(--screen-size-bigger);
    }
}
body {
    font-size: var(--font-size);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--font-color);
    background-color: var(--body-color);
    font-family: var(--font-family);
}

.skip-link {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 11000;
    padding: 0.65rem 1rem;
    color: #fff;
    background: #111;
    border-radius: 0.25rem;
    transform: translateY(calc(-100% - 1rem));
    transition: transform 0.15s ease-in-out;
}

.skip-link:focus {
    color: #fff;
    transform: translateY(0);
}

/* The white outer ring keeps the dark focus indicator visible on every theme. */
:where(a, button, input, select, textarea, [role="button"], [tabindex]:not([tabindex="-1"])):focus-visible {
    outline: 2px solid var(--focus-color) !important;
    outline-offset: 2px;
    box-shadow: 0 0 0 1px #fff !important;
}

/* Connected controls must keep their shared edge instead of drawing across each other. */
.input-group > :focus-visible {
    outline-offset: -2px;
    box-shadow: none !important;
}

@media only screen and (max-width: 576px) {
    .password-field-grid > [class*="col-"] {
        width: 100%;
    }
}

#main {
    padding-top: 50px;
    min-height: 100vh;
}
@media only screen and (max-width: 768px) {
    #main {
        min-height: calc(95vh - 45px);
        margin-bottom: 45px;
    }
}
#root, #homeView .navbar {
    max-width: calc(var(--site-width-calc, var(--site-width)) * 0.8);
    /*min-height: 80vh;*/
}
.navbar, .footer {
    max-width: var(--site-width-calc, var(--site-width));
}
b {
    font-weight: bold;
    color: var(--font-color-lighter);
}
p {
    color: var(--font-color);
}
.bold {
    font-weight: bold;
    color: var(--font-color-lighter);
}
.session-date {
    color: var(--font-color);
}
.news-text {
    color: var(--font-color);
}
.news-text ul {
    margin-left: -1rem;
    margin-bottom: 0.1rem;
}
.h5 {
    font-size: 1.2rem;;
    color: var(--font-color-heading, var(--font-color-lighter));
}
.h6 {
    font-size: 0.95rem;;
}
p {
    margin-top: 0;
    margin-bottom: 0;
}
input {
    color: #666;
}
a.disabled {
    pointer-events: none;
    cursor: default;
}
.navbar.fixed-top {
    background-color: var(--color-one) !important;
    background: var(--nav-background);
    --bs-navbar-padding-y: 0.3rem !important;
    z-index: 10000;
}
@media only screen and (max-width: 768px) {
    .navbar {
        overflow: auto;
        max-height: 100vh;
        align-items: flex-start;
    }
}
#defaultView, #loginView, #calendarView, .main {
    background-color: var(--color-two);
    background: var(--items-background, var(--color-two));
}
.accordion-button:not(.collapsed), .accordion-button.collapsed {
    background: var(--side-header-background, var(--nav-background, var(--color-two)));
    color: var(--link-color-nav-two, var(--color-dark));
}
.filter .accordion-item {
    background-color: var(--color-four, var(--color-white-two));
}
.side .accordion-item {
    background-color: var(--color-four, var(--color-white));
}
.side .accordion-button.collapsed {
    border-radius: var(--bs-accordion-border-radius);
}
.home-info-banner {
    overflow: hidden;
    border-radius: 0.4rem;
    background: var(--items-background, var(--color-two));
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}
.home-info-banner img {
    display: block;
    width: 100%;
    aspect-ratio: 12 / 5;
    object-fit: cover;
}
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.btn-catch {
    animation: pulse 2s infinite ease-in-out;
}
.btn-primary {
    color: var(--font-button-color, #fff);
    background-color: var(--btn-color-one) !important;
    border-color: var(--btn-color-one-border) !important;
}
.btn-primary:hover {
    color: var(--font-button-color, #fff);
    background-color: var(--btn-color-one-darker, var(--btn-color-one)) !important;
    border-color: var(--btn-color-one-border-darker, var(--btn-color-one)) !important;
}
.btn-success {
    /*font-weight: bold;*/
    color: var(--font-success-color, var(--font-button-color, #fff));
    background-color: var(--color-green) !important;
    border-color: var(--color-green-border) !important;
}
.button-book-marked {
    padding: 0.6rem;
    border-radius: 0.6rem;
    background-color: var(--color-two);
}
/*.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--btn-color-one);
    --bs-btn-border-color: var(--btn-color-one);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #639cd5;
    --bs-btn-hover-border-color: #639cd5;
    --bs-btn-focus-shadow-rgb: 49,132,253;
}*/
.select-attendee-checkbox {
    margin-left: 0.2rem;
}
.form-check-input:checked {
    background-color: var(--btn-color-one);
    border-color: var(--btn-color-one-border);
}
.btn-secondary {
    color: var(--font-button-secondary-color, #fff) !important;
    background-color: var(--btn-color-two);
    border-color: var(--btn-color-two-border);
}
.btn-danger {
    color: var(--font-button-danger-color, #fff) !important;
    background-color: var(--btn-color-danger);
    border-color: var(--btn-color-danger-border);
}
.my-sessions-count {
    color: var(--font-badge-two-color, #fff) !important;
    background-color: var(--color-badge-two) !important;
    font-size:  85% !important;
    /*padding-bottom: 5px;*/
}
.my-sessions-count.big {
    font-size:  1.1rem !important;
}
.navbar-collapse .my-sessions-count {
    margin-left: 5px;
    margin-top: 2px;
}
@media only screen and (max-width: 768px) {
    .navbar-collapse .my-sessions-count {
        margin-left: 5px;
        margin-top: 0px;
        /*padding: 4px 8px 0 8px;*/
        height: 18px;
    }
}
.basket {
    margin-top: 1px;
}
.navbar-toggler {
    filter: invert(100) sepia(0) saturate(100%) hue-rotate(180deg) brightness(100%) contrast(100%);
}
.basket-icon {
    filter: invert(100) sepia(0) saturate(100%) hue-rotate(180deg) brightness(100%) contrast(100%);
}
.basket-count.badge {
    color: var(--font-badge-color, #fff) !important;
    background-color: var(--color-badge) !important;
    /*padding: 3px 7px 4px 7px;*/
}
.home-booking-basket-summary .accordion-item {
    overflow: hidden;
}

.home-summary-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: center;
    padding: 0.8rem 0.9rem;
}

.home-basket-summary-row:not(.d-none) + .home-bookings-summary-row {
    border-top: 1px solid var(--bs-border-color);
}

.home-basket-summary-row {
    background-color: rgba(120, 164, 120, 0.08);
}

.home-summary-count {
    min-width: 2.4rem;
    padding: 0.55rem 0.5rem;
    font-size: 1.1rem !important;
    text-align: center;
}

.home-summary-label {
    min-width: 0;
    line-height: 1.25;
}

.home-summary-row .btn {
    white-space: nowrap;
}

.home-summary-manage {
    color: var(--font-button-outline-color, var(--font-button-color, var(--btn-color-one))) !important;
    border-color: var(--btn-color-one-border) !important;
}

.home-summary-manage:hover,
.home-summary-manage:focus {
    color: var(--font-button-color, #fff) !important;
    background-color: var(--btn-color-one) !important;
    border-color: var(--btn-color-one-border) !important;
}
.basket-header-icon {
    vertical-align: baseline!important;
    margin-right: 3px;
    height: 15px;
}
.navbar {
    padding-left: 0.4em;
}
.footer {
    margin-top: 0.8rem !important;
    padding-left: 0.3em;
    padding-right: 0.3em;
    background-color: var(--color-two);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
@media only screen and (min-width: 768px) {
    .footer {
        border-radius: 5px;
    }
}
.container {
    --bs-gutter-x: 1rem !important;
    overflow: hidden;
}
#defaultView, #loginView, #calendarView {
    margin: 1.2rem 0 0.4rem 0;
    padding: 1rem 1.2rem 1rem 1.2rem;
}
@media only screen and (max-width: 576px) {
    #defaultView, #loginView, #calendarView {
        margin: 0.6rem 0 0.3rem 0;
        padding: 0.6rem 0.7rem;
    }
    #defaultView .session {
        margin: 0 -0.5rem 0 -0.5rem;
    }
}
.page-description, .notification {
    /*margin: 0.8rem 0.5rem 0.8rem 0.4rem;*/
    padding: 0.3rem 0 0.3rem 0;
}
.notification {
    font-size: 105%;
    /*font-weight: bold;*/
}
/* Secondary "are you stuck?" link that points at the help page. It sits next to a
   primary action such as "Forgot your Password?" and must stay visibly quieter than
   it, otherwise the two read as competing offers of the same thing. */
.help-hint {
    display: inline-block;
    font-size: 92%;
    opacity: 0.85;
}
.help-hint:hover, .help-hint:focus-visible {
    opacity: 1;
}
#defaultView .middle-section {
    min-height: 5rem;
    padding: 0.3rem 0 0.5rem 0;
}
#defaultView .session-item-rows {
    padding: 0.2rem 0.1rem 0.2rem 0.1rem;
}
#defaultView .session-item-row {
    padding: 0.3rem 0 0.3rem 0;
}
#defaultView .session, #calendarView .session {
    background-color: var(--session-color, var(--color-white));
}
#defaultView .session {
    padding: 0rem 0 0.3rem 0;
}
#defaultView .view-mode .session-first {
    margin: 0.4rem 0 0.4rem 0;
}
#defaultView .edit-mode .session-first {
    margin: 0.4rem 0 0.4rem 0;
}
@media only screen and (max-width: 768px) {
    #defaultView .edit-mode .session-first {
        margin-top: 0.4rem;
    }
}
#defaultView .bottom-section {
    padding: 0.3rem 0 0 0;
}

.account-setup-view {
    width: 100%;
    max-width: 1100px;
    margin-right: auto !important;
    margin-left: auto !important;
}

#defaultView .account-setup-introduction {
    max-width: 850px;
    padding: 0.35rem 0.45rem 1rem;
}

.account-setup-introduction .title {
    margin-bottom: 0.65rem;
}

.account-setup-introduction p {
    line-height: 1.55;
}

.account-setup-section {
    margin-top: 0.75rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(80, 90, 110, 0.16);
    border-radius: 0.5rem;
    background: var(--color-four, rgba(255, 255, 255, 0.42));
}

.account-setup-section-title {
    margin-bottom: 1rem;
    font-weight: 600;
}

.account-setup-consent {
    padding-bottom: 0.9rem;
}

.account-setup-consent label {
    font-weight: 600;
}

.account-setup-locations {
    min-width: 0;
    padding: 1rem 0 0;
    border: 0;
    border-top: 1px solid rgba(80, 90, 110, 0.16);
}

.account-setup-locations legend {
    float: none;
    width: auto;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.account-setup-locations-help {
    margin-bottom: 0.85rem;
}

/* One row in the shared Subscription Region checkbox grid. */
.location-choice {
    min-height: 1.8rem;
    break-inside: avoid;
}

.account-setup-locations:disabled {
    opacity: 0.58;
}

@media only screen and (max-width: 576px) {
    .account-setup-section {
        padding: 0.85rem;
    }
}

#defaultView .session-title {
    font-size: 105%;
    color: #555;
}
#defaultView .session-title .date {
    font-size: 100%;
    color: #4d8bb7;
    font-weight: bold;
}
#defaultView .session-title .time {
    font-size: 100%;
    color: #4d8bb7;
    font-weight: bold;
    padding: 0 0.5em 0 0.2em;
}
#defaultView .session-title .type {
    white-space: nowrap;
    font-weight: bold;
}
#defaultView .session-title .location {
    white-space: nowrap;
    font-weight: bold;
}
#defaultView .session-title .note {
    font-size: 90%;
    white-space: nowrap;
    float: right;
}
#homeView .session-title .note {
    font-size: 90%;
    white-space: nowrap;
    float: right;
}
#homeView .session-title .note-in {
    font-size: 90%;
    white-space: nowrap;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
    margin-top: 1px;
    float: right;
}
#homeView .session-title .type, #homeView .session-title .location {
    cursor: pointer;
}
#homeView .session-title .session-info-toggle {
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    line-height: inherit;
    text-align: inherit;
    vertical-align: baseline;
}
@media only screen and (min-width: 768px) {
    #homeView .session-title .time {
        margin-left: 2px;
    }
}
#defaultView .session .card {
    padding: 0.4rem 0.6rem;
    margin: 0.1rem 0 0.6rem 0;
}
#homeView .session .card {
    padding: 0.4rem 0.6rem;
    /*margin: 0.3rem 0.5rem 0.5rem 0.5rem;*/
    border: none !important;
    border-top: 1px solid #bbb !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    background-color: #f8f8f8 !important;
    /*font-size: 12px;*/
}
.chair-icon {
    color: #666;
    margin-bottom: 4px;
    margin-left: 2px;
}
.reset-icon {
    filter: invert(100%);
    margin-bottom: 1px;
}
.section-title {
    font-size: 105%;
    margin: 0.1rem 0 0.1rem 0;
    font-weight: bold;
}
.no-content-spacer {
    height: 1rem;
}
.small-spacer {
    height: 0.5rem;
}
.medium-spacer {
    height: 0.8rem;
}
.error, .error-notification, .error-message, .error-listing {
    font-weight: bold;
    color: #d93843 !important;
}
.error-notification {
    padding: 0.4rem 0 0.2rem 0.0rem;
}
.error-notification lu {
    list-style-type: none;
}
.error-notification li {
    font-weight: bold;
    color: #666 !important;
    padding: 0.6rem;
}
.error-listing {
    padding: 0.2rem;
}
.error-message {
    font-size: 100%;
    padding: 0.2rem 0 0.2rem 0;
}
.rose {
    background-color: #e8ced0 !important;
}
.session-first {
    font-size: 100%;
    color: #333;
    /*min-height: 29px;*/
    /*margin-top: 0.6rem;*/
}
.empty-button {
    height: 37px;
}
.calendar-date {
    font-family: 'Courier';
    white-space: nowrap;
    /*margin-top: 1px;*/
}
.externalLink {
    padding: 0.3rem 0.4rem 0 0;
}
.filter-label {
    font-weight: bold;
    color: #666;
    white-space: nowrap;
    padding: 0.2rem 0.2rem 0.2rem 0.1rem;
}
.session-attendees .label {
    font-weight: normal;
}
.label {
    font-weight: bold;
    color: #666;
    white-space: nowrap;
    padding: 0 0.2rem 0.2rem 0.1rem;
}
.account-value {
    padding: 0 0.2rem 0.2rem 0.1rem;
}
.form-select {
    font-size: 100%;
    height: 39px;
}
.form-label {
    font-weight: bold;
    color: #666;
    margin: 0.4rem 0;
}
.form-input {
    max-width: 420px;
}
.form-input-small {
    max-width: 200px;
}
.has-error {
    background: #e5cdcd;
    border: 2px solid red;
    /*outline: 1px solid red;*/
}
.nowrap {
    white-space: nowrap;
}
.quiet {
    color:#666;
    cursor: auto;
}
.hide, .hidden {
    display: none;
}
.spacer {
    margin-top: 80px;
}
.session {
    min-height: 37px;
    background: var(--session-background);
    background-color: var(--session-color, var(--color-white));
}
.inline {
    display: inline-block;
}
.bd-example-modal-lg .modal-dialog{
    display: table;
    position: relative;
    margin: 0 auto;
    top: calc(50% - 24px);
}
.bd-example-modal-lg .modal-dialog .modal-content{
    background-color: transparent;
    border: none;
}
.notice-dialog {
    border-radius: 0.5rem;
    padding: 0.8rem 1rem 0.8rem 1rem;
    margin: 1rem 0 1rem 0;
    color: #fff;
}
.notice-dialog.error {
    background-color: var(--error-color);
    color: var(--error-foreground, #fff) !important;
}
.notice-dialog.warning {
    background-color: var(--warning-color);
    color: var(--warning-foreground, #fff) !important;
}
.notice-dialog.notice {
    background-color: var(--notice-color);
    color: var(--notice-foreground, #fff) !important;
}
.notice-dialog.confirmation {
    background-color: var(--confirmation-color);
    color: var(--confirmation-foreground, #fff) !important;
}
.card .warning {
    color: var(--warning-text-color, var(--warning-color));
    font-weight: bold;
}
.notice-dialog h2 {
    font-size: 120%;
}
.notice-dialog a, .notice-dialog p {
    color: inherit;
}
.notice-message {
    padding: 1rem 1rem 0.8rem 1rem;
    font-weight: bold;
}
.tooltip .tooltip-inner {
    --bs-tooltip-bg: #4d8bb7;
}
.tooltip .tooltip-arrow::before {
    --bs-tooltip-bg: #4d8bb7;
}
.fixed-bottom {
    min-height: 30px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}
#fixed-bottom-bar {
    max-width: 30%;
    min-width: 300px;
    width: 100%;
    min-height: 30px;
    padding: 0.4rem 0.4rem 0.4rem 0.4rem;
    background-color: var(--color-three) !important;
    border: 1px solid var(--color-three);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
@media only screen and (max-width: 768px) {
    #fixed-bottom-bar {
        max-width: 100%;
        padding: 0.2rem 0.3rem 0.1rem 0.3rem;
        border: 0 var(--color-three);
        border-radius: 0;
    }
}
#fixed-cart-button-side-bar {
    position: fixed;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    z-index: 1030;
    width: var(--side-bar-width);
    padding: 0;
}
.basket-floating-cta.basket-cta-empty {
    display: none !important;
}
@media only screen and (min-width: 1500px) {
    #fixed-cart-button-side-bar {
        width: calc(var(--side-bar-width) * var(--screen-size-big));
    }
}
@media only screen and (min-width: 1800px) {
    #fixed-cart-button-side-bar {
        width: calc(var(--side-bar-width) * var(--screen-size-bigger));
    }
}
#fixed-cart-button-side-bar-div {
    display: inline-block;
    min-height: 30px;
    padding: 0.5rem 0;
    margin: auto;
    background-color: var(--color-two) !important;
    border: 1px solid var(--color-two);
    border-radius: 8px;
}
#fixed-cart-button-side-bar-div a {
    padding-top: 7px;
    width: 95%;
    height: 100%;
}
#fixed-cart-button-side-bar-div.v2 {
    display: inline-block;
    min-height: 30px;
    padding: 0.2rem 0;
    margin: auto;
    background-color: var(--color-two) !important;
    border: 1px solid var(--color-two);
    border-radius: 8px;
}
#fixed-cart-button-side-bar-div.v2 a {
    padding-top: 10px;
    width: 90%;
    height: 100%;
}
#fixed-bottom-bar .btn {
    width: 100%;
    height: 40px;
    /*border-bottom-left-radius: 0;*/
    /*border-bottom-right-radius: 0;*/
    padding: 0.55rem 0;
}
.footer-space-top {
    height: 72px;
}
.footer-space {
    height: 0px;
}
.fixed-cart-msg {
    color: #666  !important;
}
.nav-link {
    font-weight: bold;
}
.page-title, .nav-link {
    color: var(--link-color-nav) !important;
}
.navbar-brand {
    padding-top: 0;
}
.main-subtitle {
    font-size: 50%;
}
.accordion-button {
    height: 35px;
}
.filter .accordion-body {
    padding: 0.6rem 1.25rem 1rem 1.25rem;
}
.side-nav-header {
    color: #666  !important;
    font-size: 120%;
    margin-left: 1em;
}
img.edit {
    margin: 0 0 2px 1px;
}
img.delete {
    margin: 0 0 2px 0;
}
.info > a {
    text-decoration: none !important;
}
.info-alert {
    padding: 0 0 0 0.2rem;
}
.info-alert img {
    margin: 0 0 0 0;
    vertical-align: middle;
}
.info img {
    margin: 0 0 0.1rem 0;
    vertical-align: middle;
}
.btn {
    --bs-btn-font-size: 110% !important;
}
.btn-sm {
    --bs-btn-font-size: 105% !important;
}
.info-button {
    --bs-btn-font-size: 100% !important;
}
.marked-for-removal {
    opacity: 0.6;
    pointer-events: none;
}
.marked-for-removal .toggle-remove-session-form {
    opacity: 0.8;
    pointer-events: auto;
}
.marked-for-removal-button {
    color: #fff  !important;
    background-color: #c30505 !important;
    border-color: #c30505 !important;
}
.calendar.month {
    display: inline-table;
    vertical-align: top;
    text-align: center;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    padding: 0.7rem 0.5rem;
    margin: 0.6rem 0.5rem;
}
.calendar-month-title {
    font-weight: bold;
    caption-side: top;
    color: inherit;
    text-align: center;
    margin: 0.1rem 0 0.3rem 0;
    padding: 0;
}
@media only screen and (max-width: 370px)  and (min-width: 345px) {
    .calendar.month {
        font-size: 110%;
        padding: 0.6rem 0.8rem 0.6rem 0.8rem !important;
    }
    .calendar.month .day {
        height: 55px;
        width: 39px;
    }
    .calendar.month img {
        margin: 3px 0 0 0;
        zoom: 110%;
    }
}
@media only screen and (max-width: 610px) and (min-width: 370px) {
    .calendar.month {
        font-size: 120%;
        padding: 0.6rem 0.8rem 0.6rem 0.8rem !important;
    }
    .calendar.month .day {
        height: 59px;
        width: 43px;
    }
    .calendar.month img {
        margin: 3px 0 0 0;
        zoom: 128%;
    }
}
@media only screen and (min-width: 1500px) {
    .calendar.month .day {
        height: 47px;
        width: 33px;
    }
}
@media only screen and (min-width: 1800px) {
    .calendar.month .day {
        height: 55px;
        width: 39px;
    }
}
.calendar .weekday {
    font-weight: normal;
    text-align: center;
    padding: 5px 0;
}
.calendar .day {
    text-align: center;
    padding: 2px 10px;
    height: 44px;
    width: 37px;
    vertical-align: top;
}
.calendar .calendar-day-content {
    height: 100%;
}
.calendar .day.today {
    font-weight: bold;
}
.calendar .day.past {
    opacity: 0.5;
}
.calendar .link {
    text-decoration: none;
    padding-left: 1px; /* strange behaviour in some cases like ios*/
}
.calendar.location {
    display: table;
}

.location-container {
    -webkit-column-count: 3;  /* Chrome, Safari, Opera */
    -moz-column-count: 3;     /* Firefox */
    column-count: 3;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
}
@media only screen and (max-width: 904px) {

    .location-container {
        -webkit-column-count: 2;  /* Chrome, Safari, Opera */
        -moz-column-count: 2;     /* Firefox */
        column-count: 2;
        width: 590px;
        margin: auto;
    }
}
@media only screen and (max-width: 610px) {

    .location-container {
        -webkit-column-count: 1;  /* Chrome, Safari, Opera */
        -moz-column-count: 1;     /* Firefox */
        column-count: 1;
        width: 300px;
    }
}
@media only screen and (min-width: 1500px) {

    .location-container {
        -webkit-column-count: 4;  /* Chrome, Safari, Opera */
        -moz-column-count: 4;     /* Firefox */
        column-count: 4;
        padding-left: 0px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
ul.no-bullets {
    list-style-type: none;
}
.infinity {
    width: 13px;
    height: 13px;
    margin-bottom: 1px;
}
.side-info-icons {
    margin-top: 0.8rem;
    line-height: 20px;
}
.side-info-icon {
    width: 13px;
    height: 13px;
}
.side-info-icon.si-seat {
    margin-bottom: 2px;
    margin-right: 1px;
    width: 12px;
    height: 12px;
}

.newsletter-panel .input-group .btn {
    white-space: nowrap;
}

#newsletterModal .modal-title {
    color: var(--font-color, var(--color-dark));
}

#newsletterModal .newsletter-modal-form {
    /* The form wraps Bootstrap's header, body and footer. It must fill the bounded
       scrollable dialog so the body can shrink and leave the actions reachable. */
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.newsletter-location-list {
    max-height: 20rem;
    overflow-y: auto;
}

#newsletterModal .newsletter-location-list {
    height: 20rem;
}

.newsletter-location-row {
    padding-top: .2rem;
    padding-bottom: .2rem;
}

.subscription-region-info-toggle {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    line-height: 1;
}

.subscription-region-info-toggle:hover,
.subscription-region-info-toggle:focus-visible {
    opacity: .7;
}

.subscription-region-info {
    flex-basis: 100%;
    padding-left: 1.75rem;
}

.newsletter-country:first-child {
    margin-top: 0 !important;
}

.newsletter-management-page .newsletter-location-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    column-gap: 2rem;
    row-gap: .25rem;
    max-height: none;
    overflow: visible;
    padding: 0 !important;
    border: 0 !important;
}

.newsletter-management-page .newsletter-country {
    grid-column: 1 / -1;
    margin-top: 1rem !important;
    margin-bottom: .25rem;
    padding-bottom: .35rem;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.newsletter-management-page .newsletter-country:first-child {
    margin-top: 0 !important;
}

.newsletter-management-page .newsletter-location-row {
    min-width: 0;
}

#newsletterClientMessages {
    display: none;
}
.green-bg {
    color: var(--font-success-color, #fff) !important;
    background-color: var(--color-green) !important;
    border-color: var(--color-green-border) !important;
}
.red-bg {
    color: var(--font-error-color, #fff) !important;
    background-color: var(--color-red) !important;
    border-color: var(--color-red-border) !important;
}
.orange-bg {
    color: var(--font-warning-color, #fff) !important;
    background-color: var(--color-orange) !important;
    border-color: var(--color-orange-border) !important;
}
.btn.orange-bg:hover {
    background-color: var(--color-orange) !important;
    border-color: var(--color-orange-border) !important;
    filter: brightness(110%);
}
.gray-bg {
    color: var(--font-gray-color, #fff) !important;
    background-color: var(--color-gray) !important;
    border-color: var(--color-gray-border) !important;
}
.faded {
    opacity: 0.7;
}
.session-questions-title {
    margin-block: 0.5rem;
    font-size: 110%;
}
.session-questions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    gap: 0.3rem;
}
.session-questions-grid .label {
    white-space: normal;
}
.session-questions-grid .question-number {
    max-width: 8rem;
}
.session-questions-grid .question-date {
    max-width: 14rem;
}
@media only screen and (max-width: 768px) {
    .session-questions-grid {
        grid-template-columns: 1fr;
    }
}
@media (pointer:coarse) {
    .tooltip {
        display: none !important;
    }
}

/* Legal pages render admin-maintained HTML, so the heading sizes are set here rather
   than relying on the editor to produce well-proportioned markup. */
.legal-page {
    max-width: 52rem;
    line-height: 1.6;
}
.legal-page h2 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}
.legal-page h2:first-of-type {
    margin-top: 1rem;
}
.legal-page ul {
    padding-left: 1.25rem;
}
.legal-page li {
    margin-bottom: 0.4rem;
}
/* Marks a text that is still a draft, so an unfinished version is obvious on the page
   itself and not only in the admin area. */
.legal-page .legal-draft {
    border-left: 3px solid var(--color-orange-border);
    background-color: rgba(199, 133, 67, 0.08);
    padding: 0.6rem 0.9rem;
    border-radius: 0.25rem;
}
