:root {
    --outline-color: #ffff00;
}

.printed-site-name {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5em;
}

/* :focus-visible {
    outline: 4px double var(--outline-color);
    outline-offset: 0.15em;
} */

:is(a, button, select, summary):focus-visible:not(:active) {
    background: #ffff00 !important;
    box-shadow: 0 0 0 0.1875rem #ffff00;
    color: #000 !important;
    text-shadow: none !important;
}
:is(a, button, select, summary):focus-visible:not(:active) * {
    color: #000 !important;
    fill: #000 !important;
}
:is(a, button, select, summary):focus-visible,
pre[tabindex]:focus-visible {
    text-decoration: none;
    outline: 0.1875rem double;
    outline-offset: 0.0625rem;
}

.fontaa {
    --font-size: 1.2rem;
}

.fontaaa {
    --font-size: 1.6rem;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- cookies -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.cookies {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 1em 0;
    padding: 1em 1.5em;
    width: 95%;
    max-width: 1170px;
    z-index: 2;
    border-radius: 5px;
    background: #000;
    border: var(--cookies-border, 3px solid #fff);
    color: #fff;
    text-align: center;
}

.cookies__desc {
    margin-bottom: 1em;
}

.cookies__link {
    color: hsl(25, 100%, 70%);
    text-decoration: underline;
    transition: var(--transition);
}

.cookies__link:hover,
.cookies__link:focus {
    color: hsl(0, 0%, 100%);
    text-decoration: underline;
}

.cookies__button {
    border: none;
    background: hsl(25, 100%, 90%);
    color: hsl(0, 0%, 0%);
    border-radius: 3px;
    padding: 0.2em 0.5em;
    transition: var(--transition);
}

.cookies__button:hover,
.cookies__button:focus {
    background: hsl(0, 0%, 100%);
}

.cookies *:focus {
    outline: 3px solid hsl(25, 100%, 90%);
    outline-offset: 0.25rem;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- disabilities -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.disabilities {
    background: var(--disabilities-background, #000);
    color: var(--disabilities-color, #fff);
    font-size: 0.9em;
    padding: 5px 0;
    border-bottom: var(--disabilities-border, 2px solid #222);
}

.disabilities__inside {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.disabilities__button {
    padding: 0;
    background: none;
    border: none;
    color: var(--disabilities-color, var(--link-color));
    transition: var(--transition);
}

.disabilities__button:hover,
.disabilities__button:focus {
    color: var(--disabilities-hover-color, var(--link-hover-color));
    text-decoration: underline;
}

.disabilities__button:focus {
    /* outline: 4px solid var(--disabilities-color, #fff); */
    /* border: 2px solid #ffff00; */
    /* outline: 3px solid #ffff00; */
    /* outline-offset: 0.15em; */
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- quick access nav -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.quick-access-nav {
    background: #000;
    border: 4px solid #ffff00;
    border-bottom-right-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
}

.quick-access-nav__link {
    display: inline-block;
    color: #ffff00;
    text-decoration: none;
    padding: 15px 30px;
}

.quick-access-nav__link:hover,
.quick-access-nav__link:focus {
    text-decoration: underline;
    font-weight: bold;
    /* color: #adff2f; */
    /* outline: 4px solid #adff2f; */
    outline-offset: -0.25rem;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- search -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.search-form {
    position: relative;
}

.search-form__input {
    width: 100%;
    font-size: 0.9em;
    padding: 2px 33px 2px 5px;
    border: var(--search-form-border, 3px solid #d5d5d5);
    background: var(--search-form-background, #fff);
    color: var(--search-form-color, #000);
    transition: var(--transition);
}

.search-form__input:focus {
    border: var(--search-form-focus-border, 3px solid #ffff00);
    background: var(--search-form-focus-background, #fff);
    color: var(--search-form-focus-color, #000);
    outline: none;
}

.search-form__button {
    position: absolute;
    top: 50%;
    right: 3px;
    height: 28px;
    width: 28px;
    line-height: 1;
    font-size: 0.9em;
    padding: 0;
    margin: -14px 0 0 0;
    border: none;
    color: #000;
    fill: var(--search-form-icon-color, #000);
    background: var(--search-form-background, #fff);
    opacity: 0.4;
    transition: var(--transition);
}

.search-form:focus-within .search-form__button {
    background: var(--search-form-focus-background, #fff);
}

.search-form__button:hover,
.search-form__button:focus {
    opacity: 1;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- utilities -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.utilities {
    font-size: 0.75em;
    color: var(--utilities-color, #fff);
    display: flex;
    gap: 20px;
    padding-left: 2px;
}

.utilities > * {
    display: flex;
    align-items: center;
    gap: 5px;
}

.utilities__button {
    color: var(--utilities-color, #fff);
    text-decoration: none;
    line-height: var(--line-height);
    background: none;
    border: none;
    padding: 0;
}

.utilities__button:hover,
.utilities__button:focus {
    color: var(--utilities-hover-color, #ffff00);
}

.utilities__icon {
    width: 0.9em;
    fill: var(--utilities-color, #fff);
}

.utilities__button:hover .utilities__icon,
.utilities__button:focus .utilities__icon {
    fill: var(--utilities-hover-color, #ffff00);
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- header -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.header-area__inside {
    padding: 1em 0;
}

.logo-hamburger-wrapper {
    display: flex;
    gap: 1em;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 700px) {
    .logo {
        flex-shrink: 0;
    }
}

.header-nav-toggle {
    background: none;
    border: none;
}

.header-nav-toggle__icon {
    fill: var(--header-nav-mobile-toggle-color, #fff);
    transform: translateX(-5px) scale(2);
}

.header-nav-toggle:hover .header-nav-toggle__icon,
.header-nav-toggle:focus .header-nav-toggle__icon {
    fill: var(--header-nav-mobile-toggle-hover-color, #ffff00);
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- header nav -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.header-nav {
    display: none;
}

.header-nav.active {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background: var(--header-nav-mobile-background, #000);
    overflow: scroll;
    overscroll-behavior: contain;
}

.close-header-nav {
    margin: 20px 0 0 20px;
    padding: 10px;
    width: calc(100% - 40px);
    border: none;
    border-radius: 0.25em;
    background: #fff;
    border: 4px solid #fff;
    color: #000;
    font-size: 1.5em;
    line-height: 1;
}

.close-header-nav:focus {
    border-color: #ffff00;
}

@media (max-width: 699px) {
    .menu-dropdown {
        display: block !important;
        opacity: 1 !important;
    }
}

.header-nav-ul {
    background: var(--header-nav-mobile-background, #000);
    padding: 10px 20px;
}

.header-nav-ul a {
    color: var(--header-nav-mobile-color, #fff);
    text-decoration: none;
    padding: 10px 0;
    display: block;
    font-size: 1.3em;
}

.header-nav-ul a:hover,
.header-nav-ul a:focus-visible {
    color: var(--header-nav-mobile-hover-color, #ffff00);
    text-decoration: underline;
}

.header-nav-ul a:focus-visible {
    outline: 4px solid var(--header-nav-mobile-outline, #adff2f);
}

.header-nav-ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.header-nav-ul > * + * {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.header-nav-ul ul {
    padding: 0 0 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.header-nav-ul ul a {
    font-size: 1em;
}

@media (min-width: 700px) {
    .close-header-nav {
        display: none;
    }
    .header-nav-toggle {
        display: none;
    }
    .header-nav {
        display: block;
    }
    .header-nav-ul {
        background: var(--header-nav-background, #000);
        border-radius: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        column-gap: 1.5em;
        row-gap: 0.5em;
    }
    .header-nav-ul a {
        color: var(--header-nav-color, #fff);
        padding: 0;
        font-size: 1em;
    }
    .header-nav-ul a:hover,
    .header-nav-ul a:focus {
        color: var(--header-nav-hover-color, #ffff00);
    }
    .header-nav-ul > li {
        border: none;
    }
    .header-nav-ul > li > a {
        padding: 0;
    }
    .header-nav-ul ul {
        display: none;
        border: none;
        padding: 5px;
        background: var(--header-nav-dropdown-background, #000);
        border-radius: 3px;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 99;
        min-width: 190px;
    }
    .header-nav-ul a:hover + ul,
    .header-nav-ul a:focus + ul {
        display: block;
    }
    .header-nav-ul ul ul {
        top: -10px;
        left: 100%;
    }
    .header-nav-ul > li > ul::before {
        content: "";
        position: absolute;
        top: -6px;
        left: 6px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 5.5px 6px 5.5px;
        border-color: transparent transparent
            var(--header-nav-dropdown-background, #000) transparent;
    }
    .header-nav-ul ul * {
        color: var(--header-nav-dropdown-color, #fff);
    }
    .header-nav-ul ul a {
        padding: 5px 8px;
        border-radius: 3px;
        font-size: 0.9em;
    }
    .header-nav-ul ul a.sf-with-ul {
        padding-right: 2.5em;
    }
    .header-nav-ul ul a:hover,
    .header-nav-ul ul a:focus,
    .header-nav-ul ul li:focus-within {
        background: var(--header-nav-dropdown-hover-background, #222);
        color: var(--header-nav-dropdown-hover-color, #ffff00);
    }
    /* arrows to the right indicating submenus */
    .header-nav-ul ul a.sf-with-ul::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 1em;
        margin-top: -3px;
        height: 0;
        width: 0;
        border: 5px solid transparent;
        margin-top: -5px;
        margin-right: -3px;
        border-color: transparent;
        border-left-color: var(--header-nav-dropdown-color, #fff);
        opacity: 0.5;
    }
    .header-nav-ul ul a.sf-with-ul:hover::after,
    .header-nav-ul ul a.sf-with-ul:focus::after {
        color: var(--header-nav-dropdown-hover-color, #ffff00);
        opacity: 1;
    }
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- sidebar -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.sidebar__inside {
    display: flex;
    flex-direction: column;
}

.sidebar-second__inside > * + * {
    border-top: var(--sidebar-addon-border, 1px solid #d5d5d5);
}

.sidebar__addon {
    color: var(--sidebar-text-color, #fff);
    padding: 1em 0;
    position: relative;
}

.sidebar__addon-header {
    font-weight: 400;
    font-size: 1.4em;
    margin: 0 0 0.5em 0;
}

.sidebar__addon-content a {
    color: var(--sidebar-link-color, #ffff00);
}

.sidebar__addon-content a:hover,
.sidebar__addon-content a:focus {
    color: var(--sidebar-link-hover-color, #adff2f);
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- sidebar nav -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.sidebar__addon.nav-addon ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar__addon .sf-menu ul {
    padding-left: 1em;
}

.sidebar__addon .sf-menu a {
    display: block;
    text-decoration: none;
    line-height: 1.2;
}

.nav-addon a {
    color: var(--sidebar-nav-link-color, --link-color);
}

.nav-addon a:hover,
.nav-addon a:focus {
    color: var(--sidebar-nav-link-hover-color, --link-hover-color);
}

.sidebar__addon .sf-menu a:hover,
.sidebar__addon .sf-menu a:focus {
    text-decoration: underline;
}

.sidebar__addon .sf-menu ul a {
    padding: 0.3em 0;
    font-size: 0.9em;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- survey -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.survey-addon {
    background: var(--survey-bg, #000);
    padding: 1em;
}

.survey-addon__header {
    color: #fff;
    border-bottom: var(--survey-header-border, none);
    padding: 0 0 0.5em 0;
    font-size: 1.2em;
}

.survey-addon__form {
    color: var(--survey-color, #fff);
    --flow-space: 0.4em;
}

.survey-addon__form * {
    font-size: 0.9em;
    float: none;
}

.survey-addon__answer-radio {
    top: 2px;
    position: relative;
}

.survey-addon__buttons {
    margin-top: 0.8em;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
}

.survey-addon__button {
    background: var(--survey-button-background, #333);
    color: var(--survey-button-color, #fff);
    fill: var(--survey-button-color, #fff);
    padding: 0.5rem 0.8rem;
    border: none;
    border-radius: 3px;
    font-size: 0.9em;
    line-height: 1;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: var(--transition);
}

.survey-addon__icon {
    height: 0.9em;
    width: 0.9em;
    vertical-align: top;
    font-size: 1.1em;
}

.survey-addon__button:hover,
.survey-addon__button:focus {
    background: var(--survey-button-hover-background, #444);
    color: var(--survey-button-hover-color, #ffff00);
    fill: var(--survey-button-hover-color, #ffff00);
}

.surveyresultslist h2 {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 1.5rem;
}

.surveyresultslist h3 {
    font-weight: 300;
    font-size: 1.2rem;
}

.surveyresultslist > div {
    margin-bottom: 20px;
}

.progress {
    display: flex;
    height: 1.5rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #10654c;
    transition: width 0.6s ease;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- calendar -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.calendar__header {
    display: flex;
    line-height: 1;
    color: var(--calendar-header-color, #fff);
    fill: var(--calendar-header-color, #fff);
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.6rem;
    padding: 0 6px;
}

.calendar__monthyear {
    flex-grow: 1;
}

.calendar__btn-back-yr {
    order: -2;
}

.calendar__btn-back-mth {
    order: -1;
}

.calendar__switch-date-btn {
    border: none;
    background: none;
    cursor: pointer;
    opacity: 0.6;
    width: 20px;
    padding: 0;
    transition: var(--transition);
}

.calendar__switch-date-btn svg {
    height: 13px;
}

.calendar__switch-date-btn:hover,
.calendar__switch-date-btn:focus {
    fill: var(--calendar-header-hover-color, #ffe099);
    opacity: 1;
}

.calendar__body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar__body > * {
    text-align: center;
    padding: 7px 0px;
    position: relative;
    font-size: 0.85rem;
    line-height: 1;
}

.calendar__weekday,
.calendar__today {
    font-weight: bold;
}

.calendar__today li {
    font-weight: normal;
}

.calendar__hasitems {
    cursor: pointer;
}

.calendar__hasitems:hover .calendar__items,
.calendar__hasitems:focus-within .calendar__items {
    opacity: 1;
    z-index: 100;
}

.calendar__items {
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 20px;
    list-style: none;
    margin: 0;
    padding: 5px 10px;
    width: 170px;
    text-align: left;
    z-index: -1;
    border-radius: 3px;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.calendar__weekday1 .calendar__items {
    left: 0;
}

.calendar__weekday2 .calendar__items {
    left: -100%;
}

.calendar__weekday3 .calendar__items {
    left: -200%;
}

.calendar__weekday4 .calendar__items {
    left: -250%;
}

.calendar__weekday5 .calendar__items {
    right: -200%;
}

.calendar__weekday6 .calendar__items {
    right: -100%;
}

.calendar__weekday7 .calendar__items {
    right: 0;
}

.calendar__item {
    padding: 5px 0;
    font-size: 0.8rem;
    line-height: 1.3;
}

.calendar__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.calendar__item a {
    display: block;
    color: #fff;
}

.calendar__item a:hover,
.calendar__item a:focus {
    color: #f3ff99;
    outline-offset: 0.25rem;
}

.calendar__day:not(.calendar__outofmonth) {
    background: var(--calendar-day-background, #000);
    color: var(--calendar-day-color, #fff);
    border-radius: 3px;
}

.calendar__day.calendar__hasitems {
    background: var(--calendar-day-has-items-background, #f3ff99);
    color: var(--calendar-day-has-items-color, #000);
}

.calendar__day.calendar__today {
    background: var(--calendar-day-today-background, #f3ff99);
    color: var(--calendar-day-today-color, #000);
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- main content -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

/* .main-content__section { */

.main-content > *:not(.main-header) {
    border-top: 1px dashed #d5d5d5;
    margin-top: var(--flow-space);
    padding-top: var(--flow-space);
}

.main-area--homepage .main-content__section:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

/* .main-header {
    border-bottom: 1px dashed #d5d5d5;
    padding: 0 0 var(--flow-space) 0;
    margin-bottom: var(--flow-space);
} */

.main-header__title {
    font-size: 2em;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.2em;
}

@media (min-width: 1170px) {
    .news-list--masonry .news-item {
        width: calc(50% - 5px);
        padding-left: 1em;
        padding-right: 1em;
    }
}

.news-list {
    margin-top: 0;
}

.news-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    --flow-space: 0.5em;
}

.news-item:not(:last-child) {
    padding-bottom: 2em;
    margin-bottom: 2em;
}

.news-item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: var(--news-list-items-separator-border, 1px dashed #d5d5d5);
}

.news-item__title {
    font-size: 1.5em;
    font-weight: 400;
    color: var(--news-item-header-color, #fff);
    overflow-wrap: break-word;
}

.news-item__thumbnail:not(.news-item__thumbnail--full-width) {
    background: #d5d5d5;
    padding: 3px;
    max-width: 30%;
    float: left;
    margin: 0 10px 10px 0;
    border-radius: 3px;
}

.news-item__thumbnail--full-width {
    align-self: center;
}

.news-item__read-more-block {
    text-align: var(--news-item-read-more-align, right);
}

.news-item__read-more-link {
    background: var(--news-item-read-more-background, #000);
    text-decoration: none;
    border-radius: var(--news-item-read-more-border-radius, 0.25rem);
    font-size: 0.8em;
    display: inline-flex;
    align-items: center;
    padding: 0 0.8em;
    gap: 0.8em;
    transition: var(--transition);
}

.news-item__read-more-text {
    display: inline-block;
    font-style: var(--news-item-read-more-font-style, normal);
    color: var(--news-item-read-more-text-color, #ffff00);
    line-height: 2;
    font-weight: 500;
    transition: var(--transition);
}

.news-item__read-more-icon {
    background: var(--news-item-read-more-icon-background, #000);
    fill: var(--news-item-read-more-icon-color, #ffff00);
    height: 1.5em;
    padding: 0.4em 0.6em;
    margin: 0.2em 0 0.2em -0.55em;
    border-radius: 0.2rem;
    transition: var(--transition);
}

.news-item__read-more-link:hover,
.news-item__read-more-link:focus {
    background: var(--news-item-read-more-hover-background, #333);
}

.news-item__read-more-link:hover .news-item__read-more-text,
.news-item__read-more-link:focus .news-item__read-more-text {
    color: var(--news-item-read-more-text-hover-color, #adff2f);
}

.news-item__read-more-link:hover .news-item__read-more-icon,
.news-item__read-more-link:focus .news-item__read-more-icon {
    background: var(--news-item-read-more-icon-hover-background, #333);
    fill: var(--news-item-read-more-icon-hover-color, #adff2f);
}

.news-item img {
    height: auto !important;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- flash messages -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.flash-error,
.flash-success {
    padding: 0.5em;
    border-radius: 4px;
    color: #fff;
    background: #852323;
    text-align: center;
}

.flash-success {
    background: #2a5813;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- breadcrumbs -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.breadcrumbs {
    padding: 10px 0;
    border-bottom: var(--breadcrumbs-border, 1px dashed #d5d5d5);
    font-size: 0.95em;
}

.breadcrumbs ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li {
    list-style: none;
    padding-right: 0.5rem;
}

.breadcrumbs li::after {
    content: "»";
    padding-left: 0.5rem;
}

.breadcrumbs li:first-child::after,
.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    text-decoration: none;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- galleries -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.galleries__list {
    --flow-space: 0.5em;
}

.gallery-item {
    position: relative;
    padding: 0.6em;
    margin-bottom: 10px;
    border-radius: 0.25rem;
    background: var(--gallery-item-background, #202020);
    width: 100%;
}

@media (min-width: 450px) {
    .gallery-item {
        width: calc(50% - 5px);
    }
}

.gallery-item__title {
    font-size: 1.3em;
}

.gallery-item__link {
    color: var(--gallery-item-link-color, var(--link-color));
    text-decoration: none;
}

.gallery-item__link::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.gallery-item__link:hover,
.gallery-item__link:focus {
    color: var(--gallery-item-link-hover-color, var(--link-hover-color));
    text-decoration: underline;
}

.gallery-item__picture {
    border-radius: 0.25rem;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- gallery images -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.thumbnail {
    margin-bottom: 10px;
    width: 100%;
}

@media (min-width: 320px) {
    .thumbnail {
        width: calc(50% - 5px);
    }
}

@media (min-width: 640px) {
    .thumbnail {
        width: calc(33% - 6.666666px);
    }
}

.thumbnail__link {
    display: block;
    padding: 0.3em;
    background: var(--thumbnail-background, #d9d9d9);
    border-radius: 0.25rem;
    text-align: center;
}

.thumbnail__link:hover,
.thumbnail__link:focus {
    background: var(--thumbnail-hover-background, #b5b5b5);
}

.thumbnail__picture {
    border-radius: 0.25rem;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- attachments -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.attachments__list {
    --flow-space: 0.2em;
    list-style: none;
    margin: 0;
    padding: 0;
}

.attachment:not(:first-child) {
    margin-top: 0.5em;
    padding-top: 0.5em;
    border-top: 1px solid #d5d5d5;
}

.attachment__title {
    text-decoration: none;
    font-size: 1.1em;
}

.attachment__title:hover,
.attachment__title:focus {
    text-decoration: underline;
}

.attachment__description {
    font-size: 0.9em;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- pagination -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.pagination {
    margin: 1.3rem 0 3.5rem 0;
    padding-top: 1.3rem;
    border-top: var(--pagination-border-top, 1px solid #d5d5d5);
}

.pagination__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 0.3em;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination__link {
    background: var(--pagination-background, #000);
    color: var(--pagination-color, #ffff00);
    fill: var(--pagination-color, #ffff00);
    text-decoration: none;
    padding: 0.4em 0.8em;
    border-radius: 0.25rem;
    font-size: 0.8em;
    display: block;
}

.pagination__link:hover,
.pagination__link:focus,
.pagination__item--current .pagination__link {
    background: var(--pagination-hover-background, #333);
    color: var(--pagination-hover-color, #adff2f);
    fill: var(--pagination-hover-color, #adff2f);
    text-decoration: underline;
}

.pagination__item--current .pagination__link {
    font-weight: bold;
}

.pagination__icon {
    height: 0.5em;
    margin: 0 -0.5em;
}

.pagination__icon--reversed {
    transform: rotateY(180deg);
}

.pagination__item:first-child:not(.pagination__item--first) {
    margin-left: auto;
}

.pagination__item--first {
    margin-right: auto;
}

.pagination__item:last-child:not(.pagination__item--last) {
    margin-right: auto;
}

.pagination__item--last {
    margin-left: auto;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- footer -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.footer-area {
    background: var(--footer-bg, #000);
    margin-top: 3rem;
}

.footer__inside {
    display: flex;
    flex-direction: column;
    padding: 1.5em 0;
}

@media (min-width: 700px) {
    .footer__inside {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer__start,
.footer__end {
    color: var(--footer-color, #fff);
    font-size: 0.9em;
    --flow-space: 0.5em;
}

.footer__link {
    color: var(--footer-link-color, #ffff00);
    text-decoration: none;
}

.footer__link:hover,
.footer__link:focus {
    color: var(--footer-link-hover-color, #ffff00);
    text-decoration: underline;
}

.footer__jump-to-top-icon {
    fill: var(--footer-link-color, #ffff00);
    transform: scale(0.6) translateY(-2px);
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- slider -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.js-carrousel {
    position: relative;
}

.js-carrousel__caption_wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px;
}

.js-carrousel__caption {
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    font-size: 0.9em;
}

.js-carrousel__container:not(.carrousel__container) > * + * {
    display: none;
}

.carrousel .mod--hidden {
    overflow: hidden;
}

.carrousel__container {
    white-space: nowrap;
    position: relative;
}

.carrousel__control__list {
    list-style-type: none;
    padding: 5px 0 0 0;
    text-align: center;
}

.carrousel__control__list__item {
    display: inline-block;
    margin: 0 5px;
}

.carrousel__control__list__link {
    display: inline-block;
    width: 1em;
    height: 1em;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1em;
    cursor: pointer;
}

.carrousel__button-container {
    position: absolute;
    z-index: 999;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -35px;
}

.carrousel__button__previous {
    left: 10px;
}

.carrousel__button__next {
    right: 10px;
}

.carrousel__button__button {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5em;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.carrousel__button__button:hover,
.carrousel__button__button:focus {
    background: rgba(0, 0, 0, 0.8);
    color: #ffff00;
}

.carrousel__button__previous span {
    margin: -3px 0 0 -2px;
    display: block;
}

.carrousel__button__next span {
    margin: -3px -2px 0 0;
    display: block;
}

.carrousel__content[aria-hidden="true"] {
    display: none;
}

.carrousel__control__list__link:focus,
.carrousel__control__list__link:hover,
.carrousel__control__list__link:active,
.carrousel__control__list__link[aria-selected="true"] {
    background: rgba(0, 0, 0, 0.8);
}

.carrousel__control__list__link:focus,
.carrousel__control__list__link:hover,
.carrousel__control__list__link:active {
    outline: 2px dotted #4f4e52;
}

.slide .carrousel__content {
    display: inline-block;
    vertical-align: top;
    visibility: visible;
    width: 100%;
    position: relative;
    transition: visibility 0s ease, transform 0.5s ease-in;
    transition-delay: 0s;
    white-space: normal;
}

[data-carrousel-active-slide="1"].slide > .carrousel__content {
    transform: translateX(0);
}

[data-carrousel-active-slide="2"].slide > .carrousel__content {
    transform: translateX(-100%);
}

[data-carrousel-active-slide="3"].slide > .carrousel__content {
    transform: translateX(-200%);
}

[data-carrousel-active-slide="4"].slide > .carrousel__content {
    transform: translateX(-300%);
}

[data-carrousel-active-slide="5"].slide > .carrousel__content {
    transform: translateX(-400%);
}

[data-carrousel-active-slide="6"].slide > .carrousel__content {
    transform: translateX(-500%);
}

[data-carrousel-active-slide="7"].slide > .carrousel__content {
    transform: translateX(-600%);
}

[data-carrousel-active-slide="8"].slide > .carrousel__content {
    transform: translateX(-700%);
}

[data-carrousel-active-slide="9"].slide > .carrousel__content {
    transform: translateX(-800%);
}

[data-carrousel-active-slide].slide > [aria-hidden="true"].carrousel__content {
    visibility: hidden;
    transition-delay: 0.5s, 0s;
}

.fade .carrousel__content {
    animation: fadein 2s;
    white-space: normal;
}

.fade .carrousel__content[aria-hidden="true"] {
    animation: fadeout 2s;
    display: none;
}

@keyframes fadeout {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes fadein {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.none .carrousel__content {
    white-space: normal;
}

.none .carrousel__content[aria-hidden="true"] {
    display: none;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- popup -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.dialog-container {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.dialog-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.dialog-container[aria-hidden="true"] {
    display: none;
}

.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(43, 46, 56, 0.9);
    animation: fade-in 200ms both;
}

.dialog-content-wrapper {
    background-color: rgb(255, 255, 255);
    margin: auto;
    z-index: 2;
    position: relative;
    animation: fade-in 400ms 200ms both, slide-up 400ms 200ms both;
    max-width: 90%;
    width: 800px;
    border-radius: 2px;
    max-height: 90%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
}

@keyframes slide-up {
    from {
        transform: translateY(10%);
    }
}

.dialog-content {
    overflow: scroll;
    max-height: 90vh;
    padding: 0 1em 1em 1em;
}

.dialog-content,
.dialog-content * {
    color: #000;
}

.dialog-close-wrapper {
    padding: 0.5em;
    text-align: right;
}

.dialog-close {
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    padding: 3px 9px 5px 9px;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.dialog-close:hover,
.dialog-close:focus {
    background: rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 700px) {
    .dialog-content {
        padding: 0 2em 2em 2em;
    }
    .dialog-close-wrapper {
        padding: 1em;
    }
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- clock -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.clock {
    height: 100px;
    display: block;
    margin: 0 auto;
    fill: none;
    stroke: #000;
    stroke-width: 2;
    stroke-linecap: round;
    transform: rotate(-90deg);
    --start-seconds: 57;
    --start-minutes: 45;
    --start-hours: 11;
}

.clock__circle {
    fill: white;
}

.clock__marks {
    transform: translate(20px, 20px);
    stroke-width: 0.2;
}

.clock__seconds,
.clock__minute,
.clock__hour {
    transform: translate(20px, 20px) rotate(0deg);
}

.clock__seconds {
    transform: translate(20px, 20px) rotate(calc(var(--start-seconds) * 6deg));
    stroke-width: 0.3;
    animation: rotateSecondHand 60s steps(60) infinite;
    stroke: #d00505;
}

.clock__minute {
    transform: translate(20px, 20px) rotate(calc(var(--start-minutes) * 6deg));
    stroke-width: 0.6;
    animation: rotateMinuteHand 3600s steps(60) infinite;
    animation-delay: calc(var(--start-seconds) * -1 * 1s);
}

.clock__hour {
    transform: translate(20px, 20px) rotate(calc(var(--start-hours) * 30deg));
    animation: rotateHourHand calc(12 * 60 * 60s) linear infinite;
    stroke-width: 1;
    animation-delay: calc(
        calc(var(--start-minutes) * -60 * 1s) +
            calc(var(--start-seconds) * -1 * 1s)
    );
}

.clock__pin {
    stroke: #d00505;
    stroke-width: 0.2;
}

@keyframes rotateSecondHand {
    from {
        transform: translate(20px, 20px)
            rotate(calc(var(--start-seconds) * 6deg));
    }
    to {
        transform: translate(20px, 20px)
            rotate(calc(var(--start-seconds) * 6deg + 360deg));
    }
}

@keyframes rotateMinuteHand {
    from {
        transform: translate(20px, 20px)
            rotate(calc(var(--start-minutes) * 6deg));
    }
    to {
        transform: translate(20px, 20px)
            rotate(calc(var(--start-minutes) * 6deg + 360deg));
    }
}

@keyframes rotateHourHand {
    from {
        transform: translate(20px, 20px)
            rotate(calc(var(--start-hours) * 30deg));
    }
    to {
        transform: translate(20px, 20px)
            rotate(calc(var(--start-hours) * 30deg + 360deg));
    }
}

.clock__marks > line:nth-child(1) {
    transform: rotate(30deg);
}

.clock__marks > line:nth-child(2) {
    transform: rotate(calc(2 * 30deg));
}

.clock__marks > line:nth-child(3) {
    transform: rotate(calc(3 * 30deg));
    stroke-width: 0.5;
}

.clock__marks > line:nth-child(4) {
    transform: rotate(calc(4 * 30deg));
}

.clock__marks > line:nth-child(5) {
    transform: rotate(calc(5 * 30deg));
}

.clock__marks > line:nth-child(6) {
    transform: rotate(calc(6 * 30deg));
    stroke-width: 0.5;
}

.clock__marks > line:nth-child(7) {
    transform: rotate(calc(7 * 30deg));
}

.clock__marks > line:nth-child(8) {
    transform: rotate(calc(8 * 30deg));
}

.clock__marks > line:nth-child(9) {
    transform: rotate(calc(9 * 30deg));
    stroke-width: 0.5;
}

.clock__marks > line:nth-child(10) {
    transform: rotate(calc(10 * 30deg));
}

.clock__marks > line:nth-child(11) {
    transform: rotate(calc(11 * 30deg));
}

.clock__marks > line:nth-child(12) {
    transform: rotate(calc(12 * 30deg));
    stroke-width: 0.5;
}
