/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
    position: relative;
}
.flickity-enabled:focus {
    outline: none;
}
.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}
.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}
.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
.flickity-button {
    position: absolute;
    background: hsla(0, 0%, 100%, 0.75);
    border: none;
    color: #333;
}
.flickity-button:hover {
    background: #fff;
    cursor: pointer;
}
.flickity-button:focus {
    outline: none;
    box-shadow: 0 0 0 5px #19f;
}
.flickity-button:active {
    opacity: 0.6;
}
.flickity-button:disabled {
    opacity: 0.3;
    cursor: auto;
    pointer-events: none;
}
.flickity-button-icon {
    fill: currentColor;
}
.flickity-prev-next-button {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: translateY(-50%);
}
.flickity-prev-next-button.previous {
    left: 10px;
}
.flickity-prev-next-button.next {
    right: 10px;
}
.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px;
}
.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
}
.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -25px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
}
.flickity-rtl .flickity-page-dots {
    direction: rtl;
}
.flickity-page-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: #333;
    border-radius: 50%;
    opacity: 0.25;
    cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
    opacity: 1;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    touch-action: none;
    z-index: 1500;
    -webkit-text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    outline: none;
}
.pswp * {
    box-sizing: border-box;
}
.pswp img {
    max-width: none;
}
.pswp--animate_opacity {
    opacity: 0.001;
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--open {
    display: block;
}
.pswp--zoom-allowed .pswp__img {
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}
.pswp--zoomed-in .pswp__img {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}
.pswp--dragging .pswp__img {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}
.pswp__bg {
    background: #000;
    opacity: 0;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}
.pswp__bg,
.pswp__scroll-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.pswp__scroll-wrap {
    overflow: hidden;
}
.pswp__container,
.pswp__zoom-wrap {
    touch-action: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.pswp__container,
.pswp__img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}
.pswp__zoom-wrap {
    position: absolute;
    width: 100%;
    transform-origin: left top;
    transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp__bg {
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
    transition: none;
}
.pswp__container,
.pswp__zoom-wrap {
    -webkit-backface-visibility: hidden;
}
.pswp__item {
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.pswp__img,
.pswp__item {
    position: absolute;
    left: 0;
    top: 0;
}
.pswp__img {
    width: auto;
    height: auto;
}
.pswp__img--placeholder {
    -webkit-backface-visibility: hidden;
}
.pswp__img--placeholder--blank {
    background: #222;
}
.pswp--ie .pswp__img {
    width: 100% !important;
    height: auto !important;
    left: 0;
    top: 0;
}
.pswp__error-msg {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    margin-top: -8px;
    color: #ccc;
}
.pswp__error-msg a {
    color: #ccc;
    text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp__button {
    width: 44px;
    height: 44px;
    position: relative;
    background: none;
    cursor: pointer;
    overflow: visible;
    -webkit-appearance: none;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    float: right;
    opacity: 0.75;
    transition: opacity 0.2s;
    box-shadow: none;
}
.pswp__button:focus,
.pswp__button:hover {
    opacity: 1;
}
.pswp__button:active {
    outline: none;
    opacity: 0.9;
}
.pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
.pswp__ui--over-close .pswp__button--close {
    opacity: 1;
}
.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    background: url(default-skin.png) 0 0 no-repeat;
    background-size: 264px 88px;
    width: 44px;
    height: 44px;
}
@media (-webkit-min-device-pixel-ratio: 1.1),
    (-webkit-min-device-pixel-ratio: 1.09375),
    (min-resolution: 1.1dppx),
    (min-resolution: 105dpi) {
    .pswp--svg .pswp__button,
    .pswp--svg .pswp__button--arrow--left:before,
    .pswp--svg .pswp__button--arrow--right:before {
        background-image: url(default-skin.svg);
    }
    .pswp--svg .pswp__button--arrow--left,
    .pswp--svg .pswp__button--arrow--right {
        background: none;
    }
}
.pswp__button--close {
    background-position: 0 -44px;
}
.pswp__button--share {
    background-position: -44px -44px;
}
.pswp__button--fs {
    display: none;
}
.pswp--supports-fs .pswp__button--fs {
    display: block;
}
.pswp--fs .pswp__button--fs {
    background-position: -44px 0;
}
.pswp__button--zoom {
    display: none;
    background-position: -88px 0;
}
.pswp--zoom-allowed .pswp__button--zoom {
    display: block;
}
.pswp--zoomed-in .pswp__button--zoom {
    background-position: -132px 0;
}
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
    visibility: hidden;
}
.pswp__button--arrow--left,
.pswp__button--arrow--right {
    background: none;
    top: 50%;
    margin-top: -50px;
    width: 70px;
    height: 100px;
    position: absolute;
}
.pswp__button--arrow--left {
    left: 0;
}
.pswp__button--arrow--right {
    right: 0;
}
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    content: "";
    top: 35px;
    background-color: rgba(0, 0, 0, 0.3);
    height: 30px;
    width: 32px;
    position: absolute;
}
.pswp__button--arrow--left:before {
    left: 6px;
    background-position: -138px -44px;
}
.pswp__button--arrow--right:before {
    right: 6px;
    background-position: -94px -44px;
}
.pswp__counter,
.pswp__share-modal {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.pswp__share-modal {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    position: absolute;
    z-index: 1600;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    -webkit-backface-visibility: hidden;
    will-change: opacity;
}
.pswp__share-modal--hidden {
    display: none;
}
.pswp__share-tooltip {
    z-index: 1620;
    position: absolute;
    background: #fff;
    top: 56px;
    border-radius: 2px;
    display: block;
    width: auto;
    right: 44px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    transform: translateY(6px);
    transition: transform 0.25s;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}
.pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 18px;
}
.pswp__share-tooltip a,
.pswp__share-tooltip a:hover {
    color: #000;
    text-decoration: none;
}
.pswp__share-tooltip a:first-child {
    border-radius: 2px 2px 0 0;
}
.pswp__share-tooltip a:last-child {
    border-radius: 0 0 2px 2px;
}
.pswp__share-modal--fade-in {
    opacity: 1;
}
.pswp__share-modal--fade-in .pswp__share-tooltip {
    transform: translateY(0);
}
.pswp--touch .pswp__share-tooltip a {
    padding: 16px 12px;
}
a.pswp__share--facebook:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: -12px;
    right: 15px;
    border: 6px solid transparent;
    border-bottom-color: #fff;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none;
}
a.pswp__share--facebook:hover {
    background: #3e5c9a;
    color: #fff;
}
a.pswp__share--facebook:hover:before {
    border-bottom-color: #3e5c9a;
}
a.pswp__share--twitter:hover {
    background: #55acee;
    color: #fff;
}
a.pswp__share--pinterest:hover {
    background: #ccc;
    color: #ce272d;
}
a.pswp__share--download:hover {
    background: #ddd;
}
.pswp__counter {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    font-size: 13px;
    line-height: 44px;
    color: #fff;
    opacity: 0.75;
    padding: 0 10px;
}
.pswp__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 44px;
}
.pswp__caption small {
    font-size: 11px;
    color: #bbb;
}
.pswp__caption__center {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    font-size: 13px;
    padding: 10px;
    line-height: 20px;
    color: #ccc;
}
.pswp__caption--empty {
    display: none;
}
.pswp__caption--fake {
    visibility: hidden;
}
.pswp__preloader {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -22px;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    will-change: opacity;
    direction: ltr;
}
.pswp__preloader__icn {
    width: 20px;
    height: 20px;
    margin: 12px;
}
.pswp__preloader--active {
    opacity: 1;
}
.pswp__preloader--active .pswp__preloader__icn {
    background: url(preloader.gif) 0 0 no-repeat;
}
.pswp--css_animation .pswp__preloader--active {
    opacity: 1;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 0.5s linear infinite;
    animation: clockwise 0.5s linear infinite;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1s cubic-bezier(0.4, 0, 0.22, 1) infinite;
    animation: donut-rotate 1s cubic-bezier(0.4, 0, 0.22, 1) infinite;
}
.pswp--css_animation .pswp__preloader__icn {
    background: none;
    opacity: 0.75;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 15px;
    top: 15px;
    margin: 0;
}
.pswp--css_animation .pswp__preloader__cut {
    position: relative;
    width: 7px;
    height: 14px;
    overflow: hidden;
}
.pswp--css_animation .pswp__preloader__donut {
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border-color: #fff #fff transparent transparent;
    border-style: solid;
    border-width: 2px;
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    margin: 0;
}
@media screen and (max-width: 1024px) {
    .pswp__preloader {
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
        float: right;
    }
}
@-webkit-keyframes clockwise {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(1turn);
    }
}
@keyframes clockwise {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(1turn);
    }
}
@-webkit-keyframes donut-rotate {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(-140deg);
    }
    to {
        transform: rotate(0);
    }
}
@keyframes donut-rotate {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(-140deg);
    }
    to {
        transform: rotate(0);
    }
}
.pswp__ui {
    -webkit-font-smoothing: auto;
    visibility: visible;
    opacity: 1;
    z-index: 1550;
}
.pswp__top-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    width: 100%;
}
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right,
.pswp__caption,
.pswp__top-bar {
    -webkit-backface-visibility: hidden;
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    visibility: visible;
}
.pswp__caption,
.pswp__top-bar {
    background-color: rgba(0, 0, 0, 0.5);
}
.pswp__ui--fit .pswp__caption,
.pswp__ui--fit .pswp__top-bar {
    background-color: rgba(0, 0, 0, 0.3);
}
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right,
.pswp__ui--idle .pswp__top-bar {
    opacity: 0;
}
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__top-bar {
    opacity: 0.001;
}
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
    display: none;
}
.pswp__element--disabled {
    display: none !important;
}
.pswp--minimal--dark .pswp__top-bar {
    background: none;
}

/*!
 * mmenu.js
 * mmenujs.com
 *
 * Copyright (c) Fred Heusschen
 * frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */
.mm-menu_theme-white {
    --mm-color-border: rgba(0, 0, 0, 0.1);
    --mm-color-button: rgba(0, 0, 0, 0.3);
    --mm-color-text: rgba(0, 0, 0, 0.7);
    --mm-color-text-dimmed: rgba(0, 0, 0, 0.3);
    --mm-color-background: #fff;
    --mm-color-background-highlight: rgba(0, 0, 0, 0.06);
    --mm-color-background-emphasis: rgba(0, 0, 0, 0.03);
    --mm-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.mm-menu_theme-dark {
    --mm-color-border: rgba(0, 0, 0, 0.3);
    --mm-color-button: hsla(0, 0%, 100%, 0.4);
    --mm-color-text: hsla(0, 0%, 100%, 0.85);
    --mm-color-text-dimmed: hsla(0, 0%, 100%, 0.4);
    --mm-color-background: #333;
    --mm-color-background-highlight: hsla(0, 0%, 100%, 0.08);
    --mm-color-background-emphasis: rgba(0, 0, 0, 0.1);
    --mm-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.mm-menu_theme-black {
    --mm-color-border: hsla(0, 0%, 100%, 0.25);
    --mm-color-button: hsla(0, 0%, 100%, 0.4);
    --mm-color-text: hsla(0, 0%, 100%, 0.75);
    --mm-color-text-dimmed: hsla(0, 0%, 100%, 0.4);
    --mm-color-background: #000;
    --mm-color-background-highlight: hsla(0, 0%, 100%, 0.2);
    --mm-color-background-emphasis: hsla(0, 0%, 100%, 0.15);
    --mm-shadow: none;
}
:root {
    --mm-line-height: 20px;
    --mm-listitem-size: 44px;
    --mm-navbar-size: 44px;
    --mm-offset-top: 0;
    --mm-offset-right: 0;
    --mm-offset-bottom: 0;
    --mm-offset-left: 0;
    --mm-color-border: rgba(0, 0, 0, 0.1);
    --mm-color-button: rgba(0, 0, 0, 0.3);
    --mm-color-text: rgba(0, 0, 0, 0.75);
    --mm-color-text-dimmed: rgba(0, 0, 0, 0.3);
    --mm-color-background: #f3f3f3;
    --mm-color-background-highlight: rgba(0, 0, 0, 0.05);
    --mm-color-background-emphasis: hsla(0, 0%, 100%, 0.4);
    --mm-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.mm-hidden {
    display: none !important;
}
.mm-wrapper {
    overflow-x: hidden;
    position: relative;
}
.mm-menu {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #f3f3f3;
    border-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.75);
    line-height: 20px;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: absolute;
    top: var(--mm-offset-top);
    right: var(--mm-offset-right);
    bottom: var(--mm-offset-bottom);
    left: var(--mm-offset-left);
    z-index: 0;
    background: var(--mm-color-background);
    border-color: var(--mm-color-border);
    color: var(--mm-color-text);
    line-height: var(--mm-line-height);
    -webkit-tap-highlight-color: var(--mm-color-background-emphasis);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.mm-menu a,
.mm-menu a:active,
.mm-menu a:hover,
.mm-menu a:link,
.mm-menu a:visited {
    text-decoration: none;
    color: inherit;
}
[dir="rtl"] .mm-menu {
    direction: rtl;
}
.mm-panel {
    background: #f3f3f3;
    border-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.75);
    z-index: 0;
    box-sizing: border-box;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--mm-color-background);
    border-color: var(--mm-color-border);
    color: var(--mm-color-text);
    transform: translate3d(100%, 0, 0);
    transition: transform 0.4s ease;
}
.mm-panel:after {
    height: 44px;
}
.mm-panel:not(.mm-hidden) {
    display: block;
}
.mm-panel:after {
    content: "";
    display: block;
    height: var(--mm-listitem-size);
}
.mm-panel_opened {
    z-index: 1;
    transform: translateZ(0);
}
.mm-panel_opened-parent {
    transform: translate3d(-30%, 0, 0);
}
.mm-panel_highest {
    z-index: 2;
}
.mm-panel_noanimation {
    transition: none !important;
}
.mm-panel_noanimation.mm-panel_opened-parent {
    transform: translateZ(0);
}
.mm-panels > .mm-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.mm-panel__content {
    padding: 20px 20px 0;
}
.mm-panels {
    background: #f3f3f3;
    border-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.75);
    position: relative;
    height: 100%;
    flex-grow: 1;
    overflow: hidden;
    background: var(--mm-color-background);
    border-color: var(--mm-color-border);
    color: var(--mm-color-text);
}
[dir="rtl"] .mm-panel:not(.mm-panel_opened) {
    transform: translate3d(-100%, 0, 0);
}
[dir="rtl"] .mm-panel.mm-panel_opened-parent {
    transform: translate3d(30%, 0, 0);
}
.mm-listitem_vertical > .mm-panel {
    display: none;
    width: 100%;
    padding: 10px 0 10px 10px;
    transform: none !important;
}
.mm-listitem_vertical > .mm-panel:after,
.mm-listitem_vertical > .mm-panel:before {
    content: none;
    display: none;
}
.mm-listitem_opened > .mm-panel {
    display: block;
}
.mm-listitem_vertical > .mm-listitem__btn {
    height: 44px;
    height: var(--mm-listitem-size);
    bottom: auto;
}
.mm-listitem_vertical .mm-listitem:last-child:after {
    border-color: transparent;
}
.mm-listitem_opened > .mm-listitem__btn:after {
    transform: rotate(225deg);
    right: 19px;
}
.mm-btn {
    flex-grow: 0;
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
    width: 50px;
    padding: 0;
}
.mm-btn:after,
.mm-btn:before {
    border: 2px solid rgba(0, 0, 0, 0.3);
    border: 2px solid var(--mm-color-button);
}
.mm-btn_next:after,
.mm-btn_prev:before {
    content: "";
    border-bottom: none;
    border-right: none;
    box-sizing: content-box;
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
}
.mm-btn_prev:before {
    transform: rotate(-45deg);
    left: 23px;
    right: auto;
}
.mm-btn_next:after {
    transform: rotate(135deg);
    right: 23px;
    left: auto;
}
.mm-btn_close:after,
.mm-btn_close:before {
    content: "";
    box-sizing: content-box;
    display: block;
    width: 5px;
    height: 5px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    transform: rotate(-45deg);
}
.mm-btn_close:before {
    border-right: none;
    border-bottom: none;
    right: 18px;
}
.mm-btn_close:after {
    border-left: none;
    border-top: none;
    right: 25px;
}
[dir="rtl"] .mm-btn_next:after {
    transform: rotate(-45deg);
    left: 23px;
    right: auto;
}
[dir="rtl"] .mm-btn_prev:before {
    transform: rotate(135deg);
    right: 23px;
    left: auto;
}
[dir="rtl"] .mm-btn_close:after,
[dir="rtl"] .mm-btn_close:before {
    right: auto;
}
[dir="rtl"] .mm-btn_close:before {
    left: 25px;
}
[dir="rtl"] .mm-btn_close:after {
    left: 18px;
}
.mm-navbar {
    min-height: 44px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #f3f3f3;
    color: rgba(0, 0, 0, 0.3);
    display: flex;
    min-height: var(--mm-navbar-size);
    border-bottom: 1px solid var(--mm-color-border);
    background: var(--mm-color-background);
    color: var(--mm-color-text-dimmed);
    text-align: center;
    opacity: 1;
    transition: opacity 0.4s ease;
}
.mm-navbar > * {
    min-height: 44px;
}
@supports ((position: -webkit-sticky) or (position: sticky)) {
    .mm-navbar_sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1;
    }
}
.mm-navbar > * {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.mm-navbar__btn {
    flex-grow: 0;
}
.mm-navbar__title {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    flex: 1 1 50%;
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
}
.mm-navbar__title:not(:last-child) {
    padding-right: 0;
}
.mm-navbar__btn:not(.mm-hidden) + .mm-navbar__title {
    padding-left: 0;
}
.mm-navbar__btn:not(.mm-hidden) + .mm-navbar__title:last-child {
    padding-right: 50px;
}
[dir="rtl"] .mm-navbar {
    flex-direction: row-reverse;
}
.mm-listview {
    display: block;
}
.mm-listitem,
.mm-listview {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mm-listitem {
    color: rgba(0, 0, 0, 0.75);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--mm-color-text);
    border-color: var(--mm-color-border);
    display: block;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.mm-listitem:after {
    content: "";
    border-color: inherit;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: block;
    position: absolute;
    left: 20px;
    right: 0;
    bottom: 0;
}
.mm-listitem a,
.mm-listitem a:hover {
    text-decoration: none;
}
.mm-listitem__btn,
.mm-listitem__text {
    padding: 12px;
    display: block;
    padding: calc((var(--mm-listitem-size) - var(--mm-line-height)) / 2);
    padding-left: 0;
    padding-right: 0;
    color: inherit;
}
.mm-listitem__text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 10px;
    flex-grow: 1;
    flex-basis: 10%;
}
.mm-listitem__btn {
    background: rgba(3, 2, 1, 0);
    border-color: inherit;
    width: auto;
    padding-right: 50px;
    position: relative;
}
.mm-listitem__btn:not(.mm-listitem__text) {
    border-left-width: 1px;
    border-left-style: solid;
}
.mm-listitem_selected > .mm-listitem__text {
    background: hsla(0, 0%, 100%, 0.4);
    background: var(--mm-color-background-emphasis);
}
.mm-listitem_opened > .mm-listitem__btn,
.mm-listitem_opened > .mm-panel {
    background: rgba(0, 0, 0, 0.05);
    background: var(--mm-color-background-highlight);
}
[dir="rtl"] .mm-listitem:after {
    left: 0;
    right: 20px;
}
[dir="rtl"] .mm-listitem__text {
    padding-left: 10px;
    padding-right: 20px;
}
[dir="rtl"] .mm-listitem__btn {
    padding-left: 50px;
    border-left-width: 0;
    border-left-style: none;
}
[dir="rtl"] .mm-listitem__btn:not(.mm-listitem__text) {
    padding-right: 0;
    border-right-width: 1px;
    border-right-style: solid;
}
.mm-page {
    box-sizing: border-box;
    position: relative;
}
.mm-slideout {
    transition: transform 0.4s ease;
    z-index: 1;
}
.mm-wrapper_opened {
    overflow-x: hidden;
    position: relative;
}
.mm-wrapper_opened .mm-page {
    min-height: 100vh;
}
.mm-wrapper_background .mm-page {
    background: inherit;
}
.mm-menu_offcanvas {
    position: fixed;
    right: auto;
    z-index: 0;
}
.mm-menu_offcanvas:not(.mm-menu_opened) {
    display: none;
}
.mm-menu_offcanvas {
    width: 80%;
    min-width: 240px;
    max-width: 440px;
}
.mm-wrapper_opening .mm-menu_offcanvas ~ .mm-slideout {
    transform: translate3d(80vw, 0, 0);
}
@media (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_offcanvas ~ .mm-slideout {
        transform: translate3d(240px, 0, 0);
    }
}
@media (min-width: 550px) {
    .mm-wrapper_opening .mm-menu_offcanvas ~ .mm-slideout {
        transform: translate3d(440px, 0, 0);
    }
}
.mm-wrapper__blocker {
    background: rgba(3, 2, 1, 0);
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.mm-wrapper_blocking,
.mm-wrapper_blocking body {
    overflow: hidden;
}
.mm-wrapper_blocking .mm-wrapper__blocker {
    display: block;
}
.mm-sronly {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    width: 1px !important;
    min-width: 1px !important;
    height: 1px !important;
    min-height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
}
.mm-menu_autoheight:not(.mm-menu_offcanvas) {
    position: relative;
}
.mm-menu_autoheight.mm-menu_position-bottom,
.mm-menu_autoheight.mm-menu_position-top {
    max-height: 80%;
}
.mm-menu_autoheight-measuring .mm-panel {
    display: block !important;
}
.mm-menu_autoheight-measuring .mm-panels > .mm-panel {
    bottom: auto !important;
    height: auto !important;
}
.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
    display: none !important;
}
[class*="mm-menu_columns-"] {
    transition-property: width;
}
[class*="mm-menu_columns-"] .mm-panels > .mm-panel {
    right: auto;
    transition-property: width, transform;
}
[class*="mm-menu_columns-"] .mm-panels > .mm-panel_opened,
[class*="mm-menu_columns-"] .mm-panels > .mm-panel_opened-parent {
    display: block !important;
}
[class*="mm-panel_columns-"] {
    border-right: 1px solid;
    border-color: inherit;
}
.mm-menu_columns-1 .mm-panel_columns-0,
.mm-menu_columns-2 .mm-panel_columns-1,
.mm-menu_columns-3 .mm-panel_columns-2,
.mm-menu_columns-4 .mm-panel_columns-3 {
    border-right: none;
}
[class*="mm-menu_columns-"] .mm-panels > .mm-panel_columns-0 {
    transform: translateZ(0);
}
.mm-menu_columns-0 .mm-panels > .mm-panel {
    z-index: 0;
}
.mm-menu_columns-0 .mm-panels > .mm-panel else {
    width: 100%;
}
.mm-menu_columns-0 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    transform: translate3d(100%, 0, 0);
}
.mm-menu_columns-0 {
    width: 80%;
    min-width: 240px;
    max-width: 0;
}
.mm-wrapper_opening .mm-menu_columns-0 ~ .mm-slideout {
    transform: translate3d(80vw, 0, 0);
}
@media (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-0 ~ .mm-slideout {
        transform: translate3d(240px, 0, 0);
    }
}
@media (min-width: 0px) {
    .mm-wrapper_opening .mm-menu_columns-0 ~ .mm-slideout {
        transform: translateZ(0);
    }
}
.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-80vw, 0, 0);
}
@media (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translate3d(-240px, 0, 0);
    }
}
@media (min-width: 0px) {
    .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translateZ(0);
    }
}
[class*="mm-menu_columns-"] .mm-panels > .mm-panel_columns-1 {
    transform: translate3d(100%, 0, 0);
}
.mm-menu_columns-1 .mm-panels > .mm-panel {
    z-index: 1;
    width: 100%;
}
.mm-menu_columns-1 .mm-panels > .mm-panel else {
    width: 100%;
}
.mm-menu_columns-1 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    transform: translate3d(200%, 0, 0);
}
.mm-menu_columns-1 {
    width: 80%;
    min-width: 240px;
    max-width: 440px;
}
.mm-wrapper_opening .mm-menu_columns-1 ~ .mm-slideout {
    transform: translate3d(80vw, 0, 0);
}
@media (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-1 ~ .mm-slideout {
        transform: translate3d(240px, 0, 0);
    }
}
@media (min-width: 550px) {
    .mm-wrapper_opening .mm-menu_columns-1 ~ .mm-slideout {
        transform: translate3d(440px, 0, 0);
    }
}
.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-80vw, 0, 0);
}
@media (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translate3d(-240px, 0, 0);
    }
}
@media (min-width: 550px) {
    .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translate3d(-440px, 0, 0);
    }
}
[class*="mm-menu_columns-"] .mm-panels > .mm-panel_columns-2 {
    transform: translate3d(200%, 0, 0);
}
.mm-menu_columns-2 .mm-panels > .mm-panel {
    z-index: 2;
    width: 50%;
}
.mm-menu_columns-2 .mm-panels > .mm-panel else {
    width: 100%;
}
.mm-menu_columns-2 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    transform: translate3d(300%, 0, 0);
}
.mm-menu_columns-2 {
    width: 80%;
    min-width: 240px;
    max-width: 880px;
}
.mm-wrapper_opening .mm-menu_columns-2 ~ .mm-slideout {
    transform: translate3d(80vw, 0, 0);
}
@media (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-2 ~ .mm-slideout {
        transform: translate3d(240px, 0, 0);
    }
}
@media (min-width: 1100px) {
    .mm-wrapper_opening .mm-menu_columns-2 ~ .mm-slideout {
        transform: translate3d(880px, 0, 0);
    }
}
.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-80vw, 0, 0);
}
@media (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translate3d(-240px, 0, 0);
    }
}
@media (min-width: 1100px) {
    .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translate3d(-880px, 0, 0);
    }
}
[class*="mm-menu_columns-"] .mm-panels > .mm-panel_columns-3 {
    transform: translate3d(300%, 0, 0);
}
.mm-menu_columns-3 .mm-panels > .mm-panel {
    z-index: 3;
    width: 33.34%;
}
.mm-menu_columns-3 .mm-panels > .mm-panel else {
    width: 100%;
}
.mm-menu_columns-3 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    transform: translate3d(400%, 0, 0);
}
.mm-menu_columns-3 {
    width: 80%;
    min-width: 240px;
    max-width: 1320px;
}
.mm-wrapper_opening .mm-menu_columns-3 ~ .mm-slideout {
    transform: translate3d(80vw, 0, 0);
}
@media (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-3 ~ .mm-slideout {
        transform: translate3d(240px, 0, 0);
    }
}
@media (min-width: 1650px) {
    .mm-wrapper_opening .mm-menu_columns-3 ~ .mm-slideout {
        transform: translate3d(1320px, 0, 0);
    }
}
.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-80vw, 0, 0);
}
@media (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translate3d(-240px, 0, 0);
    }
}
@media (min-width: 1650px) {
    .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translate3d(-1320px, 0, 0);
    }
}
[class*="mm-menu_columns-"] .mm-panels > .mm-panel_columns-4 {
    transform: translate3d(400%, 0, 0);
}
.mm-menu_columns-4 .mm-panels > .mm-panel {
    z-index: 4;
    width: 25%;
}
.mm-menu_columns-4 .mm-panels > .mm-panel else {
    width: 100%;
}
.mm-menu_columns-4 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
    transform: translate3d(500%, 0, 0);
}
.mm-menu_columns-4 {
    width: 80%;
    min-width: 240px;
    max-width: 1760px;
}
.mm-wrapper_opening .mm-menu_columns-4 ~ .mm-slideout {
    transform: translate3d(80vw, 0, 0);
}
@media (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-4 ~ .mm-slideout {
        transform: translate3d(240px, 0, 0);
    }
}
@media (min-width: 2200px) {
    .mm-wrapper_opening .mm-menu_columns-4 ~ .mm-slideout {
        transform: translate3d(1760px, 0, 0);
    }
}
.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-80vw, 0, 0);
}
@media (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translate3d(-240px, 0, 0);
    }
}
@media (min-width: 2200px) {
    .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translate3d(-1760px, 0, 0);
    }
}
[class*="mm-menu_columns-"].mm-menu_position-bottom,
[class*="mm-menu_columns-"].mm-menu_position-top {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}
.mm-wrapper_opening [class*="mm-menu_columns-"].mm-menu_position-front {
    transition-property: width, min-width, max-width, transform;
}
.mm-counter {
    color: rgba(0, 0, 0, 0.3);
    display: block;
    padding-left: 20px;
    float: right;
    text-align: right;
    color: var(--mm-color-text-dimmed);
}
.mm-listitem_nosubitems > .mm-counter {
    display: none;
}
[dir="rtl"] .mm-counter {
    text-align: left;
    float: left;
    padding-left: 0;
    padding-right: 20px;
}
.mm-divider {
    position: relative;
    min-height: 20px;
    padding: 4.3px;
    background: #f3f3f3;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    min-height: var(--mm-line-height);
    padding: calc((var(--mm-listitem-size) * 0.65 - var(--mm-line-height)) * 0.5);
    padding-right: 10px;
    padding-left: 20px;
    font-size: 75%;
    text-transform: uppercase;
    background: var(--mm-color-background);
    opacity: 1;
    transition: opacity 0.4s ease;
}
.mm-divider:before {
    background: rgba(0, 0, 0, 0.05);
}
@supports ((position: -webkit-sticky) or (position: sticky)) {
    .mm-divider {
        position: -webkit-sticky;
        position: sticky;
        z-index: 2;
        top: 0;
    }
    .mm-navbar_sticky:not(.mm-hidden) ~ .mm-listview .mm-divider {
        top: var(--mm-navbar-size);
    }
}
.mm-divider:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--mm-color-background-highlight);
}
.mm-wrapper_dragging .mm-menu,
.mm-wrapper_dragging .mm-slideout {
    transition-duration: 0s !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
.mm-wrapper_dragging .mm-menu {
    pointer-events: none !important;
}
.mm-wrapper_dragging .mm-wrapper__blocker {
    display: none !important;
}
.mm-menu_dropdown {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    height: 80%;
}
.mm-wrapper_dropdown .mm-slideout {
    transform: none !important;
    z-index: 0;
}
.mm-wrapper_dropdown .mm-wrapper__blocker {
    transition-delay: 0s !important;
    z-index: 1;
}
.mm-wrapper_dropdown .mm-menu_dropdown {
    z-index: 2;
}
.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
    display: none;
}
.mm-menu_tip-bottom:before,
.mm-menu_tip-left:before,
.mm-menu_tip-right:before,
.mm-menu_tip-top:before {
    content: "";
    background: inherit;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    z-index: -1;
    transform: rotate(45deg);
}
.mm-menu_tip-left:before {
    left: 22px;
}
.mm-menu_tip-right:before {
    right: 22px;
}
.mm-menu_tip-top:before {
    top: -8px;
}
.mm-menu_tip-bottom:before {
    bottom: -8px;
}
:root {
    --mm-iconbar-size: 50px;
}
.mm-menu_iconbar-left .mm-navbars_bottom,
.mm-menu_iconbar-left .mm-navbars_top,
.mm-menu_iconbar-left .mm-panels {
    margin-left: 50px;
    margin-left: var(--mm-iconbar-size);
}
.mm-menu_iconbar-left .mm-iconbar {
    border-right-width: 1px;
    display: block;
    left: 0;
}
.mm-menu_iconbar-right .mm-navbars_bottom,
.mm-menu_iconbar-right .mm-navbars_top,
.mm-menu_iconbar-right .mm-panels {
    margin-right: 50px;
    margin-right: var(--mm-iconbar-size);
}
.mm-menu_iconbar-right .mm-iconbar {
    border-left-width: 1px;
    display: block;
    right: 0;
}
.mm-iconbar {
    width: 50px;
    background: #f3f3f3;
    color: rgba(0, 0, 0, 0.3);
    display: none;
    width: var(--mm-iconbar-size);
    overflow: hidden;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    border: 0 solid;
    border-color: var(--mm-color-border);
    background: var(--mm-color-background);
    color: var(--mm-color-text-dimmed);
    text-align: center;
}
.mm-iconbar__bottom,
.mm-iconbar__top {
    width: inherit;
    position: absolute;
}
.mm-iconbar__bottom > *,
.mm-iconbar__top > * {
    box-sizing: border-box;
    display: block;
    padding: 12.5px 0;
}
.mm-iconbar__bottom a,
.mm-iconbar__bottom a:hover,
.mm-iconbar__top a,
.mm-iconbar__top a:hover {
    text-decoration: none;
}
.mm-iconbar__top {
    top: 0;
}
.mm-iconbar__bottom {
    bottom: 0;
}
.mm-iconbar__tab_selected {
    background: hsla(0, 0%, 100%, 0.4);
    background: var(--mm-color-background-emphasis);
}
:root {
    --mm-iconpanel-size: 50px;
}
.mm-panel_iconpanel-1 {
    width: calc(100% - 50px);
    width: calc(100% - var(--mm-iconpanel-size) * 1);
}
.mm-panel_iconpanel-2 {
    width: calc(100% - 100px);
    width: calc(100% - var(--mm-iconpanel-size) * 2);
}
.mm-panel_iconpanel-3 {
    width: calc(100% - 150px);
    width: calc(100% - var(--mm-iconpanel-size) * 3);
}
.mm-panel_iconpanel-first ~ .mm-panel {
    width: calc(100% - 50px);
    width: calc(100% - var(--mm-iconpanel-size));
}
.mm-menu_iconpanel .mm-panels > .mm-panel {
    left: auto;
    transition-property: transform, width;
}
.mm-menu_iconpanel .mm-panels > .mm-panel_opened,
.mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
    display: block !important;
}
.mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
    overflow-y: hidden;
    transform: unset;
}
.mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
    border-left-width: 1px;
    border-left-style: solid;
}
.mm-menu_hidedivider .mm-panel_opened-parent .mm-divider,
.mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
    opacity: 0;
}
.mm-panel__blocker {
    background: inherit;
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 3;
    transition: opacity 0.4s ease;
}
.mm-panel_opened-parent .mm-panel__blocker {
    opacity: 0.6;
    bottom: -100000px;
}
[dir="rtl"] .mm-menu_iconpanel .mm-panels > .mm-panel {
    left: 0;
    right: auto;
    transition-property: transform, width;
}
[dir="rtl"] .mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
    border-left: none;
    border-right: 1px solid;
    border-color: inherit;
}
.mm-menu_keyboardfocus.mm-menu_opened ~ .mm-wrapper__blocker a:focus,
.mm-menu_keyboardfocus a:focus {
    background: hsla(0, 0%, 100%, 0.4);
    background: var(--mm-color-background-emphasis);
    outline: 0;
}
.mm-wrapper__blocker .mm-tabstart {
    cursor: default;
    display: block;
    width: 100%;
    height: 100%;
}
.mm-wrapper__blocker .mm-tabend {
    opacity: 0;
    position: absolute;
    bottom: 0;
}
.mm-searchfield {
    height: 44px;
    display: flex;
    flex-grow: 1;
    height: var(--mm-navbar-size);
    padding: 0;
    overflow: hidden;
}
.mm-searchfield input {
    height: 30.8px;
    line-height: 30.8px;
}
.mm-searchfield input,
.mm-searchfield input:focus,
.mm-searchfield input:hover {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.75);
}
.mm-searchfield input {
    display: block;
    width: 100%;
    max-width: 100%;
    height: calc(var(--mm-navbar-size) * 0.7);
    min-height: unset;
    max-height: unset;
    margin: 0;
    padding: 0 10px;
    box-sizing: border-box;
    border: none !important;
    border-radius: 4px;
    line-height: calc(var(--mm-navbar-size) * 0.7);
    box-shadow: none !important;
    outline: 0 !important;
    font: inherit;
    font-size: inherit;
}
.mm-searchfield input,
.mm-searchfield input:focus,
.mm-searchfield input:hover {
    background: var(--mm-color-background-highlight);
    color: var(--mm-color-text);
}
.mm-searchfield input::-ms-clear {
    display: none;
}
.mm-searchfield__input {
    display: flex;
    flex: 1;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
.mm-panel__noresultsmsg {
    color: rgba(0, 0, 0, 0.3);
    padding: 50px 0;
    color: var(--mm-color-text-dimmed);
    text-align: center;
    font-size: 150%;
}
.mm-searchfield__btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}
.mm-panel_search {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-left: none !important;
}
.mm-searchfield__cancel {
    line-height: 44px;
    display: block;
    padding-right: 10px;
    margin-right: -100px;
    line-height: var(--mm-navbar-size);
    text-decoration: none;
    transition: margin 0.4s ease;
}
.mm-searchfield__cancel-active {
    margin-right: 0;
}
.mm-listitem_nosubitems > .mm-listitem__btn {
    display: none;
}
.mm-listitem_nosubitems > .mm-listitem__text {
    padding-right: 10px;
}
.mm-listitem_onlysubitems > .mm-listitem__text:not(.mm-listitem__btn) {
    z-index: -1;
    pointer-events: none;
}
.mm-sectionindexer {
    background: inherit;
    text-align: center;
    font-size: 12px;
    box-sizing: border-box;
    width: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -20px;
    z-index: 5;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.mm-sectionindexer a {
    color: rgba(0, 0, 0, 0.3);
    color: var(--mm-color-text-dimmed);
    line-height: 1;
    text-decoration: none;
    display: block;
}
.mm-sectionindexer ~ .mm-panel {
    padding-right: 0;
}
.mm-sectionindexer_active {
    right: 0;
}
.mm-sectionindexer_active ~ .mm-panel {
    padding-right: 20px;
}
.mm-menu_selected-hover .mm-listitem__btn,
.mm-menu_selected-hover .mm-listitem__text,
.mm-menu_selected-parent .mm-listitem__btn,
.mm-menu_selected-parent .mm-listitem__text {
    transition: background-color 0.4s ease;
}
.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > .mm-listitem__text {
    background: 0 0;
}
.mm-menu_selected-hover .mm-listitem__btn:hover,
.mm-menu_selected-hover .mm-listitem__text:hover {
    background: hsla(0, 0%, 100%, 0.4);
    background: var(--mm-color-background-emphasis);
}
.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > .mm-listitem__text {
    background: 0 0;
}
.mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__btn,
.mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__text {
    background: hsla(0, 0%, 100%, 0.4);
    background: var(--mm-color-background-emphasis);
}
:root {
    --mm-sidebar-collapsed-size: 50px;
    --mm-sidebar-expanded-size: 440px;
}
.mm-wrapper_sidebar-collapsed body,
.mm-wrapper_sidebar-expanded body {
    position: relative;
}
.mm-wrapper_sidebar-collapsed .mm-slideout,
.mm-wrapper_sidebar-expanded .mm-slideout {
    transition-property: width, transform;
}
.mm-wrapper_sidebar-collapsed .mm-page,
.mm-wrapper_sidebar-expanded .mm-page {
    background: inherit;
    box-sizing: border-box;
    min-height: 100vh;
}
.mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed,
.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
    display: flex !important;
    top: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
}
.mm-wrapper_sidebar-collapsed .mm-slideout {
    width: calc(100% - 50px);
    transform: translate3d(50px, 0, 0);
    width: calc(100% - var(--mm-sidebar-collapsed-size));
    transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
}
.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-divider,
.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
    opacity: 0;
}
.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
    width: 440px;
    width: var(--mm-sidebar-expanded-size);
    min-width: 0 !important;
    max-width: 100000px !important;
    border-right-width: 1px;
    border-right-style: solid;
}
.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
    content: none;
    display: none;
}
.mm-wrapper_sidebar-expanded.mm-wrapper_blocking,
.mm-wrapper_sidebar-expanded.mm-wrapper_blocking body {
    overflow: visible;
}
.mm-wrapper_sidebar-expanded .mm-wrapper__blocker {
    display: none !important;
}
.mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
    width: calc(100% - 440px);
    transform: translate3d(440px, 0, 0);
    width: calc(100% - var(--mm-sidebar-expanded-size));
    transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
}
.mm-menu__blocker {
    background: rgba(3, 2, 1, 0);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
}
.mm-menu_opened .mm-menu__blocker {
    display: none;
}
[dir="rtl"].mm-wrapper_sidebar-collapsed .mm-slideout,
[dir="rtl"].mm-wrapper_sidebar-expanded .mm-slideout,
[dir="rtl"].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed)
    .mm-menu_sidebar-expanded.mm-menu_opened
    ~ .mm-slideout {
    transform: translateZ(0);
}
input.mm-toggle {
    background: rgba(0, 0, 0, 0.1);
    display: inline-block;
    min-width: 58px;
    width: 58px;
    height: 34px;
    margin: 0 10px;
    margin-top: calc((var(--mm-listitem-size) - 34px) / 2);
    border: none !important;
    background: var(--mm-color-border);
    border-radius: 34px;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
input.mm-toggle:before {
    background: #f3f3f3;
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    margin: 1px;
    border-radius: 34px;
    background: var(--mm-color-background);
    transition: transform 0.2s ease;
}
input.mm-toggle:checked {
    background: #4bd963;
}
input.mm-toggle:checked:before {
    transform: translateX(24px);
}
input.mm-check {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    border: none !important;
    background: 0 0 !important;
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    margin-top: calc((var(--mm-listitem-size) - 40px) / 2);
}
input.mm-check:before {
    content: "";
    display: block;
    width: 40%;
    height: 20%;
    margin: 25% 0 0 20%;
    border-left: 3px solid;
    border-left-color: var(--mm-color-text);
    border-bottom: 3px solid;
    border-bottom-color: var(--mm-color-text);
    border-right-color: var(--mm-color-text);
    border-top-color: var(--mm-color-text);
    opacity: 0.3;
    transform: rotate(-45deg);
    transition: opacity 0.2s ease;
}
input.mm-check:checked:before {
    opacity: 1;
}
[dir="rtl"] input.mm-toggle:checked ~ label.mm-toggle:before {
    float: left;
}
.mm-menu_fullscreen {
    width: 100%;
    min-width: 140px;
    max-width: 10000px;
}
.mm-wrapper_opening .mm-menu_fullscreen ~ .mm-slideout {
    transform: translate3d(100vw, 0, 0);
}
@media (max-width: 140px) {
    .mm-wrapper_opening .mm-menu_fullscreen ~ .mm-slideout {
        transform: translate3d(140px, 0, 0);
    }
}
@media (min-width: 10000px) {
    .mm-wrapper_opening .mm-menu_fullscreen ~ .mm-slideout {
        transform: translate3d(10000px, 0, 0);
    }
}
.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-100vw, 0, 0);
}
@media (max-width: 140px) {
    .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translate3d(-140px, 0, 0);
    }
}
@media (min-width: 10000px) {
    .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translate3d(-10000px, 0, 0);
    }
}
.mm-menu_fullscreen.mm-menu_position-bottom,
.mm-menu_fullscreen.mm-menu_position-top {
    height: 100vh;
    min-height: 140px;
    max-height: 10000px;
}
.mm-menu_listview-justify .mm-panels > .mm-panel {
    display: flex;
    flex-direction: column;
}
.mm-menu_listview-justify .mm-panels > .mm-panel:after {
    content: none;
    display: none;
}
.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listview {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
}
.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem {
    flex: 1 0 auto;
    min-height: 50px;
}
.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem__text {
    box-sizing: border-box;
    flex: 1 0 auto;
    display: flex;
    align-items: center;
}
.mm-listview_inset {
    list-style: inside disc;
    width: 100%;
    padding: 0 30px 15px;
    margin: 0;
}
.mm-listview_inset .mm-listitem {
    padding: 5px 0;
}
.mm-menu_multiline .mm-listitem__text {
    text-overflow: clip;
    white-space: normal;
}
[class*="mm-menu_pagedim"].mm-menu_opened ~ .mm-wrapper__blocker {
    opacity: 0;
}
.mm-wrapper_opening [class*="mm-menu_pagedim"].mm-menu_opened ~ .mm-wrapper__blocker {
    opacity: 0.3;
    transition: opacity 0.4s ease 0.4s;
}
.mm-menu_opened.mm-menu_pagedim ~ .mm-wrapper__blocker {
    background: inherit;
}
.mm-menu_opened.mm-menu_pagedim-black ~ .mm-wrapper__blocker {
    background: #000;
}
.mm-menu_opened.mm-menu_pagedim-white ~ .mm-wrapper__blocker {
    background: #fff;
}
.mm-menu_popup {
    transition: opacity 0.4s ease;
    opacity: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    height: 80%;
    min-height: 140px;
    max-height: 880px;
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    z-index: 2;
    transform: translate3d(-50%, -50%, 0);
}
.mm-menu_popup.mm-menu_opened ~ .mm-slideout {
    transform: none !important;
    z-index: 0;
}
.mm-menu_popup.mm-menu_opened ~ .mm-wrapper__blocker {
    transition-delay: 0s !important;
    z-index: 1;
}
.mm-wrapper_opening .mm-menu_popup {
    opacity: 1;
}
.mm-menu_tileview .mm-listview,
.mm-panel_tileview .mm-listview {
    margin: 0 !important;
}
.mm-menu_tileview .mm-listview:after,
.mm-panel_tileview .mm-listview:after {
    content: "";
    display: block;
    clear: both;
}
.mm-menu_tileview .mm-listitem,
.mm-panel_tileview .mm-listitem {
    float: left;
    position: relative;
    width: 50%;
    height: 0;
    padding: 50% 0 0;
}
.mm-menu_tileview .mm-listitem:after,
.mm-panel_tileview .mm-listitem:after {
    left: 0;
    top: 0;
    border-right-width: 1px;
    border-right-style: solid;
    z-index: -1;
}
.mm-menu_tileview .mm-listitem.mm-tile-xs,
.mm-panel_tileview .mm-listitem.mm-tile-xs {
    width: 12.5%;
    padding-top: 12.5%;
}
.mm-menu_tileview .mm-listitem.mm-tile-s,
.mm-panel_tileview .mm-listitem.mm-tile-s {
    width: 25%;
    padding-top: 25%;
}
.mm-menu_tileview .mm-listitem.mm-tile-l,
.mm-panel_tileview .mm-listitem.mm-tile-l {
    width: 75%;
    padding-top: 75%;
}
.mm-menu_tileview .mm-listitem.mm-tile-xl,
.mm-panel_tileview .mm-listitem.mm-tile-xl {
    width: 100%;
    padding-top: 100%;
}
.mm-menu_tileview .mm-listitem__text,
.mm-panel_tileview .mm-listitem__text {
    line-height: 1px;
    text-align: center;
    padding: 50% 10px 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 1px;
    bottom: 1px;
    left: 0;
}
.mm-menu_tileview .mm-listitem__btn,
.mm-panel_tileview .mm-listitem__btn {
    width: auto;
}
.mm-menu_tileview .mm-listitem__btn:after,
.mm-menu_tileview .mm-listitem__btn:before,
.mm-panel_tileview .mm-listitem__btn:after,
.mm-panel_tileview .mm-listitem__btn:before {
    content: none;
    display: none;
}
.mm-menu_tileview .mm-divider,
.mm-panel_tileview .mm-divider {
    display: none;
}
.mm-menu_tileview .mm-panel,
.mm-panel_tileview {
    padding-left: 0;
    padding-right: 0;
}
.mm-menu_tileview .mm-panel:after,
.mm-menu_tileview .mm-panel:before,
.mm-panel_tileview:after,
.mm-panel_tileview:before {
    content: none;
    display: none;
}
body.modal-open .mm-slideout {
    z-index: unset;
}
.mm-menu_border-none .mm-listitem:after {
    content: none;
}
.mm-menu_border-full .mm-listitem:after {
    left: 0 !important;
}
.mm-menu_fx-menu-slide {
    transition: transform 0.4s ease;
}
.mm-wrapper_opened .mm-menu_fx-menu-slide {
    transform: translate3d(-30%, 0, 0);
}
.mm-wrapper_opening .mm-menu_fx-menu-slide {
    transform: translateZ(0);
}
.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
    transform: translate3d(30%, 0, 0);
}
.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
    transform: translateZ(0);
}
.mm-menu_fx-panels-none .mm-panel,
.mm-panel_fx-none {
    transition-property: none;
}
.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent,
.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent,
.mm-panel_fx-none.mm-panel_opened-parent {
    transform: translateZ(0);
}
.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent {
    transform: translate3d(-100%, 0, 0);
}
.mm-menu_shadow-page:after {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    content: "";
    display: block;
    width: 20px;
    height: 120%;
    position: absolute;
    left: 100%;
    top: -10%;
    z-index: 100;
    -webkit-clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
    clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
    box-shadow: var(--mm-shadow);
}
.mm-menu_shadow-page.mm-menu_position-right:after {
    left: auto;
    right: 100%;
    -webkit-clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
    clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
}
.mm-menu_shadow-page.mm-menu_position-front:after {
    content: none;
    display: none;
}
.mm-menu_shadow-menu,
.mm-menu_shadow-panels .mm-panels > .mm-panel {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: var(--mm-shadow);
}
.mm-menu_position-right {
    left: auto;
    right: 0;
}
.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate3d(-80vw, 0, 0);
}
@media (max-width: 300px) {
    .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translate3d(-240px, 0, 0);
    }
}
@media (min-width: 550px) {
    .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
        transform: translate3d(-440px, 0, 0);
    }
}
.mm-menu_position-bottom,
.mm-menu_position-front,
.mm-menu_position-top {
    transition: transform 0.4s ease;
}
.mm-menu_position-bottom.mm-menu_opened,
.mm-menu_position-front.mm-menu_opened,
.mm-menu_position-top.mm-menu_opened {
    z-index: 2;
}
.mm-menu_position-bottom.mm-menu_opened ~ .mm-slideout,
.mm-menu_position-front.mm-menu_opened ~ .mm-slideout,
.mm-menu_position-top.mm-menu_opened ~ .mm-slideout {
    transform: none !important;
    z-index: 0;
}
.mm-menu_position-bottom.mm-menu_opened ~ .mm-wrapper__blocker,
.mm-menu_position-front.mm-menu_opened ~ .mm-wrapper__blocker,
.mm-menu_position-top.mm-menu_opened ~ .mm-wrapper__blocker {
    z-index: 1;
}
.mm-menu_position-front {
    transform: translate3d(-100%, 0, 0);
}
.mm-menu_position-front.mm-menu_position-right {
    transform: translate3d(100%, 0, 0);
}
.mm-menu_position-bottom,
.mm-menu_position-top {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}
.mm-menu_position-top {
    transform: translate3d(0, -100%, 0);
    height: 80vh;
    min-height: 140px;
    max-height: 880px;
}
.mm-menu_position-bottom {
    transform: translate3d(0, 100%, 0);
    top: auto;
    height: 80vh;
    min-height: 140px;
    max-height: 880px;
}
.mm-wrapper_opening .mm-menu_position-bottom,
.mm-wrapper_opening .mm-menu_position-front,
.mm-wrapper_opening .mm-menu_position-top {
    transform: translateZ(0);
}
.mm-navbars_top {
    flex-shrink: 0;
}
.mm-navbars_top .mm-navbar:not(:last-child) {
    border-bottom: none;
}
.mm-navbars_bottom {
    flex-shrink: 0;
}
.mm-navbars_bottom .mm-navbar {
    border-bottom: none;
}
.mm-navbars_bottom .mm-navbar:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--mm-color-border);
}
.mm-btn:not(.mm-hidden) + .mm-navbar__searchfield .mm-searchfield__input {
    padding-left: 0;
}
.mm-navbar__searchfield:not(:last-child) .mm-searchfield__input {
    padding-right: 0;
}
.mm-navbar__breadcrumbs {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    flex: 1 1 50%;
    display: flex;
    justify-content: flex-start;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.mm-navbar__breadcrumbs > * {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 6px;
}
.mm-navbar__breadcrumbs > a {
    text-decoration: underline;
}
.mm-navbar__breadcrumbs:not(:last-child) {
    padding-right: 0;
}
.mm-btn:not(.mm-hidden) + .mm-navbar__breadcrumbs {
    padding-left: 0;
}
.mm-navbar_tabs > * {
    padding: 0 10px;
    border: 1px solid transparent;
}
.mm-navbar__tab_selected {
    background: #f3f3f3;
    color: rgba(0, 0, 0, 0.75);
    background: var(--mm-color-background);
    color: var(--mm-color-text);
}
.mm-navbar__tab_selected:not(:first-child) {
    border-left-color: rgba(0, 0, 0, 0.1);
}
.mm-navbar__tab_selected:not(:last-child) {
    border-right-color: rgba(0, 0, 0, 0.1);
}
.mm-navbar__tab_selected:not(:first-child) {
    border-left-color: var(--mm-color-border);
}
.mm-navbar__tab_selected:not(:last-child) {
    border-right-color: var(--mm-color-border);
}
.mm-navbars_top .mm-navbar_tabs {
    border-bottom: none;
}
.mm-navbars_top .mm-navbar_tabs > * {
    border-bottom-color: rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--mm-color-border);
}
.mm-navbars_top .mm-navbar__tab_selected {
    border-top-color: rgba(0, 0, 0, 0.1);
    border-top-color: var(--mm-color-border);
    border-bottom-color: transparent;
}
.mm-navbars_top.mm-navbars_has-tabs .mm-navbar {
    background: hsla(0, 0%, 100%, 0.4);
    background: var(--mm-color-background-emphasis);
}
.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar {
    background: #f3f3f3;
    background: var(--mm-color-background);
}
.mm-navbars_bottom .mm-navbar_tabs:first-child {
    border-top: none;
}
.mm-navbars_bottom .mm-navbar_tabs > * {
    border-top-color: rgba(0, 0, 0, 0.1);
    border-top-color: var(--mm-color-border);
}
.mm-navbars_bottom .mm-navbar__tab_selected {
    border-bottom-color: rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--mm-color-border);
    border-top-color: transparent;
}
.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar {
    background: #f3f3f3;
    background: var(--mm-color-background);
}
.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs,
.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar {
    background: hsla(0, 0%, 100%, 0.4);
    background: var(--mm-color-background-emphasis);
}
.leaflet-image-layer,
.leaflet-layer,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-pane,
.leaflet-pane > canvas,
.leaflet-pane > svg,
.leaflet-tile,
.leaflet-tile-container,
.leaflet-zoom-box {
    position: absolute;
    left: 0;
    top: 0;
}
.leaflet-container {
    overflow: hidden;
}
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}
.leaflet-tile::-moz-selection {
    background: transparent;
}
.leaflet-tile::selection {
    background: transparent;
}
.leaflet-safari .leaflet-tile {
    image-rendering: -webkit-optimize-contrast;
}
.leaflet-safari .leaflet-tile-container {
    width: 1600px;
    height: 1600px;
    -webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
    display: block;
}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
    max-width: none !important;
    max-height: none !important;
}
.leaflet-container.leaflet-touch-zoom {
    touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
    touch-action: none;
    touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
    touch-action: none;
}
.leaflet-container {
    -webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
    -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
    -webkit-filter: inherit;
    filter: inherit;
    visibility: hidden;
}
.leaflet-tile-loaded {
    visibility: inherit;
}
.leaflet-zoom-box {
    width: 0;
    height: 0;
    box-sizing: border-box;
    z-index: 800;
}
.leaflet-overlay-pane svg {
    -moz-user-select: none;
}
.leaflet-pane {
    z-index: 400;
}
.leaflet-tile-pane {
    z-index: 200;
}
.leaflet-overlay-pane {
    z-index: 400;
}
.leaflet-shadow-pane {
    z-index: 500;
}
.leaflet-marker-pane {
    z-index: 600;
}
.leaflet-tooltip-pane {
    z-index: 650;
}
.leaflet-popup-pane {
    z-index: 700;
}
.leaflet-map-pane canvas {
    z-index: 100;
}
.leaflet-map-pane svg {
    z-index: 200;
}
.leaflet-vml-shape {
    width: 1px;
    height: 1px;
}
.lvml {
    behavior: url(#default#VML);
    display: inline-block;
    position: absolute;
}
.leaflet-control {
    position: relative;
    z-index: 800;
    pointer-events: visiblePainted;
    pointer-events: auto;
}
.leaflet-bottom,
.leaflet-top {
    position: absolute;
    z-index: 1000;
    pointer-events: none;
}
.leaflet-top {
    top: 0;
}
.leaflet-right {
    right: 0;
}
.leaflet-bottom {
    bottom: 0;
}
.leaflet-left {
    left: 0;
}
.leaflet-control {
    float: left;
    clear: both;
}
.leaflet-right .leaflet-control {
    float: right;
}
.leaflet-top .leaflet-control {
    margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
    margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
    margin-left: 10px;
}
.leaflet-right .leaflet-control {
    margin-right: 10px;
}
.leaflet-fade-anim .leaflet-tile {
    will-change: opacity;
}
.leaflet-fade-anim .leaflet-popup {
    opacity: 0;
    transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
    opacity: 1;
}
.leaflet-zoom-animated {
    transform-origin: 0 0;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
    will-change: transform;
    transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}
.leaflet-pan-anim .leaflet-tile,
.leaflet-zoom-anim .leaflet-tile {
    transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
    visibility: hidden;
}
.leaflet-interactive {
    cursor: pointer;
}
.leaflet-grab {
    cursor: -webkit-grab;
    cursor: grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
    cursor: crosshair;
}
.leaflet-control,
.leaflet-popup-pane {
    cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
.leaflet-image-layer,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-pane > svg path,
.leaflet-tile-container {
    pointer-events: none;
}
.leaflet-image-layer.leaflet-interactive,
.leaflet-marker-icon.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
    pointer-events: visiblePainted;
    pointer-events: auto;
}
.leaflet-container {
    background: #ddd;
    outline: 0;
}
.leaflet-container a {
    color: #0078a8;
}
.leaflet-container a.leaflet-active {
    outline: 2px solid orange;
}
.leaflet-zoom-box {
    border: 2px dotted #38f;
    background: hsla(0, 0%, 100%, 0.5);
}
.leaflet-container {
    font:
        12px/1.5 Helvetica Neue,
        Arial,
        Helvetica,
        sans-serif;
}
.leaflet-bar {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
    border-radius: 4px;
}
.leaflet-bar a,
.leaflet-bar a:hover {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    width: 26px;
    height: 26px;
    line-height: 26px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    display: block;
}
.leaflet-bar a:hover {
    background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
    cursor: default;
    background-color: #f4f4f4;
    color: #bbb;
}
.leaflet-touch .leaflet-bar a {
    width: 30px;
    height: 30px;
    line-height: 30px;
}
.leaflet-touch .leaflet-bar a:first-child {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    font:
        700 18px Lucida Console,
        Monaco,
        monospace;
    text-indent: 1px;
}
.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
    font-size: 22px;
}
.leaflet-control-layers {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    background: #fff;
    border-radius: 5px;
}
.leaflet-control-layers-toggle {
    background-image: url(images/layers.png);
    width: 36px;
    height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
    background-image: url(images/layers-2x.png);
    background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
    width: 44px;
    height: 44px;
}
.leaflet-control-layers-expanded .leaflet-control-layers-toggle,
.leaflet-control-layers .leaflet-control-layers-list {
    display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
    display: block;
    position: relative;
}
.leaflet-control-layers-expanded {
    padding: 6px 10px 6px 6px;
    color: #333;
    background: #fff;
}
.leaflet-control-layers-scrollbar {
    overflow-y: scroll;
    overflow-x: hidden;
    padding-right: 5px;
}
.leaflet-control-layers-selector {
    margin-top: 2px;
    position: relative;
    top: 1px;
}
.leaflet-control-layers label {
    display: block;
}
.leaflet-control-layers-separator {
    height: 0;
    border-top: 1px solid #ddd;
    margin: 5px -10px 5px -6px;
}
.leaflet-default-icon-path {
    background-image: url(images/marker-icon.png);
}
.leaflet-container .leaflet-control-attribution {
    background: #fff;
    background: hsla(0, 0%, 100%, 0.7);
    margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
    padding: 0 5px;
    color: #333;
}
.leaflet-control-attribution a {
    text-decoration: none;
}
.leaflet-control-attribution a:hover {
    text-decoration: underline;
}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
    font-size: 11px;
}
.leaflet-left .leaflet-control-scale {
    margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
    margin-bottom: 5px;
}
.leaflet-control-scale-line {
    border: 2px solid #777;
    border-top: none;
    line-height: 1.1;
    padding: 2px 5px 1px;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    background: #fff;
    background: hsla(0, 0%, 100%, 0.5);
}
.leaflet-control-scale-line:not(:first-child) {
    border-top: 2px solid #777;
    border-bottom: none;
    margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
    border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-bar,
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers {
    box-shadow: none;
}
.leaflet-touch .leaflet-bar,
.leaflet-touch .leaflet-control-layers {
    border: 2px solid rgba(0, 0, 0, 0.2);
    background-clip: padding-box;
}
.leaflet-popup {
    position: absolute;
    text-align: center;
    margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
    padding: 1px;
    text-align: left;
    border-radius: 12px;
}
.leaflet-popup-content {
    margin: 13px 19px;
    line-height: 1.4;
}
.leaflet-popup-content p {
    margin: 18px 0;
}
.leaflet-popup-tip-container {
    width: 40px;
    height: 20px;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    overflow: hidden;
    pointer-events: none;
}
.leaflet-popup-tip {
    width: 17px;
    height: 17px;
    padding: 1px;
    margin: -10px auto 0;
    transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: #fff;
    color: #333;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.leaflet-container a.leaflet-popup-close-button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 4px 0 0;
    border: none;
    text-align: center;
    width: 18px;
    height: 14px;
    font:
        16px/14px Tahoma,
        Verdana,
        sans-serif;
    color: #c3c3c3;
    text-decoration: none;
    font-weight: 700;
    background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover {
    color: #999;
}
.leaflet-popup-scrolled {
    overflow: auto;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
    zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
    width: 24px;
    margin: 0 auto;
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678,M12=0.70710678,M21=-0.70710678,M22=0.70710678);
}
.leaflet-oldie .leaflet-popup-tip-container {
    margin-top: -1px;
}
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
    border: 1px solid #999;
}
.leaflet-div-icon {
    background: #fff;
    border: 1px solid #666;
}
.leaflet-tooltip {
    position: absolute;
    padding: 6px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    color: #222;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.leaflet-tooltip.leaflet-clickable {
    cursor: pointer;
    pointer-events: auto;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before,
.leaflet-tooltip-top:before {
    position: absolute;
    pointer-events: none;
    border: 6px solid transparent;
    background: transparent;
    content: "";
}
.leaflet-tooltip-bottom {
    margin-top: 6px;
}
.leaflet-tooltip-top {
    margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
    left: 50%;
    margin-left: -6px;
}
.leaflet-tooltip-top:before {
    bottom: 0;
    margin-bottom: -12px;
    border-top-color: #fff;
}
.leaflet-tooltip-bottom:before {
    top: 0;
    margin-top: -12px;
    margin-left: -6px;
    border-bottom-color: #fff;
}
.leaflet-tooltip-left {
    margin-left: -6px;
}
.leaflet-tooltip-right {
    margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
    top: 50%;
    margin-top: -6px;
}
.leaflet-tooltip-left:before {
    right: 0;
    margin-right: -12px;
    border-left-color: #fff;
}
.leaflet-tooltip-right:before {
    left: 0;
    margin-left: -12px;
    border-right-color: #fff;
}

/* 
 * Float Labels
 * @version: 3.3.9
 * @author: Paul Ryley (http://geminilabs.io)
 * @url: https://pryley.github.io/float-labels.js
 * @license: MIT
 */

 /*  Netzmaedchen */
 /* 
 
.fl-form form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form input.fl-input,
.fl-form select.fl-select,
.fl-form textarea.fl-textarea,
form.frm-fluent-form .fl-form input.ff-el-form-control[data-type="repeater_item"] {
    border-radius: 3px;
    margin-bottom: 24px;
}
.fl-form form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"]:-moz-placeholder,
.fl-form form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"]::-moz-placeholder,
.fl-form input.fl-input:-moz-placeholder,
.fl-form input.fl-input::-moz-placeholder,
.fl-form select.fl-select:-moz-placeholder,
.fl-form select.fl-select::-moz-placeholder,
.fl-form textarea.fl-textarea:-moz-placeholder,
.fl-form textarea.fl-textarea::-moz-placeholder,
form.frm-fluent-form .fl-form input.ff-el-form-control[data-type="repeater_item"]:-moz-placeholder,
form.frm-fluent-form .fl-form input.ff-el-form-control[data-type="repeater_item"]::-moz-placeholder {
    color: #bbb;
}
.fl-form form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"]:-ms-input-placeholder,
.fl-form input.fl-input:-ms-input-placeholder,
.fl-form select.fl-select:-ms-input-placeholder,
.fl-form textarea.fl-textarea:-ms-input-placeholder,
form.frm-fluent-form .fl-form input.ff-el-form-control[data-type="repeater_item"]:-ms-input-placeholder {
    color: #bbb;
}
.fl-form form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"]::-webkit-input-placeholder,
.fl-form input.fl-input::-webkit-input-placeholder,
.fl-form select.fl-select::-webkit-input-placeholder,
.fl-form textarea.fl-textarea::-webkit-input-placeholder,
form.frm-fluent-form .fl-form input.ff-el-form-control[data-type="repeater_item"]::-webkit-input-placeholder {
    color: #bbb;
}
.fl-form select.fl-select {
    color: #bbb;
}
.fl-form .fl-is-active form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form .fl-is-active input.fl-input,
.fl-form .fl-is-active select.fl-select,
.fl-form .fl-is-active textarea.fl-textarea,
form.frm-fluent-form .fl-form .fl-is-active input.ff-el-form-control[data-type="repeater_item"] {
    color: #444;
}
.fl-form .fl-has-focus form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form .fl-has-focus input.fl-input,
.fl-form .fl-has-focus select.fl-select,
.fl-form .fl-has-focus textarea.fl-textarea,
form.frm-fluent-form .fl-form .fl-has-focus input.ff-el-form-control[data-type="repeater_item"] {
    border-color: #1976d2;
}
.fl-form label.fl-label {
    color: #bbb;
    border-top-left-radius: 3px;
}
body[dir="rtl"] .fl-form label.fl-label {
    left: unset;
    right: 0;
}
.fl-form .fl-has-focus label.fl-label {
    color: #1976d2;
}
.fl-form .fl-is-required:before {
    right: 15px;
    color: #d32f2f;
    padding: 6px 0 0;
}
body[dir="rtl"] .fl-form .fl-is-required:before {
    right: unset;
    left: 15px;
}
.fl-form.fl-style-1 form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form.fl-style-1 input.fl-input,
.fl-form.fl-style-1 select.fl-select,
.fl-form.fl-style-1 textarea.fl-textarea,
form.frm-fluent-form .fl-form.fl-style-1 input.ff-el-form-control[data-type="repeater_item"] {
    padding: 6px 12px;
}
.fl-form.fl-style-1 select.fl-select {
    height: 38px;
}
.fl-form.fl-style-1 .fl-is-active form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form.fl-style-1 .fl-is-active input.fl-input,
.fl-form.fl-style-1 .fl-is-active select.fl-select,
.fl-form.fl-style-1 .fl-is-active textarea.fl-textarea,
form.frm-fluent-form .fl-form.fl-style-1 .fl-is-active input.ff-el-form-control[data-type="repeater_item"] {
    padding: 6px 12px;
}
.fl-form.fl-style-1 label.fl-label {
    left: 10px;
    padding: 12px 3px;
}
.fl-form.fl-style-1 label.fl-label:before {
    top: 19px;
}
.fl-form.fl-style-1 .fl-is-active label.fl-label {
    top: -9px;
    padding: 3px;
}
.fl-form.fl-style-1 .fl-is-active label.fl-label:before {
    top: 9px;
}
body[dir="rtl"] .fl-form.fl-style-1 label.fl-label {
    left: unset;
    right: 10px;
}
.fl-form.fl-style-2 form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form.fl-style-2 input.fl-input,
.fl-form.fl-style-2 select.fl-select,
.fl-form.fl-style-2 textarea.fl-textarea,
form.frm-fluent-form .fl-form.fl-style-2 input.ff-el-form-control[data-type="repeater_item"] {
    padding: 12px;
}
.fl-form.fl-style-2 select.fl-select {
    height: 50px;
}
.fl-form.fl-style-2 .fl-is-active form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form.fl-style-2 .fl-is-active input.fl-input,
.fl-form.fl-style-2 .fl-is-active select.fl-select,
.fl-form.fl-style-2 .fl-is-active textarea.fl-textarea,
form.frm-fluent-form .fl-form.fl-style-2 .fl-is-active input.ff-el-form-control[data-type="repeater_item"] {
    padding: 18px 12px 6px;
}
.fl-form.fl-style-2 label.fl-label {
    left: 10px;
    padding: 6px 3px 3px;
}
.fl-form.fl-style-2 .fl-is-required:before {
    padding-top: 12px;
}
body[dir="rtl"] .fl-form.fl-style-2 label.fl-label {
    left: unset;
    right: 10px;
}
.fl-form .fl-wrap-select:after {
    right: 6px;
    height: calc(100% - 2px);
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 16'%3E%3Cpath fill='%23bbb' d='M4 0L0 6.5h8L4 0zM0 9.5L4 16l4-6.5z'/%3E%3C/svg%3E")
        no-repeat;
}
body[dir="rtl"] .fl-form .fl-wrap-select:after {
    right: unset;
    left: 6px;
}
*/
/* End Fluent Forms FF */



.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-modal-dialog,
.vjs-button > .vjs-icon-placeholder:before,
.vjs-modal-dialog .vjs-modal-dialog-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.vjs-button > .vjs-icon-placeholder:before {
    text-align: center;
}
@font-face {
    font-family: VideoJS;
    src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAAADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAAAAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAADngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZgQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quIEN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4MiJMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9Hd5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0iFLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2IW4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/irwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6KnGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrLh36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9MJ15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9OvMK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKTx3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7ySVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXHAkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qOs9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pqUyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPMo9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgkBnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+OHlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pVrsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenpW6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLfOgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdULVl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1lFYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNrhdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyKMvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweWubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAoFpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7zQ8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNtD72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZjwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJykMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJzrWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwHH6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5JE5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+bKfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxMJ3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5NwfDn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2BkYGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAejdm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmVFlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Yu6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxtkMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0EXKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndlr6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rFUQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPxAFP0BpLeJPA==)
        format("woff");
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-play-control .vjs-icon-placeholder,
.vjs-icon-play {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-play-control .vjs-icon-placeholder:before,
.vjs-icon-play:before {
    content: "\F101";
}
.vjs-icon-play-circle {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-play-circle:before {
    content: "\F102";
}
.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder,
.vjs-icon-pause {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,
.vjs-icon-pause:before {
    content: "\F103";
}
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder,
.vjs-icon-volume-mute {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before,
.vjs-icon-volume-mute:before {
    content: "\F104";
}
.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder,
.vjs-icon-volume-low {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before,
.vjs-icon-volume-low:before {
    content: "\F105";
}
.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder,
.vjs-icon-volume-mid {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before,
.vjs-icon-volume-mid:before {
    content: "\F106";
}
.video-js .vjs-mute-control .vjs-icon-placeholder,
.vjs-icon-volume-high {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-mute-control .vjs-icon-placeholder:before,
.vjs-icon-volume-high:before {
    content: "\F107";
}
.video-js .vjs-fullscreen-control .vjs-icon-placeholder,
.vjs-icon-fullscreen-enter {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,
.vjs-icon-fullscreen-enter:before {
    content: "\F108";
}
.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder,
.vjs-icon-fullscreen-exit {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before,
.vjs-icon-fullscreen-exit:before {
    content: "\F109";
}
.vjs-icon-square {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-square:before {
    content: "\F10A";
}
.vjs-icon-spinner {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-spinner:before {
    content: "\F10B";
}
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js .vjs-subtitles-button .vjs-icon-placeholder,
.vjs-icon-subtitles {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js .vjs-subtitles-button .vjs-icon-placeholder:before,
.vjs-icon-subtitles:before {
    content: "\F10C";
}
.video-js .vjs-captions-button .vjs-icon-placeholder,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder,
.vjs-icon-captions {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-captions-button .vjs-icon-placeholder:before,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.vjs-icon-captions:before {
    content: "\F10D";
}
.video-js .vjs-chapters-button .vjs-icon-placeholder,
.vjs-icon-chapters {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-chapters-button .vjs-icon-placeholder:before,
.vjs-icon-chapters:before {
    content: "\F10E";
}
.vjs-icon-share {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-share:before {
    content: "\F10F";
}
.vjs-icon-cog {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-cog:before {
    content: "\F110";
}
.video-js .vjs-play-progress,
.video-js .vjs-volume-level,
.vjs-icon-circle,
.vjs-seek-to-live-control .vjs-icon-placeholder {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-play-progress:before,
.video-js .vjs-volume-level:before,
.vjs-icon-circle:before,
.vjs-seek-to-live-control .vjs-icon-placeholder:before {
    content: "\F111";
}
.vjs-icon-circle-outline {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-circle-outline:before {
    content: "\F112";
}
.vjs-icon-circle-inner-circle {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-circle-inner-circle:before {
    content: "\F113";
}
.vjs-icon-hd {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-hd:before {
    content: "\F114";
}
.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder,
.vjs-icon-cancel {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before,
.vjs-icon-cancel:before {
    content: "\F115";
}
.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder,
.vjs-icon-replay {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,
.vjs-icon-replay:before {
    content: "\F116";
}
.vjs-icon-facebook {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-facebook:before {
    content: "\F117";
}
.vjs-icon-gplus {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-gplus:before {
    content: "\F118";
}
.vjs-icon-linkedin {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-linkedin:before {
    content: "\F119";
}
.vjs-icon-twitter {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-twitter:before {
    content: "\F11A";
}
.vjs-icon-tumblr {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-tumblr:before {
    content: "\F11B";
}
.vjs-icon-pinterest {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-pinterest:before {
    content: "\F11C";
}
.video-js .vjs-descriptions-button .vjs-icon-placeholder,
.vjs-icon-audio-description {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-descriptions-button .vjs-icon-placeholder:before,
.vjs-icon-audio-description:before {
    content: "\F11D";
}
.video-js .vjs-audio-button .vjs-icon-placeholder,
.vjs-icon-audio {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-audio-button .vjs-icon-placeholder:before,
.vjs-icon-audio:before {
    content: "\F11E";
}
.vjs-icon-next-item {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-next-item:before {
    content: "\F11F";
}
.vjs-icon-previous-item {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.vjs-icon-previous-item:before {
    content: "\F120";
}
.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder,
.vjs-icon-picture-in-picture-enter {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before,
.vjs-icon-picture-in-picture-enter:before {
    content: "\F121";
}
.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder,
.vjs-icon-picture-in-picture-exit {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal;
}
.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before,
.vjs-icon-picture-in-picture-exit:before {
    content: "\F122";
}
.video-js {
    display: block;
    vertical-align: top;
    box-sizing: border-box;
    color: #fff;
    background-color: #000;
    position: relative;
    padding: 0;
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    font-family: Arial, Helvetica, sans-serif;
    word-break: normal;
}
.video-js:-moz-full-screen {
    position: absolute;
}
.video-js:-webkit-full-screen {
    width: 100% !important;
    height: 100% !important;
}
.video-js[tabindex="-1"] {
    outline: none;
}
.video-js *,
.video-js :after,
.video-js :before {
    box-sizing: inherit;
}
.video-js ul {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    list-style-position: outside;
    margin: 0;
}
.video-js.vjs-4-3,
.video-js.vjs-16-9,
.video-js.vjs-fluid {
    width: 100%;
    max-width: 100%;
    height: 0;
}
.video-js.vjs-16-9 {
    padding-top: 56.25%;
}
.video-js.vjs-4-3 {
    padding-top: 75%;
}
.video-js.vjs-fill,
.video-js .vjs-tech {
    width: 100%;
    height: 100%;
}
.video-js .vjs-tech {
    position: absolute;
    top: 0;
    left: 0;
}
body.vjs-full-window {
    padding: 0;
    margin: 0;
    height: 100%;
}
.vjs-full-window .video-js.vjs-fullscreen {
    position: fixed;
    overflow: hidden;
    z-index: 1000;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}
.video-js.vjs-fullscreen {
    width: 100% !important;
    height: 100% !important;
    padding-top: 0 !important;
}
.video-js.vjs-fullscreen.vjs-user-inactive {
    cursor: none;
}
.vjs-hidden {
    display: none !important;
}
.vjs-disabled {
    opacity: 0.5;
    cursor: default;
}
.video-js .vjs-offscreen {
    height: 1px;
    left: -9999px;
    position: absolute;
    top: 0;
    width: 1px;
}
.vjs-lock-showing {
    display: block !important;
    opacity: 1;
    visibility: visible;
}
.vjs-no-js {
    padding: 20px;
    color: #fff;
    background-color: #000;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    width: 300px;
    height: 150px;
    margin: 0 auto;
}
.vjs-no-js a,
.vjs-no-js a:visited {
    color: #66a8cc;
}
.video-js .vjs-big-play-button {
    font-size: 3em;
    line-height: 1.5em;
    height: 1.63332em;
    width: 3em;
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0;
    cursor: pointer;
    opacity: 1;
    border: 0.06666em solid #fff;
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, 0.7);
    border-radius: 0.3em;
    transition: all 0.4s;
}
.vjs-big-play-centered .vjs-big-play-button {
    top: 50%;
    left: 50%;
    margin-top: -0.81666em;
    margin-left: -1.5em;
}
.video-js .vjs-big-play-button:focus,
.video-js:hover .vjs-big-play-button {
    border-color: #fff;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, 0.5);
    transition: all 0s;
}
.vjs-controls-disabled .vjs-big-play-button,
.vjs-error .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button {
    display: none;
}
.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
    display: block;
}
.video-js button {
    background: none;
    border: none;
    color: inherit;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-transform: none;
    text-decoration: none;
    transition: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.vjs-control .vjs-button {
    width: 100%;
    height: 100%;
}
.video-js .vjs-control.vjs-close-button {
    cursor: pointer;
    height: 3em;
    position: absolute;
    right: 0;
    top: 0.5em;
    z-index: 2;
}
.video-js .vjs-modal-dialog {
    background: rgba(0, 0, 0, 0.8);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), hsla(0, 0%, 100%, 0));
    overflow: auto;
}
.video-js .vjs-modal-dialog > * {
    box-sizing: border-box;
}
.vjs-modal-dialog .vjs-modal-dialog-content {
    font-size: 1.2em;
    line-height: 1.5;
    padding: 20px 24px;
    z-index: 1;
}
.vjs-menu-button {
    cursor: pointer;
}
.vjs-menu-button.vjs-disabled {
    cursor: default;
}
.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
    display: none;
}
.vjs-menu .vjs-menu-content {
    display: block;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow: auto;
}
.vjs-menu .vjs-menu-content > * {
    box-sizing: border-box;
}
.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
    display: none;
}
.vjs-menu li {
    list-style: none;
    margin: 0;
    padding: 0.2em 0;
    line-height: 1.4em;
    font-size: 1.2em;
    text-align: center;
    text-transform: lowercase;
}
.js-focus-visible .vjs-menu li.vjs-menu-item:hover,
.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover {
    background-color: #73859f;
    background-color: rgba(115, 133, 159, 0.5);
}
.js-focus-visible .vjs-menu li.vjs-selected:hover,
.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover {
    background-color: #fff;
    color: #2b333f;
}
.vjs-menu li.vjs-menu-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 2em;
    padding: 0;
    margin: 0 0 0.3em;
    font-weight: 700;
    cursor: default;
}
.vjs-menu-button-popup .vjs-menu {
    display: none;
    position: absolute;
    bottom: 0;
    width: 10em;
    left: -3em;
    height: 0;
    margin-bottom: 1.5em;
    border-top-color: rgba(43, 51, 63, 0.7);
}
.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, 0.7);
    position: absolute;
    width: 100%;
    bottom: 1.5em;
    max-height: 15em;
}
.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 5em;
}
.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 10em;
}
.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 14em;
}
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 25em;
}
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing,
.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu {
    display: block;
}
.video-js .vjs-menu-button-inline {
    transition: all 0.4s;
    overflow: hidden;
}
.video-js .vjs-menu-button-inline:before {
    width: 2.222222222em;
}
.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline:hover,
.video-js.vjs-no-flex .vjs-menu-button-inline {
    width: 12em;
}
.vjs-menu-button-inline .vjs-menu {
    opacity: 0;
    height: 100%;
    width: auto;
    position: absolute;
    left: 4em;
    top: 0;
    padding: 0;
    margin: 0;
    transition: all 0.4s;
}
.vjs-menu-button-inline.vjs-slider-active .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline:hover .vjs-menu {
    display: block;
    opacity: 1;
}
.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
    display: block;
    opacity: 1;
    position: relative;
    width: auto;
}
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu {
    width: auto;
}
.vjs-menu-button-inline .vjs-menu-content {
    width: auto;
    height: 100%;
    margin: 0;
    overflow: hidden;
}
.video-js .vjs-control-bar {
    display: none;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3em;
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, 0.7);
}
.vjs-has-started .vjs-control-bar {
    display: flex;
    visibility: visible;
    opacity: 1;
    transition:
        visibility 0.1s,
        opacity 0.1s;
}
.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
    visibility: visible;
    opacity: 0;
    transition:
        visibility 1s,
        opacity 1s;
}
.vjs-controls-disabled .vjs-control-bar,
.vjs-error .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar {
    display: none !important;
}
.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
    opacity: 1;
    visibility: visible;
}
.vjs-has-started.vjs-no-flex .vjs-control-bar {
    display: table;
}
.video-js .vjs-control {
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 4em;
    flex: none;
}
.vjs-button > .vjs-icon-placeholder:before {
    font-size: 1.8em;
    line-height: 1.67;
}
.video-js .vjs-control:focus,
.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before {
    text-shadow: 0 0 1em #fff;
}
.video-js .vjs-control-text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.vjs-no-flex .vjs-control {
    display: table-cell;
    vertical-align: middle;
}
.video-js .vjs-custom-control-spacer {
    display: none;
}
.video-js .vjs-progress-control {
    cursor: pointer;
    flex: auto;
    display: flex;
    align-items: center;
    min-width: 4em;
    touch-action: none;
}
.video-js .vjs-progress-control.disabled {
    cursor: default;
}
.vjs-live .vjs-progress-control {
    display: none;
}
.vjs-liveui .vjs-progress-control {
    display: flex;
    align-items: center;
}
.vjs-no-flex .vjs-progress-control {
    width: auto;
}
.video-js .vjs-progress-holder {
    flex: auto;
    transition: all 0.2s;
    height: 0.3em;
}
.video-js .vjs-progress-control .vjs-progress-holder {
    margin: 0 10px;
}
.video-js .vjs-progress-control:hover .vjs-progress-holder {
    font-size: 1.6666666667em;
}
.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
    font-size: 1em;
}
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div,
.video-js .vjs-progress-holder .vjs-play-progress {
    position: absolute;
    display: block;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 0;
}
.video-js .vjs-play-progress {
    background-color: #fff;
}
.video-js .vjs-play-progress:before {
    font-size: 0.9em;
    position: absolute;
    right: -0.5em;
    top: -0.3333333333em;
    z-index: 1;
}
.video-js .vjs-load-progress {
    background: rgba(115, 133, 159, 0.5);
}
.video-js .vjs-load-progress div {
    background: rgba(115, 133, 159, 0.75);
}
.video-js .vjs-time-tooltip {
    background-color: #fff;
    background-color: hsla(0, 0%, 100%, 0.8);
    border-radius: 0.3em;
    color: #000;
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    padding: 6px 8px 8px;
    pointer-events: none;
    position: absolute;
    top: -3.4em;
    visibility: hidden;
    z-index: 1;
}
.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
    display: none;
}
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-time-tooltip {
    display: block;
    font-size: 0.6em;
    visibility: visible;
}
.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
    font-size: 1em;
}
.video-js .vjs-progress-control .vjs-mouse-display {
    display: none;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #000;
    z-index: 1;
}
.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
    z-index: 0;
}
.video-js .vjs-progress-control:hover .vjs-mouse-display {
    display: block;
}
.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
    visibility: hidden;
    opacity: 0;
    transition:
        visibility 1s,
        opacity 1s;
}
.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
    display: none;
}
.vjs-mouse-display .vjs-time-tooltip {
    color: #fff;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.8);
}
.video-js .vjs-slider {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0 0.45em;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, 0.5);
}
.video-js .vjs-slider.disabled {
    cursor: default;
}
.video-js .vjs-slider:focus {
    text-shadow: 0 0 1em #fff;
    box-shadow: 0 0 1em #fff;
}
.video-js .vjs-mute-control {
    cursor: pointer;
    flex: none;
}
.video-js .vjs-volume-control {
    cursor: pointer;
    margin-right: 1em;
    display: flex;
}
.video-js .vjs-volume-control.vjs-volume-horizontal {
    width: 5em;
}
.video-js .vjs-volume-panel .vjs-volume-control {
    visibility: visible;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin-left: -1px;
}
.video-js .vjs-volume-panel {
    transition: width 1s;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active,
.video-js .vjs-volume-panel .vjs-volume-control:active,
.video-js .vjs-volume-panel:active .vjs-volume-control,
.video-js .vjs-volume-panel:focus .vjs-volume-control {
    visibility: visible;
    opacity: 1;
    position: relative;
    transition:
        visibility 0.1s,
        opacity 0.1s,
        height 0.1s,
        width 0.1s,
        left 0s,
        top 0s;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal {
    width: 5em;
    height: 3em;
    margin-right: 0;
}
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical {
    left: -3.5em;
    transition: left 0s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active {
    width: 10em;
    transition: width 0.1s;
}
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
    width: 4em;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
    height: 8em;
    width: 3em;
    left: -3000em;
    transition:
        visibility 1s,
        opacity 1s,
        height 1s 1s,
        width 1s 1s,
        left 1s 1s,
        top 1s 1s;
}
.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
    transition:
        visibility 1s,
        opacity 1s,
        height 1s 1s,
        width 1s,
        left 1s 1s,
        top 1s 1s;
}
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
    width: 5em;
    height: 3em;
    visibility: visible;
    opacity: 1;
    position: relative;
    transition: none;
}
.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
    position: absolute;
    bottom: 3em;
    left: 0.5em;
}
.video-js .vjs-volume-panel {
    display: flex;
}
.video-js .vjs-volume-bar {
    margin: 1.35em 0.45em;
}
.vjs-volume-bar.vjs-slider-horizontal {
    width: 5em;
    height: 0.3em;
}
.vjs-volume-bar.vjs-slider-vertical {
    width: 0.3em;
    height: 5em;
    margin: 1.35em auto;
}
.video-js .vjs-volume-level {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
}
.video-js .vjs-volume-level:before {
    position: absolute;
    font-size: 0.9em;
}
.vjs-slider-vertical .vjs-volume-level {
    width: 0.3em;
}
.vjs-slider-vertical .vjs-volume-level:before {
    top: -0.5em;
    left: -0.3em;
}
.vjs-slider-horizontal .vjs-volume-level {
    height: 0.3em;
}
.vjs-slider-horizontal .vjs-volume-level:before {
    top: -0.3em;
    right: -0.5em;
}
.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
    width: 4em;
}
.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
    height: 100%;
}
.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
    width: 100%;
}
.video-js .vjs-volume-vertical {
    width: 3em;
    height: 8em;
    bottom: 8em;
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, 0.7);
}
.video-js .vjs-volume-horizontal .vjs-menu {
    left: -2em;
}
.vjs-poster {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    background-color: #000;
    cursor: pointer;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
}
.vjs-has-started .vjs-poster {
    display: none;
}
.vjs-audio.vjs-has-started .vjs-poster {
    display: block;
}
.vjs-using-native-controls .vjs-poster {
    display: none;
}
.video-js .vjs-live-control {
    display: flex;
    align-items: flex-start;
    flex: auto;
    font-size: 1em;
    line-height: 3em;
}
.vjs-no-flex .vjs-live-control {
    display: table-cell;
    width: auto;
    text-align: left;
}
.video-js.vjs-liveui .vjs-live-control,
.video-js:not(.vjs-live) .vjs-live-control {
    display: none;
}
.video-js .vjs-seek-to-live-control {
    cursor: pointer;
    flex: none;
    display: inline-flex;
    height: 100%;
    padding-left: 0.5em;
    padding-right: 0.5em;
    font-size: 1em;
    line-height: 3em;
    width: auto;
    min-width: 4em;
}
.vjs-no-flex .vjs-seek-to-live-control {
    display: table-cell;
    width: auto;
    text-align: left;
}
.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
    display: none;
}
.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
    cursor: auto;
}
.vjs-seek-to-live-control .vjs-icon-placeholder {
    margin-right: 0.5em;
    color: #888;
}
.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
    color: red;
}
.video-js .vjs-time-control {
    flex: none;
    font-size: 1em;
    line-height: 3em;
    min-width: 2em;
    width: auto;
    padding-left: 1em;
    padding-right: 1em;
}
.video-js .vjs-current-time,
.video-js .vjs-duration,
.vjs-live .vjs-time-control,
.vjs-no-flex .vjs-current-time,
.vjs-no-flex .vjs-duration {
    display: none;
}
.vjs-time-divider {
    display: none;
    line-height: 3em;
}
.vjs-live .vjs-time-divider {
    display: none;
}
.video-js .vjs-play-control {
    cursor: pointer;
}
.video-js .vjs-play-control .vjs-icon-placeholder {
    flex: none;
}
.vjs-text-track-display {
    position: absolute;
    bottom: 3em;
    left: 0;
    right: 0;
    top: 0;
    pointer-events: none;
}
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
    bottom: 1em;
}
.video-js .vjs-text-track {
    font-size: 1.4em;
    text-align: center;
    margin-bottom: 0.1em;
}
.vjs-subtitles {
    color: #fff;
}
.vjs-captions {
    color: #fc6;
}
.vjs-tt-cue {
    display: block;
}
video::-webkit-media-text-track-display {
    transform: translateY(-3em);
}
.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
    transform: translateY(-1.5em);
}
.video-js .vjs-fullscreen-control,
.video-js .vjs-picture-in-picture-control {
    cursor: pointer;
    flex: none;
}
.vjs-playback-rate .vjs-playback-rate-value,
.vjs-playback-rate > .vjs-menu-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.vjs-playback-rate .vjs-playback-rate-value {
    pointer-events: none;
    font-size: 1.5em;
    line-height: 2;
    text-align: center;
}
.vjs-playback-rate .vjs-menu {
    width: 4em;
    left: 0;
}
.vjs-error .vjs-error-display .vjs-modal-dialog-content {
    font-size: 1.4em;
    text-align: center;
}
.vjs-error .vjs-error-display:before {
    color: #fff;
    content: "X";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4em;
    left: 0;
    line-height: 1;
    margin-top: -0.5em;
    position: absolute;
    text-shadow: 0.05em 0.05em 0.1em #000;
    text-align: center;
    top: 50%;
    vertical-align: middle;
    width: 100%;
}
.vjs-loading-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: 0.85;
    text-align: left;
    border: 6px solid rgba(43, 51, 63, 0.7);
    box-sizing: border-box;
    background-clip: padding-box;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    visibility: hidden;
}
.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
    display: block;
    -webkit-animation: vjs-spinner-show 0s linear 0.3s forwards;
    animation: vjs-spinner-show 0s linear 0.3s forwards;
}
.vjs-loading-spinner:after,
.vjs-loading-spinner:before {
    content: "";
    position: absolute;
    margin: -6px;
    box-sizing: inherit;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    opacity: 1;
    border: inherit;
    border-color: #fff transparent transparent;
}
.vjs-seeking .vjs-loading-spinner:after,
.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before {
    -webkit-animation:
        vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite,
        vjs-spinner-fade 1.1s linear infinite;
    animation:
        vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite,
        vjs-spinner-fade 1.1s linear infinite;
}
.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
    border-top-color: #fff;
}
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
    border-top-color: #fff;
    -webkit-animation-delay: 0.44s;
    animation-delay: 0.44s;
}
@keyframes vjs-spinner-show {
    to {
        visibility: visible;
    }
}
@-webkit-keyframes vjs-spinner-show {
    to {
        visibility: visible;
    }
}
@keyframes vjs-spinner-spin {
    to {
        transform: rotate(1turn);
    }
}
@-webkit-keyframes vjs-spinner-spin {
    to {
        -webkit-transform: rotate(1turn);
    }
}
@keyframes vjs-spinner-fade {
    0% {
        border-top-color: #73859f;
    }
    20% {
        border-top-color: #73859f;
    }
    35% {
        border-top-color: #fff;
    }
    60% {
        border-top-color: #73859f;
    }
    to {
        border-top-color: #73859f;
    }
}
@-webkit-keyframes vjs-spinner-fade {
    0% {
        border-top-color: #73859f;
    }
    20% {
        border-top-color: #73859f;
    }
    35% {
        border-top-color: #fff;
    }
    60% {
        border-top-color: #73859f;
    }
    to {
        border-top-color: #73859f;
    }
}
.vjs-chapters-button .vjs-menu ul {
    width: 24em;
}
.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
    vertical-align: middle;
    display: inline-block;
    margin-bottom: -0.1em;
}
.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
    font-family: VideoJS;
    content: "\F10D";
    font-size: 1.5em;
    line-height: inherit;
}
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
    vertical-align: middle;
    display: inline-block;
    margin-bottom: -0.1em;
}
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
    font-family: VideoJS;
    content: " \F11D";
    font-size: 1.5em;
    line-height: inherit;
}
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-control,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-control,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-control {
    display: none;
}
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover {
    width: auto;
}
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subs-caps-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-live) .vjs-subs-caps-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-liveui) .vjs-subs-caps-button {
    display: none;
}
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-custom-control-spacer,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-custom-control-spacer {
    flex: auto;
    display: block;
}
.video-js:not(.vjs-fullscreen).vjs-layout-tiny.vjs-no-flex .vjs-custom-control-spacer,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui.vjs-no-flex .vjs-custom-control-spacer {
    width: auto;
}
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-progress-control,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-progress-control {
    display: none;
}
.vjs-modal-dialog.vjs-text-track-settings {
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, 0.75);
    color: #fff;
    height: 70%;
}
.vjs-text-track-settings .vjs-modal-dialog-content {
    display: table;
}
.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-controls,
.vjs-text-track-settings .vjs-track-settings-font {
    display: table-cell;
}
.vjs-text-track-settings .vjs-track-settings-controls {
    text-align: right;
    vertical-align: bottom;
}
@supports (display: grid) {
    .vjs-text-track-settings .vjs-modal-dialog-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        padding: 20px 24px 0;
    }
    .vjs-track-settings-controls .vjs-default-button {
        margin-bottom: 20px;
    }
    .vjs-text-track-settings .vjs-track-settings-controls {
        grid-column: 1/-1;
    }
    .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
    .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content,
    .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content {
        grid-template-columns: 1fr;
    }
}
.vjs-track-setting > select {
    margin-right: 1em;
    margin-bottom: 0.5em;
}
.vjs-text-track-settings fieldset {
    margin: 5px;
    padding: 3px;
    border: none;
}
.vjs-text-track-settings fieldset span {
    display: inline-block;
}
.vjs-text-track-settings fieldset span > select {
    max-width: 7.3em;
}
.vjs-text-track-settings legend {
    color: #fff;
    margin: 0 0 5px;
}
.vjs-text-track-settings .vjs-label {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    display: block;
    margin: 0 0 5px;
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.vjs-track-settings-controls button:active,
.vjs-track-settings-controls button:focus {
    outline-style: solid;
    outline-width: medium;
    background-image: linear-gradient(0deg, #fff 88%, #73859f);
}
.vjs-track-settings-controls button:hover {
    color: rgba(43, 51, 63, 0.75);
}
.vjs-track-settings-controls button {
    background-color: #fff;
    background-image: linear-gradient(-180deg, #fff 88%, #73859f);
    color: #2b333f;
    cursor: pointer;
    border-radius: 2px;
}
.vjs-track-settings-controls .vjs-default-button {
    margin-right: 1em;
}
@media print {
    .video-js > :not(.vjs-tech):not(.vjs-poster) {
        visibility: hidden;
    }
}
.vjs-resize-manager {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: -1000;
}
.js-focus-visible .video-js :focus:not(.focus-visible),
.video-js .vjs-menu :focus:not(:focus-visible),
.video-js :focus:not(:focus-visible) {
    outline: none;
    background: none;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.animated.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.animated.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.animated.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}
.animated.delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}
.animated.delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}
.animated.fast {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
}
.animated.faster {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.animated.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
}
@media (prefers-reduced-motion: reduce), (print) {
    .animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}
@-webkit-keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        transform: perspective(400px);
    }
}
.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
@-webkit-keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}
.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}
[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
    transition-duration: 50ms;
}
[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
    transition-delay: 50ms;
}
[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
    transition-duration: 0.1s;
}
[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
    transition-delay: 0.1s;
}
[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
    transition-duration: 0.15s;
}
[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
    transition-delay: 0.15s;
}
[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
    transition-duration: 0.2s;
}
[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
    transition-delay: 0.2s;
}
[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
    transition-duration: 0.25s;
}
[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
    transition-delay: 0.25s;
}
[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
    transition-duration: 0.3s;
}
[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
    transition-delay: 0.3s;
}
[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
    transition-duration: 0.35s;
}
[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
    transition-delay: 0.35s;
}
[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
    transition-duration: 0.4s;
}
[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
    transition-delay: 0.4s;
}
[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
    transition-duration: 0.45s;
}
[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
    transition-delay: 0.45s;
}
[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
    transition-duration: 0.5s;
}
[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
    transition-delay: 0.5s;
}
[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
    transition-duration: 0.55s;
}
[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
    transition-delay: 0.55s;
}
[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
    transition-duration: 0.6s;
}
[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
    transition-delay: 0.6s;
}
[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
    transition-duration: 0.65s;
}
[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
    transition-delay: 0.65s;
}
[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
    transition-duration: 0.7s;
}
[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
    transition-delay: 0.7s;
}
[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
    transition-duration: 0.75s;
}
[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
    transition-delay: 0.75s;
}
[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
    transition-duration: 0.8s;
}
[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
    transition-delay: 0.8s;
}
[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
    transition-duration: 0.85s;
}
[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
    transition-delay: 0.85s;
}
[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
    transition-duration: 0.9s;
}
[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
    transition-delay: 0.9s;
}
[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
    transition-duration: 0.95s;
}
[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
    transition-delay: 0.95s;
}
[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
    transition-duration: 1s;
}
[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
    transition-delay: 1s;
}
[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
    transition-duration: 1.05s;
}
[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
    transition-delay: 1.05s;
}
[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
    transition-duration: 1.1s;
}
[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
    transition-delay: 1.1s;
}
[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
    transition-duration: 1.15s;
}
[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
    transition-delay: 1.15s;
}
[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
    transition-duration: 1.2s;
}
[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
    transition-delay: 1.2s;
}
[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
    transition-duration: 1.25s;
}
[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
    transition-delay: 1.25s;
}
[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
    transition-duration: 1.3s;
}
[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
    transition-delay: 1.3s;
}
[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
    transition-duration: 1.35s;
}
[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
    transition-delay: 1.35s;
}
[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
    transition-duration: 1.4s;
}
[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
    transition-delay: 1.4s;
}
[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
    transition-duration: 1.45s;
}
[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
    transition-delay: 1.45s;
}
[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
    transition-duration: 1.5s;
}
[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
    transition-delay: 1.5s;
}
[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
    transition-duration: 1.55s;
}
[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
    transition-delay: 1.55s;
}
[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
    transition-duration: 1.6s;
}
[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
    transition-delay: 1.6s;
}
[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
    transition-duration: 1.65s;
}
[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
    transition-delay: 1.65s;
}
[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
    transition-duration: 1.7s;
}
[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
    transition-delay: 1.7s;
}
[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
    transition-duration: 1.75s;
}
[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
    transition-delay: 1.75s;
}
[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
    transition-duration: 1.8s;
}
[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
    transition-delay: 1.8s;
}
[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
    transition-duration: 1.85s;
}
[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
    transition-delay: 1.85s;
}
[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
    transition-duration: 1.9s;
}
[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
    transition-delay: 1.9s;
}
[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
    transition-duration: 1.95s;
}
[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
    transition-delay: 1.95s;
}
[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
    transition-duration: 2s;
}
[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
    transition-delay: 2s;
}
[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
    transition-duration: 2.05s;
}
[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
    transition-delay: 2.05s;
}
[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
    transition-duration: 2.1s;
}
[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
    transition-delay: 2.1s;
}
[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
    transition-duration: 2.15s;
}
[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
    transition-delay: 2.15s;
}
[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
    transition-duration: 2.2s;
}
[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
    transition-delay: 2.2s;
}
[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
    transition-duration: 2.25s;
}
[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
    transition-delay: 2.25s;
}
[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
    transition-duration: 2.3s;
}
[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
    transition-delay: 2.3s;
}
[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
    transition-duration: 2.35s;
}
[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
    transition-delay: 2.35s;
}
[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
    transition-duration: 2.4s;
}
[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
    transition-delay: 2.4s;
}
[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
    transition-duration: 2.45s;
}
[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
    transition-delay: 2.45s;
}
[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
    transition-duration: 2.5s;
}
[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
    transition-delay: 2.5s;
}
[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
    transition-duration: 2.55s;
}
[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
    transition-delay: 2.55s;
}
[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
    transition-duration: 2.6s;
}
[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
    transition-delay: 2.6s;
}
[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
    transition-duration: 2.65s;
}
[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
    transition-delay: 2.65s;
}
[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
    transition-duration: 2.7s;
}
[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
    transition-delay: 2.7s;
}
[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
    transition-duration: 2.75s;
}
[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
    transition-delay: 2.75s;
}
[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
    transition-duration: 2.8s;
}
[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
    transition-delay: 2.8s;
}
[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
    transition-duration: 2.85s;
}
[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
    transition-delay: 2.85s;
}
[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
    transition-duration: 2.9s;
}
[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
    transition-delay: 2.9s;
}
[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
    transition-duration: 2.95s;
}
[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
    transition-delay: 2.95s;
}
[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
    transition-duration: 3s;
}
[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
    transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
    transition-delay: 3s;
}
[data-aos][data-aos][data-aos-easing="linear"],
body[data-aos-easing="linear"] [data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
[data-aos][data-aos][data-aos-easing="ease"],
body[data-aos-easing="ease"] [data-aos] {
    transition-timing-function: ease;
}
[data-aos][data-aos][data-aos-easing="ease-in"],
body[data-aos-easing="ease-in"] [data-aos] {
    transition-timing-function: ease-in;
}
[data-aos][data-aos][data-aos-easing="ease-out"],
body[data-aos-easing="ease-out"] [data-aos] {
    transition-timing-function: ease-out;
}
[data-aos][data-aos][data-aos-easing="ease-in-out"],
body[data-aos-easing="ease-in-out"] [data-aos] {
    transition-timing-function: ease-in-out;
}
[data-aos][data-aos][data-aos-easing="ease-in-back"],
body[data-aos-easing="ease-in-back"] [data-aos] {
    transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
[data-aos][data-aos][data-aos-easing="ease-out-back"],
body[data-aos-easing="ease-out-back"] [data-aos] {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-back"],
body[data-aos-easing="ease-in-out-back"] [data-aos] {
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[data-aos][data-aos][data-aos-easing="ease-in-sine"],
body[data-aos-easing="ease-in-sine"] [data-aos] {
    transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
[data-aos][data-aos][data-aos-easing="ease-out-sine"],
body[data-aos-easing="ease-out-sine"] [data-aos] {
    transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-sine"],
body[data-aos-easing="ease-in-out-sine"] [data-aos] {
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
[data-aos][data-aos][data-aos-easing="ease-in-quad"],
body[data-aos-easing="ease-in-quad"] [data-aos] {
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing="ease-out-quad"],
body[data-aos-easing="ease-out-quad"] [data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-quad"],
body[data-aos-easing="ease-in-out-quad"] [data-aos] {
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos][data-aos][data-aos-easing="ease-in-cubic"],
body[data-aos-easing="ease-in-cubic"] [data-aos] {
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing="ease-out-cubic"],
body[data-aos-easing="ease-out-cubic"] [data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-cubic"],
body[data-aos-easing="ease-in-out-cubic"] [data-aos] {
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos][data-aos][data-aos-easing="ease-in-quart"],
body[data-aos-easing="ease-in-quart"] [data-aos] {
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing="ease-out-quart"],
body[data-aos-easing="ease-out-quart"] [data-aos] {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-quart"],
body[data-aos-easing="ease-in-out-quart"] [data-aos] {
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos^="fade"][data-aos^="fade"] {
    opacity: 0;
    transition-property: opacity, transform;
}
[data-aos^="fade"][data-aos^="fade"].aos-animate {
    opacity: 1;
    transform: translateZ(0);
}
[data-aos="fade-up"] {
    transform: translate3d(0, 100px, 0);
}
[data-aos="fade-down"] {
    transform: translate3d(0, -100px, 0);
}
[data-aos="fade-right"] {
    transform: translate3d(-100px, 0, 0);
}
[data-aos="fade-left"] {
    transform: translate3d(100px, 0, 0);
}
[data-aos="fade-up-right"] {
    transform: translate3d(-100px, 100px, 0);
}
[data-aos="fade-up-left"] {
    transform: translate3d(100px, 100px, 0);
}
[data-aos="fade-down-right"] {
    transform: translate3d(-100px, -100px, 0);
}
[data-aos="fade-down-left"] {
    transform: translate3d(100px, -100px, 0);
}
[data-aos^="zoom"][data-aos^="zoom"] {
    opacity: 0;
    transition-property: opacity, transform;
}
[data-aos^="zoom"][data-aos^="zoom"].aos-animate {
    opacity: 1;
    transform: translateZ(0) scale(1);
}
[data-aos="zoom-in"] {
    transform: scale(0.6);
}
[data-aos="zoom-in-up"] {
    transform: translate3d(0, 100px, 0) scale(0.6);
}
[data-aos="zoom-in-down"] {
    transform: translate3d(0, -100px, 0) scale(0.6);
}
[data-aos="zoom-in-right"] {
    transform: translate3d(-100px, 0, 0) scale(0.6);
}
[data-aos="zoom-in-left"] {
    transform: translate3d(100px, 0, 0) scale(0.6);
}
[data-aos="zoom-out"] {
    transform: scale(1.2);
}
[data-aos="zoom-out-up"] {
    transform: translate3d(0, 100px, 0) scale(1.2);
}
[data-aos="zoom-out-down"] {
    transform: translate3d(0, -100px, 0) scale(1.2);
}
[data-aos="zoom-out-right"] {
    transform: translate3d(-100px, 0, 0) scale(1.2);
}
[data-aos="zoom-out-left"] {
    transform: translate3d(100px, 0, 0) scale(1.2);
}
[data-aos^="slide"][data-aos^="slide"] {
    transition-property: transform;
}
[data-aos^="slide"][data-aos^="slide"].aos-animate {
    transform: translateZ(0);
}
[data-aos="slide-up"] {
    transform: translate3d(0, 100%, 0);
}
[data-aos="slide-down"] {
    transform: translate3d(0, -100%, 0);
}
[data-aos="slide-right"] {
    transform: translate3d(-100%, 0, 0);
}
[data-aos="slide-left"] {
    transform: translate3d(100%, 0, 0);
}
[data-aos^="flip"][data-aos^="flip"] {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition-property: transform;
}
[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(-100deg);
}
[data-aos="flip-left"].aos-animate {
    transform: perspective(2500px) rotateY(0);
}
[data-aos="flip-right"] {
    transform: perspective(2500px) rotateY(100deg);
}
[data-aos="flip-right"].aos-animate {
    transform: perspective(2500px) rotateY(0);
}
[data-aos="flip-up"] {
    transform: perspective(2500px) rotateX(-100deg);
}
[data-aos="flip-up"].aos-animate {
    transform: perspective(2500px) rotateX(0);
}
[data-aos="flip-down"] {
    transform: perspective(2500px) rotateX(100deg);
}
[data-aos="flip-down"].aos-animate {
    transform: perspective(2500px) rotateX(0);
}
.pace {
    -webkit-pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.pace-inactive {
    display: none;
}
.pace .pace-progress {
    background: #000;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 2px;
}
.pace .pace-progress-inner {
    display: block;
    position: absolute;
    right: 0;
    width: 100px;
    height: 100%;
    box-shadow:
        0 0 10px #000,
        0 0 5px #000;
    opacity: 1;
    transform: rotate(3deg) translateY(-4px);
}
.pace .pace-activity {
    display: block;
    position: fixed;
    z-index: 2000;
    top: 15px;
    right: 15px;
    width: 14px;
    height: 14px;
    border-color: #000 transparent transparent #000;
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
    -webkit-animation: pace-spinner 0.4s linear infinite;
    animation: pace-spinner 0.4s linear infinite;
}
@-webkit-keyframes pace-spinner {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(1turn);
    }
}
@keyframes pace-spinner {
    0% {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(1turn);
    }
}
@font-face {
    font-family: bbsb_icons;
    src: url(../font/bbsb_icons.eot?80358346);
    src:
        url(../font/bbsb_icons.eot?80358346#iefix) format("embedded-opentype"),
        url(../font/bbsb_icons.woff2?80358346) format("woff2"),
        url(../font/bbsb_icons.woff?80358346) format("woff"),
        url(../font/bbsb_icons.ttf?80358346) format("truetype"),
        url(../font/bbsb_icons.svg?80358346#bbsb_icons) format("svg");
    font-weight: 400;
    font-style: normal;
}
[class*=" icon-"]:before,
[class^="icon-"]:before {
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-search:before {
    content: "\E800";
}
.icon-user:before {
    content: "\E801";
}
.icon-users:before {
    content: "\E802";
}
.icon-user-add:before {
    content: "\E803";
}
.icon-check:before {
    content: "\E804";
}
.icon-cancel:before {
    content: "\E805";
}
.icon-picture:before {
    content: "\E806";
}
.icon-camera:before {
    content: "\E807";
}
.icon-video:before {
    content: "\E808";
}
.icon-plus:before {
    content: "\E809";
}
.icon-cancel-circled:before {
    content: "\E80A";
}
.icon-plus-circled:before {
    content: "\E80B";
}
.icon-minus:before {
    content: "\E80C";
}
.icon-plus-squared:before {
    content: "\E80D";
}
.icon-minus-circled:before {
    content: "\E80E";
}
.icon-minus-squared:before {
    content: "\E80F";
}
.icon-help-circled:before {
    content: "\E810";
}
.icon-info:before {
    content: "\E811";
}
.icon-link:before {
    content: "\E812";
}
.icon-lock:before {
    content: "\E813";
}
.icon-lock-open:before {
    content: "\E814";
}
.icon-tag:before {
    content: "\E815";
}
.icon-download:before {
    content: "\E816";
}
.icon-upload:before {
    content: "\E817";
}
.icon-print:before {
    content: "\E818";
}
.icon-pencil:before {
    content: "\E819";
}
.icon-comment:before {
    content: "\E81A";
}
.icon-chat:before {
    content: "\E81B";
}
.icon-attention:before {
    content: "\E81C";
}
.icon-address:before {
    content: "\E81D";
}
.icon-location:before {
    content: "\E81E";
}
.icon-trash:before {
    content: "\E81F";
}
.icon-down-open-mini:before {
    content: "\E820";
}
.icon-left-open-mini:before {
    content: "\E821";
}
.icon-right-open-mini:before {
    content: "\E822";
}
.icon-up-open-mini:before {
    content: "\E823";
}
.icon-down-open-big:before {
    content: "\E824";
}
.icon-left-open-big:before {
    content: "\E825";
}
.icon-right-open-big:before {
    content: "\E826";
}
.icon-up-open-big:before {
    content: "\E827";
}
.icon-globe:before {
    content: "\E828";
}
.icon-dot-3:before {
    content: "\E829";
}
.icon-forward:before {
    content: "\E82A";
}
.icon-reply-all:before {
    content: "\E82B";
}
.icon-reply:before {
    content: "\E82C";
}
.icon-popup:before {
    content: "\E82D";
}
.icon-resize-full:before {
    content: "\E82E";
}
.icon-resize-small:before {
    content: "\E82F";
}
.icon-phone:before {
    content: "\E830";
}
.icon-share:before {
    content: "\E831";
}
.icon-docs:before {
    content: "\E832";
}
.icon-map:before {
    content: "\E833";
}
.icon-mobile:before {
    content: "\E834";
}
.icon-alert:before {
    content: "\E835";
}
.icon-attach:before {
    content: "\E836";
}
.icon-phone-1:before {
    content: "\E837";
}
.icon-calendar:before {
    content: "\E838";
}
.icon-doc-text:before {
    content: "\E839";
}
.icon-login:before {
    content: "\E83A";
}
.icon-logout:before {
    content: "\E83B";
}
.icon-clock:before {
    content: "\E83C";
}
.icon-graduation-cap:before {
    content: "\E83D";
}
.icon-clipboard:before {
    content: "\E83E";
}
.icon-list:before {
    content: "\E83F";
}
.icon-calendar-1:before {
    content: "\E840";
}
.icon-mail:before {
    content: "\E841";
}
.icon-home:before {
    content: "\E842";
}
.icon-cog:before {
    content: "\E843";
}
.icon-cube:before {
    content: "\E844";
}
.icon-info-circled:before {
    content: "\E845";
}
.icon-hammer:before {
    content: "\E846";
}
.icon-lightbulb-on-regular:before {
    content: "\E847";
}
.icon-handshake-regular:before {
    content: "\E848";
}
.icon-engine-warning-regular:before {
    content: "\E849";
}
.icon-compass-regular:before {
    content: "\E84A";
}
.icon-bullseye-pointer-regular:before {
    content: "\E84B";
}
.icon-route:before {
    content: "\E84C";
}
.icon-bf1:before {
    content: "\E84D";
}
.icon-hbf:before {
    content: "\E84E";
}
.icon-bf2:before {
    content: "\E84F";
}
.icon-bos2:before {
    content: "\E850";
}
.icon-fs:before {
    content: "\E851";
}
.icon-bvj:before {
    content: "\E852";
}
.icon-bs:before {
    content: "\E853";
}
.icon-volume-up-regular:before {
    content: "\E854";
}
.icon-pause-regular:before {
    content: "\E855";
}
.icon-play-regular:before {
    content: "\E856";
}
.icon-volume-off-regular:before {
    content: "\E857";
}
.icon-3bf:before {
    content: "\E858";
}
.icon-doc-text-1:before {
    content: "\F0F6";
}
.icon-doc-text-inv:before {
    content: "\F15C";
}
.icon-fax:before {
    content: "\F1AC";
}
.icon-file-pdf:before {
    content: "\F1C1";
}
.icon-file-word:before {
    content: "\F1C2";
}
.icon-file-excel:before {
    content: "\F1C3";
}
.icon-file-powerpoint:before {
    content: "\F1C4";
}
.icon-file-image:before {
    content: "\F1C5";
}
.icon-file-archive:before {
    content: "\F1C6";
}
.icon-file-audio:before {
    content: "\F1C7";
}
.icon-file-video:before {
    content: "\F1C8";
}
.icon-file-code:before {
    content: "\F1C9";
}
.icon-twitter:before {
    content: "\F309";
}
.icon-facebook:before {
    content: "\F30C";
}
.icon-facebook-squared:before {
    content: "\F30E";
}
.icon-pinterest:before {
    content: "\F312";
}
.icon-instagram:before {
    content: "\F32D";
}
/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
    --blue: #0d5fad;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #d60a15;
    --orange: #ff5722;
    --yellow: #ffeb3b;
    --green: #14916c;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #757575;
    --gray-dark: #616161;
    --blue-light: #1aa2d9;
    --blue-dark: #1d3461;
    --red-light: #d9202a;
    --red-dark: #790207;
    --orange-light: #ff7043;
    --orange-dark: #d84315;
    --yellow-light: #fff176;
    --yellow-dark: #fdd835;
    --green-light: #1aaf75;
    --green-dark: #0f5257;
    --primary: #0d5fad;
    --secondary: #616161;
    --success: #14916c;
    --info: #0d5fad;
    --warning: #ffeb3b;
    --danger: #d60a15;
    --light: #9e9e9e;
    --dark: #616161;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
        "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
*,
:after,
:before {
    box-sizing: border-box;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}
body {
    margin: 0;
    font-family:
        Noto Sans,
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    text-align: left;
    background-color: #f7f7f7;
}
[tabindex="-1"]:focus {
    outline: 0 !important;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
abbr[data-original-title],
abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}
address {
    font-style: normal;
    line-height: inherit;
}
address,
dl,
ol,
ul {
    margin-bottom: 1rem;
}
dl,
ol,
ul {
    margin-top: 0;
}
ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}
dt {
    font-weight: 700;
}
dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}
blockquote {
    margin: 0 0 1rem;
}
b,
strong {
    font-weight: bolder;
}
small {
    font-size: 80%;
}
sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
a {
    color: #0d5fad;
    text-decoration: none;
    background-color: transparent;
}
a:hover {
    color: #083866;
    text-decoration: underline;
}
a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
    outline: 0;
}
code,
kbd,
pre,
samp {
    font-family:
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        Liberation Mono,
        Courier New,
        monospace;
    font-size: 1em;
}
pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}
figure {
    margin: 0 0 1rem;
}
img {
    border-style: none;
}
img,
svg {
    vertical-align: middle;
}
svg {
    overflow: hidden;
}
table {
    border-collapse: collapse;
}
caption {
    padding-top: 0.75rem 1rem;
    padding-bottom: 0.75rem 1rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}
th {
    text-align: inherit;
}
label {
    display: inline-block;
    margin-bottom: 0.5rem;
}
button {
    border-radius: 0;
}
button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
select {
    word-wrap: normal;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
    -webkit-appearance: listbox;
}
textarea {
    overflow: auto;
    resize: vertical;
}
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}
output {
    display: inline-block;
}
summary {
    display: list-item;
    cursor: pointer;
}
template {
    display: none;
}
[hidden] {
    display: none !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}
.h1,
h1 {
    font-size: 2.5rem;
}
.h2,
h2 {
    font-size: 2rem;
}
.h3,
h3 {
    font-size: 1.75rem;
}
.h4,
h4 {
    font-size: 1.5rem;
}
.h5,
h5 {
    font-size: 1.25rem;
}
.h6,
h6 {
    font-size: 1rem;
}
.lead {
    font-size: 1.25rem;
    font-weight: 300;
}
.display-1 {
    font-size: 6rem;
}
.display-1,
.display-2 {
    font-weight: 300;
    line-height: 1.2;
}
.display-2 {
    font-size: 5.5rem;
}
.display-3 {
    font-size: 4.5rem;
}
.display-3,
.display-4 {
    font-weight: 300;
    line-height: 1.2;
}
.display-4 {
    font-size: 3.5rem;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.small,
small {
    font-size: 80%;
    font-weight: 400;
}
.mark,
mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}
.list-inline,
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.list-inline-item {
    display: inline-block;
}
.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}
.initialism {
    font-size: 90%;
    text-transform: uppercase;
}
.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d;
}
.blockquote-footer:before {
    content: "\2014\A0";
}
.img-fluid,
.img-thumbnail {
    max-width: 100%;
    height: auto;
}
.img-thumbnail {
    padding: 0.25rem;
    background-color: #f7f7f7;
    border: 1px solid #dee2e6;
}
.figure {
    display: inline-block;
}
.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}
.figure-caption {
    font-size: 90%;
    color: #6c757d;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}
.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}
.col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
}
.col-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}
.col-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
}
.col-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
}
.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
}
.col-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.order-first {
    order: -1;
}
.order-last {
    order: 13;
}
.order-0 {
    order: 0;
}
.order-1 {
    order: 1;
}
.order-2 {
    order: 2;
}
.order-3 {
    order: 3;
}
.order-4 {
    order: 4;
}
.order-5 {
    order: 5;
}
.order-6 {
    order: 6;
}
.order-7 {
    order: 7;
}
.order-8 {
    order: 8;
}
.order-9 {
    order: 9;
}
.order-10 {
    order: 10;
}
.order-11 {
    order: 11;
}
.order-12 {
    order: 12;
}
.offset-1 {
    margin-left: 8.3333333333%;
}
.offset-2 {
    margin-left: 16.6666666667%;
}
.offset-3 {
    margin-left: 25%;
}
.offset-4 {
    margin-left: 33.3333333333%;
}
.offset-5 {
    margin-left: 41.6666666667%;
}
.offset-6 {
    margin-left: 50%;
}
.offset-7 {
    margin-left: 58.3333333333%;
}
.offset-8 {
    margin-left: 66.6666666667%;
}
.offset-9 {
    margin-left: 75%;
}
.offset-10 {
    margin-left: 83.3333333333%;
}
.offset-11 {
    margin-left: 91.6666666667%;
}
@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-sm-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }
    .col-sm-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .col-sm-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .col-sm-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }
    .col-sm-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-sm-first {
        order: -1;
    }
    .order-sm-last {
        order: 13;
    }
    .order-sm-0 {
        order: 0;
    }
    .order-sm-1 {
        order: 1;
    }
    .order-sm-2 {
        order: 2;
    }
    .order-sm-3 {
        order: 3;
    }
    .order-sm-4 {
        order: 4;
    }
    .order-sm-5 {
        order: 5;
    }
    .order-sm-6 {
        order: 6;
    }
    .order-sm-7 {
        order: 7;
    }
    .order-sm-8 {
        order: 8;
    }
    .order-sm-9 {
        order: 9;
    }
    .order-sm-10 {
        order: 10;
    }
    .order-sm-11 {
        order: 11;
    }
    .order-sm-12 {
        order: 12;
    }
    .offset-sm-0 {
        margin-left: 0;
    }
    .offset-sm-1 {
        margin-left: 8.3333333333%;
    }
    .offset-sm-2 {
        margin-left: 16.6666666667%;
    }
    .offset-sm-3 {
        margin-left: 25%;
    }
    .offset-sm-4 {
        margin-left: 33.3333333333%;
    }
    .offset-sm-5 {
        margin-left: 41.6666666667%;
    }
    .offset-sm-6 {
        margin-left: 50%;
    }
    .offset-sm-7 {
        margin-left: 58.3333333333%;
    }
    .offset-sm-8 {
        margin-left: 66.6666666667%;
    }
    .offset-sm-9 {
        margin-left: 75%;
    }
    .offset-sm-10 {
        margin-left: 83.3333333333%;
    }
    .offset-sm-11 {
        margin-left: 91.6666666667%;
    }
}
@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-md-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }
    .col-md-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .col-md-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .col-md-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }
    .col-md-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-md-first {
        order: -1;
    }
    .order-md-last {
        order: 13;
    }
    .order-md-0 {
        order: 0;
    }
    .order-md-1 {
        order: 1;
    }
    .order-md-2 {
        order: 2;
    }
    .order-md-3 {
        order: 3;
    }
    .order-md-4 {
        order: 4;
    }
    .order-md-5 {
        order: 5;
    }
    .order-md-6 {
        order: 6;
    }
    .order-md-7 {
        order: 7;
    }
    .order-md-8 {
        order: 8;
    }
    .order-md-9 {
        order: 9;
    }
    .order-md-10 {
        order: 10;
    }
    .order-md-11 {
        order: 11;
    }
    .order-md-12 {
        order: 12;
    }
    .offset-md-0 {
        margin-left: 0;
    }
    .offset-md-1 {
        margin-left: 8.3333333333%;
    }
    .offset-md-2 {
        margin-left: 16.6666666667%;
    }
    .offset-md-3 {
        margin-left: 25%;
    }
    .offset-md-4 {
        margin-left: 33.3333333333%;
    }
    .offset-md-5 {
        margin-left: 41.6666666667%;
    }
    .offset-md-6 {
        margin-left: 50%;
    }
    .offset-md-7 {
        margin-left: 58.3333333333%;
    }
    .offset-md-8 {
        margin-left: 66.6666666667%;
    }
    .offset-md-9 {
        margin-left: 75%;
    }
    .offset-md-10 {
        margin-left: 83.3333333333%;
    }
    .offset-md-11 {
        margin-left: 91.6666666667%;
    }
}
@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-lg-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }
    .col-lg-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .col-lg-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .col-lg-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }
    .col-lg-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-lg-first {
        order: -1;
    }
    .order-lg-last {
        order: 13;
    }
    .order-lg-0 {
        order: 0;
    }
    .order-lg-1 {
        order: 1;
    }
    .order-lg-2 {
        order: 2;
    }
    .order-lg-3 {
        order: 3;
    }
    .order-lg-4 {
        order: 4;
    }
    .order-lg-5 {
        order: 5;
    }
    .order-lg-6 {
        order: 6;
    }
    .order-lg-7 {
        order: 7;
    }
    .order-lg-8 {
        order: 8;
    }
    .order-lg-9 {
        order: 9;
    }
    .order-lg-10 {
        order: 10;
    }
    .order-lg-11 {
        order: 11;
    }
    .order-lg-12 {
        order: 12;
    }
    .offset-lg-0 {
        margin-left: 0;
    }
    .offset-lg-1 {
        margin-left: 8.3333333333%;
    }
    .offset-lg-2 {
        margin-left: 16.6666666667%;
    }
    .offset-lg-3 {
        margin-left: 25%;
    }
    .offset-lg-4 {
        margin-left: 33.3333333333%;
    }
    .offset-lg-5 {
        margin-left: 41.6666666667%;
    }
    .offset-lg-6 {
        margin-left: 50%;
    }
    .offset-lg-7 {
        margin-left: 58.3333333333%;
    }
    .offset-lg-8 {
        margin-left: 66.6666666667%;
    }
    .offset-lg-9 {
        margin-left: 75%;
    }
    .offset-lg-10 {
        margin-left: 83.3333333333%;
    }
    .offset-lg-11 {
        margin-left: 91.6666666667%;
    }
}
@media (min-width: 1200px) {
    .col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-xl-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }
    .col-xl-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .col-xl-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .col-xl-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }
    .col-xl-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }
    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-xl-first {
        order: -1;
    }
    .order-xl-last {
        order: 13;
    }
    .order-xl-0 {
        order: 0;
    }
    .order-xl-1 {
        order: 1;
    }
    .order-xl-2 {
        order: 2;
    }
    .order-xl-3 {
        order: 3;
    }
    .order-xl-4 {
        order: 4;
    }
    .order-xl-5 {
        order: 5;
    }
    .order-xl-6 {
        order: 6;
    }
    .order-xl-7 {
        order: 7;
    }
    .order-xl-8 {
        order: 8;
    }
    .order-xl-9 {
        order: 9;
    }
    .order-xl-10 {
        order: 10;
    }
    .order-xl-11 {
        order: 11;
    }
    .order-xl-12 {
        order: 12;
    }
    .offset-xl-0 {
        margin-left: 0;
    }
    .offset-xl-1 {
        margin-left: 8.3333333333%;
    }
    .offset-xl-2 {
        margin-left: 16.6666666667%;
    }
    .offset-xl-3 {
        margin-left: 25%;
    }
    .offset-xl-4 {
        margin-left: 33.3333333333%;
    }
    .offset-xl-5 {
        margin-left: 41.6666666667%;
    }
    .offset-xl-6 {
        margin-left: 50%;
    }
    .offset-xl-7 {
        margin-left: 58.3333333333%;
    }
    .offset-xl-8 {
        margin-left: 66.6666666667%;
    }
    .offset-xl-9 {
        margin-left: 75%;
    }
    .offset-xl-10 {
        margin-left: 83.3333333333%;
    }
    .offset-xl-11 {
        margin-left: 91.6666666667%;
    }
}
.table,
.wp-block-table {
    width: 100%;
    margin-bottom: 1rem;
    color: #333;
}
.table td,
.table th,
.wp-block-table td,
.wp-block-table th {
    padding: 0.75rem 1rem;
    vertical-align: top;
    border-top: 1px solid #eee;
}
.table thead th,
.wp-block-table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eee;
}
.table tbody + tbody,
.wp-block-table tbody + tbody {
    border-top: 2px solid #eee;
}
.table-sm td,
.table-sm th {
    padding: 0.3rem;
}
.table-bordered,
.table-bordered td,
.table-bordered th,
.wp-block-table,
.wp-block-table.is-style-stripes,
.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th,
.wp-block-table td,
.wp-block-table th {
    border: 1px solid #eee;
}
.table-bordered thead td,
.table-bordered thead th,
.wp-block-table.is-style-stripes thead td,
.wp-block-table.is-style-stripes thead th,
.wp-block-table thead td,
.wp-block-table thead th {
    border-bottom-width: 2px;
}
.table-borderless tbody + tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
    border: 0;
}
.table-striped tbody tr:nth-of-type(odd),
.wp-block-table.is-style-stripes tbody tr:nth-of-type(odd) {
    background-color: #eee;
}
.table-hover tbody tr:hover {
    color: #333;
    background-color: #9e9e9e;
}
.table-primary,
.table-primary > td,
.table-primary > th {
    background-color: #bbd2e8;
}
.table-primary tbody + tbody,
.table-primary td,
.table-primary th,
.table-primary thead th {
    border-color: #81acd4;
}
.table-hover .table-primary:hover,
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
    background-color: #a8c5e2;
}
.table-secondary,
.table-secondary > td,
.table-secondary > th {
    background-color: #d3d3d3;
}
.table-secondary tbody + tbody,
.table-secondary td,
.table-secondary th,
.table-secondary thead th {
    border-color: #adadad;
}
.table-hover .table-secondary:hover,
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
    background-color: #c6c6c6;
}
.table-success,
.table-success > td,
.table-success > th {
    background-color: #bde0d6;
}
.table-success tbody + tbody,
.table-success td,
.table-success th,
.table-success thead th {
    border-color: #85c6b3;
}
.table-hover .table-success:hover,
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
    background-color: #acd8cb;
}
.table-info,
.table-info > td,
.table-info > th {
    background-color: #bbd2e8;
}
.table-info tbody + tbody,
.table-info td,
.table-info th,
.table-info thead th {
    border-color: #81acd4;
}
.table-hover .table-info:hover,
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
    background-color: #a8c5e2;
}
.table-warning,
.table-warning > td,
.table-warning > th {
    background-color: #fff9c8;
}
.table-warning tbody + tbody,
.table-warning td,
.table-warning th,
.table-warning thead th {
    border-color: #fff599;
}
.table-hover .table-warning:hover,
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
    background-color: #fff6af;
}
.table-danger,
.table-danger > td,
.table-danger > th {
    background-color: #f4babd;
}
.table-danger tbody + tbody,
.table-danger td,
.table-danger th,
.table-danger thead th {
    border-color: #ea8085;
}
.table-hover .table-danger:hover,
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
    background-color: #f0a4a8;
}
.table-light,
.table-light > td,
.table-light > th {
    background-color: #e4e4e4;
}
.table-light tbody + tbody,
.table-light td,
.table-light th,
.table-light thead th {
    border-color: #cdcdcd;
}
.table-hover .table-light:hover,
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
    background-color: #d7d7d7;
}
.table-dark,
.table-dark > td,
.table-dark > th {
    background-color: #d3d3d3;
}
.table-dark tbody + tbody,
.table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #adadad;
}
.table-hover .table-dark:hover,
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
    background-color: #c6c6c6;
}
.table-active,
.table-active > td,
.table-active > th {
    background-color: #9e9e9e;
}
.table-hover .table-active:hover,
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
    background-color: #919191;
}
.table .thead-dark th,
.wp-block-table .thead-dark th {
    color: #fff;
    background-color: #343a40;
    border-color: #454d55;
}
.table .thead-light th,
.wp-block-table .thead-light th {
    color: #424242;
    background-color: #eee;
    border-color: #eee;
}
.table-dark {
    color: #fff;
    background-color: #343a40;
}
.table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #454d55;
}
.table-dark.table-bordered,
.table-dark.wp-block-table {
    border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd),
.table-dark.wp-block-table.is-style-stripes tbody tr:nth-of-type(odd) {
    background-color: hsla(0, 0%, 100%, 0.05);
}
.table-dark.table-hover tbody tr:hover {
    color: #fff;
    background-color: hsla(0, 0%, 100%, 0.075);
}
@media (max-width: 575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-sm > .table-bordered,
    .table-responsive-sm > .wp-block-table {
        border: 0;
    }
}
@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-md > .table-bordered,
    .table-responsive-md > .wp-block-table {
        border: 0;
    }
}
@media (max-width: 991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-lg > .table-bordered,
    .table-responsive-lg > .wp-block-table {
        border: 0;
    }
}
@media (max-width: 1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-xl > .table-bordered,
    .table-responsive-xl > .wp-block-table {
        border: 0;
    }
}
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered,
.table-responsive > .wp-block-table {
    border: 0;
}
.btn,
form.frm-fluent-form .btn-success,
form.frm-fluent-form .ff-btn-secondary[data-action="next"],
form.frm-fluent-form .ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .ff-btn-submit.btn-success {
    display: inline-block;
    font-weight: 400;
    color: #333;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .btn,
    form.frm-fluent-form .btn-success,
    form.frm-fluent-form .ff-btn-secondary[data-action="next"],
    form.frm-fluent-form .ff-btn-secondary[data-action="prev"],
    form.frm-fluent-form .ff-btn-submit.btn-success {
        transition: none;
    }
}
.btn:hover,
form.frm-fluent-form .btn-success:hover,
form.frm-fluent-form .ff-btn-secondary[data-action="next"]:hover,
form.frm-fluent-form .ff-btn-secondary[data-action="prev"]:hover {
    color: #333;
    text-decoration: none;
}
.btn.focus,
.btn:focus,
form.frm-fluent-form .btn-success:focus,
form.frm-fluent-form .ff-btn-secondary[data-action="next"]:focus,
form.frm-fluent-form .ff-btn-secondary[data-action="prev"]:focus,
form.frm-fluent-form .focus.btn-success,
form.frm-fluent-form .focus.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .focus.ff-btn-secondary[data-action="prev"] {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(13, 95, 173, 0.25);
}
.btn.disabled,
.btn:disabled,
form.frm-fluent-form .btn-success:disabled,
form.frm-fluent-form .disabled.btn-success,
form.frm-fluent-form .disabled.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .disabled.ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .ff-btn-secondary[data-action="next"]:disabled,
form.frm-fluent-form .ff-btn-secondary[data-action="prev"]:disabled {
    opacity: 0.65;
}
a.btn.disabled,
fieldset:disabled a.btn,
fieldset:disabled form.frm-fluent-form a.btn-success,
fieldset:disabled form.frm-fluent-form a.ff-btn-secondary[data-action="next"],
fieldset:disabled form.frm-fluent-form a.ff-btn-secondary[data-action="prev"],
form.frm-fluent-form a.disabled.btn-success,
form.frm-fluent-form a.disabled.ff-btn-secondary[data-action="next"],
form.frm-fluent-form a.disabled.ff-btn-secondary[data-action="prev"],
form.frm-fluent-form fieldset:disabled a.btn-success,
form.frm-fluent-form fieldset:disabled a.ff-btn-secondary[data-action="next"],
form.frm-fluent-form fieldset:disabled a.ff-btn-secondary[data-action="prev"] {
    pointer-events: none;
}
.btn-primary,
form.frm-fluent-form .btn-primary {
    color: #fff;
    background-color: #0d5fad;
    border-color: #0d5fad;
}
.btn-primary:hover,
form.frm-fluent-form .btn-primary:hover {
    color: #fff;
    background-color: #0a4b89;
    border-color: #09457e;
}
.btn-primary.focus,
.btn-primary:focus,
form.frm-fluent-form .btn-primary:focus,
form.frm-fluent-form .focus.btn-primary {
    box-shadow: 0 0 0 0.2rem rgba(49, 119, 185, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled,
form.frm-fluent-form .btn-primary:disabled,
form.frm-fluent-form .disabled.btn-primary {
    color: #fff;
    background-color: #0d5fad;
    border-color: #0d5fad;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle,
form.frm-fluent-form .show > .dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #09457e;
    border-color: #093e72;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(49, 119, 185, 0.5);
}
.btn-secondary {
    color: #fff;
    background-color: #616161;
    border-color: #616161;
}
.btn-secondary:hover {
    color: #fff;
    background-color: #4e4e4e;
    border-color: #484848;
}
.btn-secondary.focus,
.btn-secondary:focus {
    box-shadow: 0 0 0 0.2rem hsla(0, 0%, 47.5%, 0.5);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #616161;
    border-color: #616161;
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #484848;
    border-color: #414141;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem hsla(0, 0%, 47.5%, 0.5);
}
.btn-success {
    color: #fff;
    background-color: #14916c;
    border-color: #14916c;
}
.btn-success:hover {
    color: #fff;
    background-color: #0f6f53;
    border-color: #0e644b;
}
.btn-success.focus,
.btn-success:focus {
    box-shadow: 0 0 0 0.2rem rgba(55, 162, 130, 0.5);
}
.btn-success.disabled,
.btn-success:disabled {
    color: #fff;
    background-color: #14916c;
    border-color: #14916c;
}
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #0e644b;
    border-color: #0c5942;
}
.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(55, 162, 130, 0.5);
}
.btn-info {
    color: #fff;
    background-color: #0d5fad;
    border-color: #0d5fad;
}
.btn-info:hover {
    color: #fff;
    background-color: #0a4b89;
    border-color: #09457e;
}
.btn-info.focus,
.btn-info:focus {
    box-shadow: 0 0 0 0.2rem rgba(49, 119, 185, 0.5);
}
.btn-info.disabled,
.btn-info:disabled {
    color: #fff;
    background-color: #0d5fad;
    border-color: #0d5fad;
}
.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #09457e;
    border-color: #093e72;
}
.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(49, 119, 185, 0.5);
}
.btn-warning {
    color: #212529;
    background-color: #ffeb3b;
    border-color: #ffeb3b;
}
.btn-warning:hover {
    color: #212529;
    background-color: #ffe715;
    border-color: #ffe608;
}
.btn-warning.focus,
.btn-warning:focus {
    box-shadow: 0 0 0 0.2rem rgba(222, 205, 56, 0.5);
}
.btn-warning.disabled,
.btn-warning:disabled {
    color: #212529;
    background-color: #ffeb3b;
    border-color: #ffeb3b;
}
.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffe608;
    border-color: #fae100;
}
.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(222, 205, 56, 0.5);
}
.btn-danger {
    color: #fff;
    background-color: #d60a15;
    border-color: #d60a15;
}
.btn-danger:hover {
    color: #fff;
    background-color: #b10811;
    border-color: #a50810;
}
.btn-danger.focus,
.btn-danger:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 47, 56, 0.5);
}
.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #d60a15;
    border-color: #d60a15;
}
.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #a50810;
    border-color: #99070f;
}
.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 47, 56, 0.5);
}
.btn-light {
    color: #212529;
    background-color: #9e9e9e;
    border-color: #9e9e9e;
}
.btn-light:hover {
    color: #fff;
    background-color: #8b8b8b;
    border-color: #858585;
}
.btn-light.focus,
.btn-light:focus {
    box-shadow: 0 0 0 0.2rem rgba(139, 140, 140, 0.5);
}
.btn-light.disabled,
.btn-light:disabled {
    color: #212529;
    background-color: #9e9e9e;
    border-color: #9e9e9e;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
    color: #fff;
    background-color: #858585;
    border-color: #7e7e7e;
}
.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(139, 140, 140, 0.5);
}
.btn-dark {
    color: #fff;
    background-color: #616161;
    border-color: #616161;
}
.btn-dark:hover {
    color: #fff;
    background-color: #4e4e4e;
    border-color: #484848;
}
.btn-dark.focus,
.btn-dark:focus {
    box-shadow: 0 0 0 0.2rem hsla(0, 0%, 47.5%, 0.5);
}
.btn-dark.disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: #616161;
    border-color: #616161;
}
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #484848;
    border-color: #414141;
}
.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem hsla(0, 0%, 47.5%, 0.5);
}
.btn-outline-primary {
    color: #0d5fad;
    border-color: #0d5fad;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: #0d5fad;
    border-color: #0d5fad;
}
.btn-outline-primary.focus,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 95, 173, 0.5);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #0d5fad;
    background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #0d5fad;
    border-color: #0d5fad;
}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 95, 173, 0.5);
}
.btn-outline-secondary {
    color: #616161;
    border-color: #616161;
}
.btn-outline-secondary:hover {
    color: #fff;
    background-color: #616161;
    border-color: #616161;
}
.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.2rem rgba(97, 97, 97, 0.5);
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #616161;
    background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #616161;
    border-color: #616161;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(97, 97, 97, 0.5);
}
.btn-outline-success {
    color: #14916c;
    border-color: #14916c;
}
.btn-outline-success:hover {
    color: #fff;
    background-color: #14916c;
    border-color: #14916c;
}
.btn-outline-success.focus,
.btn-outline-success:focus {
    box-shadow: 0 0 0 0.2rem rgba(20, 145, 108, 0.5);
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #14916c;
    background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #14916c;
    border-color: #14916c;
}
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(20, 145, 108, 0.5);
}
.btn-outline-info {
    color: #0d5fad;
    border-color: #0d5fad;
}
.btn-outline-info:hover {
    color: #fff;
    background-color: #0d5fad;
    border-color: #0d5fad;
}
.btn-outline-info.focus,
.btn-outline-info:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 95, 173, 0.5);
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #0d5fad;
    background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #0d5fad;
    border-color: #0d5fad;
}
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 95, 173, 0.5);
}
.btn-outline-warning {
    color: #ffeb3b;
    border-color: #ffeb3b;
}
.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffeb3b;
    border-color: #ffeb3b;
}
.btn-outline-warning.focus,
.btn-outline-warning:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 235, 59, 0.5);
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #ffeb3b;
    background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffeb3b;
    border-color: #ffeb3b;
}
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 235, 59, 0.5);
}
.btn-outline-danger {
    color: #d60a15;
    border-color: #d60a15;
}
.btn-outline-danger:hover {
    color: #fff;
    background-color: #d60a15;
    border-color: #d60a15;
}
.btn-outline-danger.focus,
.btn-outline-danger:focus {
    box-shadow: 0 0 0 0.2rem rgba(214, 10, 21, 0.5);
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #d60a15;
    background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #d60a15;
    border-color: #d60a15;
}
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(214, 10, 21, 0.5);
}
.btn-outline-light {
    color: #9e9e9e;
    border-color: #9e9e9e;
}
.btn-outline-light:hover {
    color: #212529;
    background-color: #9e9e9e;
    border-color: #9e9e9e;
}
.btn-outline-light.focus,
.btn-outline-light:focus {
    box-shadow: 0 0 0 0.2rem hsla(0, 0%, 62%, 0.5);
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #9e9e9e;
    background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #9e9e9e;
    border-color: #9e9e9e;
}
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem hsla(0, 0%, 62%, 0.5);
}
.btn-outline-dark {
    color: #616161;
    border-color: #616161;
}
.btn-outline-dark:hover {
    color: #fff;
    background-color: #616161;
    border-color: #616161;
}
.btn-outline-dark.focus,
.btn-outline-dark:focus {
    box-shadow: 0 0 0 0.2rem rgba(97, 97, 97, 0.5);
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #616161;
    background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #616161;
    border-color: #616161;
}
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(97, 97, 97, 0.5);
}
.btn-link {
    font-weight: 400;
    color: #0d5fad;
    text-decoration: none;
}
.btn-link:hover {
    color: #083866;
    text-decoration: underline;
}
.btn-link.focus,
.btn-link:focus {
    text-decoration: underline;
    box-shadow: none;
}
.btn-link.disabled,
.btn-link:disabled {
    color: #6c757d;
    pointer-events: none;
}
.btn-lg {
    padding: 1rem 1.75rem;
    font-size: 1.25rem;
}
.btn-lg,
.btn-sm {
    line-height: 1.5;
    border-radius: 0;
}
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}
.btn-block,
.card--horizontal .card-body .card__button-wrapper .btn,
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .btn-success,
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .ff-btn-secondary[data-action="next"],
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .btn-success,
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .ff-btn-secondary[data-action="next"],
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .ff-btn-secondary[data-action="prev"] {
    display: block;
    width: 100%;
}
.btn-block + .btn-block,
.card--horizontal .card-body .card__button-wrapper .btn + .btn,
.card--horizontal .card-body .card__button-wrapper .btn + .btn-block,
.card--horizontal .card-body .card__button-wrapper .btn-block + .btn,
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .btn + .btn-success,
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .btn + .ff-btn-secondary[data-action="next"],
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .btn + .ff-btn-secondary[data-action="prev"],
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .btn-block + .btn-success,
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    .btn-block
    + .ff-btn-secondary[data-action="next"],
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    .btn-block
    + .ff-btn-secondary[data-action="prev"],
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .btn-success + .btn,
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .btn-success + .btn-block,
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .btn-success + .btn-success,
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    .btn-success
    + .ff-btn-secondary[data-action="next"],
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    .btn-success
    + .ff-btn-secondary[data-action="prev"],
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .ff-btn-secondary[data-action="next"] + .btn,
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    .ff-btn-secondary[data-action="next"]
    + .btn-block,
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    .ff-btn-secondary[data-action="next"]
    + .btn-success,
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    .ff-btn-secondary[data-action="next"]
    + .ff-btn-secondary[data-action="next"],
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    .ff-btn-secondary[data-action="next"]
    + .ff-btn-secondary[data-action="prev"],
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .ff-btn-secondary[data-action="prev"] + .btn,
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    .ff-btn-secondary[data-action="prev"]
    + .btn-block,
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    .ff-btn-secondary[data-action="prev"]
    + .btn-success,
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    .ff-btn-secondary[data-action="prev"]
    + .ff-btn-secondary[data-action="next"],
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    .ff-btn-secondary[data-action="prev"]
    + .ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .btn + .btn-success,
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .btn + .ff-btn-secondary[data-action="next"],
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .btn + .ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .btn-block + .btn-success,
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    .btn-block
    + .ff-btn-secondary[data-action="next"],
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    .btn-block
    + .ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .btn-success + .btn,
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .btn-success + .btn-block,
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .btn-success + .btn-success,
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    .btn-success
    + .ff-btn-secondary[data-action="next"],
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    .btn-success
    + .ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .ff-btn-secondary[data-action="next"] + .btn,
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    .ff-btn-secondary[data-action="next"]
    + .btn-block,
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    .ff-btn-secondary[data-action="next"]
    + .btn-success,
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    .ff-btn-secondary[data-action="next"]
    + .ff-btn-secondary[data-action="next"],
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    .ff-btn-secondary[data-action="next"]
    + .ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .ff-btn-secondary[data-action="prev"] + .btn,
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    .ff-btn-secondary[data-action="prev"]
    + .btn-block,
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    .ff-btn-secondary[data-action="prev"]
    + .btn-success,
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    .ff-btn-secondary[data-action="prev"]
    + .ff-btn-secondary[data-action="next"],
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    .ff-btn-secondary[data-action="prev"]
    + .ff-btn-secondary[data-action="prev"] {
    margin-top: 0.5rem;
}
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form input[type="button"].btn-success,
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    input[type="button"].ff-btn-secondary[data-action="next"],
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    input[type="button"].ff-btn-secondary[data-action="prev"],
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form input[type="reset"].btn-success,
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    input[type="reset"].ff-btn-secondary[data-action="next"],
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    input[type="reset"].ff-btn-secondary[data-action="prev"],
.card--horizontal .card-body .card__button-wrapper form.frm-fluent-form input[type="submit"].btn-success,
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    input[type="submit"].ff-btn-secondary[data-action="next"],
.card--horizontal
    .card-body
    .card__button-wrapper
    form.frm-fluent-form
    input[type="submit"].ff-btn-secondary[data-action="prev"],
.card--horizontal .card-body .card__button-wrapper input[type="button"].btn,
.card--horizontal .card-body .card__button-wrapper input[type="reset"].btn,
.card--horizontal .card-body .card__button-wrapper input[type="submit"].btn,
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper input[type="button"].btn-success,
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    input[type="button"].ff-btn-secondary[data-action="next"],
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    input[type="button"].ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper input[type="reset"].btn-success,
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    input[type="reset"].ff-btn-secondary[data-action="next"],
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    input[type="reset"].ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper input[type="submit"].btn-success,
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    input[type="submit"].ff-btn-secondary[data-action="next"],
form.frm-fluent-form
    .card--horizontal
    .card-body
    .card__button-wrapper
    input[type="submit"].ff-btn-secondary[data-action="prev"],
input[type="button"].btn-block,
input[type="reset"].btn-block,
input[type="submit"].btn-block {
    width: 100%;
}
.fade {
    transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}
.fade:not(.show) {
    opacity: 0;
}
.collapse:not(.show) {
    display: none;
}
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}
.dropdown,
.dropleft,
.dropright,
.dropup {
    position: relative;
}
.dropdown-toggle {
    white-space: nowrap;
}
.dropdown-toggle:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty:after {
    margin-left: 0;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #333;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
}
.dropdown-menu-left {
    right: auto;
    left: 0;
}
.dropdown-menu-right {
    right: 0;
    left: auto;
}
@media (min-width: 576px) {
    .dropdown-menu-sm-left {
        right: auto;
        left: 0;
    }
    .dropdown-menu-sm-right {
        right: 0;
        left: auto;
    }
}
@media (min-width: 768px) {
    .dropdown-menu-md-left {
        right: auto;
        left: 0;
    }
    .dropdown-menu-md-right {
        right: 0;
        left: auto;
    }
}
@media (min-width: 992px) {
    .dropdown-menu-lg-left {
        right: auto;
        left: 0;
    }
    .dropdown-menu-lg-right {
        right: 0;
        left: auto;
    }
}
@media (min-width: 1200px) {
    .dropdown-menu-xl-left {
        right: auto;
        left: 0;
    }
    .dropdown-menu-xl-right {
        right: 0;
        left: auto;
    }
}
.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty:after {
    margin-left: 0;
}
.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem;
}
.dropright .dropdown-toggle:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty:after {
    margin-left: 0;
}
.dropright .dropdown-toggle:after {
    vertical-align: 0;
}
.dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem;
}
.dropleft .dropdown-toggle:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    display: none;
}
.dropleft .dropdown-toggle:before {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty:after {
    margin-left: 0;
}
.dropleft .dropdown-toggle:before {
    vertical-align: 0;
}
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="top"] {
    right: auto;
    bottom: auto;
}
.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}
.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0d5fad;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
}
.dropdown-menu.show {
    display: block;
}
.dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #6c757d;
    white-space: nowrap;
}
.dropdown-item-text {
    display: block;
    padding: 0.25rem 1.5rem;
    color: #212529;
}

/*  Netzmaedchen Auskommentiert 25-12-09 
.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}
.custom-control-inline {
    display: inline-flex;
    margin-right: 1rem;
}
.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label:before {
    color: #fff;
    border-color: #0d5fad;
    background-color: #0d5fad;
}
.custom-control-input:focus ~ .custom-control-label:before {
    box-shadow: 0 0 0 0.2rem rgba(13, 95, 173, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label:before {
    border-color: #489ff1;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label:before {
    color: #fff;
    background-color: #78b8f5;
    border-color: #78b8f5;
}
.custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label:before {
    background-color: #e9ecef;
}
.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
}
.custom-control-label:before {
    pointer-events: none;
    background-color: #fff;
    border: 1px solid #757575;
}
.custom-control-label:after,
.custom-control-label:before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
}
.custom-control-label:after {
    background: no-repeat 50%/50% 50%;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label:before {
    border-color: #0d5fad;
    background-color: #0d5fad;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label:before {
    background-color: rgba(13, 95, 173, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label:before {
    background-color: rgba(13, 95, 173, 0.5);
}
.custom-radio .custom-control-label:before {
    border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label:before {
    background-color: rgba(13, 95, 173, 0.5);
}
.custom-switch {
    padding-left: 2.25rem;
}
.custom-switch .custom-control-label:before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: 0.5rem;
}
.custom-switch .custom-control-label:after {
    top: calc(0.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #757575;
    border-radius: 0.5rem;
    transition:
        transform 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .custom-switch .custom-control-label:after {
        transition: none;
    }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label:after {
    background-color: #fff;
    transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label:before {
    background-color: rgba(13, 95, 173, 0.5);
}
.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 1.5rem + 2px);
    padding: 0.75rem 2.25rem 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E")
        no-repeat right 1.25rem center/8px 10px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.custom-select:focus {
    border-color: #489ff1;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(13, 95, 173, 0.25);
}
.custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}
.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 1.25rem;
    background-image: none;
}
.custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef;
}
.custom-select::-ms-expand {
    display: none;
}
.custom-select-sm {
    height: calc(1.5em + 1rem + 2px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 0.875rem;
}
.custom-select-lg {
    height: calc(1.5em + 2rem + 2px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.75rem;
    font-size: 1.25rem;
}
.custom-file {
    display: inline-block;
    margin-bottom: 0;
}
.custom-file,
.custom-file-input {
    position: relative;
    width: 100%;
    height: calc(1.5em + 1.5rem + 2px);
}
.custom-file-input {
    z-index: 2;
    margin: 0;
    opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
    border-color: #489ff1;
    box-shadow: 0 0 0 0.2rem rgba(13, 95, 173, 0.25);
}
.custom-file-input:disabled ~ .custom-file-label {
    background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label:after {
    content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]:after {
    content: attr(data-browse);
}
.custom-file-label {
    left: 0;
    z-index: 1;
    height: calc(1.5em + 1.5rem + 2px);
    font-weight: 400;
    background-color: #fff;
    border: 1px solid #ced4da;
}
.custom-file-label,
.custom-file-label:after {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    line-height: 1.5;
    color: #495057;
}
.custom-file-label:after {
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + 1.5rem);
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
}
.custom-range {
    width: 100%;
    height: 1.4rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.custom-range:focus {
    outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
    box-shadow:
        0 0 0 1px #f7f7f7,
        0 0 0 0.2rem rgba(13, 95, 173, 0.25);
}
.custom-range:focus::-moz-range-thumb {
    box-shadow:
        0 0 0 1px #f7f7f7,
        0 0 0 0.2rem rgba(13, 95, 173, 0.25);
}
.custom-range:focus::-ms-thumb {
    box-shadow:
        0 0 0 1px #f7f7f7,
        0 0 0 0.2rem rgba(13, 95, 173, 0.25);
}
.custom-range::-moz-focus-outer {
    border: 0;
}
.custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #0d5fad;
    border: 0;
    transition:
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}
@media (prefers-reduced-motion: reduce) {
    .custom-range::-webkit-slider-thumb {
        transition: none;
    }
}
.custom-range::-webkit-slider-thumb:active {
    background-color: #78b8f5;
}
.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
}
.custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #0d5fad;
    border: 0;
    transition:
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
    appearance: none;
}
@media (prefers-reduced-motion: reduce) {
    .custom-range::-moz-range-thumb {
        transition: none;
    }
}
.custom-range::-moz-range-thumb:active {
    background-color: #78b8f5;
}
.custom-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
}
.custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: 0.2rem;
    margin-left: 0.2rem;
    background-color: #0d5fad;
    border: 0;
    transition:
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
    appearance: none;
}
@media (prefers-reduced-motion: reduce) {
    .custom-range::-ms-thumb {
        transition: none;
    }
}
.custom-range::-ms-thumb:active {
    background-color: #78b8f5;
}
.custom-range::-ms-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
    background-color: #dee2e6;
}
.custom-range::-ms-fill-upper {
    margin-right: 15px;
    background-color: #dee2e6;
}
.custom-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
    background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
    cursor: default;
}
.custom-range:disabled::-ms-thumb {
    background-color: #adb5bd;
}
.custom-control-label:before,
.custom-file-label,
.custom-select {
    transition:
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .custom-control-label:before,
    .custom-file-label,
    .custom-select {
        transition: none;
    }
}*/
.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}
.nav-link:focus,
.nav-link:hover {
    text-decoration: none;
}
.nav-link.disabled {
    color: #757575;
    pointer-events: none;
    cursor: default;
}
.nav-tabs {
    border-bottom: 1px solid #9e9e9e;
}
.nav-tabs .nav-item {
    margin-bottom: -1px;
}
.nav-tabs .nav-link {
    border: 1px solid transparent;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #757575 #757575 #9e9e9e;
}
.nav-tabs .nav-link.disabled {
    color: #757575;
    background-color: transparent;
    border-color: transparent;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #424242;
    background-color: #f7f7f7;
    border-color: #9e9e9e #9e9e9e #f7f7f7;
}
.nav-tabs .dropdown-menu {
    margin-top: -1px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #0d5fad;
}
.nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center;
}
.nav-justified .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}
.tab-content > .tab-pane {
    display: none;
}
.tab-content > .active {
    display: block;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
}
.card > hr {
    margin-right: 0;
    margin-left: 0;
}
.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}
.card-title {
    margin-bottom: 0.75rem;
}
.card-subtitle {
    margin-top: -0.375rem;
}
.card-subtitle,
.card-text:last-child {
    margin-bottom: 0;
}
.card-link:hover {
    text-decoration: none;
}
.card-link + .card-link {
    margin-left: 1.25rem;
}
.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header + .list-group .list-group-item:first-child {
    border-top: 0;
}
.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header-tabs {
    margin-bottom: -0.75rem;
    border-bottom: 0;
}
.card-header-pills,
.card-header-tabs {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}
.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}
.card-img,
.card-img-bottom,
.card-img-top {
    width: 100%;
}
.card-deck {
    display: flex;
    flex-direction: column;
}
.card-deck .card {
    margin-bottom: 15px;
}
@media (min-width: 576px) {
    .card-deck {
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
    .card-deck .card {
        display: flex;
        flex: 1 0 0%;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }
}
.card-group {
    display: flex;
    flex-direction: column;
}
.card-group > .card {
    margin-bottom: 15px;
}
@media (min-width: 576px) {
    .card-group {
        flex-flow: row wrap;
    }
    .card-group > .card {
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }
}
.card-columns .card {
    margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
    .card-columns {
        -moz-column-count: 3;
        column-count: 3;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}
.accordion > .card {
    overflow: hidden;
}
.accordion > .card:first-of-type,
.accordion > .card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 0;
}
.accordion > .card .card-header {
    margin-bottom: -1px;
}
.media {
    display: flex;
    align-items: flex-start;
}
.media-body {
    flex: 1;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
}
.close:hover {
    color: #000;
    text-decoration: none;
}
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    opacity: 0.75;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
a.close.disabled {
    pointer-events: none;
}
.modal-open {
    overflow: hidden;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translateY(-50px);
}
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}
.modal.show .modal-dialog {
    transform: none;
}
.modal-dialog-scrollable {
    display: flex;
    max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden;
}
.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
    flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}
.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}
.modal-dialog-centered:before {
    display: block;
    height: calc(100vh - 1rem);
    content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable:before {
    content: none;
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    outline: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show {
    opacity: 0.5;
}
.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}
.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}
.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #eee;
}
.modal-footer > :not(:first-child) {
    margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
    margin-right: 0.25rem;
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem);
    }
    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem);
    }
    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }
    .modal-dialog-centered:before {
        height: calc(100vh - 3.5rem);
    }
    .modal-sm {
        max-width: 300px;
    }
}
@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}
@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family:
        Noto Sans,
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}
.tooltip.show {
    opacity: 0.9;
}
.tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}
.tooltip .arrow:before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}
.bs-tooltip-auto[x-placement^="top"],
.bs-tooltip-top {
    padding: 0.4rem 0;
}
.bs-tooltip-auto[x-placement^="top"] .arrow,
.bs-tooltip-top .arrow {
    bottom: 0;
}
.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.bs-tooltip-top .arrow:before {
    top: 0;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #000;
}
.bs-tooltip-auto[x-placement^="right"],
.bs-tooltip-right {
    padding: 0 0.4rem;
}
.bs-tooltip-auto[x-placement^="right"] .arrow,
.bs-tooltip-right .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}
.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.bs-tooltip-right .arrow:before {
    right: 0;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #000;
}
.bs-tooltip-auto[x-placement^="bottom"],
.bs-tooltip-bottom {
    padding: 0.4rem 0;
}
.bs-tooltip-auto[x-placement^="bottom"] .arrow,
.bs-tooltip-bottom .arrow {
    top: 0;
}
.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.bs-tooltip-bottom .arrow:before {
    bottom: 0;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #000;
}
.bs-tooltip-auto[x-placement^="left"],
.bs-tooltip-left {
    padding: 0 0.4rem;
}
.bs-tooltip-auto[x-placement^="left"] .arrow,
.bs-tooltip-left .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}
.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.bs-tooltip-left .arrow:before {
    left: 0;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #000;
}
.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
}
.align-baseline {
    vertical-align: baseline !important;
}
.align-top {
    vertical-align: top !important;
}
.align-middle {
    vertical-align: middle !important;
}
.align-bottom {
    vertical-align: bottom !important;
}
.align-text-bottom {
    vertical-align: text-bottom !important;
}
.align-text-top {
    vertical-align: text-top !important;
}
.bg-primary {
    background-color: #0d5fad !important;
}
a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
    background-color: #09457e !important;
}
.bg-secondary {
    background-color: #616161 !important;
}
a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
    background-color: #484848 !important;
}
.bg-success {
    background-color: #14916c !important;
}
a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
    background-color: #0e644b !important;
}
.bg-info {
    background-color: #0d5fad !important;
}
a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
    background-color: #09457e !important;
}
.bg-warning {
    background-color: #ffeb3b !important;
}
a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
    background-color: #ffe608 !important;
}
.bg-danger {
    background-color: #d60a15 !important;
}
a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
    background-color: #a50810 !important;
}
.bg-light {
    background-color: #9e9e9e !important;
}
a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
    background-color: #858585 !important;
}
.bg-dark {
    background-color: #616161 !important;
}
a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
    background-color: #484848 !important;
}
.bg-white {
    background-color: #fff !important;
}
.bg-transparent {
    background-color: transparent !important;
}
.border {
    border: 1px solid #dee2e6 !important;
}
.border-top {
    border-top: 1px solid #dee2e6 !important;
}
.border-right {
    border-right: 1px solid #dee2e6 !important;
}
.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}
.border-left {
    border-left: 1px solid #dee2e6 !important;
}
.border-0 {
    border: 0 !important;
}
.border-top-0 {
    border-top: 0 !important;
}
.border-right-0 {
    border-right: 0 !important;
}
.border-bottom-0 {
    border-bottom: 0 !important;
}
.border-left-0 {
    border-left: 0 !important;
}
.border-primary {
    border-color: #0d5fad !important;
}
.border-secondary {
    border-color: #616161 !important;
}
.border-success {
    border-color: #14916c !important;
}
.border-info {
    border-color: #0d5fad !important;
}
.border-warning {
    border-color: #ffeb3b !important;
}
.border-danger {
    border-color: #d60a15 !important;
}
.border-light {
    border-color: #9e9e9e !important;
}
.border-dark {
    border-color: #616161 !important;
}
.border-white {
    border-color: #fff !important;
}
.rounded-sm {
    border-radius: 0.2rem !important;
}
.rounded {
    border-radius: 0.25rem !important;
}
.rounded-top {
    border-top-left-radius: 0.25rem !important;
}
.rounded-right,
.rounded-top {
    border-top-right-radius: 0.25rem !important;
}
.rounded-bottom,
.rounded-right {
    border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom,
.rounded-left {
    border-bottom-left-radius: 0.25rem !important;
}
.rounded-left {
    border-top-left-radius: 0.25rem !important;
}
.rounded-lg {
    border-radius: 0.3rem !important;
}
.rounded-circle {
    border-radius: 50% !important;
}
.rounded-pill {
    border-radius: 50rem !important;
}
.rounded-0 {
    border-radius: 0 !important;
}
.clearfix:after {
    display: block;
    clear: both;
    content: "";
}
.d-none {
    display: none !important;
}
.d-inline {
    display: inline !important;
}
.d-inline-block {
    display: inline-block !important;
}
.d-block {
    display: block !important;
}
.d-table {
    display: table !important;
}
.d-table-row {
    display: table-row !important;
}
.d-table-cell {
    display: table-cell !important;
}
.d-flex {
    display: flex !important;
}
.d-inline-flex {
    display: inline-flex !important;
}
@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }
    .d-sm-inline {
        display: inline !important;
    }
    .d-sm-inline-block {
        display: inline-block !important;
    }
    .d-sm-block {
        display: block !important;
    }
    .d-sm-table {
        display: table !important;
    }
    .d-sm-table-row {
        display: table-row !important;
    }
    .d-sm-table-cell {
        display: table-cell !important;
    }
    .d-sm-flex {
        display: flex !important;
    }
    .d-sm-inline-flex {
        display: inline-flex !important;
    }
}
@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-table {
        display: table !important;
    }
    .d-md-table-row {
        display: table-row !important;
    }
    .d-md-table-cell {
        display: table-cell !important;
    }
    .d-md-flex {
        display: flex !important;
    }
    .d-md-inline-flex {
        display: inline-flex !important;
    }
}
@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-inline {
        display: inline !important;
    }
    .d-lg-inline-block {
        display: inline-block !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-table {
        display: table !important;
    }
    .d-lg-table-row {
        display: table-row !important;
    }
    .d-lg-table-cell {
        display: table-cell !important;
    }
    .d-lg-flex {
        display: flex !important;
    }
    .d-lg-inline-flex {
        display: inline-flex !important;
    }
}
@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }
    .d-xl-inline {
        display: inline !important;
    }
    .d-xl-inline-block {
        display: inline-block !important;
    }
    .d-xl-block {
        display: block !important;
    }
    .d-xl-table {
        display: table !important;
    }
    .d-xl-table-row {
        display: table-row !important;
    }
    .d-xl-table-cell {
        display: table-cell !important;
    }
    .d-xl-flex {
        display: flex !important;
    }
    .d-xl-inline-flex {
        display: inline-flex !important;
    }
}
@media print {
    .d-print-none {
        display: none !important;
    }
    .d-print-inline {
        display: inline !important;
    }
    .d-print-inline-block {
        display: inline-block !important;
    }
    .d-print-block {
        display: block !important;
    }
    .d-print-table {
        display: table !important;
    }
    .d-print-table-row {
        display: table-row !important;
    }
    .d-print-table-cell {
        display: table-cell !important;
    }
    .d-print-flex {
        display: flex !important;
    }
    .d-print-inline-flex {
        display: inline-flex !important;
    }
}
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.embed-responsive:before {
    display: block;
    content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive-21by9:before {
    padding-top: 42.8571428571%;
}
.embed-responsive-16by9:before {
    padding-top: 56.25%;
}
.embed-responsive-4by3:before {
    padding-top: 75%;
}
.embed-responsive-1by1:before {
    padding-top: 100%;
}
.flex-row {
    flex-direction: row !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-row-reverse {
    flex-direction: row-reverse !important;
}
.flex-column-reverse {
    flex-direction: column-reverse !important;
}
.flex-wrap {
    flex-wrap: wrap !important;
}
.flex-nowrap {
    flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}
.flex-fill {
    flex: 1 1 auto !important;
}
.flex-grow-0 {
    flex-grow: 0 !important;
}
.flex-grow-1 {
    flex-grow: 1 !important;
}
.flex-shrink-0 {
    flex-shrink: 0 !important;
}
.flex-shrink-1 {
    flex-shrink: 1 !important;
}
.justify-content-start {
    justify-content: flex-start !important;
}
.justify-content-end {
    justify-content: flex-end !important;
}
.justify-content-center {
    justify-content: center !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.justify-content-around {
    justify-content: space-around !important;
}
.align-items-start {
    align-items: flex-start !important;
}
.align-items-end {
    align-items: flex-end !important;
}
.align-items-center {
    align-items: center !important;
}
.align-items-baseline {
    align-items: baseline !important;
}
.align-items-stretch {
    align-items: stretch !important;
}
.align-content-start {
    align-content: flex-start !important;
}
.align-content-end {
    align-content: flex-end !important;
}
.align-content-center {
    align-content: center !important;
}
.align-content-between {
    align-content: space-between !important;
}
.align-content-around {
    align-content: space-around !important;
}
.align-content-stretch {
    align-content: stretch !important;
}
.align-self-auto {
    align-self: auto !important;
}
.align-self-start {
    align-self: flex-start !important;
}
.align-self-end {
    align-self: flex-end !important;
}
.align-self-center {
    align-self: center !important;
}
.align-self-baseline {
    align-self: baseline !important;
}
.align-self-stretch {
    align-self: stretch !important;
}
@media (min-width: 576px) {
    .flex-sm-row {
        flex-direction: row !important;
    }
    .flex-sm-column {
        flex-direction: column !important;
    }
    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }
    .flex-sm-wrap {
        flex-wrap: wrap !important;
    }
    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }
    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
    .flex-sm-fill {
        flex: 1 1 auto !important;
    }
    .flex-sm-grow-0 {
        flex-grow: 0 !important;
    }
    .flex-sm-grow-1 {
        flex-grow: 1 !important;
    }
    .flex-sm-shrink-0 {
        flex-shrink: 0 !important;
    }
    .flex-sm-shrink-1 {
        flex-shrink: 1 !important;
    }
    .justify-content-sm-start {
        justify-content: flex-start !important;
    }
    .justify-content-sm-end {
        justify-content: flex-end !important;
    }
    .justify-content-sm-center {
        justify-content: center !important;
    }
    .justify-content-sm-between {
        justify-content: space-between !important;
    }
    .justify-content-sm-around {
        justify-content: space-around !important;
    }
    .align-items-sm-start {
        align-items: flex-start !important;
    }
    .align-items-sm-end {
        align-items: flex-end !important;
    }
    .align-items-sm-center {
        align-items: center !important;
    }
    .align-items-sm-baseline {
        align-items: baseline !important;
    }
    .align-items-sm-stretch {
        align-items: stretch !important;
    }
    .align-content-sm-start {
        align-content: flex-start !important;
    }
    .align-content-sm-end {
        align-content: flex-end !important;
    }
    .align-content-sm-center {
        align-content: center !important;
    }
    .align-content-sm-between {
        align-content: space-between !important;
    }
    .align-content-sm-around {
        align-content: space-around !important;
    }
    .align-content-sm-stretch {
        align-content: stretch !important;
    }
    .align-self-sm-auto {
        align-self: auto !important;
    }
    .align-self-sm-start {
        align-self: flex-start !important;
    }
    .align-self-sm-end {
        align-self: flex-end !important;
    }
    .align-self-sm-center {
        align-self: center !important;
    }
    .align-self-sm-baseline {
        align-self: baseline !important;
    }
    .align-self-sm-stretch {
        align-self: stretch !important;
    }
}
@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row !important;
    }
    .flex-md-column {
        flex-direction: column !important;
    }
    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }
    .flex-md-wrap {
        flex-wrap: wrap !important;
    }
    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }
    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
    .flex-md-fill {
        flex: 1 1 auto !important;
    }
    .flex-md-grow-0 {
        flex-grow: 0 !important;
    }
    .flex-md-grow-1 {
        flex-grow: 1 !important;
    }
    .flex-md-shrink-0 {
        flex-shrink: 0 !important;
    }
    .flex-md-shrink-1 {
        flex-shrink: 1 !important;
    }
    .justify-content-md-start {
        justify-content: flex-start !important;
    }
    .justify-content-md-end {
        justify-content: flex-end !important;
    }
    .justify-content-md-center {
        justify-content: center !important;
    }
    .justify-content-md-between {
        justify-content: space-between !important;
    }
    .justify-content-md-around {
        justify-content: space-around !important;
    }
    .align-items-md-start {
        align-items: flex-start !important;
    }
    .align-items-md-end {
        align-items: flex-end !important;
    }
    .align-items-md-center {
        align-items: center !important;
    }
    .align-items-md-baseline {
        align-items: baseline !important;
    }
    .align-items-md-stretch {
        align-items: stretch !important;
    }
    .align-content-md-start {
        align-content: flex-start !important;
    }
    .align-content-md-end {
        align-content: flex-end !important;
    }
    .align-content-md-center {
        align-content: center !important;
    }
    .align-content-md-between {
        align-content: space-between !important;
    }
    .align-content-md-around {
        align-content: space-around !important;
    }
    .align-content-md-stretch {
        align-content: stretch !important;
    }
    .align-self-md-auto {
        align-self: auto !important;
    }
    .align-self-md-start {
        align-self: flex-start !important;
    }
    .align-self-md-end {
        align-self: flex-end !important;
    }
    .align-self-md-center {
        align-self: center !important;
    }
    .align-self-md-baseline {
        align-self: baseline !important;
    }
    .align-self-md-stretch {
        align-self: stretch !important;
    }
}
@media (min-width: 992px) {
    .flex-lg-row {
        flex-direction: row !important;
    }
    .flex-lg-column {
        flex-direction: column !important;
    }
    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
        flex-direction: column-reverse !important;
    }
    .flex-lg-wrap {
        flex-wrap: wrap !important;
    }
    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }
    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
    .flex-lg-fill {
        flex: 1 1 auto !important;
    }
    .flex-lg-grow-0 {
        flex-grow: 0 !important;
    }
    .flex-lg-grow-1 {
        flex-grow: 1 !important;
    }
    .flex-lg-shrink-0 {
        flex-shrink: 0 !important;
    }
    .flex-lg-shrink-1 {
        flex-shrink: 1 !important;
    }
    .justify-content-lg-start {
        justify-content: flex-start !important;
    }
    .justify-content-lg-end {
        justify-content: flex-end !important;
    }
    .justify-content-lg-center {
        justify-content: center !important;
    }
    .justify-content-lg-between {
        justify-content: space-between !important;
    }
    .justify-content-lg-around {
        justify-content: space-around !important;
    }
    .align-items-lg-start {
        align-items: flex-start !important;
    }
    .align-items-lg-end {
        align-items: flex-end !important;
    }
    .align-items-lg-center {
        align-items: center !important;
    }
    .align-items-lg-baseline {
        align-items: baseline !important;
    }
    .align-items-lg-stretch {
        align-items: stretch !important;
    }
    .align-content-lg-start {
        align-content: flex-start !important;
    }
    .align-content-lg-end {
        align-content: flex-end !important;
    }
    .align-content-lg-center {
        align-content: center !important;
    }
    .align-content-lg-between {
        align-content: space-between !important;
    }
    .align-content-lg-around {
        align-content: space-around !important;
    }
    .align-content-lg-stretch {
        align-content: stretch !important;
    }
    .align-self-lg-auto {
        align-self: auto !important;
    }
    .align-self-lg-start {
        align-self: flex-start !important;
    }
    .align-self-lg-end {
        align-self: flex-end !important;
    }
    .align-self-lg-center {
        align-self: center !important;
    }
    .align-self-lg-baseline {
        align-self: baseline !important;
    }
    .align-self-lg-stretch {
        align-self: stretch !important;
    }
}
@media (min-width: 1200px) {
    .flex-xl-row {
        flex-direction: row !important;
    }
    .flex-xl-column {
        flex-direction: column !important;
    }
    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }
    .flex-xl-wrap {
        flex-wrap: wrap !important;
    }
    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }
    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
    .flex-xl-fill {
        flex: 1 1 auto !important;
    }
    .flex-xl-grow-0 {
        flex-grow: 0 !important;
    }
    .flex-xl-grow-1 {
        flex-grow: 1 !important;
    }
    .flex-xl-shrink-0 {
        flex-shrink: 0 !important;
    }
    .flex-xl-shrink-1 {
        flex-shrink: 1 !important;
    }
    .justify-content-xl-start {
        justify-content: flex-start !important;
    }
    .justify-content-xl-end {
        justify-content: flex-end !important;
    }
    .justify-content-xl-center {
        justify-content: center !important;
    }
    .justify-content-xl-between {
        justify-content: space-between !important;
    }
    .justify-content-xl-around {
        justify-content: space-around !important;
    }
    .align-items-xl-start {
        align-items: flex-start !important;
    }
    .align-items-xl-end {
        align-items: flex-end !important;
    }
    .align-items-xl-center {
        align-items: center !important;
    }
    .align-items-xl-baseline {
        align-items: baseline !important;
    }
    .align-items-xl-stretch {
        align-items: stretch !important;
    }
    .align-content-xl-start {
        align-content: flex-start !important;
    }
    .align-content-xl-end {
        align-content: flex-end !important;
    }
    .align-content-xl-center {
        align-content: center !important;
    }
    .align-content-xl-between {
        align-content: space-between !important;
    }
    .align-content-xl-around {
        align-content: space-around !important;
    }
    .align-content-xl-stretch {
        align-content: stretch !important;
    }
    .align-self-xl-auto {
        align-self: auto !important;
    }
    .align-self-xl-start {
        align-self: flex-start !important;
    }
    .align-self-xl-end {
        align-self: flex-end !important;
    }
    .align-self-xl-center {
        align-self: center !important;
    }
    .align-self-xl-baseline {
        align-self: baseline !important;
    }
    .align-self-xl-stretch {
        align-self: stretch !important;
    }
}
.float-left {
    float: left !important;
}
.float-right {
    float: right !important;
}
.float-none {
    float: none !important;
}
@media (min-width: 576px) {
    .float-sm-left {
        float: left !important;
    }
    .float-sm-right {
        float: right !important;
    }
    .float-sm-none {
        float: none !important;
    }
}
@media (min-width: 768px) {
    .float-md-left {
        float: left !important;
    }
    .float-md-right {
        float: right !important;
    }
    .float-md-none {
        float: none !important;
    }
}
@media (min-width: 992px) {
    .float-lg-left {
        float: left !important;
    }
    .float-lg-right {
        float: right !important;
    }
    .float-lg-none {
        float: none !important;
    }
}
@media (min-width: 1200px) {
    .float-xl-left {
        float: left !important;
    }
    .float-xl-right {
        float: right !important;
    }
    .float-xl-none {
        float: none !important;
    }
}
.overflow-auto {
    overflow: auto !important;
}
.overflow-hidden {
    overflow: hidden !important;
}
.position-static {
    position: static !important;
}
.position-relative {
    position: relative !important;
}
.position-absolute {
    position: absolute !important;
}
.position-fixed {
    position: fixed !important;
}
.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}
.fixed-top {
    top: 0;
}
.fixed-bottom,
.fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}
.fixed-bottom {
    bottom: 0;
}
@supports ((position: -webkit-sticky) or (position: sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow {
    box-shadow: 0 0 3px rgba(33, 33, 33, 0.125) !important;
}
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
    box-shadow: none !important;
}
.w-25 {
    width: 25% !important;
}
.w-50 {
    width: 50% !important;
}
.w-75 {
    width: 75% !important;
}
.w-100 {
    width: 100% !important;
}
.w-auto {
    width: auto !important;
}
.h-25 {
    height: 25% !important;
}
.h-50 {
    height: 50% !important;
}
.h-75 {
    height: 75% !important;
}
.h-100 {
    height: 100% !important;
}
.h-auto {
    height: auto !important;
}
.mw-100 {
    max-width: 100% !important;
}
.mh-100 {
    max-height: 100% !important;
}
.min-vw-100 {
    min-width: 100vw !important;
}
.min-vh-100 {
    min-height: 100vh !important;
}
.vw-100 {
    width: 100vw !important;
}
.vh-100 {
    height: 100vh !important;
}
.stretched-link:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent;
}
.m-0 {
    margin: 0 !important;
}
.mt-0,
.my-0 {
    margin-top: 0 !important;
}
.mr-0,
.mx-0 {
    margin-right: 0 !important;
}
.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
    margin-left: 0 !important;
}
.m-1 {
    margin: 0.25rem !important;
}
.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}
.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}
.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}
.m-2 {
    margin: 0.5rem !important;
}
.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}
.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}
.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}
.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}
.m-3 {
    margin: 1rem !important;
}
.mt-3,
.my-3 {
    margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}
.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}
.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}
.m-4 {
    margin: 1.5rem !important;
}
.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}
.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}
.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}
.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}
.m-5 {
    margin: 3rem !important;
}
.mt-5,
.my-5 {
    margin-top: 3rem !important;
}
.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}
.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}
.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}
.m-xs {
    margin: 0.25rem !important;
}
.mt-xs,
.my-xs {
    margin-top: 0.25rem !important;
}
.mr-xs,
.mx-xs {
    margin-right: 0.25rem !important;
}
.mb-xs,
.my-xs {
    margin-bottom: 0.25rem !important;
}
.ml-xs,
.mx-xs {
    margin-left: 0.25rem !important;
}
.m-sm {
    margin: 0.5rem !important;
}
.mt-sm,
.my-sm {
    margin-top: 0.5rem !important;
}
.mr-sm,
.mx-sm {
    margin-right: 0.5rem !important;
}
.mb-sm,
.my-sm {
    margin-bottom: 0.5rem !important;
}
.ml-sm,
.mx-sm {
    margin-left: 0.5rem !important;
}
.m-mdsm {
    margin: 0.75rem !important;
}
.mt-mdsm,
.my-mdsm {
    margin-top: 0.75rem !important;
}
.mr-mdsm,
.mx-mdsm {
    margin-right: 0.75rem !important;
}
.mb-mdsm,
.my-mdsm {
    margin-bottom: 0.75rem !important;
}
.ml-mdsm,
.mx-mdsm {
    margin-left: 0.75rem !important;
}
.m-default {
    margin: 1rem !important;
}
.mt-default,
.my-default {
    margin-top: 1rem !important;
}
.mr-default,
.mx-default {
    margin-right: 1rem !important;
}
.mb-default,
.my-default {
    margin-bottom: 1rem !important;
}
.ml-default,
.mx-default {
    margin-left: 1rem !important;
}
.m-mdlg {
    margin: 1.25rem !important;
}
.mt-mdlg,
.my-mdlg {
    margin-top: 1.25rem !important;
}
.mr-mdlg,
.mx-mdlg {
    margin-right: 1.25rem !important;
}
.mb-mdlg,
.my-mdlg {
    margin-bottom: 1.25rem !important;
}
.ml-mdlg,
.mx-mdlg {
    margin-left: 1.25rem !important;
}
.m-lg {
    margin: 1.5rem !important;
}
.mt-lg,
.my-lg {
    margin-top: 1.5rem !important;
}
.mr-lg,
.mx-lg {
    margin-right: 1.5rem !important;
}
.mb-lg,
.my-lg {
    margin-bottom: 1.5rem !important;
}
.ml-lg,
.mx-lg {
    margin-left: 1.5rem !important;
}
.m-xl {
    margin: 2.5rem !important;
}
.mt-xl,
.my-xl {
    margin-top: 2.5rem !important;
}
.mr-xl,
.mx-xl {
    margin-right: 2.5rem !important;
}
.mb-xl,
.my-xl {
    margin-bottom: 2.5rem !important;
}
.ml-xl,
.mx-xl {
    margin-left: 2.5rem !important;
}
.m-xxl {
    margin: 5rem !important;
}
.mt-xxl,
.my-xxl {
    margin-top: 5rem !important;
}
.mr-xxl,
.mx-xxl {
    margin-right: 5rem !important;
}
.mb-xxl,
.my-xxl {
    margin-bottom: 5rem !important;
}
.ml-xxl,
.mx-xxl {
    margin-left: 5rem !important;
}
.p-0 {
    padding: 0 !important;
}
.pt-0,
.py-0 {
    padding-top: 0 !important;
}
.pr-0,
.px-0 {
    padding-right: 0 !important;
}
.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
    padding-left: 0 !important;
}
.p-1 {
    padding: 0.25rem !important;
}
.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}
.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}
.p-2 {
    padding: 0.5rem !important;
}
.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}
.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}
.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}
.p-3 {
    padding: 1rem !important;
}
.pt-3,
.py-3 {
    padding-top: 1rem !important;
}
.pr-3,
.px-3 {
    padding-right: 1rem !important;
}
.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
    padding-left: 1rem !important;
}
.p-4 {
    padding: 1.5rem !important;
}
.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}
.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}
.p-5 {
    padding: 3rem !important;
}
.pt-5,
.py-5 {
    padding-top: 3rem !important;
}
.pr-5,
.px-5 {
    padding-right: 3rem !important;
}
.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}
.pl-5,
.px-5 {
    padding-left: 3rem !important;
}
.p-xs {
    padding: 0.25rem !important;
}
.pt-xs,
.py-xs {
    padding-top: 0.25rem !important;
}
.pr-xs,
.px-xs {
    padding-right: 0.25rem !important;
}
.pb-xs,
.py-xs {
    padding-bottom: 0.25rem !important;
}
.pl-xs,
.px-xs {
    padding-left: 0.25rem !important;
}
.p-sm {
    padding: 0.5rem !important;
}
.pt-sm,
.py-sm {
    padding-top: 0.5rem !important;
}
.pr-sm,
.px-sm {
    padding-right: 0.5rem !important;
}
.pb-sm,
.py-sm {
    padding-bottom: 0.5rem !important;
}
.pl-sm,
.px-sm {
    padding-left: 0.5rem !important;
}
.p-mdsm {
    padding: 0.75rem !important;
}
.pt-mdsm,
.py-mdsm {
    padding-top: 0.75rem !important;
}
.pr-mdsm,
.px-mdsm {
    padding-right: 0.75rem !important;
}
.pb-mdsm,
.py-mdsm {
    padding-bottom: 0.75rem !important;
}
.pl-mdsm,
.px-mdsm {
    padding-left: 0.75rem !important;
}
.p-default {
    padding: 1rem !important;
}
.pt-default,
.py-default {
    padding-top: 1rem !important;
}
.pr-default,
.px-default {
    padding-right: 1rem !important;
}
.pb-default,
.py-default {
    padding-bottom: 1rem !important;
}
.pl-default,
.px-default {
    padding-left: 1rem !important;
}
.p-mdlg {
    padding: 1.25rem !important;
}
.pt-mdlg,
.py-mdlg {
    padding-top: 1.25rem !important;
}
.pr-mdlg,
.px-mdlg {
    padding-right: 1.25rem !important;
}
.pb-mdlg,
.py-mdlg {
    padding-bottom: 1.25rem !important;
}
.pl-mdlg,
.px-mdlg {
    padding-left: 1.25rem !important;
}
.p-lg {
    padding: 1.5rem !important;
}
.pt-lg,
.py-lg {
    padding-top: 1.5rem !important;
}
.pr-lg,
.px-lg {
    padding-right: 1.5rem !important;
}
.pb-lg,
.py-lg {
    padding-bottom: 1.5rem !important;
}
.pl-lg,
.px-lg {
    padding-left: 1.5rem !important;
}
.p-xl {
    padding: 2.5rem !important;
}
.pt-xl,
.py-xl {
    padding-top: 2.5rem !important;
}
.pr-xl,
.px-xl {
    padding-right: 2.5rem !important;
}
.pb-xl,
.py-xl {
    padding-bottom: 2.5rem !important;
}
.pl-xl,
.px-xl {
    padding-left: 2.5rem !important;
}
.p-xxl {
    padding: 5rem !important;
}
.pt-xxl,
.py-xxl {
    padding-top: 5rem !important;
}
.pr-xxl,
.px-xxl {
    padding-right: 5rem !important;
}
.pb-xxl,
.py-xxl {
    padding-bottom: 5rem !important;
}
.pl-xxl,
.px-xxl {
    padding-left: 5rem !important;
}
.m-n1 {
    margin: -0.25rem !important;
}
.mt-n1,
.my-n1 {
    margin-top: -0.25rem !important;
}
.mr-n1,
.mx-n1 {
    margin-right: -0.25rem !important;
}
.mb-n1,
.my-n1 {
    margin-bottom: -0.25rem !important;
}
.ml-n1,
.mx-n1 {
    margin-left: -0.25rem !important;
}
.m-n2 {
    margin: -0.5rem !important;
}
.mt-n2,
.my-n2 {
    margin-top: -0.5rem !important;
}
.mr-n2,
.mx-n2 {
    margin-right: -0.5rem !important;
}
.mb-n2,
.my-n2 {
    margin-bottom: -0.5rem !important;
}
.ml-n2,
.mx-n2 {
    margin-left: -0.5rem !important;
}
.m-n3 {
    margin: -1rem !important;
}
.mt-n3,
.my-n3 {
    margin-top: -1rem !important;
}
.mr-n3,
.mx-n3 {
    margin-right: -1rem !important;
}
.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important;
}
.ml-n3,
.mx-n3 {
    margin-left: -1rem !important;
}
.m-n4 {
    margin: -1.5rem !important;
}
.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important;
}
.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important;
}
.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important;
}
.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important;
}
.m-n5 {
    margin: -3rem !important;
}
.mt-n5,
.my-n5 {
    margin-top: -3rem !important;
}
.mr-n5,
.mx-n5 {
    margin-right: -3rem !important;
}
.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important;
}
.ml-n5,
.mx-n5 {
    margin-left: -3rem !important;
}
.m-nxs {
    margin: -0.25rem !important;
}
.mt-nxs,
.my-nxs {
    margin-top: -0.25rem !important;
}
.mr-nxs,
.mx-nxs {
    margin-right: -0.25rem !important;
}
.mb-nxs,
.my-nxs {
    margin-bottom: -0.25rem !important;
}
.ml-nxs,
.mx-nxs {
    margin-left: -0.25rem !important;
}
.m-nsm {
    margin: -0.5rem !important;
}
.mt-nsm,
.my-nsm {
    margin-top: -0.5rem !important;
}
.mr-nsm,
.mx-nsm {
    margin-right: -0.5rem !important;
}
.mb-nsm,
.my-nsm {
    margin-bottom: -0.5rem !important;
}
.ml-nsm,
.mx-nsm {
    margin-left: -0.5rem !important;
}
.m-nmdsm {
    margin: -0.75rem !important;
}
.mt-nmdsm,
.my-nmdsm {
    margin-top: -0.75rem !important;
}
.mr-nmdsm,
.mx-nmdsm {
    margin-right: -0.75rem !important;
}
.mb-nmdsm,
.my-nmdsm {
    margin-bottom: -0.75rem !important;
}
.ml-nmdsm,
.mx-nmdsm {
    margin-left: -0.75rem !important;
}
.m-ndefault {
    margin: -1rem !important;
}
.mt-ndefault,
.my-ndefault {
    margin-top: -1rem !important;
}
.mr-ndefault,
.mx-ndefault {
    margin-right: -1rem !important;
}
.mb-ndefault,
.my-ndefault {
    margin-bottom: -1rem !important;
}
.ml-ndefault,
.mx-ndefault {
    margin-left: -1rem !important;
}
.m-nmdlg {
    margin: -1.25rem !important;
}
.mt-nmdlg,
.my-nmdlg {
    margin-top: -1.25rem !important;
}
.mr-nmdlg,
.mx-nmdlg {
    margin-right: -1.25rem !important;
}
.mb-nmdlg,
.my-nmdlg {
    margin-bottom: -1.25rem !important;
}
.ml-nmdlg,
.mx-nmdlg {
    margin-left: -1.25rem !important;
}
.m-nlg {
    margin: -1.5rem !important;
}
.mt-nlg,
.my-nlg {
    margin-top: -1.5rem !important;
}
.mr-nlg,
.mx-nlg {
    margin-right: -1.5rem !important;
}
.mb-nlg,
.my-nlg {
    margin-bottom: -1.5rem !important;
}
.ml-nlg,
.mx-nlg {
    margin-left: -1.5rem !important;
}
.m-nxl {
    margin: -2.5rem !important;
}
.mt-nxl,
.my-nxl {
    margin-top: -2.5rem !important;
}
.mr-nxl,
.mx-nxl {
    margin-right: -2.5rem !important;
}
.mb-nxl,
.my-nxl {
    margin-bottom: -2.5rem !important;
}
.ml-nxl,
.mx-nxl {
    margin-left: -2.5rem !important;
}
.m-nxxl {
    margin: -5rem !important;
}
.mt-nxxl,
.my-nxxl {
    margin-top: -5rem !important;
}
.mr-nxxl,
.mx-nxxl {
    margin-right: -5rem !important;
}
.mb-nxxl,
.my-nxxl {
    margin-bottom: -5rem !important;
}
.ml-nxxl,
.mx-nxxl {
    margin-left: -5rem !important;
}
.m-auto {
    margin: auto !important;
}
.mt-auto,
.my-auto {
    margin-top: auto !important;
}
.mr-auto,
.mx-auto {
    margin-right: auto !important;
}
.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
    margin-left: auto !important;
}
@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }
    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }
    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }
    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }
    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }
    .m-sm-1 {
        margin: 0.25rem !important;
    }
    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important;
    }
    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important;
    }
    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important;
    }
    .m-sm-2 {
        margin: 0.5rem !important;
    }
    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important;
    }
    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important;
    }
    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important;
    }
    .m-sm-3 {
        margin: 1rem !important;
    }
    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important;
    }
    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important;
    }
    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important;
    }
    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important;
    }
    .m-sm-4 {
        margin: 1.5rem !important;
    }
    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important;
    }
    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important;
    }
    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important;
    }
    .m-sm-5 {
        margin: 3rem !important;
    }
    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important;
    }
    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }
    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important;
    }
    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important;
    }
    .m-sm-xs {
        margin: 0.25rem !important;
    }
    .mt-sm-xs,
    .my-sm-xs {
        margin-top: 0.25rem !important;
    }
    .mr-sm-xs,
    .mx-sm-xs {
        margin-right: 0.25rem !important;
    }
    .mb-sm-xs,
    .my-sm-xs {
        margin-bottom: 0.25rem !important;
    }
    .ml-sm-xs,
    .mx-sm-xs {
        margin-left: 0.25rem !important;
    }
    .m-sm-sm {
        margin: 0.5rem !important;
    }
    .mt-sm-sm,
    .my-sm-sm {
        margin-top: 0.5rem !important;
    }
    .mr-sm-sm,
    .mx-sm-sm {
        margin-right: 0.5rem !important;
    }
    .mb-sm-sm,
    .my-sm-sm {
        margin-bottom: 0.5rem !important;
    }
    .ml-sm-sm,
    .mx-sm-sm {
        margin-left: 0.5rem !important;
    }
    .m-sm-mdsm {
        margin: 0.75rem !important;
    }
    .mt-sm-mdsm,
    .my-sm-mdsm {
        margin-top: 0.75rem !important;
    }
    .mr-sm-mdsm,
    .mx-sm-mdsm {
        margin-right: 0.75rem !important;
    }
    .mb-sm-mdsm,
    .my-sm-mdsm {
        margin-bottom: 0.75rem !important;
    }
    .ml-sm-mdsm,
    .mx-sm-mdsm {
        margin-left: 0.75rem !important;
    }
    .m-sm-default {
        margin: 1rem !important;
    }
    .mt-sm-default,
    .my-sm-default {
        margin-top: 1rem !important;
    }
    .mr-sm-default,
    .mx-sm-default {
        margin-right: 1rem !important;
    }
    .mb-sm-default,
    .my-sm-default {
        margin-bottom: 1rem !important;
    }
    .ml-sm-default,
    .mx-sm-default {
        margin-left: 1rem !important;
    }
    .m-sm-mdlg {
        margin: 1.25rem !important;
    }
    .mt-sm-mdlg,
    .my-sm-mdlg {
        margin-top: 1.25rem !important;
    }
    .mr-sm-mdlg,
    .mx-sm-mdlg {
        margin-right: 1.25rem !important;
    }
    .mb-sm-mdlg,
    .my-sm-mdlg {
        margin-bottom: 1.25rem !important;
    }
    .ml-sm-mdlg,
    .mx-sm-mdlg {
        margin-left: 1.25rem !important;
    }
    .m-sm-lg {
        margin: 1.5rem !important;
    }
    .mt-sm-lg,
    .my-sm-lg {
        margin-top: 1.5rem !important;
    }
    .mr-sm-lg,
    .mx-sm-lg {
        margin-right: 1.5rem !important;
    }
    .mb-sm-lg,
    .my-sm-lg {
        margin-bottom: 1.5rem !important;
    }
    .ml-sm-lg,
    .mx-sm-lg {
        margin-left: 1.5rem !important;
    }
    .m-sm-xl {
        margin: 2.5rem !important;
    }
    .mt-sm-xl,
    .my-sm-xl {
        margin-top: 2.5rem !important;
    }
    .mr-sm-xl,
    .mx-sm-xl {
        margin-right: 2.5rem !important;
    }
    .mb-sm-xl,
    .my-sm-xl {
        margin-bottom: 2.5rem !important;
    }
    .ml-sm-xl,
    .mx-sm-xl {
        margin-left: 2.5rem !important;
    }
    .m-sm-xxl {
        margin: 5rem !important;
    }
    .mt-sm-xxl,
    .my-sm-xxl {
        margin-top: 5rem !important;
    }
    .mr-sm-xxl,
    .mx-sm-xxl {
        margin-right: 5rem !important;
    }
    .mb-sm-xxl,
    .my-sm-xxl {
        margin-bottom: 5rem !important;
    }
    .ml-sm-xxl,
    .mx-sm-xxl {
        margin-left: 5rem !important;
    }
    .p-sm-0 {
        padding: 0 !important;
    }
    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }
    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }
    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }
    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }
    .p-sm-1 {
        padding: 0.25rem !important;
    }
    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important;
    }
    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important;
    }
    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important;
    }
    .p-sm-2 {
        padding: 0.5rem !important;
    }
    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important;
    }
    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important;
    }
    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important;
    }
    .p-sm-3 {
        padding: 1rem !important;
    }
    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important;
    }
    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important;
    }
    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important;
    }
    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important;
    }
    .p-sm-4 {
        padding: 1.5rem !important;
    }
    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important;
    }
    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important;
    }
    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important;
    }
    .p-sm-5 {
        padding: 3rem !important;
    }
    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important;
    }
    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important;
    }
    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important;
    }
    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important;
    }
    .p-sm-xs {
        padding: 0.25rem !important;
    }
    .pt-sm-xs,
    .py-sm-xs {
        padding-top: 0.25rem !important;
    }
    .pr-sm-xs,
    .px-sm-xs {
        padding-right: 0.25rem !important;
    }
    .pb-sm-xs,
    .py-sm-xs {
        padding-bottom: 0.25rem !important;
    }
    .pl-sm-xs,
    .px-sm-xs {
        padding-left: 0.25rem !important;
    }
    .p-sm-sm {
        padding: 0.5rem !important;
    }
    .pt-sm-sm,
    .py-sm-sm {
        padding-top: 0.5rem !important;
    }
    .pr-sm-sm,
    .px-sm-sm {
        padding-right: 0.5rem !important;
    }
    .pb-sm-sm,
    .py-sm-sm {
        padding-bottom: 0.5rem !important;
    }
    .pl-sm-sm,
    .px-sm-sm {
        padding-left: 0.5rem !important;
    }
    .p-sm-mdsm {
        padding: 0.75rem !important;
    }
    .pt-sm-mdsm,
    .py-sm-mdsm {
        padding-top: 0.75rem !important;
    }
    .pr-sm-mdsm,
    .px-sm-mdsm {
        padding-right: 0.75rem !important;
    }
    .pb-sm-mdsm,
    .py-sm-mdsm {
        padding-bottom: 0.75rem !important;
    }
    .pl-sm-mdsm,
    .px-sm-mdsm {
        padding-left: 0.75rem !important;
    }
    .p-sm-default {
        padding: 1rem !important;
    }
    .pt-sm-default,
    .py-sm-default {
        padding-top: 1rem !important;
    }
    .pr-sm-default,
    .px-sm-default {
        padding-right: 1rem !important;
    }
    .pb-sm-default,
    .py-sm-default {
        padding-bottom: 1rem !important;
    }
    .pl-sm-default,
    .px-sm-default {
        padding-left: 1rem !important;
    }
    .p-sm-mdlg {
        padding: 1.25rem !important;
    }
    .pt-sm-mdlg,
    .py-sm-mdlg {
        padding-top: 1.25rem !important;
    }
    .pr-sm-mdlg,
    .px-sm-mdlg {
        padding-right: 1.25rem !important;
    }
    .pb-sm-mdlg,
    .py-sm-mdlg {
        padding-bottom: 1.25rem !important;
    }
    .pl-sm-mdlg,
    .px-sm-mdlg {
        padding-left: 1.25rem !important;
    }
    .p-sm-lg {
        padding: 1.5rem !important;
    }
    .pt-sm-lg,
    .py-sm-lg {
        padding-top: 1.5rem !important;
    }
    .pr-sm-lg,
    .px-sm-lg {
        padding-right: 1.5rem !important;
    }
    .pb-sm-lg,
    .py-sm-lg {
        padding-bottom: 1.5rem !important;
    }
    .pl-sm-lg,
    .px-sm-lg {
        padding-left: 1.5rem !important;
    }
    .p-sm-xl {
        padding: 2.5rem !important;
    }
    .pt-sm-xl,
    .py-sm-xl {
        padding-top: 2.5rem !important;
    }
    .pr-sm-xl,
    .px-sm-xl {
        padding-right: 2.5rem !important;
    }
    .pb-sm-xl,
    .py-sm-xl {
        padding-bottom: 2.5rem !important;
    }
    .pl-sm-xl,
    .px-sm-xl {
        padding-left: 2.5rem !important;
    }
    .p-sm-xxl {
        padding: 5rem !important;
    }
    .pt-sm-xxl,
    .py-sm-xxl {
        padding-top: 5rem !important;
    }
    .pr-sm-xxl,
    .px-sm-xxl {
        padding-right: 5rem !important;
    }
    .pb-sm-xxl,
    .py-sm-xxl {
        padding-bottom: 5rem !important;
    }
    .pl-sm-xxl,
    .px-sm-xxl {
        padding-left: 5rem !important;
    }
    .m-sm-n1 {
        margin: -0.25rem !important;
    }
    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -0.25rem !important;
    }
    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -0.25rem !important;
    }
    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -0.25rem !important;
    }
    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -0.25rem !important;
    }
    .m-sm-n2 {
        margin: -0.5rem !important;
    }
    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -0.5rem !important;
    }
    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -0.5rem !important;
    }
    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -0.5rem !important;
    }
    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -0.5rem !important;
    }
    .m-sm-n3 {
        margin: -1rem !important;
    }
    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important;
    }
    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important;
    }
    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important;
    }
    .m-sm-n4 {
        margin: -1.5rem !important;
    }
    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important;
    }
    .m-sm-n5 {
        margin: -3rem !important;
    }
    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important;
    }
    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important;
    }
    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important;
    }
    .m-sm-nxs {
        margin: -0.25rem !important;
    }
    .mt-sm-nxs,
    .my-sm-nxs {
        margin-top: -0.25rem !important;
    }
    .mr-sm-nxs,
    .mx-sm-nxs {
        margin-right: -0.25rem !important;
    }
    .mb-sm-nxs,
    .my-sm-nxs {
        margin-bottom: -0.25rem !important;
    }
    .ml-sm-nxs,
    .mx-sm-nxs {
        margin-left: -0.25rem !important;
    }
    .m-sm-nsm {
        margin: -0.5rem !important;
    }
    .mt-sm-nsm,
    .my-sm-nsm {
        margin-top: -0.5rem !important;
    }
    .mr-sm-nsm,
    .mx-sm-nsm {
        margin-right: -0.5rem !important;
    }
    .mb-sm-nsm,
    .my-sm-nsm {
        margin-bottom: -0.5rem !important;
    }
    .ml-sm-nsm,
    .mx-sm-nsm {
        margin-left: -0.5rem !important;
    }
    .m-sm-nmdsm {
        margin: -0.75rem !important;
    }
    .mt-sm-nmdsm,
    .my-sm-nmdsm {
        margin-top: -0.75rem !important;
    }
    .mr-sm-nmdsm,
    .mx-sm-nmdsm {
        margin-right: -0.75rem !important;
    }
    .mb-sm-nmdsm,
    .my-sm-nmdsm {
        margin-bottom: -0.75rem !important;
    }
    .ml-sm-nmdsm,
    .mx-sm-nmdsm {
        margin-left: -0.75rem !important;
    }
    .m-sm-ndefault {
        margin: -1rem !important;
    }
    .mt-sm-ndefault,
    .my-sm-ndefault {
        margin-top: -1rem !important;
    }
    .mr-sm-ndefault,
    .mx-sm-ndefault {
        margin-right: -1rem !important;
    }
    .mb-sm-ndefault,
    .my-sm-ndefault {
        margin-bottom: -1rem !important;
    }
    .ml-sm-ndefault,
    .mx-sm-ndefault {
        margin-left: -1rem !important;
    }
    .m-sm-nmdlg {
        margin: -1.25rem !important;
    }
    .mt-sm-nmdlg,
    .my-sm-nmdlg {
        margin-top: -1.25rem !important;
    }
    .mr-sm-nmdlg,
    .mx-sm-nmdlg {
        margin-right: -1.25rem !important;
    }
    .mb-sm-nmdlg,
    .my-sm-nmdlg {
        margin-bottom: -1.25rem !important;
    }
    .ml-sm-nmdlg,
    .mx-sm-nmdlg {
        margin-left: -1.25rem !important;
    }
    .m-sm-nlg {
        margin: -1.5rem !important;
    }
    .mt-sm-nlg,
    .my-sm-nlg {
        margin-top: -1.5rem !important;
    }
    .mr-sm-nlg,
    .mx-sm-nlg {
        margin-right: -1.5rem !important;
    }
    .mb-sm-nlg,
    .my-sm-nlg {
        margin-bottom: -1.5rem !important;
    }
    .ml-sm-nlg,
    .mx-sm-nlg {
        margin-left: -1.5rem !important;
    }
    .m-sm-nxl {
        margin: -2.5rem !important;
    }
    .mt-sm-nxl,
    .my-sm-nxl {
        margin-top: -2.5rem !important;
    }
    .mr-sm-nxl,
    .mx-sm-nxl {
        margin-right: -2.5rem !important;
    }
    .mb-sm-nxl,
    .my-sm-nxl {
        margin-bottom: -2.5rem !important;
    }
    .ml-sm-nxl,
    .mx-sm-nxl {
        margin-left: -2.5rem !important;
    }
    .m-sm-nxxl {
        margin: -5rem !important;
    }
    .mt-sm-nxxl,
    .my-sm-nxxl {
        margin-top: -5rem !important;
    }
    .mr-sm-nxxl,
    .mx-sm-nxxl {
        margin-right: -5rem !important;
    }
    .mb-sm-nxxl,
    .my-sm-nxxl {
        margin-bottom: -5rem !important;
    }
    .ml-sm-nxxl,
    .mx-sm-nxxl {
        margin-left: -5rem !important;
    }
    .m-sm-auto {
        margin: auto !important;
    }
    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }
    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }
    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }
    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
}
@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }
    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }
    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }
    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }
    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }
    .m-md-1 {
        margin: 0.25rem !important;
    }
    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }
    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }
    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }
    .m-md-2 {
        margin: 0.5rem !important;
    }
    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }
    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }
    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }
    .m-md-3 {
        margin: 1rem !important;
    }
    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }
    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }
    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }
    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }
    .m-md-4 {
        margin: 1.5rem !important;
    }
    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }
    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }
    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }
    .m-md-5 {
        margin: 3rem !important;
    }
    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }
    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }
    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }
    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }
    .m-md-xs {
        margin: 0.25rem !important;
    }
    .mt-md-xs,
    .my-md-xs {
        margin-top: 0.25rem !important;
    }
    .mr-md-xs,
    .mx-md-xs {
        margin-right: 0.25rem !important;
    }
    .mb-md-xs,
    .my-md-xs {
        margin-bottom: 0.25rem !important;
    }
    .ml-md-xs,
    .mx-md-xs {
        margin-left: 0.25rem !important;
    }
    .m-md-sm {
        margin: 0.5rem !important;
    }
    .mt-md-sm,
    .my-md-sm {
        margin-top: 0.5rem !important;
    }
    .mr-md-sm,
    .mx-md-sm {
        margin-right: 0.5rem !important;
    }
    .mb-md-sm,
    .my-md-sm {
        margin-bottom: 0.5rem !important;
    }
    .ml-md-sm,
    .mx-md-sm {
        margin-left: 0.5rem !important;
    }
    .m-md-mdsm {
        margin: 0.75rem !important;
    }
    .mt-md-mdsm,
    .my-md-mdsm {
        margin-top: 0.75rem !important;
    }
    .mr-md-mdsm,
    .mx-md-mdsm {
        margin-right: 0.75rem !important;
    }
    .mb-md-mdsm,
    .my-md-mdsm {
        margin-bottom: 0.75rem !important;
    }
    .ml-md-mdsm,
    .mx-md-mdsm {
        margin-left: 0.75rem !important;
    }
    .m-md-default {
        margin: 1rem !important;
    }
    .mt-md-default,
    .my-md-default {
        margin-top: 1rem !important;
    }
    .mr-md-default,
    .mx-md-default {
        margin-right: 1rem !important;
    }
    .mb-md-default,
    .my-md-default {
        margin-bottom: 1rem !important;
    }
    .ml-md-default,
    .mx-md-default {
        margin-left: 1rem !important;
    }
    .m-md-mdlg {
        margin: 1.25rem !important;
    }
    .mt-md-mdlg,
    .my-md-mdlg {
        margin-top: 1.25rem !important;
    }
    .mr-md-mdlg,
    .mx-md-mdlg {
        margin-right: 1.25rem !important;
    }
    .mb-md-mdlg,
    .my-md-mdlg {
        margin-bottom: 1.25rem !important;
    }
    .ml-md-mdlg,
    .mx-md-mdlg {
        margin-left: 1.25rem !important;
    }
    .m-md-lg {
        margin: 1.5rem !important;
    }
    .mt-md-lg,
    .my-md-lg {
        margin-top: 1.5rem !important;
    }
    .mr-md-lg,
    .mx-md-lg {
        margin-right: 1.5rem !important;
    }
    .mb-md-lg,
    .my-md-lg {
        margin-bottom: 1.5rem !important;
    }
    .ml-md-lg,
    .mx-md-lg {
        margin-left: 1.5rem !important;
    }
    .m-md-xl {
        margin: 2.5rem !important;
    }
    .mt-md-xl,
    .my-md-xl {
        margin-top: 2.5rem !important;
    }
    .mr-md-xl,
    .mx-md-xl {
        margin-right: 2.5rem !important;
    }
    .mb-md-xl,
    .my-md-xl {
        margin-bottom: 2.5rem !important;
    }
    .ml-md-xl,
    .mx-md-xl {
        margin-left: 2.5rem !important;
    }
    .m-md-xxl {
        margin: 5rem !important;
    }
    .mt-md-xxl,
    .my-md-xxl {
        margin-top: 5rem !important;
    }
    .mr-md-xxl,
    .mx-md-xxl {
        margin-right: 5rem !important;
    }
    .mb-md-xxl,
    .my-md-xxl {
        margin-bottom: 5rem !important;
    }
    .ml-md-xxl,
    .mx-md-xxl {
        margin-left: 5rem !important;
    }
    .p-md-0 {
        padding: 0 !important;
    }
    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }
    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }
    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }
    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }
    .p-md-1 {
        padding: 0.25rem !important;
    }
    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }
    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }
    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }
    .p-md-2 {
        padding: 0.5rem !important;
    }
    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }
    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }
    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }
    .p-md-3 {
        padding: 1rem !important;
    }
    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }
    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }
    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }
    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }
    .p-md-4 {
        padding: 1.5rem !important;
    }
    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }
    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }
    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }
    .p-md-5 {
        padding: 3rem !important;
    }
    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }
    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }
    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }
    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }
    .p-md-xs {
        padding: 0.25rem !important;
    }
    .pt-md-xs,
    .py-md-xs {
        padding-top: 0.25rem !important;
    }
    .pr-md-xs,
    .px-md-xs {
        padding-right: 0.25rem !important;
    }
    .pb-md-xs,
    .py-md-xs {
        padding-bottom: 0.25rem !important;
    }
    .pl-md-xs,
    .px-md-xs {
        padding-left: 0.25rem !important;
    }
    .p-md-sm {
        padding: 0.5rem !important;
    }
    .pt-md-sm,
    .py-md-sm {
        padding-top: 0.5rem !important;
    }
    .pr-md-sm,
    .px-md-sm {
        padding-right: 0.5rem !important;
    }
    .pb-md-sm,
    .py-md-sm {
        padding-bottom: 0.5rem !important;
    }
    .pl-md-sm,
    .px-md-sm {
        padding-left: 0.5rem !important;
    }
    .p-md-mdsm {
        padding: 0.75rem !important;
    }
    .pt-md-mdsm,
    .py-md-mdsm {
        padding-top: 0.75rem !important;
    }
    .pr-md-mdsm,
    .px-md-mdsm {
        padding-right: 0.75rem !important;
    }
    .pb-md-mdsm,
    .py-md-mdsm {
        padding-bottom: 0.75rem !important;
    }
    .pl-md-mdsm,
    .px-md-mdsm {
        padding-left: 0.75rem !important;
    }
    .p-md-default {
        padding: 1rem !important;
    }
    .pt-md-default,
    .py-md-default {
        padding-top: 1rem !important;
    }
    .pr-md-default,
    .px-md-default {
        padding-right: 1rem !important;
    }
    .pb-md-default,
    .py-md-default {
        padding-bottom: 1rem !important;
    }
    .pl-md-default,
    .px-md-default {
        padding-left: 1rem !important;
    }
    .p-md-mdlg {
        padding: 1.25rem !important;
    }
    .pt-md-mdlg,
    .py-md-mdlg {
        padding-top: 1.25rem !important;
    }
    .pr-md-mdlg,
    .px-md-mdlg {
        padding-right: 1.25rem !important;
    }
    .pb-md-mdlg,
    .py-md-mdlg {
        padding-bottom: 1.25rem !important;
    }
    .pl-md-mdlg,
    .px-md-mdlg {
        padding-left: 1.25rem !important;
    }
    .p-md-lg {
        padding: 1.5rem !important;
    }
    .pt-md-lg,
    .py-md-lg {
        padding-top: 1.5rem !important;
    }
    .pr-md-lg,
    .px-md-lg {
        padding-right: 1.5rem !important;
    }
    .pb-md-lg,
    .py-md-lg {
        padding-bottom: 1.5rem !important;
    }
    .pl-md-lg,
    .px-md-lg {
        padding-left: 1.5rem !important;
    }
    .p-md-xl {
        padding: 2.5rem !important;
    }
    .pt-md-xl,
    .py-md-xl {
        padding-top: 2.5rem !important;
    }
    .pr-md-xl,
    .px-md-xl {
        padding-right: 2.5rem !important;
    }
    .pb-md-xl,
    .py-md-xl {
        padding-bottom: 2.5rem !important;
    }
    .pl-md-xl,
    .px-md-xl {
        padding-left: 2.5rem !important;
    }
    .p-md-xxl {
        padding: 5rem !important;
    }
    .pt-md-xxl,
    .py-md-xxl {
        padding-top: 5rem !important;
    }
    .pr-md-xxl,
    .px-md-xxl {
        padding-right: 5rem !important;
    }
    .pb-md-xxl,
    .py-md-xxl {
        padding-bottom: 5rem !important;
    }
    .pl-md-xxl,
    .px-md-xxl {
        padding-left: 5rem !important;
    }
    .m-md-n1 {
        margin: -0.25rem !important;
    }
    .mt-md-n1,
    .my-md-n1 {
        margin-top: -0.25rem !important;
    }
    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -0.25rem !important;
    }
    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -0.25rem !important;
    }
    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -0.25rem !important;
    }
    .m-md-n2 {
        margin: -0.5rem !important;
    }
    .mt-md-n2,
    .my-md-n2 {
        margin-top: -0.5rem !important;
    }
    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -0.5rem !important;
    }
    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -0.5rem !important;
    }
    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -0.5rem !important;
    }
    .m-md-n3 {
        margin: -1rem !important;
    }
    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important;
    }
    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important;
    }
    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important;
    }
    .m-md-n4 {
        margin: -1.5rem !important;
    }
    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important;
    }
    .m-md-n5 {
        margin: -3rem !important;
    }
    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important;
    }
    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important;
    }
    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important;
    }
    .m-md-nxs {
        margin: -0.25rem !important;
    }
    .mt-md-nxs,
    .my-md-nxs {
        margin-top: -0.25rem !important;
    }
    .mr-md-nxs,
    .mx-md-nxs {
        margin-right: -0.25rem !important;
    }
    .mb-md-nxs,
    .my-md-nxs {
        margin-bottom: -0.25rem !important;
    }
    .ml-md-nxs,
    .mx-md-nxs {
        margin-left: -0.25rem !important;
    }
    .m-md-nsm {
        margin: -0.5rem !important;
    }
    .mt-md-nsm,
    .my-md-nsm {
        margin-top: -0.5rem !important;
    }
    .mr-md-nsm,
    .mx-md-nsm {
        margin-right: -0.5rem !important;
    }
    .mb-md-nsm,
    .my-md-nsm {
        margin-bottom: -0.5rem !important;
    }
    .ml-md-nsm,
    .mx-md-nsm {
        margin-left: -0.5rem !important;
    }
    .m-md-nmdsm {
        margin: -0.75rem !important;
    }
    .mt-md-nmdsm,
    .my-md-nmdsm {
        margin-top: -0.75rem !important;
    }
    .mr-md-nmdsm,
    .mx-md-nmdsm {
        margin-right: -0.75rem !important;
    }
    .mb-md-nmdsm,
    .my-md-nmdsm {
        margin-bottom: -0.75rem !important;
    }
    .ml-md-nmdsm,
    .mx-md-nmdsm {
        margin-left: -0.75rem !important;
    }
    .m-md-ndefault {
        margin: -1rem !important;
    }
    .mt-md-ndefault,
    .my-md-ndefault {
        margin-top: -1rem !important;
    }
    .mr-md-ndefault,
    .mx-md-ndefault {
        margin-right: -1rem !important;
    }
    .mb-md-ndefault,
    .my-md-ndefault {
        margin-bottom: -1rem !important;
    }
    .ml-md-ndefault,
    .mx-md-ndefault {
        margin-left: -1rem !important;
    }
    .m-md-nmdlg {
        margin: -1.25rem !important;
    }
    .mt-md-nmdlg,
    .my-md-nmdlg {
        margin-top: -1.25rem !important;
    }
    .mr-md-nmdlg,
    .mx-md-nmdlg {
        margin-right: -1.25rem !important;
    }
    .mb-md-nmdlg,
    .my-md-nmdlg {
        margin-bottom: -1.25rem !important;
    }
    .ml-md-nmdlg,
    .mx-md-nmdlg {
        margin-left: -1.25rem !important;
    }
    .m-md-nlg {
        margin: -1.5rem !important;
    }
    .mt-md-nlg,
    .my-md-nlg {
        margin-top: -1.5rem !important;
    }
    .mr-md-nlg,
    .mx-md-nlg {
        margin-right: -1.5rem !important;
    }
    .mb-md-nlg,
    .my-md-nlg {
        margin-bottom: -1.5rem !important;
    }
    .ml-md-nlg,
    .mx-md-nlg {
        margin-left: -1.5rem !important;
    }
    .m-md-nxl {
        margin: -2.5rem !important;
    }
    .mt-md-nxl,
    .my-md-nxl {
        margin-top: -2.5rem !important;
    }
    .mr-md-nxl,
    .mx-md-nxl {
        margin-right: -2.5rem !important;
    }
    .mb-md-nxl,
    .my-md-nxl {
        margin-bottom: -2.5rem !important;
    }
    .ml-md-nxl,
    .mx-md-nxl {
        margin-left: -2.5rem !important;
    }
    .m-md-nxxl {
        margin: -5rem !important;
    }
    .mt-md-nxxl,
    .my-md-nxxl {
        margin-top: -5rem !important;
    }
    .mr-md-nxxl,
    .mx-md-nxxl {
        margin-right: -5rem !important;
    }
    .mb-md-nxxl,
    .my-md-nxxl {
        margin-bottom: -5rem !important;
    }
    .ml-md-nxxl,
    .mx-md-nxxl {
        margin-left: -5rem !important;
    }
    .m-md-auto {
        margin: auto !important;
    }
    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }
    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }
    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }
    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}
@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }
    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }
    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }
    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }
    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }
    .m-lg-1 {
        margin: 0.25rem !important;
    }
    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important;
    }
    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important;
    }
    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important;
    }
    .m-lg-2 {
        margin: 0.5rem !important;
    }
    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important;
    }
    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important;
    }
    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important;
    }
    .m-lg-3 {
        margin: 1rem !important;
    }
    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important;
    }
    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important;
    }
    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important;
    }
    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important;
    }
    .m-lg-4 {
        margin: 1.5rem !important;
    }
    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important;
    }
    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important;
    }
    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important;
    }
    .m-lg-5 {
        margin: 3rem !important;
    }
    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important;
    }
    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important;
    }
    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important;
    }
    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important;
    }
    .m-lg-xs {
        margin: 0.25rem !important;
    }
    .mt-lg-xs,
    .my-lg-xs {
        margin-top: 0.25rem !important;
    }
    .mr-lg-xs,
    .mx-lg-xs {
        margin-right: 0.25rem !important;
    }
    .mb-lg-xs,
    .my-lg-xs {
        margin-bottom: 0.25rem !important;
    }
    .ml-lg-xs,
    .mx-lg-xs {
        margin-left: 0.25rem !important;
    }
    .m-lg-sm {
        margin: 0.5rem !important;
    }
    .mt-lg-sm,
    .my-lg-sm {
        margin-top: 0.5rem !important;
    }
    .mr-lg-sm,
    .mx-lg-sm {
        margin-right: 0.5rem !important;
    }
    .mb-lg-sm,
    .my-lg-sm {
        margin-bottom: 0.5rem !important;
    }
    .ml-lg-sm,
    .mx-lg-sm {
        margin-left: 0.5rem !important;
    }
    .m-lg-mdsm {
        margin: 0.75rem !important;
    }
    .mt-lg-mdsm,
    .my-lg-mdsm {
        margin-top: 0.75rem !important;
    }
    .mr-lg-mdsm,
    .mx-lg-mdsm {
        margin-right: 0.75rem !important;
    }
    .mb-lg-mdsm,
    .my-lg-mdsm {
        margin-bottom: 0.75rem !important;
    }
    .ml-lg-mdsm,
    .mx-lg-mdsm {
        margin-left: 0.75rem !important;
    }
    .m-lg-default {
        margin: 1rem !important;
    }
    .mt-lg-default,
    .my-lg-default {
        margin-top: 1rem !important;
    }
    .mr-lg-default,
    .mx-lg-default {
        margin-right: 1rem !important;
    }
    .mb-lg-default,
    .my-lg-default {
        margin-bottom: 1rem !important;
    }
    .ml-lg-default,
    .mx-lg-default {
        margin-left: 1rem !important;
    }
    .m-lg-mdlg {
        margin: 1.25rem !important;
    }
    .mt-lg-mdlg,
    .my-lg-mdlg {
        margin-top: 1.25rem !important;
    }
    .mr-lg-mdlg,
    .mx-lg-mdlg {
        margin-right: 1.25rem !important;
    }
    .mb-lg-mdlg,
    .my-lg-mdlg {
        margin-bottom: 1.25rem !important;
    }
    .ml-lg-mdlg,
    .mx-lg-mdlg {
        margin-left: 1.25rem !important;
    }
    .m-lg-lg {
        margin: 1.5rem !important;
    }
    .mt-lg-lg,
    .my-lg-lg {
        margin-top: 1.5rem !important;
    }
    .mr-lg-lg,
    .mx-lg-lg {
        margin-right: 1.5rem !important;
    }
    .mb-lg-lg,
    .my-lg-lg {
        margin-bottom: 1.5rem !important;
    }
    .ml-lg-lg,
    .mx-lg-lg {
        margin-left: 1.5rem !important;
    }
    .m-lg-xl {
        margin: 2.5rem !important;
    }
    .mt-lg-xl,
    .my-lg-xl {
        margin-top: 2.5rem !important;
    }
    .mr-lg-xl,
    .mx-lg-xl {
        margin-right: 2.5rem !important;
    }
    .mb-lg-xl,
    .my-lg-xl {
        margin-bottom: 2.5rem !important;
    }
    .ml-lg-xl,
    .mx-lg-xl {
        margin-left: 2.5rem !important;
    }
    .m-lg-xxl {
        margin: 5rem !important;
    }
    .mt-lg-xxl,
    .my-lg-xxl {
        margin-top: 5rem !important;
    }
    .mr-lg-xxl,
    .mx-lg-xxl {
        margin-right: 5rem !important;
    }
    .mb-lg-xxl,
    .my-lg-xxl {
        margin-bottom: 5rem !important;
    }
    .ml-lg-xxl,
    .mx-lg-xxl {
        margin-left: 5rem !important;
    }
    .p-lg-0 {
        padding: 0 !important;
    }
    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }
    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }
    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }
    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }
    .p-lg-1 {
        padding: 0.25rem !important;
    }
    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important;
    }
    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important;
    }
    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important;
    }
    .p-lg-2 {
        padding: 0.5rem !important;
    }
    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important;
    }
    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important;
    }
    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important;
    }
    .p-lg-3 {
        padding: 1rem !important;
    }
    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important;
    }
    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important;
    }
    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important;
    }
    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important;
    }
    .p-lg-4 {
        padding: 1.5rem !important;
    }
    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important;
    }
    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important;
    }
    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }
    .p-lg-5 {
        padding: 3rem !important;
    }
    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important;
    }
    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important;
    }
    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important;
    }
    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }
    .p-lg-xs {
        padding: 0.25rem !important;
    }
    .pt-lg-xs,
    .py-lg-xs {
        padding-top: 0.25rem !important;
    }
    .pr-lg-xs,
    .px-lg-xs {
        padding-right: 0.25rem !important;
    }
    .pb-lg-xs,
    .py-lg-xs {
        padding-bottom: 0.25rem !important;
    }
    .pl-lg-xs,
    .px-lg-xs {
        padding-left: 0.25rem !important;
    }
    .p-lg-sm {
        padding: 0.5rem !important;
    }
    .pt-lg-sm,
    .py-lg-sm {
        padding-top: 0.5rem !important;
    }
    .pr-lg-sm,
    .px-lg-sm {
        padding-right: 0.5rem !important;
    }
    .pb-lg-sm,
    .py-lg-sm {
        padding-bottom: 0.5rem !important;
    }
    .pl-lg-sm,
    .px-lg-sm {
        padding-left: 0.5rem !important;
    }
    .p-lg-mdsm {
        padding: 0.75rem !important;
    }
    .pt-lg-mdsm,
    .py-lg-mdsm {
        padding-top: 0.75rem !important;
    }
    .pr-lg-mdsm,
    .px-lg-mdsm {
        padding-right: 0.75rem !important;
    }
    .pb-lg-mdsm,
    .py-lg-mdsm {
        padding-bottom: 0.75rem !important;
    }
    .pl-lg-mdsm,
    .px-lg-mdsm {
        padding-left: 0.75rem !important;
    }
    .p-lg-default {
        padding: 1rem !important;
    }
    .pt-lg-default,
    .py-lg-default {
        padding-top: 1rem !important;
    }
    .pr-lg-default,
    .px-lg-default {
        padding-right: 1rem !important;
    }
    .pb-lg-default,
    .py-lg-default {
        padding-bottom: 1rem !important;
    }
    .pl-lg-default,
    .px-lg-default {
        padding-left: 1rem !important;
    }
    .p-lg-mdlg {
        padding: 1.25rem !important;
    }
    .pt-lg-mdlg,
    .py-lg-mdlg {
        padding-top: 1.25rem !important;
    }
    .pr-lg-mdlg,
    .px-lg-mdlg {
        padding-right: 1.25rem !important;
    }
    .pb-lg-mdlg,
    .py-lg-mdlg {
        padding-bottom: 1.25rem !important;
    }
    .pl-lg-mdlg,
    .px-lg-mdlg {
        padding-left: 1.25rem !important;
    }
    .p-lg-lg {
        padding: 1.5rem !important;
    }
    .pt-lg-lg,
    .py-lg-lg {
        padding-top: 1.5rem !important;
    }
    .pr-lg-lg,
    .px-lg-lg {
        padding-right: 1.5rem !important;
    }
    .pb-lg-lg,
    .py-lg-lg {
        padding-bottom: 1.5rem !important;
    }
    .pl-lg-lg,
    .px-lg-lg {
        padding-left: 1.5rem !important;
    }
    .p-lg-xl {
        padding: 2.5rem !important;
    }
    .pt-lg-xl,
    .py-lg-xl {
        padding-top: 2.5rem !important;
    }
    .pr-lg-xl,
    .px-lg-xl {
        padding-right: 2.5rem !important;
    }
    .pb-lg-xl,
    .py-lg-xl {
        padding-bottom: 2.5rem !important;
    }
    .pl-lg-xl,
    .px-lg-xl {
        padding-left: 2.5rem !important;
    }
    .p-lg-xxl {
        padding: 5rem !important;
    }
    .pt-lg-xxl,
    .py-lg-xxl {
        padding-top: 5rem !important;
    }
    .pr-lg-xxl,
    .px-lg-xxl {
        padding-right: 5rem !important;
    }
    .pb-lg-xxl,
    .py-lg-xxl {
        padding-bottom: 5rem !important;
    }
    .pl-lg-xxl,
    .px-lg-xxl {
        padding-left: 5rem !important;
    }
    .m-lg-n1 {
        margin: -0.25rem !important;
    }
    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -0.25rem !important;
    }
    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -0.25rem !important;
    }
    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -0.25rem !important;
    }
    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -0.25rem !important;
    }
    .m-lg-n2 {
        margin: -0.5rem !important;
    }
    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -0.5rem !important;
    }
    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -0.5rem !important;
    }
    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -0.5rem !important;
    }
    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -0.5rem !important;
    }
    .m-lg-n3 {
        margin: -1rem !important;
    }
    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important;
    }
    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important;
    }
    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important;
    }
    .m-lg-n4 {
        margin: -1.5rem !important;
    }
    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important;
    }
    .m-lg-n5 {
        margin: -3rem !important;
    }
    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important;
    }
    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important;
    }
    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important;
    }
    .m-lg-nxs {
        margin: -0.25rem !important;
    }
    .mt-lg-nxs,
    .my-lg-nxs {
        margin-top: -0.25rem !important;
    }
    .mr-lg-nxs,
    .mx-lg-nxs {
        margin-right: -0.25rem !important;
    }
    .mb-lg-nxs,
    .my-lg-nxs {
        margin-bottom: -0.25rem !important;
    }
    .ml-lg-nxs,
    .mx-lg-nxs {
        margin-left: -0.25rem !important;
    }
    .m-lg-nsm {
        margin: -0.5rem !important;
    }
    .mt-lg-nsm,
    .my-lg-nsm {
        margin-top: -0.5rem !important;
    }
    .mr-lg-nsm,
    .mx-lg-nsm {
        margin-right: -0.5rem !important;
    }
    .mb-lg-nsm,
    .my-lg-nsm {
        margin-bottom: -0.5rem !important;
    }
    .ml-lg-nsm,
    .mx-lg-nsm {
        margin-left: -0.5rem !important;
    }
    .m-lg-nmdsm {
        margin: -0.75rem !important;
    }
    .mt-lg-nmdsm,
    .my-lg-nmdsm {
        margin-top: -0.75rem !important;
    }
    .mr-lg-nmdsm,
    .mx-lg-nmdsm {
        margin-right: -0.75rem !important;
    }
    .mb-lg-nmdsm,
    .my-lg-nmdsm {
        margin-bottom: -0.75rem !important;
    }
    .ml-lg-nmdsm,
    .mx-lg-nmdsm {
        margin-left: -0.75rem !important;
    }
    .m-lg-ndefault {
        margin: -1rem !important;
    }
    .mt-lg-ndefault,
    .my-lg-ndefault {
        margin-top: -1rem !important;
    }
    .mr-lg-ndefault,
    .mx-lg-ndefault {
        margin-right: -1rem !important;
    }
    .mb-lg-ndefault,
    .my-lg-ndefault {
        margin-bottom: -1rem !important;
    }
    .ml-lg-ndefault,
    .mx-lg-ndefault {
        margin-left: -1rem !important;
    }
    .m-lg-nmdlg {
        margin: -1.25rem !important;
    }
    .mt-lg-nmdlg,
    .my-lg-nmdlg {
        margin-top: -1.25rem !important;
    }
    .mr-lg-nmdlg,
    .mx-lg-nmdlg {
        margin-right: -1.25rem !important;
    }
    .mb-lg-nmdlg,
    .my-lg-nmdlg {
        margin-bottom: -1.25rem !important;
    }
    .ml-lg-nmdlg,
    .mx-lg-nmdlg {
        margin-left: -1.25rem !important;
    }
    .m-lg-nlg {
        margin: -1.5rem !important;
    }
    .mt-lg-nlg,
    .my-lg-nlg {
        margin-top: -1.5rem !important;
    }
    .mr-lg-nlg,
    .mx-lg-nlg {
        margin-right: -1.5rem !important;
    }
    .mb-lg-nlg,
    .my-lg-nlg {
        margin-bottom: -1.5rem !important;
    }
    .ml-lg-nlg,
    .mx-lg-nlg {
        margin-left: -1.5rem !important;
    }
    .m-lg-nxl {
        margin: -2.5rem !important;
    }
    .mt-lg-nxl,
    .my-lg-nxl {
        margin-top: -2.5rem !important;
    }
    .mr-lg-nxl,
    .mx-lg-nxl {
        margin-right: -2.5rem !important;
    }
    .mb-lg-nxl,
    .my-lg-nxl {
        margin-bottom: -2.5rem !important;
    }
    .ml-lg-nxl,
    .mx-lg-nxl {
        margin-left: -2.5rem !important;
    }
    .m-lg-nxxl {
        margin: -5rem !important;
    }
    .mt-lg-nxxl,
    .my-lg-nxxl {
        margin-top: -5rem !important;
    }
    .mr-lg-nxxl,
    .mx-lg-nxxl {
        margin-right: -5rem !important;
    }
    .mb-lg-nxxl,
    .my-lg-nxxl {
        margin-bottom: -5rem !important;
    }
    .ml-lg-nxxl,
    .mx-lg-nxxl {
        margin-left: -5rem !important;
    }
    .m-lg-auto {
        margin: auto !important;
    }
    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }
    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }
    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }
    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
}
@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important;
    }
    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }
    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }
    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }
    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }
    .m-xl-1 {
        margin: 0.25rem !important;
    }
    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }
    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }
    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }
    .m-xl-2 {
        margin: 0.5rem !important;
    }
    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }
    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }
    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }
    .m-xl-3 {
        margin: 1rem !important;
    }
    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }
    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }
    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }
    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }
    .m-xl-4 {
        margin: 1.5rem !important;
    }
    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }
    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }
    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }
    .m-xl-5 {
        margin: 3rem !important;
    }
    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }
    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }
    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }
    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }
    .m-xl-xs {
        margin: 0.25rem !important;
    }
    .mt-xl-xs,
    .my-xl-xs {
        margin-top: 0.25rem !important;
    }
    .mr-xl-xs,
    .mx-xl-xs {
        margin-right: 0.25rem !important;
    }
    .mb-xl-xs,
    .my-xl-xs {
        margin-bottom: 0.25rem !important;
    }
    .ml-xl-xs,
    .mx-xl-xs {
        margin-left: 0.25rem !important;
    }
    .m-xl-sm {
        margin: 0.5rem !important;
    }
    .mt-xl-sm,
    .my-xl-sm {
        margin-top: 0.5rem !important;
    }
    .mr-xl-sm,
    .mx-xl-sm {
        margin-right: 0.5rem !important;
    }
    .mb-xl-sm,
    .my-xl-sm {
        margin-bottom: 0.5rem !important;
    }
    .ml-xl-sm,
    .mx-xl-sm {
        margin-left: 0.5rem !important;
    }
    .m-xl-mdsm {
        margin: 0.75rem !important;
    }
    .mt-xl-mdsm,
    .my-xl-mdsm {
        margin-top: 0.75rem !important;
    }
    .mr-xl-mdsm,
    .mx-xl-mdsm {
        margin-right: 0.75rem !important;
    }
    .mb-xl-mdsm,
    .my-xl-mdsm {
        margin-bottom: 0.75rem !important;
    }
    .ml-xl-mdsm,
    .mx-xl-mdsm {
        margin-left: 0.75rem !important;
    }
    .m-xl-default {
        margin: 1rem !important;
    }
    .mt-xl-default,
    .my-xl-default {
        margin-top: 1rem !important;
    }
    .mr-xl-default,
    .mx-xl-default {
        margin-right: 1rem !important;
    }
    .mb-xl-default,
    .my-xl-default {
        margin-bottom: 1rem !important;
    }
    .ml-xl-default,
    .mx-xl-default {
        margin-left: 1rem !important;
    }
    .m-xl-mdlg {
        margin: 1.25rem !important;
    }
    .mt-xl-mdlg,
    .my-xl-mdlg {
        margin-top: 1.25rem !important;
    }
    .mr-xl-mdlg,
    .mx-xl-mdlg {
        margin-right: 1.25rem !important;
    }
    .mb-xl-mdlg,
    .my-xl-mdlg {
        margin-bottom: 1.25rem !important;
    }
    .ml-xl-mdlg,
    .mx-xl-mdlg {
        margin-left: 1.25rem !important;
    }
    .m-xl-lg {
        margin: 1.5rem !important;
    }
    .mt-xl-lg,
    .my-xl-lg {
        margin-top: 1.5rem !important;
    }
    .mr-xl-lg,
    .mx-xl-lg {
        margin-right: 1.5rem !important;
    }
    .mb-xl-lg,
    .my-xl-lg {
        margin-bottom: 1.5rem !important;
    }
    .ml-xl-lg,
    .mx-xl-lg {
        margin-left: 1.5rem !important;
    }
    .m-xl-xl {
        margin: 2.5rem !important;
    }
    .mt-xl-xl,
    .my-xl-xl {
        margin-top: 2.5rem !important;
    }
    .mr-xl-xl,
    .mx-xl-xl {
        margin-right: 2.5rem !important;
    }
    .mb-xl-xl,
    .my-xl-xl {
        margin-bottom: 2.5rem !important;
    }
    .ml-xl-xl,
    .mx-xl-xl {
        margin-left: 2.5rem !important;
    }
    .m-xl-xxl {
        margin: 5rem !important;
    }
    .mt-xl-xxl,
    .my-xl-xxl {
        margin-top: 5rem !important;
    }
    .mr-xl-xxl,
    .mx-xl-xxl {
        margin-right: 5rem !important;
    }
    .mb-xl-xxl,
    .my-xl-xxl {
        margin-bottom: 5rem !important;
    }
    .ml-xl-xxl,
    .mx-xl-xxl {
        margin-left: 5rem !important;
    }
    .p-xl-0 {
        padding: 0 !important;
    }
    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }
    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }
    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }
    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }
    .p-xl-1 {
        padding: 0.25rem !important;
    }
    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }
    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }
    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }
    .p-xl-2 {
        padding: 0.5rem !important;
    }
    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }
    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }
    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }
    .p-xl-3 {
        padding: 1rem !important;
    }
    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }
    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }
    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }
    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }
    .p-xl-4 {
        padding: 1.5rem !important;
    }
    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }
    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }
    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }
    .p-xl-5 {
        padding: 3rem !important;
    }
    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }
    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }
    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }
    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }
    .p-xl-xs {
        padding: 0.25rem !important;
    }
    .pt-xl-xs,
    .py-xl-xs {
        padding-top: 0.25rem !important;
    }
    .pr-xl-xs,
    .px-xl-xs {
        padding-right: 0.25rem !important;
    }
    .pb-xl-xs,
    .py-xl-xs {
        padding-bottom: 0.25rem !important;
    }
    .pl-xl-xs,
    .px-xl-xs {
        padding-left: 0.25rem !important;
    }
    .p-xl-sm {
        padding: 0.5rem !important;
    }
    .pt-xl-sm,
    .py-xl-sm {
        padding-top: 0.5rem !important;
    }
    .pr-xl-sm,
    .px-xl-sm {
        padding-right: 0.5rem !important;
    }
    .pb-xl-sm,
    .py-xl-sm {
        padding-bottom: 0.5rem !important;
    }
    .pl-xl-sm,
    .px-xl-sm {
        padding-left: 0.5rem !important;
    }
    .p-xl-mdsm {
        padding: 0.75rem !important;
    }
    .pt-xl-mdsm,
    .py-xl-mdsm {
        padding-top: 0.75rem !important;
    }
    .pr-xl-mdsm,
    .px-xl-mdsm {
        padding-right: 0.75rem !important;
    }
    .pb-xl-mdsm,
    .py-xl-mdsm {
        padding-bottom: 0.75rem !important;
    }
    .pl-xl-mdsm,
    .px-xl-mdsm {
        padding-left: 0.75rem !important;
    }
    .p-xl-default {
        padding: 1rem !important;
    }
    .pt-xl-default,
    .py-xl-default {
        padding-top: 1rem !important;
    }
    .pr-xl-default,
    .px-xl-default {
        padding-right: 1rem !important;
    }
    .pb-xl-default,
    .py-xl-default {
        padding-bottom: 1rem !important;
    }
    .pl-xl-default,
    .px-xl-default {
        padding-left: 1rem !important;
    }
    .p-xl-mdlg {
        padding: 1.25rem !important;
    }
    .pt-xl-mdlg,
    .py-xl-mdlg {
        padding-top: 1.25rem !important;
    }
    .pr-xl-mdlg,
    .px-xl-mdlg {
        padding-right: 1.25rem !important;
    }
    .pb-xl-mdlg,
    .py-xl-mdlg {
        padding-bottom: 1.25rem !important;
    }
    .pl-xl-mdlg,
    .px-xl-mdlg {
        padding-left: 1.25rem !important;
    }
    .p-xl-lg {
        padding: 1.5rem !important;
    }
    .pt-xl-lg,
    .py-xl-lg {
        padding-top: 1.5rem !important;
    }
    .pr-xl-lg,
    .px-xl-lg {
        padding-right: 1.5rem !important;
    }
    .pb-xl-lg,
    .py-xl-lg {
        padding-bottom: 1.5rem !important;
    }
    .pl-xl-lg,
    .px-xl-lg {
        padding-left: 1.5rem !important;
    }
    .p-xl-xl {
        padding: 2.5rem !important;
    }
    .pt-xl-xl,
    .py-xl-xl {
        padding-top: 2.5rem !important;
    }
    .pr-xl-xl,
    .px-xl-xl {
        padding-right: 2.5rem !important;
    }
    .pb-xl-xl,
    .py-xl-xl {
        padding-bottom: 2.5rem !important;
    }
    .pl-xl-xl,
    .px-xl-xl {
        padding-left: 2.5rem !important;
    }
    .p-xl-xxl {
        padding: 5rem !important;
    }
    .pt-xl-xxl,
    .py-xl-xxl {
        padding-top: 5rem !important;
    }
    .pr-xl-xxl,
    .px-xl-xxl {
        padding-right: 5rem !important;
    }
    .pb-xl-xxl,
    .py-xl-xxl {
        padding-bottom: 5rem !important;
    }
    .pl-xl-xxl,
    .px-xl-xxl {
        padding-left: 5rem !important;
    }
    .m-xl-n1 {
        margin: -0.25rem !important;
    }
    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -0.25rem !important;
    }
    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -0.25rem !important;
    }
    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -0.25rem !important;
    }
    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -0.25rem !important;
    }
    .m-xl-n2 {
        margin: -0.5rem !important;
    }
    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -0.5rem !important;
    }
    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -0.5rem !important;
    }
    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -0.5rem !important;
    }
    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -0.5rem !important;
    }
    .m-xl-n3 {
        margin: -1rem !important;
    }
    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important;
    }
    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important;
    }
    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important;
    }
    .m-xl-n4 {
        margin: -1.5rem !important;
    }
    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important;
    }
    .m-xl-n5 {
        margin: -3rem !important;
    }
    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important;
    }
    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important;
    }
    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important;
    }
    .m-xl-nxs {
        margin: -0.25rem !important;
    }
    .mt-xl-nxs,
    .my-xl-nxs {
        margin-top: -0.25rem !important;
    }
    .mr-xl-nxs,
    .mx-xl-nxs {
        margin-right: -0.25rem !important;
    }
    .mb-xl-nxs,
    .my-xl-nxs {
        margin-bottom: -0.25rem !important;
    }
    .ml-xl-nxs,
    .mx-xl-nxs {
        margin-left: -0.25rem !important;
    }
    .m-xl-nsm {
        margin: -0.5rem !important;
    }
    .mt-xl-nsm,
    .my-xl-nsm {
        margin-top: -0.5rem !important;
    }
    .mr-xl-nsm,
    .mx-xl-nsm {
        margin-right: -0.5rem !important;
    }
    .mb-xl-nsm,
    .my-xl-nsm {
        margin-bottom: -0.5rem !important;
    }
    .ml-xl-nsm,
    .mx-xl-nsm {
        margin-left: -0.5rem !important;
    }
    .m-xl-nmdsm {
        margin: -0.75rem !important;
    }
    .mt-xl-nmdsm,
    .my-xl-nmdsm {
        margin-top: -0.75rem !important;
    }
    .mr-xl-nmdsm,
    .mx-xl-nmdsm {
        margin-right: -0.75rem !important;
    }
    .mb-xl-nmdsm,
    .my-xl-nmdsm {
        margin-bottom: -0.75rem !important;
    }
    .ml-xl-nmdsm,
    .mx-xl-nmdsm {
        margin-left: -0.75rem !important;
    }
    .m-xl-ndefault {
        margin: -1rem !important;
    }
    .mt-xl-ndefault,
    .my-xl-ndefault {
        margin-top: -1rem !important;
    }
    .mr-xl-ndefault,
    .mx-xl-ndefault {
        margin-right: -1rem !important;
    }
    .mb-xl-ndefault,
    .my-xl-ndefault {
        margin-bottom: -1rem !important;
    }
    .ml-xl-ndefault,
    .mx-xl-ndefault {
        margin-left: -1rem !important;
    }
    .m-xl-nmdlg {
        margin: -1.25rem !important;
    }
    .mt-xl-nmdlg,
    .my-xl-nmdlg {
        margin-top: -1.25rem !important;
    }
    .mr-xl-nmdlg,
    .mx-xl-nmdlg {
        margin-right: -1.25rem !important;
    }
    .mb-xl-nmdlg,
    .my-xl-nmdlg {
        margin-bottom: -1.25rem !important;
    }
    .ml-xl-nmdlg,
    .mx-xl-nmdlg {
        margin-left: -1.25rem !important;
    }
    .m-xl-nlg {
        margin: -1.5rem !important;
    }
    .mt-xl-nlg,
    .my-xl-nlg {
        margin-top: -1.5rem !important;
    }
    .mr-xl-nlg,
    .mx-xl-nlg {
        margin-right: -1.5rem !important;
    }
    .mb-xl-nlg,
    .my-xl-nlg {
        margin-bottom: -1.5rem !important;
    }
    .ml-xl-nlg,
    .mx-xl-nlg {
        margin-left: -1.5rem !important;
    }
    .m-xl-nxl {
        margin: -2.5rem !important;
    }
    .mt-xl-nxl,
    .my-xl-nxl {
        margin-top: -2.5rem !important;
    }
    .mr-xl-nxl,
    .mx-xl-nxl {
        margin-right: -2.5rem !important;
    }
    .mb-xl-nxl,
    .my-xl-nxl {
        margin-bottom: -2.5rem !important;
    }
    .ml-xl-nxl,
    .mx-xl-nxl {
        margin-left: -2.5rem !important;
    }
    .m-xl-nxxl {
        margin: -5rem !important;
    }
    .mt-xl-nxxl,
    .my-xl-nxxl {
        margin-top: -5rem !important;
    }
    .mr-xl-nxxl,
    .mx-xl-nxxl {
        margin-right: -5rem !important;
    }
    .mb-xl-nxxl,
    .my-xl-nxxl {
        margin-bottom: -5rem !important;
    }
    .ml-xl-nxxl,
    .mx-xl-nxxl {
        margin-left: -5rem !important;
    }
    .m-xl-auto {
        margin: auto !important;
    }
    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }
    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }
    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }
    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
}
.text-monospace {
    font-family:
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        Liberation Mono,
        Courier New,
        monospace !important;
}
.text-justify {
    text-align: justify !important;
}
.text-wrap {
    white-space: normal !important;
}
.text-nowrap {
    white-space: nowrap !important;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}
@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }
    .text-sm-right {
        text-align: right !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}
@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }
    .text-md-right {
        text-align: right !important;
    }
    .text-md-center {
        text-align: center !important;
    }
}
@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }
    .text-lg-right {
        text-align: right !important;
    }
    .text-lg-center {
        text-align: center !important;
    }
}
@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }
    .text-xl-right {
        text-align: right !important;
    }
    .text-xl-center {
        text-align: center !important;
    }
}
.text-lowercase {
    text-transform: lowercase !important;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.text-capitalize {
    text-transform: capitalize !important;
}
.font-weight-light {
    font-weight: 300 !important;
}
.font-weight-lighter {
    font-weight: lighter !important;
}
.font-weight-normal {
    font-weight: 400 !important;
}
.font-weight-bold {
    font-weight: 700 !important;
}
.font-weight-bolder {
    font-weight: bolder !important;
}
.font-italic {
    font-style: italic !important;
}
.text-white {
    color: #fff !important;
}
.text-primary {
    color: #0d5fad !important;
}
a.text-primary:focus,
a.text-primary:hover {
    color: #083866 !important;
}
.text-secondary {
    color: #616161 !important;
}
a.text-secondary:focus,
a.text-secondary:hover {
    color: #3b3b3b !important;
}
.text-success {
    color: #14916c !important;
}
a.text-success:focus,
a.text-success:hover {
    color: #0b4e3a !important;
}
.text-info {
    color: #0d5fad !important;
}
a.text-info:focus,
a.text-info:hover {
    color: #083866 !important;
}
.text-warning {
    color: #ffeb3b !important;
}
a.text-warning:focus,
a.text-warning:hover {
    color: #eed500 !important;
}
.text-danger {
    color: #d60a15 !important;
}
a.text-danger:focus,
a.text-danger:hover {
    color: #8d070e !important;
}
.text-light {
    color: #9e9e9e !important;
}
a.text-light:focus,
a.text-light:hover {
    color: #787878 !important;
}
.text-dark {
    color: #616161 !important;
}
a.text-dark:focus,
a.text-dark:hover {
    color: #3b3b3b !important;
}
.text-body {
    color: #333 !important;
}
.text-muted {
    color: #6c757d !important;
}
.text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
    color: hsla(0, 0%, 100%, 0.5) !important;
}
.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.text-decoration-none {
    text-decoration: none !important;
}
.text-break {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}
.text-reset {
    color: inherit !important;
}
.visible {
    visibility: visible !important;
}
.invisible {
    visibility: hidden !important;
}
@media print {
    *,
    :after,
    :before {
        text-shadow: none !important;
        box-shadow: none !important;
    }
    a:not(.btn) {
        text-decoration: underline;
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    pre {
        white-space: pre-wrap !important;
    }
    blockquote,
    pre {
        border: 1px solid #adb5bd;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    img,
    tr {
        page-break-inside: avoid;
    }
    h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    @page {
        size: a3;
    }
    .container,
    body {
        min-width: 992px !important;
    }
    .navbar {
        display: none;
    }
    .badge {
        border: 1px solid #000;
    }
    .table,
    .wp-block-table {
        border-collapse: collapse !important;
    }
    .table td,
    .table th,
    .wp-block-table td,
    .wp-block-table th {
        background-color: #fff !important;
    }
    .table-bordered td,
    .table-bordered th,
    .wp-block-table.is-style-stripes td,
    .wp-block-table.is-style-stripes th,
    .wp-block-table td,
    .wp-block-table th {
        border: 1px solid #dee2e6 !important;
    }
    .table-dark {
        color: inherit;
    }
    .table-dark tbody + tbody,
    .table-dark td,
    .table-dark th,
    .table-dark thead th {
        border-color: #eee;
    }
    .table .thead-dark th,
    .wp-block-table .thead-dark th {
        color: inherit;
        border-color: #eee;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-50%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(50%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        transform: perspective(400px);
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
@-webkit-keyframes modalContentFadeIn {
    0% {
        opacity: 0;
        top: -20px;
    }
    to {
        opacity: 1;
        top: 0;
    }
}
@keyframes modalContentFadeIn {
    0% {
        opacity: 0;
        top: -20px;
    }
    to {
        opacity: 1;
        top: 0;
    }
}
@-webkit-keyframes modalCloseButtonFadeIn {
    0% {
        opacity: 0;
        top: calc(1rem - 20px);
    }
    to {
        opacity: 0.5;
        top: 1rem;
    }
}
@keyframes modalCloseButtonFadeIn {
    0% {
        opacity: 0;
        top: calc(1rem - 20px);
    }
    to {
        opacity: 0.5;
        top: 1rem;
    }
}
.content-education-wrapper .content,
.theme-white {
    position: relative;
    background: #fff;
    color: #333;
}
.content-education-wrapper .content:before,
.theme-white:before {
    content: "";
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: -1;
}
.content-education-wrapper .content a,
.content-education-wrapper .content a:hover,
.theme-white a,
.theme-white a:hover {
    color: #212121;
}
.theme-gray {
    position: relative;
    background: #f1f1f1;
    color: #333;
}
.theme-gray:before {
    content: "";
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #f1f1f1;
    z-index: -1;
}
.theme-gray a,
.theme-gray a:hover {
    color: #212121;
}
.content-education-wrapper .content:nth-child(2n + 2),
.theme-dark {
    position: relative;
    background: #212121;
    color: #f5f5f5;
}
.content-education-wrapper .content:nth-child(2n + 2):before,
.theme-dark:before {
    content: "";
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #212121;
    z-index: -1;
}
.content-education-wrapper .content:nth-child(2n + 2) a,
.content-education-wrapper .content:nth-child(2n + 2) a:hover,
.theme-dark a,
.theme-dark a:hover {
    color: #fff;
}
.theme-bf-1 {
    background: #fdfcf5;
}
.theme-bf-1 .accordion .accordion__item__title,
.theme-bf-1 .accordion .accordion__item__title:after,
.theme-bf-1 .accordion .accordion__item__title:hover:after {
    color: #fff176;
}
.theme-bf-1 .accordion--light .accordion__item__title {
    border-color: #fff176;
}
.theme-bf-1 .linklist__item:before {
    background: #fff176;
}
.theme-bf-1 .subpages {
    background: #fffbdc;
    border-bottom-color: #fff9c3;
}
.theme-bf-1 a.card:after,
.theme-bf-1 a.card:before {
    border-color: #fff176;
}
.theme-bf-1 .subpages {
    background: #fff176;
    border-bottom-color: #ffee5d;
}
.theme-bf-1 .subpages__item {
    color: #a99800 !important;
}
.theme-bf-1 .subpages__item.active,
.theme-bf-1 .subpages__item:hover {
    color: #766a00 !important;
}
.theme-bf-2 {
    background: #f9f6e0;
}
.theme-bf-2 .accordion .accordion__item__title,
.theme-bf-2 .accordion .accordion__item__title:after,
.theme-bf-2 .accordion .accordion__item__title:hover:after {
    color: #ffe055;
}
.theme-bf-2 .accordion--light .accordion__item__title {
    border-color: #ffe055;
}
.theme-bf-2 .linklist__item:before {
    background: #ffe055;
}
.theme-bf-2 .subpages {
    background: #fff3bb;
    border-bottom-color: #ffeea2;
}
.theme-bf-2 a.card:after,
.theme-bf-2 a.card:before {
    border-color: #ffe055;
}
.theme-bf-2 .subpages {
    background: #ffe055;
    border-bottom-color: #ffdb3c;
}
.theme-bf-2 .subpages__item {
    color: #6e6300 !important;
}
.theme-bf-2 .subpages__item.active,
.theme-bf-2 .subpages__item:hover {
    color: #221e00 !important;
}
.theme-3bf {
    background: #ece1f1;
}
.theme-3bf .accordion .accordion__item__title,
.theme-3bf .accordion .accordion__item__title:after,
.theme-3bf .accordion .accordion__item__title:hover:after {
    color: #c574eb;
}
.theme-3bf .accordion--light .accordion__item__title {
    border-color: #c574eb;
}
.theme-3bf .linklist__item:before {
    background: #c574eb;
}
.theme-3bf .subpages {
    background: #eacdf8;
    border-bottom-color: #e1b7f5;
}
.theme-3bf a.card:after,
.theme-3bf a.card:before {
    border-color: #c574eb;
}
.theme-3bf .subpages {
    background: #c574eb;
    border-bottom-color: #bc5ee8;
}
.theme-3bf .subpages__item {
    color: hsla(0, 0%, 100%, 0.7) !important;
}
.theme-3bf .subpages__item.active,
.theme-3bf .subpages__item:hover {
    color: #fff !important;
}
.theme-hbf {
    background: #e6f7f2;
}
.theme-hbf .accordion .accordion__item__title,
.theme-hbf .accordion .accordion__item__title:after,
.theme-hbf .accordion .accordion__item__title:hover:after {
    color: #1aaf75;
}
.theme-hbf .accordion--light .accordion__item__title {
    border-color: #1aaf75;
}
.theme-hbf .linklist__item:before {
    background: #1aaf75;
}
.theme-hbf .subpages {
    background: #4be4a8;
    border-bottom-color: #35e19e;
}
.theme-hbf a.card:after,
.theme-hbf a.card:before {
    border-color: #1aaf75;
}
.theme-hbf .subpages {
    background: #14916c;
    border-bottom-color: #117b5b;
}
.theme-hbf .subpages__item {
    color: hsla(0, 0%, 100%, 0.7) !important;
}
.theme-hbf .subpages__item.active,
.theme-hbf .subpages__item:hover {
    color: #fff !important;
}
.theme-bos-2 {
    background: #fff0eb;
}
.theme-bos-2 .accordion .accordion__item__title,
.theme-bos-2 .accordion .accordion__item__title:after,
.theme-bos-2 .accordion .accordion__item__title:hover:after {
    color: #ff7043;
}
.theme-bos-2 .accordion--light .accordion__item__title {
    border-color: #ff7043;
}
.theme-bos-2 .linklist__item:before {
    background: #ff7043;
}
.theme-bos-2 .subpages {
    background: #ffbea9;
    border-bottom-color: #ffaa90;
}
.theme-bos-2 a.card:after,
.theme-bos-2 a.card:before {
    border-color: #ff7043;
}
.theme-bos-2 .subpages {
    background: #ff5722;
    border-bottom-color: #ff4409;
}
.theme-bos-2 .subpages__item {
    color: hsla(0, 0%, 100%, 0.7) !important;
}
.theme-bos-2 .subpages__item.active,
.theme-bos-2 .subpages__item:hover {
    color: #fff !important;
}
.theme-fs {
    background: #fff8f9;
}
.theme-fs .accordion .accordion__item__title,
.theme-fs .accordion .accordion__item__title:after,
.theme-fs .accordion .accordion__item__title:hover:after {
    color: #d9202a;
}
.theme-fs .accordion--light .accordion__item__title {
    border-color: #d9202a;
}
.theme-fs .linklist__item:before {
    background: #d9202a;
}
.theme-fs .subpages {
    background: #eb747b;
    border-bottom-color: #e75e66;
}
.theme-fs a.card:after,
.theme-fs a.card:before {
    border-color: #d9202a;
}
.theme-fs .subpages {
    background: #d60a15;
    border-bottom-color: #be0913;
}
.theme-fs .subpages__item {
    color: hsla(0, 0%, 100%, 0.7) !important;
}
.theme-fs .subpages__item.active,
.theme-fs .subpages__item:hover {
    color: #fff !important;
}
.theme-bvj {
    background: #f1f9fd;
}
.theme-bvj .accordion .accordion__item__title,
.theme-bvj .accordion .accordion__item__title:after,
.theme-bvj .accordion .accordion__item__title:hover:after {
    color: #3eb7e8;
}
.theme-bvj .accordion--light .accordion__item__title {
    border-color: #3eb7e8;
}
.theme-bvj .linklist__item:before {
    background: #3eb7e8;
}
.theme-bvj .subpages {
    background: #99d9f3;
    border-bottom-color: #82d1f0;
}
.theme-bvj a.card:after,
.theme-bvj a.card:before {
    border-color: #3eb7e8;
}
.theme-bvj .subpages__item {
    color: #1580ab !important;
}
.theme-bvj .subpages__item.active,
.theme-bvj .subpages__item:hover {
    color: #0c4d67 !important;
}
.theme-bs {
    background: #f2f9ff;
}
.theme-bs .accordion .accordion__item__title,
.theme-bs .accordion .accordion__item__title:after,
.theme-bs .accordion .accordion__item__title:hover:after {
    color: #1179dc;
}
.theme-bs .accordion--light .accordion__item__title {
    border-color: #1179dc;
}
.theme-bs .linklist__item:before {
    background: #1179dc;
}
.theme-bs .subpages {
    background: #60abf3;
    border-bottom-color: #489ff1;
}
.theme-bs a.card:after,
.theme-bs a.card:before {
    border-color: #1179dc;
}
.theme-bs .subpages__item {
    color: #09457e !important;
}
.theme-bs .subpages__item.active,
.theme-bs .subpages__item:hover {
    color: #041e36 !important;
}
@font-face {
    font-family: Noto Sans;
    font-style: normal;
    font-weight: 400;
    src: url(../font/noto-sans-v9-latin-ext_latin-regular.eot);
    src:
        local("Noto Sans"),
        local("NotoSans"),
        url(../font/noto-sans-v9-latin-ext_latin-regular.eot?#iefix) format("embedded-opentype"),
        url(../font/noto-sans-v9-latin-ext_latin-regular.woff2) format("woff2"),
        url(../font/noto-sans-v9-latin-ext_latin-regular.woff) format("woff"),
        url(../font/noto-sans-v9-latin-ext_latin-regular.ttf) format("truetype"),
        url(../font/noto-sans-v9-latin-ext_latin-regular.svg#NotoSans) format("svg");
}
@font-face {
    font-family: Noto Sans;
    font-style: normal;
    font-weight: 700;
    src: url(../font/noto-sans-v9-latin-ext_latin-700.eot);
    src:
        local("Noto Sans Bold"),
        local("NotoSans-Bold"),
        url(../font/noto-sans-v9-latin-ext_latin-700.eot?#iefix) format("embedded-opentype"),
        url(../font/noto-sans-v9-latin-ext_latin-700.woff2) format("woff2"),
        url(../font/noto-sans-v9-latin-ext_latin-700.woff) format("woff"),
        url(../font/noto-sans-v9-latin-ext_latin-700.ttf) format("truetype"),
        url(../font/noto-sans-v9-latin-ext_latin-700.svg#NotoSans) format("svg");
}
@font-face {
    font-family: Noto Sans;
    font-style: italic;
    font-weight: 400;
    src: url(../font/noto-sans-v9-latin-ext_latin-italic.eot);
    src:
        local("Noto Sans Italic"),
        local("NotoSans-Italic"),
        url(../font/noto-sans-v9-latin-ext_latin-italic.eot?#iefix) format("embedded-opentype"),
        url(../font/noto-sans-v9-latin-ext_latin-italic.woff2) format("woff2"),
        url(../font/noto-sans-v9-latin-ext_latin-italic.woff) format("woff"),
        url(../font/noto-sans-v9-latin-ext_latin-italic.ttf) format("truetype"),
        url(../font/noto-sans-v9-latin-ext_latin-italic.svg#NotoSans) format("svg");
}
@font-face {
    font-family: "PT Serif";
    font-style: normal;
    font-weight: 400;
    src: url(../font/pt-serif-v11-latin-ext_latin-regular.eot);
    src:
        local("PT Serif"),
        local("PTSerif-Regular"),
        url(../font/pt-serif-v11-latin-ext_latin-regular.eot?#iefix) format("embedded-opentype"),
        url(../font/pt-serif-v11-latin-ext_latin-regular.woff2) format("woff2"),
        url(../font/pt-serif-v11-latin-ext_latin-regular.woff) format("woff"),
        url(../font/pt-serif-v11-latin-ext_latin-regular.ttf) format("truetype"),
        url(../font/pt-serif-v11-latin-ext_latin-regular.svg#PTSerif) format("svg");
}
@font-face {
    font-family: "PT Serif";
    font-style: italic;
    font-weight: 400;
    src: url(../font/pt-serif-v11-latin-ext_latin-italic.eot);
    src:
        local("PT Serif Italic"),
        local("PTSerif-Italic"),
        url(../font/pt-serif-v11-latin-ext_latin-italic.eot?#iefix) format("embedded-opentype"),
        url(../font/pt-serif-v11-latin-ext_latin-italic.woff2) format("woff2"),
        url(../font/pt-serif-v11-latin-ext_latin-italic.woff) format("woff"),
        url(../font/pt-serif-v11-latin-ext_latin-italic.ttf) format("truetype"),
        url(../font/pt-serif-v11-latin-ext_latin-italic.svg#PTSerif) format("svg");
}
html {
    font-size: 0.875rem;
}
@media (min-width: 768px) {
    html {
        font-size: 1rem;
    }
}
::-moz-selection {
    background: #212121;
    color: #fff;
}
::selection {
    background: #212121;
    color: #fff;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family:
        Noto Sans,
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-weight: 700;
    word-break: break-word;
}
.h1,
.h2,
.h3,
h1,
h2,
h3 {
    text-transform: uppercase;
}
@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }
}
@media (max-width: 767.98px) {
    h2 {
        font-size: 1.75rem;
    }
}
@media (max-width: 991.98px) {
    h3 {
        font-size: 1.5rem;
    }
}
@media (max-width: 991.98px) {
    h4 {
        font-size: 1.25rem;
    }
}
@media (max-width: 991.98px) {
    h5 {
        font-size: 1.125rem;
    }
}
.heading__title {
    font-family:
        Noto Sans,
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    text-transform: uppercase;
    font-weight: 700;
}
.heading__title > a {
    font-style: normal;
    color: inherit;
}
.heading__title > a,
.heading__title > a:hover {
    text-decoration: none;
}
.heading__subtitle {
    margin-top: -0.4rem;
    margin-bottom: 1rem;
    color: #9e9e9e;
    font-style: italic;
    font-family:
        "PT Serif",
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-weight: 400;
    text-transform: none;
}
.heading__subtitle > a {
    color: inherit;
}
.heading__subtitle > a:hover {
    text-decoration: none;
}
.lead {
    font-family:
        "PT Serif",
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-style: italic;
    color: #616161;
    margin-bottom: 0;
}
.content > .lead {
    margin-bottom: 1rem;
}
.font-cursive,
.font-serif {
    font-family:
        "PT Serif",
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
}
.font-cursive {
    font-style: italic;
    font-weight: 400;
    text-transform: none;
}
.no-wrap {
    white-space: nowrap;
}
.close:focus {
    outline: none;
}
main ul {
    list-style: none;
    padding-left: 0;
}
main ul li {
    position: relative;
    padding-left: 2.5rem;
}
main ul li:before {
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: none;
    font-size: 1rem;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\E844";
    position: absolute;
    left: 1.25rem;
    font-size: 0.5rem;
    top: 0.5rem;
}
main a {
    font-style: italic;
    text-decoration: underline;
}
main a,
main a:hover {
    color: #212121;
}
ul.diamond-list {
    list-style: none;
    padding-left: 0;
}
ul.diamond-list li {
    position: relative;
    padding-left: 2.5rem;
}
ul.diamond-list li:before {
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: none;
    font-size: 1rem;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\E844";
    position: absolute;
    left: 1.25rem;
    font-size: 0.5rem;
    top: 0.5rem;
}
.wp-block-table.is-style-stripes thead > tr > th {
    border-bottom-color: #9e9e9e;
}
@media print {
    .card figure,
    .card figure *,
    .d-print-none,
    .d-print-none *,
    .footer,
    .footer *,
    .header,
    .header *,
    .icon-facebook,
    .icon-facebook *,
    .icon-mail,
    .icon-mail *,
    .icon-print,
    .icon-print *,
    .icon-twitter,
    .icon-twitter *,
    .iconteaser,
    .iconteaser *,
    .linklist,
    .linklist *,
    .slider,
    .slider *,
    .social-buttons,
    .social-buttons *,
    .subpages,
    .subpages * {
        display: none !important;
    }
    #mainContent {
        margin-top: 0 !important;
    }
    .col-xs-12 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    .accordion__item__content {
        display: block !important;
    }
}
.accordion {
    margin-bottom: 1.5rem;
}
.accordion__item {
    border: 1px solid #eee;
}
.accordion__item > a {
    position: relative;
    display: block;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.accordion__item > a:after {
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: none;
    font-size: 1.25rem;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\E820";
    color: #f5f5f5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    right: 0.75rem;
}
.accordion__item > a[aria-expanded="true"]:after {
    content: "\E823";
}
.accordion__item > a:hover:after {
    color: #fff;
}
.accordion__item__title {
    background: #212121;
    font-style: italic;
    border-bottom: 1px solid #eee;
    padding: 1rem 2.5rem 1rem 1.25rem;
    color: #fff;
    font-style: normal;
}
.accordion__item__title:hover {
    color: #fff;
}
.accordion__item__title > h5 {
    padding-left: 2rem;
}
.accordion__item__title > h5 [class^="icon-"] {
    position: absolute;
    left: 1rem;
}
.accordion__item__content {
    background: #fff;
}
.accordion__item__content p:last-child {
    margin-bottom: 0;
}
.accordion__item__body {
    padding: 1.25rem;
}
.accordion--light .accordion__item {
    border: none;
}
.accordion--light .accordion__item__title {
    background: transparent;
    padding-left: 0;
    border-color: #333;
    color: #333;
}
.accordion--light .accordion__item__title:after,
.accordion--light .accordion__item__title:hover:after {
    color: #333;
}
.accordion--light .accordion__item__title > h5 {
    font-weight: 400;
}
.accordion--light .accordion__item__title > h5 [class^="icon-"] {
    left: 0;
}
.accordion--light .accordion__item__content {
    background: transparent;
}
.accordion--light .accordion__item__body {
    padding-left: 0;
    padding-right: 0;
}
.breadcrumb {
    display: none;
    background: #212121;
    color: #9e9e9e;
}
@media (min-width: 768px) {
    .breadcrumb {
        display: flex;
    }
}
.breadcrumb__link,
.breadcrumb a {
    color: #eee;
}
.breadcrumb__link:hover,
.breadcrumb a:hover {
    color: #fff;
    text-decoration: none;
}
.breadcrumb__link .icon-home:before,
.breadcrumb a .icon-home:before {
    margin: 0 0 0 0.25rem;
    font-size: 0.875rem;
}
.btn,
form.frm-fluent-form .btn-success,
form.frm-fluent-form .ff-btn-secondary[data-action="next"],
form.frm-fluent-form .ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .ff-btn-submit.btn-success {
    text-decoration: none;
    font-style: normal;
}
.btn.btn-primary:hover,
.btn.btn-secondary:hover,
form.frm-fluent-form .btn-primary.btn-success:hover,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:hover,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:hover,
form.frm-fluent-form .btn-secondary.btn-success:hover,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:hover,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:hover,
form.frm-fluent-form .btn.btn-primary:hover {
    color: #fff !important;
}
.btn.btn-outline-primary,
.btn.btn-outline-secondary,
.btn.btn-primary,
.btn.btn-secondary,
form.frm-fluent-form .btn-outline-primary.btn-success,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .btn-outline-secondary.btn-success,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .btn-primary.btn-success,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .btn-secondary.btn-success,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .btn.btn-primary {
    position: relative;
}
.btn.btn-outline-primary:hover:before,
.btn.btn-outline-secondary:hover:before,
.btn.btn-primary:hover:before,
.btn.btn-secondary:hover:before,
form.frm-fluent-form .btn-outline-primary.btn-success:hover:before,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"]:hover:before,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"]:hover:before,
form.frm-fluent-form .btn-outline-secondary.btn-success:hover:before,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"]:hover:before,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:hover:before,
form.frm-fluent-form .btn-primary.btn-success:hover:before,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:hover:before,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:hover:before,
form.frm-fluent-form .btn-secondary.btn-success:hover:before,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:hover:before,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:hover:before {
    bottom: -1px;
    right: -1px;
    opacity: 1;
}
.btn.btn-outline-primary:hover:after,
.btn.btn-outline-secondary:hover:after,
.btn.btn-primary:hover:after,
.btn.btn-secondary:hover:after,
form.frm-fluent-form .btn-outline-primary.btn-success:hover:after,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"]:hover:after,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"]:hover:after,
form.frm-fluent-form .btn-outline-secondary.btn-success:hover:after,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"]:hover:after,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:hover:after,
form.frm-fluent-form .btn-primary.btn-success:hover:after,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:hover:after,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:hover:after,
form.frm-fluent-form .btn-secondary.btn-success:hover:after,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:hover:after,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:hover:after {
    left: -1px;
    top: -1px;
    opacity: 1;
}
.btn.btn-outline-primary:after,
.btn.btn-outline-primary:before,
.btn.btn-outline-secondary:after,
.btn.btn-outline-secondary:before,
.btn.btn-primary:after,
.btn.btn-primary:before,
.btn.btn-secondary:after,
.btn.btn-secondary:before,
form.frm-fluent-form .btn-outline-primary.btn-success:after,
form.frm-fluent-form .btn-outline-primary.btn-success:before,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"]:after,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"]:before,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"]:after,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"]:before,
form.frm-fluent-form .btn-outline-secondary.btn-success:after,
form.frm-fluent-form .btn-outline-secondary.btn-success:before,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"]:after,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"]:before,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:after,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:before,
form.frm-fluent-form .btn-primary.btn-success:after,
form.frm-fluent-form .btn-primary.btn-success:before,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:after,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:before,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:after,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:before,
form.frm-fluent-form .btn-secondary.btn-success:after,
form.frm-fluent-form .btn-secondary.btn-success:before,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:after,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:before,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:after,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:before,
form.frm-fluent-form .btn.btn-primary:after,
form.frm-fluent-form .btn.btn-primary:before {
    content: "";
    position: absolute;
    transition: all 0.5s ease 0s;
    opacity: 0;
}
.btn.btn-outline-primary:before,
.btn.btn-outline-secondary:before,
.btn.btn-primary:before,
.btn.btn-secondary:before,
form.frm-fluent-form .btn-outline-primary.btn-success:before,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"]:before,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"]:before,
form.frm-fluent-form .btn-outline-secondary.btn-success:before,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"]:before,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:before,
form.frm-fluent-form .btn-primary.btn-success:before,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:before,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:before,
form.frm-fluent-form .btn-secondary.btn-success:before,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:before,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:before,
form.frm-fluent-form .btn.btn-primary:before {
    top: -1px;
    left: -1px;
    right: 100%;
    bottom: 100%;
    border-top: 2px solid;
    border-left: 2px solid;
}
.btn.btn-outline-primary:after,
.btn.btn-outline-secondary:after,
.btn.btn-primary:after,
.btn.btn-secondary:after,
form.frm-fluent-form .btn-outline-primary.btn-success:after,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"]:after,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"]:after,
form.frm-fluent-form .btn-outline-secondary.btn-success:after,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"]:after,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:after,
form.frm-fluent-form .btn-primary.btn-success:after,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:after,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:after,
form.frm-fluent-form .btn-secondary.btn-success:after,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:after,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:after,
form.frm-fluent-form .btn.btn-primary:after {
    left: 100%;
    top: 100%;
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}
.btn.btn-primary,
form.frm-fluent-form .btn-primary.btn-success,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .btn.btn-primary {
    color: #fff;
    background-color: #212121;
    border-color: #212121;
    color: #eee !important;
}
.btn.btn-primary:hover,
form.frm-fluent-form .btn-primary.btn-success:hover,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:hover,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:hover,
form.frm-fluent-form .btn.btn-primary:hover {
    color: #fff;
    background-color: #1b1b1b;
    border-color: #1b1b1b;
}
.btn.btn-primary.focus,
.btn.btn-primary:focus,
form.frm-fluent-form .btn-primary.btn-success:focus,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:focus,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:focus,
form.frm-fluent-form .btn-primary.focus.btn-success,
form.frm-fluent-form .btn-primary.focus.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-primary.focus.ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .btn.btn-primary:focus,
form.frm-fluent-form .btn.focus.btn-primary {
    box-shadow: 0 0 0 0.2rem rgba(66, 66, 66, 0.5);
}
.btn.btn-primary.disabled,
.btn.btn-primary:disabled,
form.frm-fluent-form .btn-primary.btn-success:disabled,
form.frm-fluent-form .btn-primary.disabled.btn-success,
form.frm-fluent-form .btn-primary.disabled.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-primary.disabled.ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:disabled,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:disabled,
form.frm-fluent-form .btn.btn-primary:disabled,
form.frm-fluent-form .btn.disabled.btn-primary {
    color: #fff;
    background-color: #212121;
    border-color: #212121;
}
.btn.btn-primary:not(:disabled):not(.disabled).active,
.btn.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn.btn-primary.dropdown-toggle,
form.frm-fluent-form .btn-primary.btn-success:not(:disabled):not(.disabled).active,
form.frm-fluent-form .btn-primary.btn-success:not(:disabled):not(.disabled):active,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled).active,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled):active,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled).active,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled):active,
form.frm-fluent-form .show > .btn-primary.dropdown-toggle.btn-success,
form.frm-fluent-form .show > .btn-primary.dropdown-toggle.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .show > .btn-primary.dropdown-toggle.ff-btn-secondary[data-action="prev"] {
    color: #fff;
    background-color: #1b1b1b;
    border-color: #1b1b1b;
}
.btn.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn.btn-primary.dropdown-toggle:focus,
form.frm-fluent-form .btn-primary.btn-success:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form .btn-primary.btn-success:not(:disabled):not(.disabled):active:focus,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled):active:focus,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled):active:focus,
form.frm-fluent-form .show > .btn-primary.dropdown-toggle.btn-success:focus,
form.frm-fluent-form .show > .btn-primary.dropdown-toggle.ff-btn-secondary[data-action="next"]:focus,
form.frm-fluent-form .show > .btn-primary.dropdown-toggle.ff-btn-secondary[data-action="prev"]:focus {
    box-shadow: 0 0 0 0.2rem rgba(66, 66, 66, 0.5);
}
.btn.btn-primary:after,
.btn.btn-primary:before,
form.frm-fluent-form .btn-primary.btn-success:after,
form.frm-fluent-form .btn-primary.btn-success:before,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:after,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="next"]:before,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:after,
form.frm-fluent-form .btn-primary.ff-btn-secondary[data-action="prev"]:before,
form.frm-fluent-form .btn.btn-primary:after,
form.frm-fluent-form .btn.btn-primary:before {
    border-color: #9e9e9e;
}
.btn.btn-secondary,
form.frm-fluent-form .btn-secondary.btn-success,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"] {
    color: #fff;
    background-color: #757575;
    border-color: #757575;
    color: #eee !important;
}
.btn.btn-secondary:hover,
form.frm-fluent-form .btn-secondary.btn-success:hover,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:hover,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:hover {
    color: #fff;
    background-color: #616161;
    border-color: #616161;
}
.btn.btn-secondary.focus,
.btn.btn-secondary:focus,
form.frm-fluent-form .btn-secondary.btn-success:focus,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:focus,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:focus,
form.frm-fluent-form .btn-secondary.focus.btn-success,
form.frm-fluent-form .btn-secondary.focus.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-secondary.focus.ff-btn-secondary[data-action="prev"] {
    box-shadow: 0 0 0 0.2rem hsla(0, 0%, 54.1%, 0.5);
}
.btn.btn-secondary.disabled,
.btn.btn-secondary:disabled,
form.frm-fluent-form .btn-secondary.btn-success:disabled,
form.frm-fluent-form .btn-secondary.disabled.btn-success,
form.frm-fluent-form .btn-secondary.disabled.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-secondary.disabled.ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:disabled,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:disabled {
    color: #fff;
    background-color: #757575;
    border-color: #757575;
}
.btn.btn-secondary:not(:disabled):not(.disabled).active,
.btn.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn.btn-secondary.dropdown-toggle,
form.frm-fluent-form .btn-secondary.btn-success:not(:disabled):not(.disabled).active,
form.frm-fluent-form .btn-secondary.btn-success:not(:disabled):not(.disabled):active,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled).active,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled):active,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled).active,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled):active,
form.frm-fluent-form .show > .btn-secondary.dropdown-toggle.btn-success,
form.frm-fluent-form .show > .btn-secondary.dropdown-toggle.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .show > .btn-secondary.dropdown-toggle.ff-btn-secondary[data-action="prev"] {
    color: #fff;
    background-color: #616161;
    border-color: #616161;
}
.btn.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn.btn-secondary.dropdown-toggle:focus,
form.frm-fluent-form .btn-secondary.btn-success:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form .btn-secondary.btn-success:not(:disabled):not(.disabled):active:focus,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled):active:focus,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled):active:focus,
form.frm-fluent-form .show > .btn-secondary.dropdown-toggle.btn-success:focus,
form.frm-fluent-form .show > .btn-secondary.dropdown-toggle.ff-btn-secondary[data-action="next"]:focus,
form.frm-fluent-form .show > .btn-secondary.dropdown-toggle.ff-btn-secondary[data-action="prev"]:focus {
    box-shadow: 0 0 0 0.2rem hsla(0, 0%, 54.1%, 0.5);
}
.btn.btn-secondary:after,
.btn.btn-secondary:before,
form.frm-fluent-form .btn-secondary.btn-success:after,
form.frm-fluent-form .btn-secondary.btn-success:before,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:after,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="next"]:before,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:after,
form.frm-fluent-form .btn-secondary.ff-btn-secondary[data-action="prev"]:before {
    border-color: #9e9e9e;
}
.btn.btn-outline-primary,
form.frm-fluent-form .btn-outline-primary.btn-success,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"] {
    color: #212121;
    border-color: #212121;
}
.btn.btn-outline-primary:hover,
form.frm-fluent-form .btn-outline-primary.btn-success:hover,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"]:hover,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"]:hover {
    color: #1b1b1b;
    background-color: #fff;
    border-color: #212121;
}
.btn.btn-outline-primary.focus,
.btn.btn-outline-primary:focus,
form.frm-fluent-form .btn-outline-primary.btn-success:focus,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"]:focus,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"]:focus,
form.frm-fluent-form .btn-outline-primary.focus.btn-success,
form.frm-fluent-form .btn-outline-primary.focus.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-outline-primary.focus.ff-btn-secondary[data-action="prev"] {
    box-shadow: 0 0 0 0.2rem rgba(33, 33, 33, 0.5);
}
.btn.btn-outline-primary.disabled,
.btn.btn-outline-primary:disabled,
form.frm-fluent-form .btn-outline-primary.btn-success:disabled,
form.frm-fluent-form .btn-outline-primary.disabled.btn-success,
form.frm-fluent-form .btn-outline-primary.disabled.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-outline-primary.disabled.ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"]:disabled,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"]:disabled {
    color: #212121;
    background-color: transparent;
}
.btn.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn.btn-outline-primary.dropdown-toggle,
form.frm-fluent-form .btn-outline-primary.btn-success:not(:disabled):not(.disabled).active,
form.frm-fluent-form .btn-outline-primary.btn-success:not(:disabled):not(.disabled):active,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled).active,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled):active,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled).active,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled):active,
form.frm-fluent-form .show > .btn-outline-primary.dropdown-toggle.btn-success,
form.frm-fluent-form .show > .btn-outline-primary.dropdown-toggle.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .show > .btn-outline-primary.dropdown-toggle.ff-btn-secondary[data-action="prev"] {
    color: #212529;
    background-color: #fff;
    border-color: #212121;
}
.btn.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn.btn-outline-primary.dropdown-toggle:focus,
form.frm-fluent-form .btn-outline-primary.btn-success:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form .btn-outline-primary.btn-success:not(:disabled):not(.disabled):active:focus,
form.frm-fluent-form
    .btn-outline-primary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form
    .btn-outline-primary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled):active:focus,
form.frm-fluent-form
    .btn-outline-primary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form
    .btn-outline-primary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled):active:focus,
form.frm-fluent-form .show > .btn-outline-primary.dropdown-toggle.btn-success:focus,
form.frm-fluent-form .show > .btn-outline-primary.dropdown-toggle.ff-btn-secondary[data-action="next"]:focus,
form.frm-fluent-form .show > .btn-outline-primary.dropdown-toggle.ff-btn-secondary[data-action="prev"]:focus {
    box-shadow: 0 0 0 0.2rem rgba(33, 33, 33, 0.5);
}
.btn.btn-outline-primary:hover,
form.frm-fluent-form .btn-outline-primary.btn-success:hover,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="next"]:hover,
form.frm-fluent-form .btn-outline-primary.ff-btn-secondary[data-action="prev"]:hover {
    background-color: transparent;
}
.btn.btn-outline-secondary,
form.frm-fluent-form .btn-outline-secondary.btn-success,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"] {
    color: #757575;
    border-color: #757575;
}
.btn.btn-outline-secondary:hover,
form.frm-fluent-form .btn-outline-secondary.btn-success:hover,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"]:hover,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:hover {
    color: #424242;
    background-color: #fff;
    border-color: #757575;
}
.btn.btn-outline-secondary.focus,
.btn.btn-outline-secondary:focus,
form.frm-fluent-form .btn-outline-secondary.btn-success:focus,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"]:focus,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:focus,
form.frm-fluent-form .btn-outline-secondary.focus.btn-success,
form.frm-fluent-form .btn-outline-secondary.focus.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-outline-secondary.focus.ff-btn-secondary[data-action="prev"] {
    box-shadow: 0 0 0 0.2rem hsla(0, 0%, 45.9%, 0.5);
}
.btn.btn-outline-secondary.disabled,
.btn.btn-outline-secondary:disabled,
form.frm-fluent-form .btn-outline-secondary.btn-success:disabled,
form.frm-fluent-form .btn-outline-secondary.disabled.btn-success,
form.frm-fluent-form .btn-outline-secondary.disabled.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .btn-outline-secondary.disabled.ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"]:disabled,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:disabled {
    color: #757575;
    background-color: transparent;
}
.btn.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn.btn-outline-secondary.dropdown-toggle,
form.frm-fluent-form .btn-outline-secondary.btn-success:not(:disabled):not(.disabled).active,
form.frm-fluent-form .btn-outline-secondary.btn-success:not(:disabled):not(.disabled):active,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled).active,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled):active,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled).active,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled):active,
form.frm-fluent-form .show > .btn-outline-secondary.dropdown-toggle.btn-success,
form.frm-fluent-form .show > .btn-outline-secondary.dropdown-toggle.ff-btn-secondary[data-action="next"],
form.frm-fluent-form .show > .btn-outline-secondary.dropdown-toggle.ff-btn-secondary[data-action="prev"] {
    color: #212529;
    background-color: #fff;
    border-color: #757575;
}
.btn.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn.btn-outline-secondary.dropdown-toggle:focus,
form.frm-fluent-form .btn-outline-secondary.btn-success:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form .btn-outline-secondary.btn-success:not(:disabled):not(.disabled):active:focus,
form.frm-fluent-form
    .btn-outline-secondary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form
    .btn-outline-secondary.ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled):active:focus,
form.frm-fluent-form
    .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form
    .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled):active:focus,
form.frm-fluent-form .show > .btn-outline-secondary.dropdown-toggle.btn-success:focus,
form.frm-fluent-form .show > .btn-outline-secondary.dropdown-toggle.ff-btn-secondary[data-action="next"]:focus,
form.frm-fluent-form .show > .btn-outline-secondary.dropdown-toggle.ff-btn-secondary[data-action="prev"]:focus {
    box-shadow: 0 0 0 0.2rem hsla(0, 0%, 45.9%, 0.5);
}
.btn.btn-outline-secondary:hover,
form.frm-fluent-form .btn-outline-secondary.btn-success:hover,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="next"]:hover,
form.frm-fluent-form .btn-outline-secondary.ff-btn-secondary[data-action="prev"]:hover {
    background-color: transparent;
}
.card {
    border: none;
}
.card figure {
    margin-bottom: 0;
}
.card-title {
    font-family:
        "PT Serif",
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
}
.card-footer {
    border-top-color: #eee;
    font-size: 0.875rem;
    color: #616161;
}
.card-footer--date {
    padding-left: 1.25rem;
    font-family:
        "PT Serif",
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
}
.card-footer--date:before {
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: none;
    font-size: 1rem;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\E838";
    color: #9e9e9e;
    margin-left: 0;
}
.card.download {
    font-style: normal;
}
.card.download .download__icon {
    font-size: 2.5rem;
}
.card.download .download__info {
    font-size: 1rem;
    position: absolute;
    right: 1rem;
    top: 0;
}
.card.download .download__info[data-original-title=""] {
    display: none;
}
.card.download .download__filedata {
    display: flex;
}
.card.download .download__filedata span:first-child {
    max-width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 0.25rem;
}
.card.card--contact,
.card.card--contact:hover {
    box-shadow: none;
}
@media (min-width: 768px) {
    .card.card--contact {
        transition: none;
    }
    .card.card--contact:hover {
        transform: none;
        box-shadow: none;
    }
    .card.card--contact:hover figure figcaption {
        padding-bottom: 1.5rem;
    }
}
.card.card--contact figure:after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 50%;
    background-image: linear-gradient(0deg, #212121, transparent);
    left: 0;
    right: 0;
    opacity: 0.6;
}
.card.card--contact figure figcaption {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-family:
        "PT Serif",
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-style: italic;
    transition: padding-bottom 0.4s ease-in-out;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
.card.card--contact figure figcaption span {
    position: relative;
    z-index: 20;
    padding: 0.75rem 0.75rem 0.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}
.card.card--gallery figure {
    height: 100%;
}
.card.card--gallery figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 1rem;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    font-family:
        "PT Serif",
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-style: italic;
    background-image: linear-gradient(0deg, #212121, transparent);
    transition: padding-bottom 0.4s ease-in-out;
}
.card.card--gallery figure img {
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
    height: 100%;
}
.card.card--gallery:hover figure figcaption {
    padding-bottom: 1.5rem;
}
.card.card--image .card-body {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    text-align: center;
    color: #fff;
}
.card.card--image .card-body:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    z-index: 10;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0, transparent);
    bottom: 0;
    left: 0;
}
.card.card--image .card-body .heading__subtitle,
.card.card--image .card-body h3 {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 20;
    font-size: 1.5rem;
}
.card.card--image .card-body .heading,
.card.card--image .card-body h3 {
    margin-bottom: 1.25rem;
}
.card.card--image .card-body .heading__title {
    margin-bottom: 0.25rem;
}
.card.card--image figure {
    height: 100%;
}
.card.card--image figure img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
}
.card--vertical .card__meta {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #757575;
    margin-bottom: 0.5rem;
}
.card--vertical .card__meta__categories {
    margin-left: 1rem;
}
.card--horizontal {
    margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
    .card--horizontal {
        flex-direction: row;
    }
}
.card--horizontal figure {
    height: 100%;
}
@media (min-width: 992px) {
    .card--horizontal picture img {
        -o-object-fit: cover;
        object-fit: cover;
        font-family: "object-fit: cover";
        height: 100%;
    }
}
.card--horizontal .card-img-wrapper {
    overflow: hidden;
}
@media (min-width: 992px) {
    .card--horizontal .card-img-wrapper {
        max-width: 40%;
        flex: 40% 0 0;
        display: block;
    }
}
.card--horizontal .card-img-wrapper img {
    transition: all 0.2s ease-in-out;
}
.card--horizontal .card-img-wrapper:hover img {
    transform: scale(1.075);
}
@media (min-width: 992px) {
    .card--horizontal .card-img {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}
@media (min-width: 992px) {
    .card--horizontal .card-body {
        display: flex;
        flex-direction: column;
    }
}
.card--horizontal .card-body .card-body__closure {
    margin-top: auto;
}
@media (min-width: 992px) {
    .card--horizontal .card-body .card-body__closure {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
@media (min-width: 992px) {
    .card--horizontal .card-body .card-body__closure .card__button-wrapper {
        white-space: nowrap;
        margin-top: 0;
        margin-left: auto;
    }
}
.card--horizontal .card-body .card__button-wrapper {
    margin-top: 1.25rem;
}
@media (min-width: 992px) {
    .card--horizontal .card-body .card__button-wrapper .btn,
    .card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .btn-success,
    .card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .ff-btn-secondary[data-action="next"],
    .card--horizontal .card-body .card__button-wrapper form.frm-fluent-form .ff-btn-secondary[data-action="prev"],
    form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .btn-success,
    form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .ff-btn-secondary[data-action="next"],
    form.frm-fluent-form .card--horizontal .card-body .card__button-wrapper .ff-btn-secondary[data-action="prev"] {
        display: inline-block;
        width: auto;
    }
}
@media (min-width: 992px) {
    .card--horizontal .card-body .card__button-wrapper {
        margin-top: auto;
    }
}
a.card {
    position: relative;
    color: #333;
    text-decoration: none;
    font-style: normal;
    cursor: pointer;
}
a.card:after,
a.card:before {
    content: "";
    position: absolute;
    transition: all 0.4s ease 0s;
    opacity: 0;
}
a.card:before {
    top: 0;
    left: 0;
    right: 100%;
    bottom: 100%;
    border-top: 4px solid #424242;
    border-left: 4px solid #424242;
}
a.card:after {
    left: 100%;
    top: 100%;
    bottom: 0;
    right: 0;
    border-bottom: 4px solid #424242;
    border-right: 4px solid #424242;
}
a.card:hover {
    box-shadow: none;
    transform: none;
}
a.card:hover:before {
    bottom: 0;
    right: 0;
    opacity: 1;
    z-index: 100;
}
a.card:hover:after {
    left: 0;
    top: 0;
    opacity: 1;
    z-index: 100;
}
a.card:hover img {
    transform: scale(1.075);
}
a.card--border-lg:after,
a.card--border-lg:before {
    border-width: 6px;
}
a.card figure,
a.card picture {
    position: relative;
    overflow: hidden;
}
a.card figure img,
a.card picture img {
    transition: transform 0.4s ease;
}
.card-deck,
.card-deck .card {
    margin-left: 0;
    margin-right: 0;
}
.card-deck .card {
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .card-deck.card-deck--2cols .card {
        flex: calc(50% - 0.75rem) 0 0;
    }
    .card-deck.card-deck--2cols .card:nth-child(odd) {
        margin-right: 0.75rem;
    }
    .card-deck.card-deck--2cols .card:nth-child(2n + 2) {
        margin-left: 0.75rem;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .card-deck.card-deck--3cols .card {
        flex: calc(50% - 0.75rem) 0 0;
    }
    .card-deck.card-deck--3cols .card:nth-child(odd) {
        margin-right: 0.75rem;
    }
    .card-deck.card-deck--3cols .card:nth-child(2n + 2) {
        margin-left: 0.75rem;
    }
}
@media (min-width: 992px) {
    .card-deck.card-deck--3cols .card {
        flex: calc(33.33% - 0.75rem) 0 0;
    }
    .card-deck.card-deck--3cols .card:nth-child(3n + 1) {
        margin-right: 0.75rem;
    }
    .card-deck.card-deck--3cols .card:nth-child(3n + 2) {
        margin-left: 0.375rem;
        margin-right: 0.375rem;
    }
    .card-deck.card-deck--3cols .card:nth-child(3n + 3) {
        margin-left: 0.75rem;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .card-deck.card-deck--4cols .card {
        flex: calc(50% - 0.75rem) 0 0;
    }
    .card-deck.card-deck--4cols .card:nth-child(odd) {
        margin-right: 0.75rem;
    }
    .card-deck.card-deck--4cols .card:nth-child(2n + 2) {
        margin-left: 0.75rem;
    }
}
@media (min-width: 992px) {
    .card-deck.card-deck--4cols .card {
        flex: calc(25% - 0.5rem) 0 0;
        margin-bottom: 0.5rem;
    }
    .card-deck.card-deck--4cols .card:nth-child(4n + 1) {
        margin-right: 0.375rem;
    }
    .card-deck.card-deck--4cols .card:nth-child(4n + 2) {
        margin-left: 0.125rem;
        margin-right: 0.25rem;
    }
    .card-deck.card-deck--4cols .card:nth-child(4n + 3) {
        margin-left: 0.25rem;
        margin-right: 0.125rem;
    }
    .card-deck.card-deck--4cols .card:nth-child(4n + 4) {
        margin-left: 0.375rem;
    }
}
.card-deck.card-deck--4cols.card-deck--small-spaces .card {
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .card-deck.card-deck--4cols.card-deck--small-spaces .card {
        flex: calc(50% - 0.25rem) 0 0;
    }
    .card-deck.card-deck--4cols.card-deck--small-spaces .card:nth-child(odd) {
        margin-right: 0.25rem;
    }
    .card-deck.card-deck--4cols.card-deck--small-spaces .card:nth-child(2n + 2) {
        margin-left: 0.25rem;
    }
}
@media (min-width: 992px) {
    .card-deck.card-deck--4cols.card-deck--small-spaces .card {
        flex: calc(25% - 0.5rem) 0 0;
        margin-bottom: 0.5rem;
    }
    .card-deck.card-deck--4cols.card-deck--small-spaces .card:nth-child(4n + 1) {
        margin-right: 0.375rem;
    }
    .card-deck.card-deck--4cols.card-deck--small-spaces .card:nth-child(4n + 2) {
        margin-left: 0.125rem;
        margin-right: 0.25rem;
    }
    .card-deck.card-deck--4cols.card-deck--small-spaces .card:nth-child(4n + 3) {
        margin-left: 0.25rem;
        margin-right: 0.125rem;
    }
    .card-deck.card-deck--4cols.card-deck--small-spaces .card:nth-child(4n + 4) {
        margin-left: 0.375rem;
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .card-deck {
        flex-direction: column;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .news {
        display: flex;
        flex-flow: row wrap;
    }
    .news .card {
        width: 49%;
    }
    .news .card:nth-child(odd) {
        margin-right: 2%;
    }
}
.news .card {
    margin-bottom: 1rem;
}
@media (min-width: 992px) {
    .news .card {
        box-shadow: none;
    }
}
.news .card-title a {
    color: #424242;
    text-decoration: none;
}
.news .card-title a:hover {
    color: #212121;
}
.news .card-text {
    color: #757575;
}
@media (min-width: 992px) {
    .news .card .news__image {
        padding-right: 0;
    }
}
.news .card .news__image:hover img {
    transform: scale(1.075);
}
.news .card .news__image figure {
    position: relative;
    overflow: hidden;
}
.news .card .news__image figure img {
    transition: transform 0.4s ease;
}
@media (min-width: 992px) {
    .news .card .card-body {
        display: flex;
        flex-flow: column;
        height: 100%;
        justify-content: flex-start;
    }
}
.news .card .news__meta {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    margin-top: auto;
}
.news .card .news__meta__date {
    display: flex;
}
.news .card .news__meta__date [class^="icon-"] {
    margin-right: 0.25rem;
}
.news .card .news__meta__category a {
    color: #616161;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.news .card .news__meta__category a:hover {
    color: #333;
}
.news .card .news__meta__category a:after {
    content: "/";
    display: inline-block;
    margin: 0 0.1rem 0 0.25rem;
    color: #9e9e9e;
}
.news .card .news__meta__category a:last-child:after {
    content: "";
}
.contact {
    flex-flow: column;
}
@media (min-width: 768px) {
    .contact {
        flex-flow: row;
    }
}
.contact > figure {
    position: relative;
    min-width: 200px;
    min-height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .contact > figure {
        margin-right: 1.5rem;
        margin-bottom: 0;
    }
}
@media (min-width: 992px) {
    .contact > figure {
        margin-right: 2.5rem;
    }
}
.contact__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
}
.contact__position {
    font-size: 1.125rem;
    color: #9e9e9e;
}
.contact__mail > a {
    position: relative;
    display: block;
    padding-left: 1.5rem;
}
.contact__mail > a > i {
    position: absolute;
    left: 0;
}
.contact a {
    text-decoration: none;
}
#pageContactSingle .contact {
    padding: 2.5rem 1.5rem;
    background: #fff;
}
@media (min-width: 768px) {
    #pageContactSingle .contact {
        flex-flow: column;
        height: 100%;
    }
}
#pageContactSingle .contact > figure {
    border-radius: 0;
}
@media (min-width: 768px) {
    #pageContactSingle .contact > figure {
        margin-bottom: 1.5rem;
        margin-right: 0;
    }
}
@media (min-width: 992px) {
    #pageContactSingle .contact > figure {
        margin-bottom: 1.25rem;
    }
}
.dropdown.nav-item .dropdown-menu.show {
    display: flex;
    flex-wrap: wrap;
}
.dropdown.nav-item .dropdown-menu.show .dropdown-item {
    width: auto;
    clear: none;
    white-space: normal;
    display: inline-block;
    margin-right: 0.25rem;
}
.dropdown .dropdown-item.nav-item {
    margin-bottom: 0.25rem;
}
.dropdown .dropdown-item.nav-item .nav-link {
    border-color: #9e9e9e;
}
#pageContactSingle .nav-tabs .dropdown.nav-item .dropdown-menu.show {
    min-width: 300px;
}

/* Neues CSS zum Fixen von Netzmaedchen */
.ff-el-form-check-label {
    margin-left: 10px;
}


/* Auskommentiert netzmaedchen 09.12.2025
input,
select,
textarea {
    width: 100%;
    margin-bottom: 0.5rem;
}*/

/*!
 * Float Labels
 * @version: 3.3.8
 * @author: Paul Ryley (http://geminilabs.io)
 * @url: https://pryley.github.io/float-labels.js
 * @license: MIT
 */

 /* BEGIN Fluent Forms FF 17333  */
 /* 

 END Floading Labels FF Fluent Forms NM */

/* Moved some stuff from uncommenting above to here, to see if it helps netzmaedchen */
.fl-form .fl-wrap {
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.fl-form form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form input.fl-input,
.fl-form select.fl-select,
.fl-form textarea.fl-textarea,
form.frm-fluent-form .fl-form input.ff-el-form-control[data-type="repeater_item"] {
    width: 100%;
    outline: 0;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 0;
    border: 1px solid #dfdfdf;
    background-color: #fff;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    margin-bottom: 4px;
}
.fl-form form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"]:-moz-placeholder,
.fl-form form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"]::-moz-placeholder,
.fl-form input.fl-input:-moz-placeholder,
.fl-form input.fl-input::-moz-placeholder,
.fl-form select.fl-select:-moz-placeholder,
.fl-form select.fl-select::-moz-placeholder,
.fl-form textarea.fl-textarea:-moz-placeholder,
.fl-form textarea.fl-textarea::-moz-placeholder,
form.frm-fluent-form .fl-form input.ff-el-form-control[data-type="repeater_item"]:-moz-placeholder,
form.frm-fluent-form .fl-form input.ff-el-form-control[data-type="repeater_item"]::-moz-placeholder {
    color: #9e9e9e;
}
.fl-form form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"]:-ms-input-placeholder,
.fl-form input.fl-input:-ms-input-placeholder,
.fl-form select.fl-select:-ms-input-placeholder,
.fl-form textarea.fl-textarea:-ms-input-placeholder,
form.frm-fluent-form .fl-form input.ff-el-form-control[data-type="repeater_item"]:-ms-input-placeholder {
    color: #9e9e9e;
}
.fl-form form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"]::-webkit-input-placeholder,
.fl-form input.fl-input::-webkit-input-placeholder,
.fl-form select.fl-select::-webkit-input-placeholder,
.fl-form textarea.fl-textarea::-webkit-input-placeholder,
form.frm-fluent-form .fl-form input.ff-el-form-control[data-type="repeater_item"]::-webkit-input-placeholder {
    color: #9e9e9e;
}







.fl-form select.fl-select {
    position: relative;
    color: #9e9e9e;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.fl-form select.fl-select::-ms-expand {
    display: none;
}
.fl-form .fl-is-active form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form .fl-is-active input.fl-input,
.fl-form .fl-is-active select.fl-select,
.fl-form .fl-is-active textarea.fl-textarea,
form.frm-fluent-form .fl-form .fl-is-active input.ff-el-form-control[data-type="repeater_item"] {
    color: #333;
    background-color: #fff;
    border-color: #dfdfdf;
}
.fl-form .fl-has-focus form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form .fl-has-focus input.fl-input,
.fl-form .fl-has-focus select.fl-select,
.fl-form .fl-has-focus textarea.fl-textarea,
form.frm-fluent-form .fl-form .fl-has-focus input.ff-el-form-control[data-type="repeater_item"] {
    background-color: #fff;
    border-color: #424242;
}
.fl-form label.fl-label {
    opacity: 0;
    visibility: hidden;
    display: block;
    position: absolute;
    top: -12px;
    left: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #9e9e9e;
    border-top-left-radius: 0;
    transition: all 0.2s ease-in-out;
    z-index: 1;
}
.fl-form .fl-is-active label.fl-label {
    opacity: 1;
    visibility: visible;
}
.fl-form .fl-has-focus label.fl-label {
    color: #424242;
}
.fl-form .fl-is-required:before {
    opacity: 1;
    content: "*";
    display: block;
    position: absolute;
    top: 1px;
    right: 18px;
    font-size: 16px;
    line-height: 1.75;
    color: #d60a15;
    transition: all 0.2s ease-in-out;
    padding: 12px 0 0;
    z-index: 1;
}
.fl-form .fl-is-required.fl-is-active:before {
    opacity: 0;
}
.fl-form.fl-style-1 form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form.fl-style-1 input.fl-input,
.fl-form.fl-style-1 select.fl-select,
.fl-form.fl-style-1 textarea.fl-textarea,
form.frm-fluent-form .fl-form.fl-style-1 input.ff-el-form-control[data-type="repeater_item"] {
    padding: 12px 24px 12px 18px;
}
.fl-form.fl-style-1 select.fl-select {
    height: 50px !important;
}
.fl-form.fl-style-1 .fl-is-active form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form.fl-style-1 .fl-is-active input.fl-input,
.fl-form.fl-style-1 .fl-is-active select.fl-select,
.fl-form.fl-style-1 .fl-is-active textarea.fl-textarea,
form.frm-fluent-form .fl-form.fl-style-1 .fl-is-active input.ff-el-form-control[data-type="repeater_item"] {
    padding: 12px 24px;
}
.fl-form.fl-style-1 label.fl-label {
    top: 1px;
    left: 19px;
    background-color: transparent;
    padding: 24px 6px;
}
.fl-form.fl-style-1 label.fl-label:before {
    content: "";
    display: block;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
    z-index: -1;
}
.fl-form.fl-style-1 .fl-is-active label.fl-label {
    top: -12px;
    padding: 6px;
}
.fl-form.fl-style-1 .fl-is-active label.fl-label:before {
    top: 12px;
}
.fl-form.fl-style-2 form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form.fl-style-2 input.fl-input,
.fl-form.fl-style-2 select.fl-select,
.fl-form.fl-style-2 textarea.fl-textarea,
form.frm-fluent-form .fl-form.fl-style-2 input.ff-el-form-control[data-type="repeater_item"] {
    padding: 24px;
}
.fl-form.fl-style-2 select.fl-select {
    height: 74px;
}
.fl-form.fl-style-2 .fl-is-active form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
.fl-form.fl-style-2 .fl-is-active input.fl-input,
.fl-form.fl-style-2 .fl-is-active select.fl-select,
.fl-form.fl-style-2 .fl-is-active textarea.fl-textarea,
form.frm-fluent-form .fl-form.fl-style-2 .fl-is-active input.ff-el-form-control[data-type="repeater_item"] {
    padding: 36px 24px 12px;
}
.fl-form.fl-style-2 label.fl-label {
    top: 1px;
    left: 19px;
    padding: 12px 6px 6px;
}
.fl-form.fl-style-2 .fl-is-required:before {
    padding-top: 24px;
}
.fl-form .fl-wrap-select:after {
    content: "";
    position: absolute;
    display: block;
    top: 1px;
    right: 12px;
    height: 48px;
    width: 12px;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 16'%3E%3Cpath fill='%239e9e9e' d='M4 0L0 6.5h8L4 0zM0 9.5L4 16l4-6.5z'/%3E%3C/svg%3E")
        no-repeat;
    background-position: 100% 50%;
    background-size: 7px 14px;
    z-index: 2;
}
form.frm-fluent-form {
    margin-bottom: 5rem;
}
form.frm-fluent-form input.ff-el-form-control[data-type="repeater_item"],
form.frm-fluent-form input.fl-input,
form.frm-fluent-form select.fl-select,
form.frm-fluent-form textarea.fl-textarea {
    padding: 12px 24px 12px 18px;
}
form.frm-fluent-form select.fl-select {
    height: 50px !important;
}
form.frm-fluent-form .fl-is-active input.ff-el-form-control[data-type="repeater_item"],
form.frm-fluent-form .fl-is-active input.fl-input,
form.frm-fluent-form .fl-is-active select.fl-select,
form.frm-fluent-form .fl-is-active textarea.fl-textarea {
    padding: 12px 24px;
}
form.frm-fluent-form label.fl-label {
    top: 1px;
    left: 19px;
    background-color: transparent;
    padding: 24px 6px;
}
form.frm-fluent-form label.fl-label:before {
    content: "";
    display: block;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
    z-index: -1;
}
form.frm-fluent-form .fl-is-active label.fl-label {
    top: -12px;
    padding: 6px;
}
form.frm-fluent-form .fl-is-active label.fl-label:before {
    top: 12px;
}
@media (min-width: 768px) {
    form.frm-fluent-form .ff-t-container {
        gap: 1rem;
    }
}
@media (min-width: 768px) {
    form.frm-fluent-form .ff-t-container.ff_columns_total_5 {
        display: block;
    }
}
@media (min-width: 1200px) {
    form.frm-fluent-form .ff-t-container.ff_columns_total_5 {
        display: flex;
    }
}
form.frm-fluent-form .ff-step-header {
    margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
    form.frm-fluent-form .ff-step-header {
        margin-bottom: 2.5rem;
    }
}
form.frm-fluent-form .ff-el-progress-bar {
    background: #14916c;
}
form.frm-fluent-form .ff-el-group {
    position: relative;
    margin-bottom: 1rem;
}
form.frm-fluent-form .ff-el-group.ff_list_inline .ff-el-form-check {
    margin: 0 1.5rem 0.75rem 0;
}
form.frm-fluent-form .fl-is-required.fl-select-is-required:before {
    right: 25px;
}
form.frm-fluent-form .ff-el-form-hide_label:before {
    display: none;
}
form.frm-fluent-form .custom-control-input:checked ~ .custom-control-label:before {
    border-color: #424242;
    background-color: #424242;
}
form.frm-fluent-form .custom-control-input:focus ~ .custom-control-label:before {
    box-shadow: 0 0 0 0.2rem rgba(66, 66, 66, 0.25);
}
form.frm-fluent-form .custom-control-input:focus:not(:checked) ~ .custom-control-label:before {
    border-color: #424242;
}
form.frm-fluent-form .custom-control-input:not(:disabled):active ~ .custom-control-label:before {
    background-color: #616161;
    border-color: #616161;
}
form.frm-fluent-form .ff-el-is-error .error {
    font-style: italic;
    font-size: 0.875rem;
}
form.frm-fluent-form .ff-el-is-error .ff-el-form-check-label,
form.frm-fluent-form .ff-el-is-error .ff-el-form-check-label a {
    color: #d60a15;
}
form.frm-fluent-form .ff-el-is-error .ff-el-form-control {
    border-color: #a94442;
    color: #b94a48;
    background-color: #f2dede;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
form.frm-fluent-form .ff-el-help-message {
    font-style: italic;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}
form.frm-fluent-form .ff-el-form-control {
    height: auto;
}
@media (min-width: 576px) {
    form.frm-fluent-form .ff-btn-submit {
        width: 25%;
    }
}
form.frm-fluent-form .loader {
    position: absolute;
    z-index: 1000;
    left: calc(50% - 35px);
    top: calc(50% - 100px);
    margin: 0;
}
form.frm-fluent-form.fl-form .loader {
    display: none;
}
form.frm-fluent-form .btn-primary {
    padding: 12px 24px 12px 18px;
}
form.frm-fluent-form .btn-primary:focus {
    background: #212121;
}










form.frm-fluent-form .ff-btn-secondary[data-action="prev"] {
    color: #fff;
    background-color: #616161;
    border-color: #616161;
}
form.frm-fluent-form .ff-btn-secondary[data-action="prev"]:hover {
    color: #fff;
    background-color: #4e4e4e;
    border-color: #484848;
}
form.frm-fluent-form .ff-btn-secondary[data-action="prev"].focus,
form.frm-fluent-form .ff-btn-secondary[data-action="prev"]:focus {
    box-shadow: 0 0 0 0.2rem hsla(0, 0%, 47.5%, 0.5);
}
form.frm-fluent-form .ff-btn-secondary[data-action="prev"].disabled,
form.frm-fluent-form .ff-btn-secondary[data-action="prev"]:disabled {
    color: #fff;
    background-color: #616161;
    border-color: #616161;
}
.show > form.frm-fluent-form .ff-btn-secondary[data-action="prev"].dropdown-toggle,
form.frm-fluent-form .ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled).active,
form.frm-fluent-form .ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #484848;
    border-color: #414141;
}
.show > form.frm-fluent-form .ff-btn-secondary[data-action="prev"].dropdown-toggle:focus,
form.frm-fluent-form .ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form .ff-btn-secondary[data-action="prev"]:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem hsla(0, 0%, 47.5%, 0.5);
}
form.frm-fluent-form .ff-btn-secondary[data-action="next"] {
    color: #fff;
    background-color: #14916c;
    border-color: #14916c;
}
form.frm-fluent-form .ff-btn-secondary[data-action="next"]:hover {
    color: #fff;
    background-color: #0f6f53;
    border-color: #0e644b;
}
form.frm-fluent-form .ff-btn-secondary[data-action="next"].focus,
form.frm-fluent-form .ff-btn-secondary[data-action="next"]:focus {
    box-shadow: 0 0 0 0.2rem rgba(55, 162, 130, 0.5);
}
form.frm-fluent-form .ff-btn-secondary[data-action="next"].disabled,
form.frm-fluent-form .ff-btn-secondary[data-action="next"]:disabled {
    color: #fff;
    background-color: #14916c;
    border-color: #14916c;
}
.show > form.frm-fluent-form .ff-btn-secondary[data-action="next"].dropdown-toggle,
form.frm-fluent-form .ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled).active,
form.frm-fluent-form .ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #0e644b;
    border-color: #0c5942;
}
.show > form.frm-fluent-form .ff-btn-secondary[data-action="next"].dropdown-toggle:focus,
form.frm-fluent-form .ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form .ff-btn-secondary[data-action="next"]:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(55, 162, 130, 0.5);
}
form.frm-fluent-form .btn-success,
form.frm-fluent-form .ff-btn-submit.btn-success {
    color: #fff;
    background-color: #14916c;
    border-color: #14916c;
}
form.frm-fluent-form .btn-success:hover,
form.frm-fluent-form .ff-btn-submit.btn-success:hover {
    color: #fff;
    background-color: #0f6f53;
    border-color: #0e644b;
}
form.frm-fluent-form .btn-success.focus,
form.frm-fluent-form .btn-success:focus,
form.frm-fluent-form .ff-btn-submit.btn-success.focus,
form.frm-fluent-form .ff-btn-submit.btn-success:focus {
    box-shadow: 0 0 0 0.2rem rgba(55, 162, 130, 0.5);
}
form.frm-fluent-form .btn-success.disabled,
form.frm-fluent-form .btn-success:disabled,
form.frm-fluent-form .ff-btn-submit.btn-success.disabled,
form.frm-fluent-form .ff-btn-submit.btn-success:disabled {
    color: #fff;
    background-color: #14916c;
    border-color: #14916c;
}
.show > form.frm-fluent-form .btn-success.dropdown-toggle,
.show > form.frm-fluent-form .ff-btn-submit.btn-success.dropdown-toggle,
form.frm-fluent-form .btn-success:not(:disabled):not(.disabled).active,
form.frm-fluent-form .btn-success:not(:disabled):not(.disabled):active,
form.frm-fluent-form .ff-btn-submit.btn-success:not(:disabled):not(.disabled).active,
form.frm-fluent-form .ff-btn-submit.btn-success:not(:disabled):not(.disabled):active {
    color: #fff;
    background-color: #0e644b;
    border-color: #0c5942;
}
.show > form.frm-fluent-form .btn-success.dropdown-toggle:focus,
.show > form.frm-fluent-form .ff-btn-submit.btn-success.dropdown-toggle:focus,
form.frm-fluent-form .btn-success:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form .btn-success:not(:disabled):not(.disabled):active:focus,
form.frm-fluent-form .ff-btn-submit.btn-success:not(:disabled):not(.disabled).active:focus,
form.frm-fluent-form .ff-btn-submit.btn-success:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(55, 162, 130, 0.5);
}
@media (min-width: 576px) {
    form.frm-fluent-form .btn-success,
    form.frm-fluent-form .ff-btn-submit.btn-success {
        width: auto;
    }
}
form.frm-fluent-form .ff-el-form-check-radio:first-child {
    margin-top: 0;
}
form.frm-fluent-form .ff-el-form-check-radio label {
    padding-left: 0.25rem;
}
form.frm-fluent-form .choices[data-type*="select-multiple"] .choices__inner {
    padding: 1rem 1.5rem 1rem 1rem;
    border-color: #eee;
}
form.frm-fluent-form .choices[data-type*="select-multiple"] .choices__inner .choices__item {
    margin-bottom: 0.25rem;
    word-break: break-word;
}
form.frm-fluent-form
    .choices[data-type*="select-multiple"]
    .choices__inner
    .choices__item.choices__item--selectable
    > button {
    padding: 0 1.5rem 0 0.5rem;
    border-left: none;
    margin-left: 0;
}
form.frm-fluent-form .ff_repeater_table td:not(.repeat_btn) {
    padding-bottom: 0;
}
form.frm-fluent-form .ff_repeater_table .repeat_btn .repeat-plus {
    margin-right: 0.25rem;
}
form.frm-fluent-form .iti__flag-container + input {
    padding-left: 64px !important;
}
@media (min-width: 1200px) {
    form.frm-fluent-form .fluentform-signature-pad {
        width: 100%;
    }
}
form.frm-fluent-form:not(.fl-form):after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f7f7f7;
    z-index: 100;
}
form.frm-fluent-form .ff-el-input--label.ff-el-is-required.asterisk-right label:after {
    color: #d60a15;
}
[class^="ff-message"] {
    position: relative;
    font-size: 1.25rem;
    font-style: italic;
    font-family:
        "PT Serif",
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    padding: 1.5rem 3.5rem 1.5rem 1.5rem;
    margin-bottom: 2.5rem;
}
[class^="ff-message"]:before {
    position: absolute;
    padding: 0;
    margin: 0;
    opacity: 0.4;
}
[class^="ff-message"].ff-message-success {
    background-color: #dff0d8;
    border-color: #a3d48e;
    color: #3c763d;
}
[class^="ff-message"].ff-message-success:before {
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: none;
    font-size: 5rem;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\E804";
    color: #3c763d;
    right: -1.5rem;
    top: -1rem;
}
[class^="ff-message"].ff-message-success p:last-child {
    margin-bottom: 0;
}




/* END MOD */


.gallery {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
.gallery:after {
    content: "";
    flex-grow: 999999999;
    min-width: 150px;
    height: 0;
}
@media (min-width: 768px) {
    .gallery:after {
        min-width: 200px;
    }
}
@media (min-width: 992px) {
    .gallery:after {
        min-width: 300px;
    }
}
.gallery:hover > a:after {
    background: rgba(0, 0, 0, 0.25);
}
.gallery > a {
    position: relative;
    display: block;
    height: 150px;
    margin: 2.5px;
    flex-grow: 1;
}
@media (min-width: 768px) {
    .gallery > a {
        height: 200px;
    }
}
@media (min-width: 992px) {
    .gallery > a {
        height: 300px;
    }
}
.gallery > a:after {
    content: "";
    transition: all 0.2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.gallery > a:after,
.gallery > a:hover:after {
    background: transparent;
}
.gallery > a picture {
    display: block;
    height: 150px;
}
@media (min-width: 768px) {
    .gallery > a picture {
        height: 200px;
    }
}
@media (min-width: 992px) {
    .gallery > a picture {
        height: 300px;
    }
}
.gallery > a img {
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
    height: 150px;
    max-width: 100%;
    min-width: 100%;
    vertical-align: bottom;
}
@media (min-width: 768px) {
    .gallery > a img {
        height: 200px;
    }
}
@media (min-width: 992px) {
    .gallery > a img {
        height: 300px;
    }
}
.hamburger {
    display: inline-block;
    cursor: pointer;
    transition-property:
        opacity,
        -webkit-filter;
    transition-property: opacity, filter;
    transition-property:
        opacity,
        filter,
        -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
.hamburger:hover {
    opacity: 0.7;
}
.hamburger__box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}
.hamburger__box__inner {
    display: block;
    margin-top: -2px;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger__box__inner,
.hamburger__box__inner:after,
.hamburger__box__inner:before {
    width: 40px;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger__box__inner:after,
.hamburger__box__inner:before {
    content: "";
    display: block;
}
.hamburger__box__inner:before {
    top: -10px;
    transition:
        top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
        transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger__box__inner:after {
    bottom: -10px;
    top: -20px;
    transition:
        top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
        opacity 0.1s linear;
}
.hamburger.active .hamburger__box__inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.active .hamburger__box__inner:before {
    top: 0;
    transform: rotate(-90deg);
    transition:
        top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s,
        transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
}
.hamburger.active .hamburger__box__inner:after {
    top: 0;
    opacity: 0;
    transition:
        top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
        opacity 0.1s linear 0.22s;
}
.headimage {
    position: relative;
}
.headimage > figure {
    overflow: hidden;
}
@media (min-width: 768px) {
    .headimage > figure {
        max-height: calc(70vh - 150px);
        max-height: calc(var(--vh, 1vh) * 70 - 150px);
    }
}
.headimage > figure img {
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
    max-height: calc(70vh - 150px);
    max-height: calc(var(--vh, 1vh) * 70 - 150px);
    width: 100%;
}
.headimage--top > figure img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    font-family: "object-fit: cover; object-position: top";
}
.headimage--center > figure img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center";
}
.headimage--bottom > figure img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
    font-family: "object-fit: cover; object-position: bottom";
}
@media (min-width: 768px) {
    .headimage--lg > figure,
    .headimage--lg > figure img {
        max-height: calc(100vh - 150px);
        max-height: calc(var(--vh, 1vh) * 100 - 150px);
    }
}
.headimage__content {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    position: absolute;
    bottom: 10rem;
}
.headimage__content__headline {
    background: #eee;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
}
@media (min-width: 576px) {
    .headimage__content__headline {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .headimage__content__headline {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .headimage__content__headline {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .headimage__content__headline {
        max-width: 1140px;
    }
}
.headimage__content__subheadline {
    padding: 0.75rem 1.25rem;
    background: #212121;
    color: #f5f5f5;
    margin-left: 3rem;
    margin-top: 0.75rem;
}
@media (min-width: 576px) {
    .headimage__content__subheadline {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .headimage__content__subheadline {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .headimage__content__subheadline {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .headimage__content__subheadline {
        max-width: 1140px;
    }
}
.headimage__link {
    display: none;
}
@media (min-width: 768px) {
    .headimage__link {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 2.5rem;
        width: 50px;
        height: 50px;
        left: calc(50% - 25px);
        color: #eee;
        font-size: 1.5rem;
        transition: all 0.2s ease-in-out;
    }
}
.headimage__link:hover {
    text-decoration: none;
    color: #fff;
}
.headimage__link:hover:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-color: #fff;
}
.headimage__link:after {
    content: "";
    position: absolute;
    top: -0.25rem;
    left: -0.25rem;
    right: -0.25rem;
    bottom: -0.25rem;
    border: 2px dotted #eee;
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
}
.headimage__link [class^="icon-"] {
    margin-top: 0.25rem;
}
.subpages-holder + .alignfull .headimage > figure {
    overflow: hidden;
}
@media (min-width: 768px) {
    .subpages-holder + .alignfull .headimage > figure {
        max-height: calc(70vh - 199px);
        max-height: calc(var(--vh, 1vh) * 70 - 199px);
    }
}
@media (min-width: 768px) {
    .subpages-holder + .alignfull .headimage.headimage--lg > figure {
        max-height: calc(100vh - 199px);
        max-height: calc(var(--vh, 1vh) * 100 - 199px);
    }
}
.iconlist__item i:before {
    margin-left: 0;
    width: 1rem;
    margin-right: 0.5rem;
    line-height: 1.5;
}
.icon-phone:before {
    transform: rotate(90deg);
}
.iconteaser {
    font-style: normal !important;
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    padding: 1.5rem;
    transition: all 0.4s ease;
    text-align: center;
    color: #333;
    text-decoration: none;
}
.iconteaser__icon {
    display: flex;
    margin-top: 1.5rem;
}
.iconteaser__icon > i {
    position: relative;
    padding: 1rem;
    font-size: 2.5rem;
}
.iconteaser__icon > i:before {
    position: relative;
    display: table;
    z-index: 10;
    transition: all 0.4s ease;
}
.iconteaser__icon > i:after {
    content: "";
    width: 100%;
    height: 100%;
    padding-top: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #eee;
    z-index: 1;
}
.iconteaser__title {
    margin-top: 2rem;
    text-transform: uppercase;
}
.iconteaser__text {
    text-align: center;
    font-style: italic;
}
.iconteaser--lg .iconteaser__icon > i {
    font-size: 5rem;
}
.iconteaser--sm .iconteaser__icon > i {
    font-size: 1.5rem;
}
a.iconteaser:hover {
    text-decoration: none;
    background: #fff;
}
a.iconteaser:hover:before {
    bottom: 0;
    right: 0;
    opacity: 1;
}
a.iconteaser:hover:after {
    left: 0;
    top: 0;
    opacity: 1;
}
a.iconteaser:hover .iconteaser__icon i:before {
    transform: scale(0.85);
}
a.iconteaser:after,
a.iconteaser:before {
    content: "";
    position: absolute;
    transition: all 0.4s ease;
    opacity: 0;
}
a.iconteaser:before {
    top: 0;
    left: 0;
    right: 100%;
    bottom: 100%;
    border-top: 6px solid;
    border-left: 6px solid;
}
a.iconteaser:after {
    left: 100%;
    top: 100%;
    bottom: 0;
    right: 0;
    border-bottom: 6px solid;
    border-right: 6px solid;
}
.iconteaser_module.content--pad-lg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (max-width: 991.98px) {
    .wp-block-column + .wp-block-column [data-content-type="icon-teaser"] {
        margin-top: -2.5rem;
    }
}
figure {
    margin-bottom: 0;
}
.image-text {
    margin-bottom: 1.5rem;
}
.image-text__img,
.image-text__img img {
    width: 100%;
}
.image-text--bottom,
.image-text--top {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.image-text--bottom .image-text__img,
.image-text--bottom .image-text__text,
.image-text--top .image-text__img,
.image-text--top .image-text__text {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 100%;
    max-width: 100%;
}
.image-text--bottom .image-text__img,
.image-text--top .image-text__img {
    margin-bottom: 1rem;
}
.image-text--bottom {
    flex-direction: column-reverse;
}
.image-text--bottom .image-text__img {
    margin-top: 1rem;
}
.image-text--left,
.image-text--right {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.image-text--left.image-text .image-text__img,
.image-text--left.image-text .image-text__text,
.image-text--right.image-text .image-text__img,
.image-text--right.image-text .image-text__text {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 100%;
    max-width: 100%;
}
@media (min-width: 992px) {
    .image-text--left.image-text--lg .image-text__img,
    .image-text--left.image-text--lg .image-text__text,
    .image-text--right.image-text--lg .image-text__img,
    .image-text--right.image-text--lg .image-text__text {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (min-width: 992px) {
    .image-text--left.image-text--md .image-text__img,
    .image-text--right.image-text--md .image-text__img {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
}
@media (min-width: 992px) {
    .image-text--left.image-text--md .image-text__text,
    .image-text--right.image-text--md .image-text__text {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
}
@media (min-width: 992px) {
    .image-text--left.image-text--sm .image-text__img,
    .image-text--right.image-text--sm .image-text__img {
        flex: 0 0 25%;
        max-width: 25%;
    }
}
@media (min-width: 992px) {
    .image-text--left.image-text--sm .image-text__text,
    .image-text--right.image-text--sm .image-text__text {
        flex: 0 0 75%;
        max-width: 75%;
    }
}
.image-text--right {
    flex-direction: row-reverse;
}
.image-text--right .image-text__img {
    margin-bottom: 1rem;
}
@media (min-width: 992px) {
    .image-text--right .image-text__img {
        margin-bottom: 0;
        padding-left: 1rem;
    }
}
.image-text--left .image-text__img {
    margin-bottom: 1rem;
}
@media (min-width: 992px) {
    .image-text--left .image-text__img {
        margin-bottom: 0;
        padding-right: 1rem;
    }
}
.image-text--float-left:after,
.image-text--float-right:after {
    content: "";
    display: block;
    clear: both;
}
.image-text--float-left .image-text__img {
    margin-bottom: 1rem;
}
@media (min-width: 992px) {
    .image-text--float-left .image-text__img {
        float: left;
        margin-right: 1rem;
        padding-right: 1rem;
    }
}
.image-text--float-right .image-text__img {
    margin-bottom: 1rem;
}
@media (min-width: 992px) {
    .image-text--float-right .image-text__img {
        float: right;
        margin-left: 1rem;
        padding-left: 1rem;
    }
}
@media (min-width: 992px) {
    .image-text--lg .image-text__img {
        width: 50%;
    }
}
@media (min-width: 992px) {
    .image-text--md .image-text__img {
        width: 33.3333%;
    }
}
@media (min-width: 992px) {
    .image-text--sm .image-text__img {
        width: 25%;
    }
}
.legend {
    display: flex;
    flex-flow: row wrap;
}
.legend__item {
    display: flex;
    align-items: center;
    padding-left: 0 !important;
    padding-right: 1.5rem;
    margin-bottom: 1rem;
}
.legend__item:before {
    display: none !important;
}
.legend__item:last-child {
    padding-right: 0;
}
.legend__item__color {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    transform: rotate(45deg);
    margin-right: 0.75rem;
}
.legend__item--today .legend__item__color {
    border: 2px solid #424242;
}
.legend__item--no-category .legend__item__color {
    background: #424242;
}
.legend-wrapper {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    margin-top: 1rem;
}
.pswp__button {
    background: none !important;
}
.pswp__button:before {
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: none;
    font-size: 1.25rem;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: none;
    color: #fff;
}
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    font-size: 2.5rem;
    text-shadow: 1px 1px 4px rgba(33, 33, 33, 0.4);
}
.pswp__button--arrow--left:before {
    content: "\E825";
}
.pswp__button--arrow--right:before {
    content: "\E826";
}
.pswp__button--close:before {
    content: "\E805";
    font-size: 1.5rem;
}
.pswp__button--share:before {
    content: "\E831";
}
.pswp__button--fs:before {
    content: "\E82E";
}
.pswp__counter {
    font-family:
        "PT Serif",
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
}
[data-lightbox="thumbnail"] .single-image > a {
    position: relative;
    text-decoration: none;
}
[data-lightbox="thumbnail"] .single-image > a:before {
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: none;
    font-size: inherit;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\E806";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    color: #fff;
    font-size: 1.5rem;
}
[data-lightbox="thumbnail"] .single-image > a:after {
    content: "";
    background-image: radial-gradient(circle, rgba(33, 33, 33, 0.3), rgba(33, 33, 33, 0.65));
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
[data-lightbox="thumbnail"] .single-image > a:after,
[data-lightbox="thumbnail"] .single-image > a:before {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
[data-lightbox="thumbnail"] .single-image > a:hover:after,
[data-lightbox="thumbnail"] .single-image > a:hover:before {
    opacity: 1;
}
.linklist__item {
    display: flex;
    position: relative;
    padding: 1rem;
    background: #fff;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: #424242;
    transition: all 0.2s ease-in-out;
    font-style: normal !important;
    border-bottom: 2px solid #eee;
}
.linklist__item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    height: 2px;
    width: 0;
    background: #424242;
    transition: width 0.4s ease-in-out;
    z-index: 100;
}
.linklist__item:after {
    content: "\E826";
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: none;
    font-size: 1.25rem;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.linklist__item:hover {
    text-decoration: none;
    color: #212121;
}
.linklist__item:hover:before {
    width: 100%;
}
.linklist__item :last-child {
    margin-bottom: 0;
}
.linklist__item > span {
    overflow: hidden;
}
.linklist__item__title {
    display: block;
    font-size: 1.25rem;
    padding-right: 1.5rem;
}
.linklist__item__description {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-right: 1.5rem;
}
.linklist__item [class^="icon-"] {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}
.linklist--download .linklist__item:after {
    content: "\E816";
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: none;
    font-size: 1.25rem;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
}
.loader {
    margin: 100px auto 0;
    width: 70px;
    text-align: center;
}
.loader > div {
    width: 18px;
    height: 18px;
    background-color: #424242;
    border-radius: 100%;
    margin-right: 5px;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s ease-in-out infinite both;
    animation: sk-bouncedelay 1.4s ease-in-out infinite both;
}
.loader > div.loader__bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.loader > div.loader__bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
    0%,
    80%,
    to {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}
@keyframes sk-bouncedelay {
    0%,
    80%,
    to {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}
.logo {
    position: relative;
    height: 100%;
    display: block;
}
.logo--figure:before {
    background-image: url(../images/logo_figure.svg);
    padding-top: 79%;
}
.logo--claim:before {
    background-image: url(../images/logo_claim.svg);
    padding-top: 25%;
}
.logo--claim:before,
.logo--figure:before {
    content: "";
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 100%;
    height: 0;
}
.map .map__leaflet,
.map iframe {
    width: 100%;
    border: none;
}
.map .leaflet-routing {
    box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.17);
    border: none;
}
.map .leaflet-routing:before {
    content: "\E84C";
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: none;
    font-size: 1.5rem;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 7px;
    left: 2px;
}
.map-scroll {
    display: none;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1001;
}
.map-scroll,
.map-scroll:before {
    position: absolute;
    width: 100%;
    height: 100%;
}
.map-scroll:before {
    content: "Verwende STRG + Scrollen zum Zoom auf der Karte";
    color: #fff;
    font-size: 1.75rem;
    text-align: center;
    top: 50%;
}
.map__leaflet .leaflet-control-zoom.leaflet-bar {
    box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.17);
    border: none;
}
.map__leaflet a.leaflet-control-zoom-in,
.map__leaflet a.leaflet-control-zoom-out {
    width: 40px;
    height: 40px;
    line-height: 40px;
}
.map__leaflet .leaflet-top .leaflet-control {
    margin-top: 1rem;
}
.map__leaflet .leaflet-right .leaflet-control {
    margin-right: 1rem;
}
.map__leaflet .leaflet-bottom .leaflet-control {
    margin-bottom: 1rem;
}
.map__leaflet .leaflet-left .leaflet-control {
    margin-left: 1rem;
}
.map--lg .map__google-maps,
.map--lg .map__leaflet,
.map--lg iframe {
    height: 600px;
}
.map--md .map__google-maps,
.map--md .map__leaflet,
.map--md iframe {
    height: 450px;
}
.map--sm .map__google-maps,
.map--sm .map__leaflet,
.map--sm iframe {
    height: 300px;
}
@media (max-width: 991.98px) {
    .map--lg .map__google-maps,
    .map--lg .map__leaflet,
    .map--lg iframe {
        height: 450px;
    }
    .map--md .map__google-maps,
    .map--md .map__leaflet,
    .map--md iframe {
        height: 300px;
    }
}
.alignfull .map .leaflet-left {
    left: 1rem;
}
.alignfull .map .leaflet-right {
    right: 1rem;
}
.modal-title {
    font-style: italic;
}
.modal-header {
    position: relative;
    background: #f5f5f5;
}
.modal-body + .modal-body {
    border-top: 1px solid #eee;
}
.modal-dialog-centered {
    min-height: 100%;
}
@media (min-width: 768px) and (min-width: 576px) {
    .modal-dialog.modal-xl {
        max-width: 540px;
    }
}
@media (min-width: 768px) and (min-width: 768px) {
    .modal-dialog.modal-xl {
        max-width: 720px;
    }
}
@media (min-width: 768px) and (min-width: 992px) {
    .modal-dialog.modal-xl {
        max-width: 960px;
    }
}
@media (min-width: 768px) and (min-width: 1200px) {
    .modal-dialog.modal-xl {
        max-width: 1140px;
    }
}
.modal-content {
    border: none;
}
.modal a.modal-footer {
    justify-content: center;
    background: #333;
    color: #eee;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}
.modal a.modal-footer:hover {
    background: #212121;
    color: #fff;
}
.modal a.modal-footer [class^="icon-"]:before {
    position: relative;
    bottom: 1px;
    font-size: 1.125rem;
    margin: 0 0.25rem 0 0;
}
.modal .close {
    position: absolute;
    right: 1rem;
    font-family:
        Noto Sans,
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-weight: 400;
    font-size: 2.5rem;
    color: #757575;
    line-height: 0.7;
}
.modal--special .modal-content {
    border: none;
    background: transparent;
    transition: background 0.4s ease 0.4s;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
.modal--special .modal-content:after,
.modal--special .modal-content:before {
    content: "";
    position: absolute;
    transition: all 0.4s ease 0s;
    opacity: 0;
}
.modal--special .modal-content:before {
    top: 0;
    left: 0;
    right: 100%;
    bottom: 100%;
    border-top: 4px solid #424242;
    border-left: 4px solid #424242;
}
.modal--special .modal-content:after {
    left: 100%;
    top: 100%;
    bottom: 0;
    right: 0;
    border-bottom: 4px solid #424242;
    border-right: 4px solid #424242;
}
.modal--special .modal-content .close {
    z-index: 1000;
    top: 0;
    right: 1.5rem;
    transition: top 5s cubic-bezier(0.165, 0.84, 0.44, 1) 1s;
}
.modal--special .modal-content .modal-body {
    padding: 2.5rem;
}
.modal--special.show .modal-content {
    background-color: hsla(0, 0%, 100%, 0.9);
}
.modal--special.show .modal-content:before {
    bottom: 0;
    right: 0;
    opacity: 1;
    z-index: 100;
}
.modal--special.show .modal-content:after {
    left: 0;
    top: 0;
    opacity: 1;
    z-index: 100;
}
@media (min-width: 992px) {
    .modal--special.show .modal-content .modal-body .calendar__day__event {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
}
.modal--special.show .modal-content .modal-body .calendar__day__event .calendar__day__event__image,
.modal--special.show .modal-content .modal-body .calendar__day__event .calendar__day__event__text > a,
.modal--special.show .modal-content .modal-body .calendar__day__event .calendar__day__event__text > div,
.modal--special.show .modal-content .modal-body .calendar__day__event .calendar__day__event__text > figure,
.modal--special.show .modal-content .modal-body .calendar__day__event .calendar__day__event__text > p,
.modal--special.show .modal-content .modal-body .calendar__day__event .calendar__day__event__text > span {
    opacity: 0;
    position: relative;
    -webkit-animation: modalContentFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 1s forwards;
    animation: modalContentFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 1s forwards;
}
.modal--special.show .modal-content .modal-body .calendar__day__event .btn-primary {
    z-index: 1001;
    margin-top: 1rem;
}
@media (max-width: 991.98px) {
    .modal--special.show .modal-content .modal-body .calendar__day__event:first-child .calendar__day__event__image {
        margin-top: -2.5rem;
    }
    .modal--special.show
        .modal-content
        .modal-body
        .calendar__day__event:first-child
        .calendar__day__event__image:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        background: #424242;
        width: 3.5rem;
        height: 3.5rem;
    }
}
@media (max-width: 991.98px) {
    .modal--special.show .modal-content .modal-body .calendar__day__event__image {
        margin-left: -2.5rem;
        margin-right: -2.5rem;
        margin-bottom: 1.5rem;
    }
}
@media (min-width: 992px) {
    .modal--special.show .modal-content .modal-body .calendar__day__event__image {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin: 0;
    }
    .modal--special.show .modal-content .modal-body .calendar__day__event__image:after {
        display: none;
    }
    .modal--special.show .modal-content .modal-body .calendar__day__event__image + .calendar__day__event__text {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
}
@media (min-width: 992px) {
    .modal--special.show .modal-content .modal-body .calendar__day__event__text {
        flex: 0 0 100%;
        max-width: 100%;
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
}
@media (max-width: 991.98px) {
    .modal--special.show
        .modal-content
        .modal-body
        .calendar__day__event
        + .calendar__day__event
        .calendar__day__event__text {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    .modal--special.show
        .modal-content
        .modal-body
        .calendar__day__event
        + .calendar__day__event
        .calendar__day__event__image
        + .calendar__day__event__text {
        border-top: none;
        padding-top: 0;
    }
}
@media (min-width: 992px) {
    .modal--special.show .modal-content .modal-body .calendar__day__event + .calendar__day__event {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
}
.modal--special.show .modal-content .modal-body .close {
    opacity: 0;
    -webkit-animation: modalCloseButtonFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 1s forwards;
    animation: modalCloseButtonFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 1s forwards;
}
.modal--special.show .modal-content .modal-body .close:hover {
    opacity: 0.75 !important;
}
@media (max-width: 991.98px) {
    .modal--special.show .modal-content .modal-body .close.mobile-on-image {
        color: #fff;
        text-shadow: none;
        top: 0;
        right: 0;
        margin-top: -1rem;
        width: 3.5rem;
        height: 3.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .modal--special.show .modal-content .modal-body .close.mobile-on-image span {
        line-height: 0;
    }
}
.modal--special.closing .modal-content {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}
.modal-backdrop {
    transition: opacity 0.4s ease 0.325s;
}
.modal-backdrop.closing {
    opacity: 0;
}
#dsbModal .modal-body {
    padding: 0;
}
#dsbModal .modal-body .embed-responsive.embed-responsive-1by1 {
    padding-top: 101%;
}
html.modal-opened {
    overflow-y: scroll;
}
@media (min-width: 992px) {
    html.modal-opened {
        overflow: hidden;
    }
    html.modal-opened .header,
    html.modal-opened .modal-open {
        padding-right: 17px !important;
    }
}
.overall-concept {
    margin: 1.5rem 0;
}
@media (min-width: 992px) {
    .overall-concept {
        position: relative;
        height: 850px;
    }
}
@media (min-width: 1200px) {
    .overall-concept {
        height: 1000px;
    }
}
.overall-concept__circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    max-width: 350px;
    margin-top: -2.5rem;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
@media (min-width: 992px) {
    .overall-concept__circle {
        position: absolute;
        width: 450px;
        max-width: 450px;
    }
}
@media (min-width: 1200px) {
    .overall-concept__circle {
        width: 550px;
        max-width: 550px;
    }
}
.overall-concept__circle:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.overall-concept__circle--top {
    background: #ffeb3b;
}
.overall-concept__circle--top:hover {
    background: #fae100;
}
@media (min-width: 992px) {
    .overall-concept__circle--top {
        top: 0;
        margin-top: 0;
        left: 50%;
        margin-left: -225px;
    }
}
@media (min-width: 1200px) {
    .overall-concept__circle--top {
        margin-left: -275px;
    }
}
.overall-concept__circle--left {
    background: #ff5722;
    color: #fff;
}
.overall-concept__circle--left:hover {
    background: #ee3900;
}
@media (min-width: 992px) {
    .overall-concept__circle--left {
        top: 400px;
        left: 20px;
    }
    .overall-concept__circle--left .overall-concept__circle__content {
        margin-left: -1.5rem;
    }
}
@media (min-width: 1200px) {
    .overall-concept__circle--left {
        top: 440px;
        left: 20px;
    }
}
.overall-concept__circle--right {
    background: #0d5fad;
    color: #fff;
}
.overall-concept__circle--right:hover {
    background: #0b5295;
}
@media (min-width: 992px) {
    .overall-concept__circle--right {
        top: 400px;
        left: 460px;
    }
    .overall-concept__circle--right .overall-concept__circle__content {
        margin-left: 1.5rem;
    }
}
@media (min-width: 1200px) {
    .overall-concept__circle--right {
        top: 440px;
        left: 560px;
    }
}
.overall-concept__circle--center {
    background: #fff;
    margin-top: 0;
    cursor: default;
}
@media (min-width: 992px) {
    .overall-concept__circle--center {
        width: 230px;
        top: 340px;
        left: 50%;
        z-index: 100;
        margin-left: -115px;
    }
    .overall-concept__circle--center .heading__title {
        font-size: 1.5rem;
    }
    .overall-concept__circle--center .heading__subtitle {
        font-size: 1.25rem;
    }
}
@media (min-width: 1200px) {
    .overall-concept__circle--center {
        width: 300px;
        top: 400px;
        margin-left: -150px;
    }
    .overall-concept__circle--center .heading__title {
        font-size: 2rem;
    }
    .overall-concept__circle--center .heading__subtitle {
        font-size: 1.75rem;
    }
}
.overall-concept__circle__content {
    position: absolute;
}
.side-nav {
    position: fixed;
    z-index: 1000;
    right: 1.5rem;
    bottom: 90px;
    min-width: 250px;
    max-width: 400px;
    max-height: 90%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    transform-origin: right bottom;
    transform: scale(0);
    transition-property: transform;
    transition-duration: 0.2s;
    background-color: rgba(33, 33, 33, 0.9);
}
@media (max-width: 991.98px) {
    .side-nav.open {
        transform: scale(1);
    }
    .side-nav.open + .side-nav__trigger {
        background-color: transparent;
    }
    .side-nav.open + .side-nav__trigger span {
        background-color: rgba(33, 33, 33, 0);
    }
    .side-nav.open + .side-nav__trigger span:after,
    .side-nav.open + .side-nav__trigger span:before {
        background-color: #212121;
        height: 3px;
        width: 20px;
        border-radius: 0;
        left: -8px;
    }
    .side-nav.open + .side-nav__trigger span:before {
        transform: rotate(45deg);
        top: 1px;
    }
    .side-nav.open + .side-nav__trigger span:after {
        transform: rotate(135deg);
        bottom: 0;
    }
    .side-nav li:last-child a {
        border-bottom: none;
    }
}
@media (min-width: 768px) {
    .side-nav {
        bottom: 100px;
    }
}
@media (min-width: 1200px) {
    .side-nav {
        right: 1.75rem;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        min-width: 0;
        overflow-y: initial;
        background-color: transparent;
    }
}
.side-nav ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
@media (min-width: 1200px) {
    .side-nav ul {
        position: relative;
        display: inline-block;
        margin: 0;
        padding: 0;
        list-style: none;
        cursor: default;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}
.side-nav li {
    text-align: right;
}
@media (min-width: 1200px) {
    .side-nav li {
        height: 40px;
    }
}
.side-nav li:last-child {
    display: none;
}
@media (min-width: 1200px) {
    .side-nav li:last-child {
        display: block;
        position: absolute;
        top: calc(0.75rem + 2px);
        right: -0.5rem;
        margin: 0;
        width: 2.25rem;
        height: 0.75rem;
        transition: all 0.2s ease-in-out;
    }
    .side-nav li:last-child:after {
        content: "";
        position: absolute;
        right: 0;
        width: calc(0.75rem + 2px);
        height: calc(0.75rem + 2px);
        background: #212121;
        transform: translateX(-50%) rotate(45deg);
        opacity: 0;
    }
}
.side-nav li a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid hsla(0, 0%, 96.1%, 0.1);
}
@media (min-width: 1200px) {
    .side-nav li a {
        display: inline-block;
        padding: 0.375rem 0;
        border-bottom-color: transparent;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    .side-nav li a span {
        float: right;
        display: inline-block;
    }
    .side-nav li a .side-nav__label {
        transform: scale(0.6);
    }
    .side-nav li a:hover .side-nav__label {
        transform: scale(1);
        opacity: 1;
    }
    .side-nav li a:hover .side-nav__diamond {
        background-color: #9e9e9e;
    }
    .side-nav li a:after {
        content: "";
        clear: both;
        display: block;
    }
}
.side-nav li.selected .side-nav__label {
    color: #9e9e9e;
}
@media (min-width: 1200px) {
    .side-nav li.selected .side-nav__label {
        color: #212121;
    }
}
@media (min-width: 1200px) {
    .side-nav li.selected:first-child ~ li:last-child {
        transform: translateY(0);
    }
    .side-nav li.selected:nth-child(2) ~ li:last-child {
        transform: translateY(40px);
    }
    .side-nav li.selected:nth-child(3) ~ li:last-child {
        transform: translateY(80px);
    }
    .side-nav li.selected:nth-child(4) ~ li:last-child {
        transform: translateY(120px);
    }
    .side-nav li.selected:nth-child(5) ~ li:last-child {
        transform: translateY(160px);
    }
    .side-nav li.selected:nth-child(6) ~ li:last-child {
        transform: translateY(200px);
    }
    .side-nav li.selected:nth-child(7) ~ li:last-child {
        transform: translateY(240px);
    }
    .side-nav li.selected:nth-child(8) ~ li:last-child {
        transform: translateY(280px);
    }
    .side-nav li.selected:nth-child(9) ~ li:last-child {
        transform: translateY(320px);
    }
    .side-nav li.selected:nth-child(10) ~ li:last-child {
        transform: translateY(360px);
    }
    .side-nav li.selected:nth-child(11) ~ li:last-child {
        transform: translateY(400px);
    }
    .side-nav li.selected:nth-child(12) ~ li:last-child {
        transform: translateY(440px);
    }
    .side-nav li.selected:nth-child(13) ~ li:last-child {
        transform: translateY(480px);
    }
    .side-nav li.selected:nth-child(14) ~ li:last-child {
        transform: translateY(520px);
    }
    .side-nav li.selected:nth-child(15) ~ li:last-child {
        transform: translateY(560px);
    }
    .side-nav li.selected:nth-child(16) ~ li:last-child {
        transform: translateY(600px);
    }
    .side-nav li.selected:nth-child(17) ~ li:last-child {
        transform: translateY(640px);
    }
    .side-nav li.selected:nth-child(18) ~ li:last-child {
        transform: translateY(680px);
    }
    .side-nav li.selected:nth-child(19) ~ li:last-child {
        transform: translateY(720px);
    }
    .side-nav li.selected:nth-child(20) ~ li:last-child {
        transform: translateY(760px);
    }
    .side-nav li.selected ~ li:last-child:after {
        opacity: 1;
    }
}
.side-nav__diamond {
    display: none;
}
@media (min-width: 1200px) {
    .side-nav__diamond {
        display: inline-block;
        position: relative;
        top: 8px;
        height: 0.75rem;
        width: 0.75rem;
        background-color: #616161;
        transition:
            transform 0.2s,
            background-color 0.5s;
        transform-origin: 50% 50%;
        transform: rotate(45deg);
    }
}
.side-nav__label {
    position: relative;
    color: #f5f5f5;
    padding-right: 1rem;
}
@media (min-width: 1200px) {
    .side-nav__label {
        opacity: 0;
        padding: 0 0.5rem;
        margin-right: 0.5rem;
        transition:
            transform 0.2s,
            opacity 0.2s;
        transform-origin: 100% 50%;
        color: #424242;
        font-family:
            "PT Serif",
            -apple-system,
            BlinkMacSystemFont,
            Segoe UI,
            Roboto,
            Helvetica Neue,
            Arial,
            sans-serif,
            Apple Color Emoji,
            Segoe UI Emoji,
            Segoe UI Symbol;
        font-style: italic;
    }
}
.side-nav-trigger {
    display: block;
    z-index: 2;
    position: fixed;
    bottom: 30px;
    right: 1.5rem;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: rgba(33, 33, 33, 0.9);
}
@media (min-width: 768px) {
    .side-nav-trigger {
        bottom: 40px;
    }
}
@media (min-width: 1200px) {
    .side-nav-trigger {
        display: none;
    }
}
.side-nav-trigger span {
    position: absolute;
    height: 4px;
    width: 4px;
    background-color: #f5f5f5;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    transform: translateX(-50%) translateY(-50%);
}
.side-nav-trigger span:after,
.side-nav-trigger span:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
}
.side-nav-trigger span:before {
    top: -9px;
}
.side-nav-trigger span:after {
    bottom: -9px;
}
.slider__slide--overlay:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-image:
        -webkit-linear-gradient(left, rgba(75, 68, 64, 0.25), rgba(75, 68, 64, 0.25) 1px, transparent 0),
        -webkit-linear-gradient(top, rgba(75, 68, 64, 0.25), rgba(75, 68, 64, 0.25) 1px, transparent 0);
    top: 0;
    left: 0;
    z-index: 10;
    background-size: 2px 2px;
}
.slider[data-slider-type="default"] .slider__slide {
    width: 100%;
}
.slider[data-slider-type="default"] .slider__slide img {
    max-width: 100%;
    height: auto;
}
.slider[data-slider-type="carousel"] .slider__slide {
    margin-left: 0.5rem;
    overflow: hidden;
}
.slider[data-slider-type="carousel"] .slider__slide img {
    display: block;
    height: 250px;
    width: auto;
}
@media (min-width: 768px) {
    .slider[data-slider-type="carousel"] .slider__slide img {
        height: 400px;
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="carousel"] .slider__slide img {
        height: 550px;
    }
}
.slider[data-slider-type="carousel"] .flickity-viewport:after,
.slider[data-slider-type="carousel"] .flickity-viewport:before,
.slider[data-slider-type="default"] .flickity-viewport:after,
.slider[data-slider-type="default"] .flickity-viewport:before {
    content: "";
    position: absolute;
    width: 15%;
    top: 0;
    bottom: 0;
    z-index: 10;
    opacity: 0.2;
}
.slider[data-slider-type="carousel"] .flickity-viewport:before,
.slider[data-slider-type="default"] .flickity-viewport:before {
    left: 0;
    background: linear-gradient(90deg, #1a1a1a, rgba(26, 26, 26, 0));
}
.slider[data-slider-type="carousel"] .flickity-viewport:after,
.slider[data-slider-type="default"] .flickity-viewport:after {
    right: 0;
    background: linear-gradient(-90deg, #1a1a1a, rgba(26, 26, 26, 0));
}
.slider[data-slider-type="fullscreen"] {
    height: calc(100vh - 120px);
    height: calc(var(--vh, 1vh) * 100 - 120px);
    z-index: 100;
}
@media (min-width: 768px) {
    .slider[data-slider-type="fullscreen"] {
        height: calc(100vh - 150px);
        height: calc(var(--vh, 1vh) * 100 - 150px);
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="fullscreen"] .flickity-viewport {
        height: calc(100vh - 150px) !important;
        height: calc(var(--vh, 1vh) * 100 - 150px) !important;
    }
}
.slider[data-slider-type="fullscreen"] .slider__slide {
    width: 100%;
    height: calc(100vh - 120px);
    height: calc(var(--vh, 1vh) * 100 - 120px);
}
@media (min-width: 768px) {
    .slider[data-slider-type="fullscreen"] .slider__slide {
        height: calc(100vh - 150px);
        height: calc(var(--vh, 1vh) * 100 - 150px);
    }
}
.slider[data-slider-type="fullscreen"] .slider__slide.is-selected .slider__slide__caption > .container h1 {
    opacity: 0;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.slider[data-slider-type="fullscreen"] .slider__slide.is-selected .slider__slide__caption > .container h2 {
    opacity: 0;
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}
.slider[data-slider-type="fullscreen"] .slider__slide.is-selected .slider__slide__caption > .container .btn,
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption
    > .container
    form.frm-fluent-form
    .btn-success,
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption
    > .container
    form.frm-fluent-form
    .ff-btn-secondary[data-action="next"],
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption
    > .container
    form.frm-fluent-form
    .ff-btn-secondary[data-action="prev"],
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption
    > .container
    .btn-success,
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption
    > .container
    .ff-btn-secondary[data-action="next"],
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption
    > .container
    .ff-btn-secondary[data-action="prev"] {
    opacity: 0;
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hleft
    > .container
    .btn,
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hleft
    > .container
    form.frm-fluent-form
    .btn-success,
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hleft
    > .container
    form.frm-fluent-form
    .ff-btn-secondary[data-action="next"],
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hleft
    > .container
    form.frm-fluent-form
    .ff-btn-secondary[data-action="prev"],
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hleft
    > .container
    h1,
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hleft
    > .container
    h2,
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hleft
    > .container
    .btn-success,
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hleft
    > .container
    .ff-btn-secondary[data-action="next"],
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hleft
    > .container
    .ff-btn-secondary[data-action="prev"] {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hright
    > .container
    .btn,
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hright
    > .container
    form.frm-fluent-form
    .btn-success,
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hright
    > .container
    form.frm-fluent-form
    .ff-btn-secondary[data-action="next"],
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hright
    > .container
    form.frm-fluent-form
    .ff-btn-secondary[data-action="prev"],
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hright
    > .container
    h1,
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hright
    > .container
    h2,
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hright
    > .container
    .btn-success,
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hright
    > .container
    .ff-btn-secondary[data-action="next"],
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hright
    > .container
    .ff-btn-secondary[data-action="prev"] {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hcenter.slider__slide__caption--vcenter
    > .container
    .btn,
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hcenter.slider__slide__caption--vcenter
    > .container
    form.frm-fluent-form
    .btn-success,
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hcenter.slider__slide__caption--vcenter
    > .container
    form.frm-fluent-form
    .ff-btn-secondary[data-action="next"],
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hcenter.slider__slide__caption--vcenter
    > .container
    form.frm-fluent-form
    .ff-btn-secondary[data-action="prev"],
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hcenter.slider__slide__caption--vcenter
    > .container
    h1,
.slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hcenter.slider__slide__caption--vcenter
    > .container
    h2,
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hcenter.slider__slide__caption--vcenter
    > .container
    .btn-success,
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hcenter.slider__slide__caption--vcenter
    > .container
    .ff-btn-secondary[data-action="next"],
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide.is-selected
    .slider__slide__caption.slider__slide__caption--hcenter.slider__slide__caption--vcenter
    > .container
    .ff-btn-secondary[data-action="prev"] {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.slider[data-slider-type="fullscreen"] .slider__slide__caption {
    position: absolute;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    z-index: 50;
    left: 0;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 576px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption {
        padding: 0 1.5rem;
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption {
        width: 100%;
        text-align: left;
        transform: none;
        top: 0;
    }
}
.slider[data-slider-type="fullscreen"] .slider__slide__caption .heading__title,
.slider[data-slider-type="fullscreen"] .slider__slide__caption h1 {
    font-size: 1.75rem;
    color: #fff;
}
@media (min-width: 768px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption .heading__title,
    .slider[data-slider-type="fullscreen"] .slider__slide__caption h1 {
        font-size: 2rem;
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption .heading__title,
    .slider[data-slider-type="fullscreen"] .slider__slide__caption h1 {
        font-size: 2.5rem;
    }
}
.slider[data-slider-type="fullscreen"] .slider__slide__caption .heading__subtitle,
.slider[data-slider-type="fullscreen"] .slider__slide__caption h2 {
    font-size: 1.5rem;
    color: hsla(0, 0%, 100%, 0.9);
    margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption .heading__subtitle,
    .slider[data-slider-type="fullscreen"] .slider__slide__caption h2 {
        font-size: 1.75rem;
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption .heading__subtitle,
    .slider[data-slider-type="fullscreen"] .slider__slide__caption h2 {
        font-size: 2rem;
    }
}
.slider[data-slider-type="fullscreen"] .slider__slide__caption .heading {
    text-align: center;
}
@media (min-width: 992px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption .heading {
        text-align: left;
    }
}
.slider[data-slider-type="fullscreen"] .slider__slide__caption > .container {
    text-align: center;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
@media (min-width: 992px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption > .container {
        padding: 7.5rem 5rem;
        text-align: left;
    }
}
@media (min-width: 1400px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption > .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.slider[data-slider-type="fullscreen"] .slider__slide__caption > .container .btn,
.slider[data-slider-type="fullscreen"] .slider__slide__caption > .container form.frm-fluent-form .btn-success,
.slider[data-slider-type="fullscreen"]
    .slider__slide__caption
    > .container
    form.frm-fluent-form
    .ff-btn-secondary[data-action="next"],
.slider[data-slider-type="fullscreen"]
    .slider__slide__caption
    > .container
    form.frm-fluent-form
    .ff-btn-secondary[data-action="prev"],
form.frm-fluent-form .slider[data-slider-type="fullscreen"] .slider__slide__caption > .container .btn-success,
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide__caption
    > .container
    .ff-btn-secondary[data-action="next"],
form.frm-fluent-form
    .slider[data-slider-type="fullscreen"]
    .slider__slide__caption
    > .container
    .ff-btn-secondary[data-action="prev"] {
    margin-top: 1rem;
}
@media (min-width: 992px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption--vtop {
        align-items: flex-start;
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption--vcenter {
        align-items: center;
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption--vbottom {
        align-items: flex-end;
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption--hleft {
        justify-content: flex-start;
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption--hcenter {
        justify-content: center;
    }
    .slider[data-slider-type="fullscreen"] .slider__slide__caption--hcenter .container,
    .slider[data-slider-type="fullscreen"] .slider__slide__caption--hcenter .heading {
        text-align: center;
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="fullscreen"] .slider__slide__caption--hright {
        justify-content: flex-end;
    }
    .slider[data-slider-type="fullscreen"] .slider__slide__caption--hright .container,
    .slider[data-slider-type="fullscreen"] .slider__slide__caption--hright .heading {
        text-align: right;
    }
}
.slider[data-slider-type="fullscreen"] .slider__slide__video__pause-play:before,
.slider[data-slider-type="fullscreen"] .slider__slide__video__volume:before {
    position: absolute;
    top: 1.5rem;
    color: #fff;
    z-index: 100;
    cursor: pointer;
}
.slider[data-slider-type="fullscreen"] .slider__slide__video__pause-play:before {
    content: "\E855";
    right: 2.5rem;
}
.slider[data-slider-type="fullscreen"] .slider__slide__video__pause-play.active:before,
.slider[data-slider-type="fullscreen"] .slider__slide__video__pause-play:before {
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: none;
    font-size: 20px;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slider[data-slider-type="fullscreen"] .slider__slide__video__pause-play.active:before {
    content: "\E856";
}
.slider[data-slider-type="fullscreen"] .slider__slide__video__volume:before {
    content: "\E854";
    right: 5rem;
}
.slider[data-slider-type="fullscreen"] .slider__slide__video__volume.active:before,
.slider[data-slider-type="fullscreen"] .slider__slide__video__volume:before {
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: none;
    font-size: 20px;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slider[data-slider-type="fullscreen"] .slider__slide__video__volume.active:before {
    content: "\E857";
}
.slider[data-slider-type="fullscreen"] .slider__slide__video video {
    position: absolute;
    width: 100%;
    transform: translateY(-50%);
    top: 50%;
}
.slider[data-slider-type="fullscreen"] .slider__slide picture {
    display: flex;
    width: 100%;
    height: 100%;
}
.slider[data-slider-type="fullscreen"] .slider__slide picture img {
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
    height: auto;
    width: 100%;
}
.slider[data-slider-type="content"] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (min-width: 768px) {
    .slider[data-slider-type="content"] {
        padding-left: 2rem;
    }
}
.slider[data-slider-type="content"].slider--destroyed {
    padding: 0;
}
.slider[data-slider-type="content"] .slider__slide {
    width: 100%;
}
@media (min-width: 768px) {
    .slider[data-slider-type="content"] .slider__slide {
        width: calc(50% - 1rem);
        margin-right: 1rem;
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="content"] .slider__slide {
        width: calc(33.3% - 1rem + 2px);
    }
}
@media (min-width: 768px) {
    .slider[data-slider-type="content"] .slider__slide--gapless {
        width: 50%;
        margin-right: 0;
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="content"] .slider__slide--gapless {
        width: 33.3%;
    }
}
.slider[data-slider-type="content"] .slider__slide img {
    max-width: 100%;
    height: auto;
}
.slider[data-slider-type="content"] .slider__slide.card--vertical {
    min-height: 100%;
}
.slider[data-slider-type="content"] .flickity-button.flickity-prev-next-button.next {
    right: -0.5rem;
}
@media (min-width: 576px) {
    .slider[data-slider-type="content"] .flickity-button.flickity-prev-next-button.next {
        right: -1rem;
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="content"] .flickity-button.flickity-prev-next-button.next {
        right: -2.5rem;
    }
}
.slider[data-slider-type="content"] .flickity-button.flickity-prev-next-button.previous {
    left: -0.5rem;
}
@media (min-width: 576px) {
    .slider[data-slider-type="content"] .flickity-button.flickity-prev-next-button.previous {
        left: -1rem;
    }
}
@media (min-width: 992px) {
    .slider[data-slider-type="content"] .flickity-button.flickity-prev-next-button.previous {
        left: -2.5rem;
    }
}
.slider[data-slider-type="content"] .flickity-button.flickity-prev-next-button .flickity-button-icon {
    fill: #616161;
}
@media (min-width: 576px) {
    .slider[data-slider-type="content"] .flickity-page-dots {
        display: none;
    }
}
@media (min-width: 768px) {
    .slider[data-slider-type="content"] .flickity-page-dots {
        display: block;
    }
}
.slider--logos .flickity-slider {
    align-items: center;
}
.slider--logos .slider__slide {
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}
.slider--logos .slider__slide picture img {
    max-height: 200px;
    width: auto;
    max-width: 100%;
}
.slider--logos .slider__slide:hover > a {
    transform: scale(0.95);
}
.slider .flickity-button {
    background: transparent;
    z-index: 20;
}
.slider .flickity-button.flickity-prev-next-button {
    width: 30px;
    height: 30px;
}
@media (min-width: 576px) {
    .slider .flickity-button.flickity-prev-next-button {
        width: 50px;
        height: 50px;
    }
}
@media (min-width: 992px) {
    .slider .flickity-button.flickity-prev-next-button {
        width: 75px;
        height: 75px;
    }
}
.slider .flickity-button.flickity-prev-next-button:after {
    content: attr(data-caption);
    display: block;
    width: 100%;
    position: absolute;
    bottom: -1rem;
    color: hsla(0, 0%, 100%, 0.75);
    font-size: 0.75rem;
    left: 0;
    white-space: nowrap;
}
@media (min-width: 992px) {
    .slider .flickity-button.flickity-prev-next-button:after {
        font-size: 1rem;
    }
}
.slider .flickity-button.flickity-prev-next-button.next {
    right: 0.5rem;
}
@media (min-width: 576px) {
    .slider .flickity-button.flickity-prev-next-button.next {
        right: 1rem;
    }
}
@media (min-width: 992px) {
    .slider .flickity-button.flickity-prev-next-button.next {
        right: 2.5rem;
    }
}
.slider .flickity-button.flickity-prev-next-button.previous {
    left: 0.5rem;
}
@media (min-width: 576px) {
    .slider .flickity-button.flickity-prev-next-button.previous {
        left: 1rem;
    }
}
@media (min-width: 992px) {
    .slider .flickity-button.flickity-prev-next-button.previous {
        left: 2.5rem;
    }
}
.slider .flickity-button .flickity-button-icon {
    fill: #fff;
}
.slider .flickity-button:disabled {
    display: none;
}
.slider .flickity-page-dots {
    left: 0;
    display: none;
}
@media (min-width: 576px) {
    .slider .flickity-page-dots {
        display: block;
    }
}
.slider .flickity-page-dots .dot {
    height: 4px;
    width: 40px;
    margin: 0 0.25rem 0 0;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
    background: #424242;
}
.shariff {
    margin-top: 1.5rem;
}
.shariff:before {
    content: "";
    display: block;
    background-image: url(../images/share.png);
    width: 160px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}
.shariff .shariff-buttons.orientation-horizontal .shariff-button {
    margin-bottom: 0 !important;
}
.shariff .shariff-buttons.orientation-horizontal .shariff-button:first-child {
    margin-left: 0 !important;
}
.shariff .shariff-buttons.orientation-horizontal .shariff-button .shariff-link {
    font-style: normal;
}
.shariff .shariff-buttons.orientation-horizontal .shariff-button .shariff-link .shariff-text {
    font-family:
        Noto Sans,
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-size: 0.875rem;
}
.subpages {
    display: none;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    z-index: 900;
    transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
    .subpages {
        display: block;
    }
}
.subpages .container {
    text-align: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.subpages__item {
    padding: 0.75rem;
    display: inline-block;
    text-transform: uppercase;
    color: #757575 !important;
    transition: all 0.2s ease-in-out;
    font-style: normal !important;
    text-decoration: none;
    letter-spacing: 0.05rem;
}
.subpages__item.active,
.subpages__item:hover {
    color: #212121 !important;
    text-decoration: none;
}
.subpages__item:last-child {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.subpages--up {
    position: fixed;
    width: 100%;
    top: 64px;
}
@media (min-width: 992px) {
    .subpages--up {
        top: 70px;
    }
}
@media (min-width: 1200px) {
    .subpages--up {
        top: 74px;
    }
}
.subpages--down {
    position: fixed;
    width: 100%;
    top: 0;
}
.spacer {
    clear: both;
    height: 3rem;
}
.spacer--sm {
    height: 1.5rem;
}
.spacer--xl {
    height: 5rem;
}
.spacer--xxl {
    height: 10rem;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .page-numbers {
    padding: 0.5rem 1rem;
    background: #eee;
    font-size: 1.125rem;
    font-style: normal;
    position: relative;
    text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    text-decoration: none;
}
.pagination .page-numbers.current:before,
.pagination .page-numbers:hover:before {
    bottom: 0;
    right: 0;
    opacity: 1;
}
.pagination .page-numbers.current:after,
.pagination .page-numbers:hover:after {
    left: 0;
    top: 0;
    opacity: 1;
}
.pagination .page-numbers:after,
.pagination .page-numbers:before {
    content: "";
    position: absolute;
    transition: all 0.5s ease 0s;
    opacity: 0;
}
.pagination .page-numbers:before {
    top: 0;
    left: 0;
    right: 100%;
    bottom: 100%;
    border-top: 2px solid #424242;
    border-left: 2px solid #424242;
}
.pagination .page-numbers:after {
    left: 100%;
    top: 100%;
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #424242;
    border-right: 2px solid #424242;
}
.parallax-container {
    position: relative;
    overflow: hidden;
    height: 50vh;
    height: calc(var(--vh, 1vh) * 50);
}
.parallax-container--sm {
    height: 40vh;
    height: calc(var(--vh, 1vh) * 40);
}
.parallax-container--lg {
    height: 60vh;
    height: calc(var(--vh, 1vh) * 60);
}
.parallax-container--xl {
    height: 75vh;
    height: calc(var(--vh, 1vh) * 75);
}
.parallax-container--shadow:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 5;
}
.parallax-container .parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.parallax-container .parallax img {
    opacity: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    transform: translateZ(0);
    transform: translateX(-50%);
}
.pace {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    background: #fff;
    pointer-events: none;
}
.pace-inactive {
    display: block;
}
.pace--bg {
    z-index: 99999;
}
.pace .pace-progress {
    background: #0d5fad;
    position: absolute;
    z-index: 100000;
    height: 4px;
}
.pace .pace-progress .pace-progress-inner {
    top: -2px;
}
.pace .pace-activity {
    position: absolute;
    border-top-color: #0d5fad;
    border-left-color: #0d5fad;
    z-index: 100000;
    top: 2rem;
    right: 2rem;
    width: 20px;
    height: 20px;
}
.nav.nav-tabs {
    margin-bottom: 1.5rem;
}
.nav.nav-tabs .nav-item {
    padding-left: 0.5rem !important;
}
@media (min-width: 768px) {
    .nav.nav-tabs .nav-item {
        padding-left: 1.5rem !important;
    }
}
.nav.nav-tabs .nav-item:before {
    display: none !important;
}
.nav.nav-tabs .nav-item .nav-link {
    font-style: normal;
    text-decoration: none;
}
.nav.nav-tabs.nav-tabs--small-spaces .nav-item {
    padding-left: 0.5rem !important;
}
@media (min-width: 768px) {
    .nav.nav-tabs.nav-tabs--small-spaces .nav-item {
        padding-left: 0.5rem !important;
    }
}
.nav.nav-tabs.nav-tabs--small-spaces .nav-item.dropdown-item {
    padding: 0 !important;
}
@media (min-width: 768px) {
    .nav.nav-tabs.nav-tabs--small-spaces .nav-item.dropdown-item {
        padding: 0 !important;
    }
}
.nav.nav-tabs.nav-tabs--scrollable {
    white-space: nowrap;
    flex-wrap: nowrap;
}
.toolbar {
    position: fixed;
    bottom: 0;
    z-index: 10000;
    width: 100%;
    display: flex;
    height: 45px;
}
.toolbar__lang,
.toolbar__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 75px;
    text-align: center;
}
.toolbar__phone {
    background: #424242;
    color: #fff;
}
.toolbar__phone:active,
.toolbar__phone:focus,
.toolbar__phone:hover {
    background: #212121;
    color: #fff;
}
.toolbar__lang {
    background: #eee;
}
.toolbar__booking {
    text-transform: none;
    letter-spacing: 0.01rem;
    font-family:
        "PT Serif",
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-weight: 400;
    border-radius: 0;
    width: 100%;
}
.tooltip-inner {
    padding: 0.5rem 0.75rem;
}
.tooltip p:last-child {
    margin-bottom: 0;
}
.video {
    position: relative;
    padding-bottom: 56.25%;
}
.video > .video-js,
.video > video {
    position: absolute;
    width: 100%;
    height: 100%;
}
.video > .video-js .vjs-big-play-button,
.video > video .vjs-big-play-button {
    top: calc(50% - 0.816em);
    left: calc(50% - 1.5em);
}
.video > .video-js .vjs-poster,
.video > video .vjs-poster {
    background-size: cover;
    background-position: inherit;
}
.mm-menu {
    background: #212121;
    color: #f5f5f5;
}
.mm-menu .mm-navbar,
.mm-menu .mm-navbars-bottom,
.mm-menu .mm-navbars-top {
    border-color: hsla(0, 0%, 96.1%, 0.15);
}
.mm-menu .mm-navbar > *,
.mm-menu .mm-navbar a {
    color: #f5f5f5;
}
.mm-menu .mm-navbar-size-4 {
    padding: 0.5rem;
}
.mm-menu .mm-navbar .logo {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
}
.mm-menu .mm-navbar .logo-wrapper {
    background: #f3f3f3;
    border: none;
}
.mm-menu .mm-navbar .logo:before {
    background-position: 50% 0;
    height: 80px;
    padding-top: 0;
}
.mm-menu .mm-navbar.mm-navbar_sticky {
    border-top: 1px solid var(--mm-color-border);
    border-bottom: 1px solid var(--mm-color-border);
}
.mm-menu .mm-navbar.mm-navbar_sticky .mm-navbar__title {
    font-style: italic;
    font-family:
        "PT Serif",
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-size: 1.125rem;
    color: #757575;
}
.mm-menu .mm-listview {
    border-color: hsla(0, 0%, 96.1%, 0.15);
}
.mm-menu .mm-listview .page_item > a:last-child {
    padding: 1.25rem 1rem 1.25rem 1.5rem;
}
.mm-menu .mm-listview .page_item.mm-listitem_selected > .mm-listitem__text {
    background: hsla(0, 0%, 100%, 0.7);
}
.mm-menu .mm-listitem[data-slug="bf-1"] > a:first-child {
    background: #fff8bb;
}
.mm-menu .mm-listitem[data-slug="bf-1"] > a:last-child {
    background: #fff388;
}
.mm-menu .mm-listitem[data-slug="bf-2"] > a:first-child {
    background: #ffe988;
}
.mm-menu .mm-listitem[data-slug="bf-2"] > a:last-child {
    background: #ffe055;
}
.mm-menu .mm-listitem[data-slug="3bf"] > a:first-child {
    background: #e1b7f5;
}
.mm-menu .mm-listitem[data-slug="3bf"] > a:last-child {
    background: #ce8aee;
}
.mm-menu .mm-listitem[data-slug="hbf"] > a:first-child {
    background: #1dd49e;
}
.mm-menu .mm-listitem[data-slug="hbf"] > a:last-child {
    background: #17a77d;
}
.mm-menu .mm-listitem[data-slug="bos-2"] > a:first-child {
    background: #ffa588;
}
.mm-menu .mm-listitem[data-slug="bos-2"] > a:last-child {
    background: #ff7e55;
}
.mm-menu .mm-listitem[data-slug="fs"] > a:first-child {
    background: #f74f58;
}
.mm-menu .mm-listitem[data-slug="fs"] > a:last-child {
    background: #f51e2a;
}
.mm-menu .mm-listitem[data-slug="bvj"] > a:first-child {
    background: #82d1f0;
}
.mm-menu .mm-listitem[data-slug="bvj"] > a:last-child {
    background: #3eb7e8;
}
.mm-menu .mm-listitem[data-slug="bs"] > a:first-child {
    background: #489ff1;
}
.mm-menu .mm-listitem[data-slug="bs"] > a:last-child {
    background: #1179dc;
}
.mm-menu .mm-listitem[data-slug="3bf"] .mm-btn_next:after,
.mm-menu .mm-listitem[data-slug="3bf"] .mm-btn_prev:before,
.mm-menu .mm-listitem[data-slug="bf-1"] .mm-btn_next:after,
.mm-menu .mm-listitem[data-slug="bf-1"] .mm-btn_prev:before,
.mm-menu .mm-listitem[data-slug="bf-2"] .mm-btn_next:after,
.mm-menu .mm-listitem[data-slug="bf-2"] .mm-btn_prev:before,
.mm-menu .mm-listitem[data-slug="bos-2"] .mm-btn_next:after,
.mm-menu .mm-listitem[data-slug="bos-2"] .mm-btn_prev:before,
.mm-menu .mm-listitem[data-slug="bs"] .mm-btn_next:after,
.mm-menu .mm-listitem[data-slug="bs"] .mm-btn_prev:before,
.mm-menu .mm-listitem[data-slug="bvj"] .mm-btn_next:after,
.mm-menu .mm-listitem[data-slug="bvj"] .mm-btn_prev:before,
.mm-menu .mm-listitem[data-slug="fs"] .mm-btn_next:after,
.mm-menu .mm-listitem[data-slug="fs"] .mm-btn_prev:before,
.mm-menu .mm-listitem[data-slug="hbf"] .mm-btn_next:after,
.mm-menu .mm-listitem[data-slug="hbf"] .mm-btn_prev:before {
    border-color: rgba(0, 0, 0, 0.6);
}
.mm-menu .mm-btn {
    width: 50px;
}
.mm-menu .mm-next,
.mm-menu .mm-prev {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mm-menu .mm-next:after,
.mm-menu .mm-prev:before {
    font-family: bbsb_icons;
    font-style: normal;
    font-weight: 400;
    speak: none;
    font-size: inherit;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\E826";
    border: none;
    transform: none;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    height: auto;
    margin: 0;
}
.mm-menu .mm-prev:before {
    content: "\E825";
}
.mm-page {
    position: static;
}
html.mm-opening .mm-menu.mm-opened[class*="mm-pagedim"] ~ #mm-blocker {
    opacity: 0.6;
}
.calendar__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.calendar__header__next,
.calendar__header__prev {
    display: flex;
    align-items: center;
}
.calendar__header__next a,
.calendar__header__prev a {
    font-size: 1.5rem;
}
.calendar__body[data-aos="fade-left"] {
    transform: translate3d(25px, 0, 0);
}
.calendar__body[data-aos="fade-left"].aos-animate {
    transform: none;
}
.calendar__body__weekdays {
    display: flex;
    margin-bottom: 0.5rem;
}
.calendar__body__weekdays__day {
    width: calc(14.28571% - 0.25rem);
    text-align: center;
    font-weight: 700;
    margin-left: 0.25rem;
}
.calendar__body__row {
    display: flex;
}
.calendar__day {
    width: calc(14.28571% - 0.25rem);
    background: #fff;
    margin-left: 0.25rem;
    margin-bottom: 0.25rem;
    position: relative;
}
.calendar__day:before {
    content: "";
    display: block;
    padding-top: 75%;
}
.calendar__day > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@media (min-width: 576px) {
    .calendar__day > div {
        font-size: 1.125rem;
    }
}
.calendar__day > div > a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #424242;
    text-decoration: none;
}
.calendar__day > div > a:hover:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}
.calendar__day--before-today {
    background: repeating-linear-gradient(-50deg, #eee, #eee 3px, #f5f5f5 0, #f5f5f5 6px);
}
@media (min-width: 576px) {
    .calendar__day--before-today {
        background: repeating-linear-gradient(-50deg, #eee, #eee 5px, #f5f5f5 0, #f5f5f5 10px);
    }
}
@media (min-width: 992px) {
    .calendar__day--before-today {
        background: repeating-linear-gradient(-50deg, #eee, #eee 8px, #f5f5f5 0, #f5f5f5 16px);
    }
}
.calendar__day--before-today > div > a {
    background: transparent !important;
    pointer-events: none;
    color: #424242;
}
.calendar__day--today.calendar__day--eventful > div > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #424242;
}
@media (min-width: 576px) {
    .calendar__day--today.calendar__day--eventful > div > a:before {
        border-width: 3px;
    }
}
.calendar__day--today.calendar__day--eventless > div:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #424242;
}
@media (min-width: 576px) {
    .calendar__day--today.calendar__day--eventless > div:before {
        border-width: 3px;
    }
}
.calendar__day--eventful {
    transition: all 0.2s ease-in-out;
}
.calendar__day--eventful a {
    color: #f5f5f5;
    font-style: normal;
}
.calendar__day--eventful a:hover {
    text-decoration: none;
    color: #fff;
}
.calendar__day--eventful .calendar__day__event__categories,
.calendar__day--eventful .calendar__day__event__date {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
@media (min-width: 992px) {
    .calendar__day--eventful .calendar__day__event__categories,
    .calendar__day--eventful .calendar__day__event__date {
        font-size: 0.875rem;
    }
}
.calendar__day--eventful .calendar__day__event__categories .icon-calendar-1,
.calendar__day--eventful .calendar__day__event__categories .icon-tag,
.calendar__day--eventful .calendar__day__event__date .icon-calendar-1,
.calendar__day--eventful .calendar__day__event__date .icon-tag {
    color: #616161;
}
.calendar__day--eventful .calendar__day__event__categories .icon-cube,
.calendar__day--eventful .calendar__day__event__date .icon-cube {
    font-size: 0.5rem;
    margin: 0 0.5rem -1px;
    opacity: 0.8;
}
.calendar__day--eventful .calendar__day__event__categories {
    margin-top: -0.5rem;
}
.calendar__single__date {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.calendar__single__date .icon-calendar-1 {
    color: #616161;
    font-size: 1.25rem;
}
.calendar__single__date .icon-cube {
    font-size: 0.5rem;
    margin: 0 0.5rem -1px;
    opacity: 0.8;
}
.calendar__day__events-holder {
    display: none;
}
.calendar__day__events-holder.active {
    position: fixed;
    width: 1140px;
    height: 60vh;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    background: rgba(33, 33, 33, 0.9);
}
.calendar__day__events-holder.active:after {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.3);
}
.calendar-list__item {
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .calendar-list__item__image {
        padding-right: 0;
    }
}
.calendar-list__item__image figure {
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .calendar-list__item__image figure {
        height: 100%;
    }
}
@media (min-width: 768px) {
    .calendar-list__item__image figure img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        font-family: "object-fit: cover";
    }
}
.calendar-list__item__image figure img {
    transition: transform 0.4s ease;
}
.calendar-list__item__image:hover img {
    transform: scale(1.075);
}
.calendar-list__item__date {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}
.calendar-list__item__date .icon-cube {
    font-size: 0.5rem;
    margin: 0 0.5rem;
}
.calendar-list__categories {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 1.5rem;
}
.calendar-list__categories__label {
    width: 100%;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    margin-right: 1rem;
}
@media (min-width: 576px) {
    .calendar-list__categories__label {
        width: auto;
        margin-bottom: 0.5rem;
    }
}
.calendar-list__categories__label:last-child {
    margin-right: 0;
}
.calendar-list__categories__single {
    border: 1px solid #424242;
    color: #333;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease-in-out;
    font-size: 0.875rem;
}
.calendar-list__categories__single:last-child {
    margin-right: 0;
}
.calendar-list__categories__single a {
    font-style: normal;
    text-decoration: none;
}
.calendar-list__categories__single a,
.calendar-list__categories__single span {
    padding: 0.375rem 0.75rem;
    display: inline-block;
}
.calendar-list__categories__single--active,
.calendar-list__categories__single:hover {
    background: #424242;
    color: #fff;
}
.calendar-list__categories__single--active a,
.calendar-list__categories__single:hover a {
    color: #fff;
    text-decoration: none;
}
.footer {
    background: #212121;
    color: #9e9e9e;
    font-size: 0.875rem;
}
.footer [class^="col-"] {
    padding-left: 0;
    padding-right: 0;
}
.footer__wrapper {
    padding: 2.5rem 0;
}
.footer__wrapper--sm {
    padding: 0.75rem 0;
    font-size: 0.75rem;
    background: #1b1b1b;
}
.footer__wrapper--sm p {
    margin-bottom: 0;
}
.footer__wrapper--sm p a {
    color: #757575;
    margin-right: 1rem;
    transition: all 0.2s ease-in-out;
}
.footer__wrapper--sm p a:hover {
    text-decoration: none;
    color: #eee;
}
.footer__wrapper--sm p a:last-child {
    margin-right: 0;
}
.footer__block {
    position: relative;
    padding-left: 2.5rem;
    margin: 0 auto;
    max-width: 250px;
}
@media (min-width: 768px) {
    .footer__block {
        max-width: 100%;
    }
}
.footer__block__icon {
    position: absolute;
    left: 0;
    top: -0.75rem;
}
.footer__block__icon [class^="icon-"] {
    font-size: 1.5rem;
}
.footer__block__icon [class^="icon-"]:before {
    margin: 0;
}
.footer__block__content > ul {
    list-style: none;
    padding-left: 0;
}
.footer__block__content a {
    transition: all 0.2s ease-in-out;
    color: #d1d1d1;
}
.footer__block__content a:hover {
    color: #fff;
    text-decoration: none;
}
.footer__logo {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer__logo .logo {
    width: 130px;
    margin-bottom: 0;
}
.header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    height: 65px;
}
@media (min-width: 768px) {
    .header {
        position: absolute;
        height: 150px;
    }
}
.header > .container {
    display: flex;
    padding: 1.25rem 1.5rem;
    height: 100%;
    position: relative;
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .header > .container {
        max-width: 100%;
    }
}
@media (min-width: 768px) {
    .header > .container {
        padding: 1rem 15px;
    }
}
.header .hamburger {
    display: flex;
    padding-top: 3px;
    padding-right: 25px;
}
@media (min-width: 768px) {
    .header .hamburger {
        display: none;
    }
}
.header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-right: 65px;
}
@media (min-width: 768px) {
    .header__logo {
        width: auto;
        position: absolute;
        left: 50%;
        margin-left: -53px;
        padding-right: 0;
    }
}
.header__logo > div {
    width: 120px;
    height: 30px;
    background-image: url(../images/logo_claim.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
@media (min-width: 768px) {
    .header__logo > div {
        width: 107px;
        height: 120px;
        background-image: url(../images/logo.svg);
    }
}
.header__nav {
    display: none;
}
@media (min-width: 768px) {
    .header__nav {
        display: flex;
        width: 50%;
        height: 100%;
        align-items: flex-end;
        padding-right: 65px;
    }
    .header__nav:last-child {
        padding-right: 0;
        padding-left: 65px;
        justify-content: flex-end;
    }
    .header__nav:last-child > ul > li:last-child:hover > a:after {
        margin-left: calc(-10px + 0.375rem);
    }
    .header__nav:last-child > ul > li:last-child:hover > a + ul,
    .header__nav:last-child > ul > li:nth-last-child(2):hover > a + ul {
        left: auto;
        right: 0;
    }
    .header__nav > ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }
    .header__nav > ul > li {
        float: left;
        font-size: 1.125rem;
        font-family:
            "PT Serif",
            -apple-system,
            BlinkMacSystemFont,
            Segoe UI,
            Roboto,
            Helvetica Neue,
            Arial,
            sans-serif,
            Apple Color Emoji,
            Segoe UI Emoji,
            Segoe UI Symbol;
        position: relative;
    }
    .header__nav > ul > li.current-menu-item > a,
    .header__nav > ul > li.current_page_ancestor > a {
        color: #1d3461;
    }
    .header__nav > ul > li:first-child > a {
        padding-left: 0;
    }
    .header__nav > ul > li:last-child > a {
        padding-right: 0;
    }
    .header__nav > ul > li:hover > a {
        text-decoration: none;
        color: #1d3461;
    }
    .header__nav > ul > li:hover > a:before {
        left: 0;
        width: 100%;
        height: 10px;
        z-index: 1020;
        margin-top: 18px;
    }
    .header__nav > ul > li:hover > a:after,
    .header__nav > ul > li:hover > a:before {
        content: "";
        position: absolute;
        display: block;
        background: #fff;
        top: 100%;
    }
    .header__nav > ul > li:hover > a:after {
        height: 0;
        width: 0;
        left: 50%;
        margin-top: 7px;
        margin-left: -10px;
        width: 20px;
        height: 20px;
        box-shadow: -1px -1px 3px rgba(0, 0, 0, 0.15);
        z-index: 1010;
        transform: rotate(45deg);
    }
    .header__nav > ul > li:hover > a + ul {
        display: flex;
    }
    .header__nav > ul > li:hover > a + ul > li > a {
        display: block;
        position: relative;
        z-index: 1030;
        font-size: 1.25rem;
        white-space: nowrap;
    }
    .header__nav > ul > li:not(.menu-item-has-children) > a:hover:after,
    .header__nav > ul > li:not(.menu-item-has-children) > a:hover:before {
        display: none;
    }
    .header__nav > ul > li > a {
        color: #333;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-bottom: 1.5rem;
        transition: all 0.2s ease-in-out;
    }
    .header__nav > ul > li > ul {
        display: none;
        position: absolute;
        flex-flow: column wrap;
        left: 0;
        top: 100%;
        min-width: 100%;
        margin-top: 1rem;
        list-style: none;
        padding-left: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    }
    .header__nav > ul > li > ul > li {
        position: relative;
        background: #fff;
        color: #424242;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .header__nav > ul > li > ul > li [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li [class^="icon-"]:before {
        position: absolute;
        left: 0;
        z-index: 1050;
        background: #f5f5f5;
        width: 3rem;
        height: 100%;
        margin: 0;
        font-size: 1.25rem;
        line-height: 2.7;
    }
    .header__nav > ul > li > ul > li [class*=" icon-"] + a,
    .header__nav > ul > li > ul > li [class^="icon-"] + a {
        padding-left: 4rem;
    }
    .header__nav > ul > li > ul > li[data-slug="3bf"]:after,
    .header__nav > ul > li > ul > li[data-slug="bf-1"]:after,
    .header__nav > ul > li > ul > li[data-slug="bf-2"]:after,
    .header__nav > ul > li > ul > li[data-slug="bos-2"]:after,
    .header__nav > ul > li > ul > li[data-slug="bs"]:after,
    .header__nav > ul > li > ul > li[data-slug="bvj"]:after,
    .header__nav > ul > li > ul > li[data-slug="fs"]:after,
    .header__nav > ul > li > ul > li[data-slug="hbf"]:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1025;
    }
    .header__nav > ul > li > ul > li[data-slug="3bf"] a,
    .header__nav > ul > li > ul > li[data-slug="bf-1"] a,
    .header__nav > ul > li > ul > li[data-slug="bf-2"] a,
    .header__nav > ul > li > ul > li[data-slug="bos-2"] a,
    .header__nav > ul > li > ul > li[data-slug="bs"] a,
    .header__nav > ul > li > ul > li[data-slug="bvj"] a,
    .header__nav > ul > li > ul > li[data-slug="fs"] a,
    .header__nav > ul > li > ul > li[data-slug="hbf"] a {
        background: transparent !important;
        color: #212121;
    }
    .header__nav > ul > li > ul > li[data-slug="3bf"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="3bf"] [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-1"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-1"] [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-2"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-2"] [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bos-2"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bos-2"] [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bs"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bs"] [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bvj"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bvj"] [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="fs"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="fs"] [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="hbf"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="hbf"] [class^="icon-"]:before {
        color: #212121;
        font-size: 1.75rem;
        line-height: 2;
    }
    .header__nav > ul > li > ul > li[data-slug="3bf"].hover a,
    .header__nav > ul > li > ul > li[data-slug="3bf"]:hover a,
    .header__nav > ul > li > ul > li[data-slug="bf-1"].hover a,
    .header__nav > ul > li > ul > li[data-slug="bf-1"]:hover a,
    .header__nav > ul > li > ul > li[data-slug="bf-2"].hover a,
    .header__nav > ul > li > ul > li[data-slug="bf-2"]:hover a,
    .header__nav > ul > li > ul > li[data-slug="bos-2"].hover a,
    .header__nav > ul > li > ul > li[data-slug="bos-2"]:hover a,
    .header__nav > ul > li > ul > li[data-slug="bs"].hover a,
    .header__nav > ul > li > ul > li[data-slug="bs"]:hover a,
    .header__nav > ul > li > ul > li[data-slug="bvj"].hover a,
    .header__nav > ul > li > ul > li[data-slug="bvj"]:hover a,
    .header__nav > ul > li > ul > li[data-slug="fs"].hover a,
    .header__nav > ul > li > ul > li[data-slug="fs"]:hover a,
    .header__nav > ul > li > ul > li[data-slug="hbf"].hover a,
    .header__nav > ul > li > ul > li[data-slug="hbf"]:hover a {
        background: transparent;
        color: #212121;
    }
    .header__nav > ul > li > ul > li[data-slug="bf-1"]:after {
        background: #fff8bb;
    }
    .header__nav > ul > li > ul > li[data-slug="bf-1"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-1"] [class^="icon-"]:before {
        background: #fff388;
    }
    .header__nav > ul > li > ul > li[data-slug="bf-1"].current-page-ancestor:after,
    .header__nav > ul > li > ul > li[data-slug="bf-1"].current_page_item:after,
    .header__nav > ul > li > ul > li[data-slug="bf-1"].hover:after,
    .header__nav > ul > li > ul > li[data-slug="bf-1"]:hover:after {
        background: #fff5a1;
    }
    .header__nav > ul > li > ul > li[data-slug="bf-1"].current-page-ancestor [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-1"].current-page-ancestor [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-1"].current_page_item [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-1"].current_page_item [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-1"].hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-1"].hover [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-1"]:hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-1"]:hover [class^="icon-"]:before {
        background: #fff06e;
    }
    .header__nav > ul > li > ul > li[data-slug="bf-2"]:after {
        background: #ffe988;
    }
    .header__nav > ul > li > ul > li[data-slug="bf-2"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-2"] [class^="icon-"]:before {
        background: #ffe055;
    }
    .header__nav > ul > li > ul > li[data-slug="bf-2"].current-page-ancestor:after,
    .header__nav > ul > li > ul > li[data-slug="bf-2"].current_page_item:after,
    .header__nav > ul > li > ul > li[data-slug="bf-2"].hover:after,
    .header__nav > ul > li > ul > li[data-slug="bf-2"]:hover:after {
        background: #ffe56f;
    }
    .header__nav > ul > li > ul > li[data-slug="bf-2"].current-page-ancestor [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-2"].current-page-ancestor [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-2"].current_page_item [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-2"].current_page_item [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-2"].hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-2"].hover [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-2"]:hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bf-2"]:hover [class^="icon-"]:before {
        background: #ffdb3c;
    }
    .header__nav > ul > li > ul > li[data-slug="3bf"]:after {
        background: #d8a1f1;
    }
    .header__nav > ul > li > ul > li[data-slug="3bf"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="3bf"] [class^="icon-"]:before {
        background: #c574eb;
    }
    .header__nav > ul > li > ul > li[data-slug="3bf"].current-page-ancestor:after,
    .header__nav > ul > li > ul > li[data-slug="3bf"].current_page_item:after,
    .header__nav > ul > li > ul > li[data-slug="3bf"].hover:after,
    .header__nav > ul > li > ul > li[data-slug="3bf"]:hover:after {
        background: #ce8aee;
    }
    .header__nav > ul > li > ul > li[data-slug="3bf"].current-page-ancestor [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="3bf"].current-page-ancestor [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="3bf"].current_page_item [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="3bf"].current_page_item [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="3bf"].hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="3bf"].hover [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="3bf"]:hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="3bf"]:hover [class^="icon-"]:before {
        background: #bc5ee8;
    }
    .header__nav > ul > li > ul > li[data-slug="hbf"]:after {
        background: #1dd49e;
    }
    .header__nav > ul > li > ul > li[data-slug="hbf"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="hbf"] [class^="icon-"]:before {
        background: #17a77d;
    }
    .header__nav > ul > li > ul > li[data-slug="hbf"].current-page-ancestor:after,
    .header__nav > ul > li > ul > li[data-slug="hbf"].current_page_item:after,
    .header__nav > ul > li > ul > li[data-slug="hbf"].hover:after,
    .header__nav > ul > li > ul > li[data-slug="hbf"]:hover:after {
        background: #1abe8d;
    }
    .header__nav > ul > li > ul > li[data-slug="hbf"].current-page-ancestor [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="hbf"].current-page-ancestor [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="hbf"].current_page_item [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="hbf"].current_page_item [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="hbf"].hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="hbf"].hover [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="hbf"]:hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="hbf"]:hover [class^="icon-"]:before {
        background: #14916c;
    }
    .header__nav > ul > li > ul > li[data-slug="bos-2"]:after {
        background: #ffa588;
    }
    .header__nav > ul > li > ul > li[data-slug="bos-2"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bos-2"] [class^="icon-"]:before {
        background: #ff7e55;
        font-size: 2.2rem;
        line-height: 1.6;
    }
    .header__nav > ul > li > ul > li[data-slug="bos-2"].current-page-ancestor:after,
    .header__nav > ul > li > ul > li[data-slug="bos-2"].current_page_item:after,
    .header__nav > ul > li > ul > li[data-slug="bos-2"].hover:after,
    .header__nav > ul > li > ul > li[data-slug="bos-2"]:hover:after {
        background: #ff916f;
    }
    .header__nav > ul > li > ul > li[data-slug="bos-2"].current-page-ancestor [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bos-2"].current-page-ancestor [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bos-2"].current_page_item [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bos-2"].current_page_item [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bos-2"].hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bos-2"].hover [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bos-2"]:hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bos-2"]:hover [class^="icon-"]:before {
        background: #ff6a3c;
    }
    .header__nav > ul > li > ul > li[data-slug="fs"]:after {
        background: #eb747b;
    }
    .header__nav > ul > li > ul > li[data-slug="fs"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="fs"] [class^="icon-"]:before {
        background: #e44850;
        font-size: 1.5rem;
        line-height: 2.3;
    }
    .header__nav > ul > li > ul > li[data-slug="fs"].current-page-ancestor:after,
    .header__nav > ul > li > ul > li[data-slug="fs"].current_page_item:after,
    .header__nav > ul > li > ul > li[data-slug="fs"].hover:after,
    .header__nav > ul > li > ul > li[data-slug="fs"]:hover:after {
        background: #e75e66;
    }
    .header__nav > ul > li > ul > li[data-slug="fs"].current-page-ancestor [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="fs"].current-page-ancestor [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="fs"].current_page_item [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="fs"].current_page_item [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="fs"].hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="fs"].hover [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="fs"]:hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="fs"]:hover [class^="icon-"]:before {
        background: #e1323b;
    }
    .header__nav > ul > li > ul > li[data-slug="bvj"]:after {
        background: #82d1f0;
    }
    .header__nav > ul > li > ul > li[data-slug="bvj"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bvj"] [class^="icon-"]:before {
        background: #3eb7e8;
    }
    .header__nav > ul > li > ul > li[data-slug="bvj"].current-page-ancestor:after,
    .header__nav > ul > li > ul > li[data-slug="bvj"].current_page_item:after,
    .header__nav > ul > li > ul > li[data-slug="bvj"].hover:after,
    .header__nav > ul > li > ul > li[data-slug="bvj"]:hover:after {
        background: #6cc8ed;
    }
    .header__nav > ul > li > ul > li[data-slug="bvj"].current-page-ancestor [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bvj"].current-page-ancestor [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bvj"].current_page_item [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bvj"].current_page_item [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bvj"].hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bvj"].hover [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bvj"]:hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bvj"]:hover [class^="icon-"]:before {
        background: #27afe5;
    }
    .header__nav > ul > li > ul > li[data-slug="bs"]:after {
        background: #489ff1;
    }
    .header__nav > ul > li > ul > li[data-slug="bs"] [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bs"] [class^="icon-"]:before {
        background: #1179dc;
        font-size: 1.5rem;
        line-height: 2.3;
    }
    .header__nav > ul > li > ul > li[data-slug="bs"].current-page-ancestor:after,
    .header__nav > ul > li > ul > li[data-slug="bs"].current_page_item:after,
    .header__nav > ul > li > ul > li[data-slug="bs"].hover:after,
    .header__nav > ul > li > ul > li[data-slug="bs"]:hover:after {
        background: #3192ef;
    }
    .header__nav > ul > li > ul > li[data-slug="bs"].current-page-ancestor [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bs"].current-page-ancestor [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bs"].current_page_item [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bs"].current_page_item [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bs"].hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bs"].hover [class^="icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bs"]:hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li[data-slug="bs"]:hover [class^="icon-"]:before {
        background: #0f6cc5;
    }
    .header__nav > ul > li > ul > li.current-page-ancestor [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li.current-page-ancestor [class^="icon-"]:before,
    .header__nav > ul > li > ul > li.current_page_item [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li.current_page_item [class^="icon-"]:before,
    .header__nav > ul > li > ul > li:hover [class*=" icon-"]:before,
    .header__nav > ul > li > ul > li:hover [class^="icon-"]:before {
        background: #ddd;
        color: #17294d;
    }
    .header__nav > ul > li > ul > li.current-page-ancestor > a,
    .header__nav > ul > li > ul > li.current_page_item > a,
    .header__nav > ul > li > ul > li:hover > a {
        background: #f5f5f5;
        text-decoration: none;
        border-left: 1px solid rgba(0, 0, 0, 0.2);
        color: #17294d;
    }
    .header__nav > ul > li > ul > li:last-child {
        border-bottom: none;
    }
    .header__nav > ul > li > ul > li > a {
        padding: 0.75rem 1.25rem;
        font-family:
            Noto Sans,
            -apple-system,
            BlinkMacSystemFont,
            Segoe UI,
            Roboto,
            Helvetica Neue,
            Arial,
            sans-serif,
            Apple Color Emoji,
            Segoe UI Emoji,
            Segoe UI Symbol;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        height: 100%;
        color: #1d3461;
    }
    .header__nav > ul > li > ul#menu-header_nav_left > li:hover:first-child > a:after {
        margin-left: calc(-10px - 0.375rem);
    }
    .header__nav > ul > li > ul#menu-header_nav_left > li:not(:first-child) > a:before {
        left: 0.375rem;
    }
    .header__nav > ul > li > ul#menu-header_nav_left > li:not(:first-child) > a:after {
        left: calc(50% + 0.375rem);
    }
    .header__nav > ul > li > ul#menu-header_nav_left > li:not(:first-child) > ul {
        left: 0.375rem;
    }
}
@media (min-width: 992px) {
    .header__nav:last-child > ul > li:last-child:hover > a:after {
        margin-left: calc(-10px + 0.625rem);
    }
    .header__nav > ul > li {
        font-size: 1.5rem;
    }
    .header__nav > ul > li > a {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .header__nav > ul#menu-header_nav_left > li:hover:first-child > a:after {
        margin-left: calc(-10px - 0.625rem);
    }
    .header__nav > ul#menu-header_nav_left > li:not(:first-child) > a:before {
        left: 0.625rem;
    }
    .header__nav > ul#menu-header_nav_left > li:not(:first-child) > a:after {
        left: calc(50% + 0.625rem);
    }
    .header__nav > ul#menu-header_nav_left > li:not(:first-child) > ul {
        left: 0.625rem;
    }
}
@media (min-width: 1200px) {
    .header__nav:last-child > ul > li:last-child:hover > a:after {
        margin-left: calc(-10px + 0.875rem);
    }
    .header__nav:last-child > ul > li:nth-last-child(2):hover > a + ul {
        left: 0;
        right: auto;
    }
    .header__nav > ul > li {
        font-size: 1.75rem;
    }
    .header__nav > ul > li > a {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
    .header__nav > ul#menu-header_nav_left > li:hover:first-child > a:after {
        margin-left: calc(-10px - 0.875rem);
    }
    .header__nav > ul#menu-header_nav_left > li:not(:first-child) > a:before {
        left: 0.875rem;
    }
    .header__nav > ul#menu-header_nav_left > li:not(:first-child) > a:after {
        left: calc(50% + 0.875rem);
    }
    .header__nav > ul#menu-header_nav_left > li:not(:first-child) > ul {
        left: 0.875rem;
    }
}
.header__meta {
    display: none;
}
@media (min-width: 768px) {
    .header__meta {
        display: flex;
        align-items: center;
        position: absolute;
        top: 1.25rem;
        height: calc(50% - 1rem);
        border-bottom: 1px solid #eee;
        width: calc(50% - 115px);
    }
    .header__meta--left {
        left: 1rem;
    }
    .header__meta--right {
        right: 1rem;
        padding-right: 0;
        padding-left: 35px;
        justify-content: flex-end;
    }
    .header__meta > ul {
        list-style: none;
        padding-left: 0;
    }
    .header__meta > ul a {
        color: #9e9e9e;
        transition: all 0.2s ease-in-out;
        font-family:
            "PT Serif",
            -apple-system,
            BlinkMacSystemFont,
            Segoe UI,
            Roboto,
            Helvetica Neue,
            Arial,
            sans-serif,
            Apple Color Emoji,
            Segoe UI Emoji,
            Segoe UI Symbol;
        font-size: 1.125rem;
        font-style: italic;
    }
    .header__meta > ul a:hover {
        text-decoration: none;
        color: #757575;
    }
}
.header.affix {
    height: 65px;
}
@media (min-width: 768px) {
    .header.affix {
        position: fixed;
    }
    .header.affix .header__meta {
        margin-top: -85px;
    }
    .header.affix .header__nav {
        align-items: center;
    }
    .header.affix .header__logo--full {
        opacity: 0;
        pointer-events: none;
    }
    .header.affix .header__logo--figure {
        bottom: 0;
        margin-left: -32px;
        -webkit-backface-visibility: visible !important;
        backface-visibility: visible !important;
        -webkit-animation-name: flipInX;
        animation-name: flipInX;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
    .header.affix .header__logo--figure > div {
        background-image: url(../images/logo_figure.svg);
        height: 56px;
        width: 60px;
    }
}
@media (min-width: 992px) {
    .header.affix {
        height: 70px;
    }
    .header.affix .header__logo--figure > div {
        height: 60px;
        width: 65px;
    }
}
@media (min-width: 1200px) {
    .header.affix {
        height: 75px;
    }
    .header.affix .header__logo--figure > div {
        height: 64px;
        width: 70px;
    }
}
@media (min-width: 768px) {
    .header.affix-top .header__logo--figure {
        opacity: 0;
    }
}
#page {
    display: flex;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    flex-direction: column;
    width: 100%;
}
#mainContent {
    margin-top: 60px;
    flex: 1;
    overflow: hidden;
}
@media (min-width: 576px) {
    #mainContent {
        margin-top: 65px;
    }
}
@media (min-width: 768px) {
    #mainContent {
        margin-top: 150px;
    }
}
@media (min-width: 768px) {
    #mainContent.affix {
        margin-top: 145px;
    }
}
#mainContent .alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
}
#mainContent
    .alignfull
    .content:not([data-content-type="map"]):not([data-content-type="gallery"]):not(
        [data-content-type="fullscreen-slider"]
    ):not([data-content-type="slider"]):not([data-content-type="video"]):not([data-content-type="parallax-image"]):not(
        [data-content-type="image"]
    ):not([data-content-type="image-text"]) {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
body,
html {
    max-width: 100%;
    overflow-x: hidden;
}
html.html {
    margin-top: 0 !important;
}
body.admin-bar #mainContent {
    margin-top: 106px;
}
@media (min-width: 576px) {
    body.admin-bar #mainContent {
        margin-top: 111px;
    }
}
@media (min-width: 768px) {
    body.admin-bar #mainContent {
        margin-top: 196px;
    }
}
@media (min-width: 783px) {
    body.admin-bar #mainContent {
        margin-top: 182px;
    }
}
@media (min-width: 768px) {
    body.admin-bar #mainContent.affix {
        margin-top: 177px;
    }
}
@media (min-width: 601px) {
    body.admin-bar .pswp {
        top: 46px;
    }
}
@media (min-width: 783px) {
    body.admin-bar .pswp {
        top: 32px;
    }
}
body.admin-bar .header {
    top: 46px;
}
@media (min-width: 783px) {
    body.admin-bar .header {
        top: 32px;
    }
}
.content {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.content--pad-lg {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.content--pad-xl {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.content--pad-xxl {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.content--ptnone {
    padding-top: 0;
}
.content--ptsm {
    padding-top: 0.75rem;
}
.content--ptxl {
    padding-top: 2.5rem;
}
.content--ptxxl {
    padding-top: 5rem;
}
.content--pbnone {
    padding-bottom: 0;
}
.content--pbsm {
    padding-bottom: 0.75rem;
}
.content--pbxl {
    padding-bottom: 2.5rem;
}
.content--pbxxl {
    padding-bottom: 5rem;
}
.content__wrapper {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
    .content__wrapper {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .content__wrapper {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .content__wrapper {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .content__wrapper {
        max-width: 1140px;
    }
}
.content-education-wrapper .content {
    position: relative;
}
.content-education-wrapper .content [class^="icon-"] {
    margin-bottom: 1rem;
}
.content-education-wrapper .content [class^="icon-"]:before {
    font-size: 3.5rem;
}
.content-education-wrapper .content:nth-child(odd).content--pad-xxl {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}
.content-education-wrapper .content:nth-child(2n + 2).content--pad-xxl {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
}
.content-education-wrapper .content:nth-child(2n + 2):after,
.content-education-wrapper .content:nth-child(2n + 2):before {
    content: "";
    background: #212121;
    transform: rotate(-1.5deg);
    display: block;
    position: absolute;
    height: 100px;
    z-index: 100;
}
.content-education-wrapper .content:nth-child(2n + 2):before {
    width: 100%;
    top: -50px;
}
.content-education-wrapper .content:nth-child(2n + 2):after {
    width: 110%;
    top: calc(100% - 75px);
    left: -5%;
}
.content-education-wrapper .content:first-child.content--pad-xxl {
    padding-top: 5rem;
}
.content-education-wrapper .content:last-child.content--pad-xxl {
    padding-bottom: 3.75rem;
}
.content-education-wrapper .content:nth-child(2n) .row {
    flex-flow: column;
}
@media (min-width: 992px) {
    .content-education-wrapper .content:nth-child(2n) .row {
        flex-flow: row-reverse;
    }
}
.content-education-wrapper + .first-level {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.d-initial {
    display: initial !important;
}
.animated {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.animated-fast {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.single-news + .first-level {
    padding-top: 0;
}
.wp-block-columns {
    margin-bottom: 0;
}
.wp-block-columns.wp-block-columns--2cols,
.wp-block-columns.wp-block-columns--3cols,
.wp-block-columns.wp-block-columns--4cols {
    flex-wrap: wrap;
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .wp-block-columns.wp-block-columns--2cols,
    .wp-block-columns.wp-block-columns--3cols,
    .wp-block-columns.wp-block-columns--4cols {
        flex-direction: column;
    }
}
.wp-block-columns.wp-block-columns--2cols .wp-block-column,
.wp-block-columns.wp-block-columns--3cols .wp-block-column,
.wp-block-columns.wp-block-columns--4cols .wp-block-column {
    margin-right: 0;
    margin-left: 0;
}
@media (min-width: 768px) {
    .wp-block-columns.wp-block-columns--2cols .wp-block-column {
        flex: calc(50% - 0.75rem) 0 0;
    }
    .wp-block-columns.wp-block-columns--2cols .wp-block-column:nth-child(odd) {
        margin-right: 0.75rem;
    }
    .wp-block-columns.wp-block-columns--2cols .wp-block-column:nth-child(2n + 2) {
        margin-left: 0.75rem;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .wp-block-columns.wp-block-columns--3cols .wp-block-column {
        flex: calc(50% - 0.75rem) 0 0;
    }
    .wp-block-columns.wp-block-columns--3cols .wp-block-column:nth-child(odd) {
        margin-right: 0.75rem;
    }
    .wp-block-columns.wp-block-columns--3cols .wp-block-column:nth-child(2n + 2) {
        margin-left: 0.75rem;
    }
}
@media (min-width: 992px) {
    .wp-block-columns.wp-block-columns--3cols .wp-block-column {
        flex: calc(33.33% - 0.75rem) 0 0;
    }
    .wp-block-columns.wp-block-columns--3cols .wp-block-column:nth-child(3n + 1) {
        margin-right: 0.75rem;
    }
    .wp-block-columns.wp-block-columns--3cols .wp-block-column:nth-child(3n + 2) {
        margin-left: 0.375rem;
        margin-right: 0.375rem;
    }
    .wp-block-columns.wp-block-columns--3cols .wp-block-column:nth-child(3n + 3) {
        margin-left: 0.75rem;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .wp-block-columns.wp-block-columns--4cols .wp-block-column {
        flex: calc(50% - 0.75rem) 0 0;
    }
    .wp-block-columns.wp-block-columns--4cols .wp-block-column:nth-child(odd) {
        margin-right: 0.75rem;
    }
    .wp-block-columns.wp-block-columns--4cols .wp-block-column:nth-child(2n + 2) {
        margin-left: 0.75rem;
    }
}
@media (min-width: 992px) {
    .wp-block-columns.wp-block-columns--4cols .wp-block-column {
        flex: calc(25% - 0.5rem) 0 0;
        margin-bottom: 0.5rem;
    }
    .wp-block-columns.wp-block-columns--4cols .wp-block-column:nth-child(4n + 1) {
        margin-right: 0.375rem;
    }
    .wp-block-columns.wp-block-columns--4cols .wp-block-column:nth-child(4n + 2) {
        margin-left: 0.125rem;
        margin-right: 0.25rem;
    }
    .wp-block-columns.wp-block-columns--4cols .wp-block-column:nth-child(4n + 3) {
        margin-left: 0.25rem;
        margin-right: 0.125rem;
    }
    .wp-block-columns.wp-block-columns--4cols .wp-block-column:nth-child(4n + 4) {
        margin-left: 0.375rem;
    }
}
#error404,
#error404 .wrapper,
#error404 body {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1d3461;
    background-image: linear-gradient(270deg, #072e61, #004880);
}
.composition {
    position: relative;
    width: 750px;
    height: 440px;
    margin-bottom: 20px;
    border: 2px solid #fff;
    border-radius: 6px;
    overflow: hidden;
}
.layer-0 {
    position: absolute;
    z-index: 10;
}
.layer-1 {
    position: absolute;
    z-index: 15;
}
.layer-2 {
    z-index: 20;
}
.layer-2,
.shelf {
    position: absolute;
}
.shelf {
    top: 150px;
    left: 250px;
}
.shelf__side_left {
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 60px;
    background-color: #cdfffa;
    transform: skewY(-25deg);
}
.shelf__side_front {
    position: absolute;
    top: 137px;
    left: 0;
    width: 70px;
    height: 60px;
    background-color: #9dfbf3;
    background-image: linear-gradient(160deg, #84fff2, #2f7fb2);
    border: 1px solid rgba(47, 127, 178, 0.5);
    transform: skewY(30deg);
}
.shelf__side_bottom {
    position: absolute;
    top: 43px;
    left: 36px;
    width: 500px;
    height: 73px;
    background-color: #7adbd5;
    transform: skewY(-25deg) skewX(44deg);
}
.shelf__side_right {
    position: absolute;
    top: 42px;
    left: 70px;
    width: 500px;
    height: 60px;
    background-color: #0b2f6c;
    background-image: linear-gradient(0deg, #0b2f6c, #16598b);
    transform: skewY(-25deg);
}
.shelf__handle_top {
    position: absolute;
    top: 144px;
    left: 17px;
    width: 30px;
    height: 7px;
    background-color: #5ac8d3;
    transform: skewY(30deg) skewX(-50deg);
}
.shelf__handle_front {
    position: absolute;
    top: 149px;
    left: 13px;
    width: 30px;
    height: 10px;
    background-color: #71e7e4;
    border: 1px solid rgba(47, 127, 178, 0.5);
    transform: skewY(30deg);
}
.shelf__handle_right {
    position: absolute;
    top: 155px;
    left: 43px;
    width: 6px;
    height: 10px;
    background-color: #287caa;
    transform: skewY(-30deg);
}
.shadow {
    top: 0;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(1, 20, 61, 0), rgba(1, 20, 61, 0.8) 100%, #01143d);
}
.case,
.shadow {
    position: absolute;
}
.case {
    transform: translateY(0);
    transition: transform 0.3s ease-in;
}
.case:hover {
    transform: translateY(-5px);
}
.case_1 {
    top: -85px;
    right: -470px;
}
.case_2 {
    top: -82px;
    right: -463px;
}
.case_3 {
    top: -79px;
    right: -456px;
}
.case_4 {
    top: -76px;
    right: -449px;
}
.case_5 {
    top: -73px;
    right: -442px;
}
.case_6 {
    top: -70px;
    right: -435px;
}
.case_7 {
    top: -67px;
    right: -428px;
}
.case_8 {
    top: -63px;
    right: -421px;
}
.case_9 {
    top: -59px;
    right: -414px;
}
.case_10 {
    top: -56px;
    right: -407px;
}
.case_11 {
    top: -53px;
    right: -400px;
}
.case_12 {
    top: -49px;
    right: -393px;
}
.case_13 {
    top: -46px;
    right: -386px;
}
.case_14 {
    top: -43px;
    right: -379px;
}
.case_15 {
    top: -39px;
    right: -372px;
}
.case_16 {
    top: -36px;
    right: -365px;
}
.case_17 {
    top: -33px;
    right: -358px;
}
.case_18 {
    top: -29px;
    right: -351px;
}
.case_19 {
    top: -26px;
    right: -344px;
}
.case_20 {
    top: -23px;
    right: -337px;
}
.case_21 {
    top: -19px;
    right: -330px;
}
.case_22 {
    top: -16px;
    right: -323px;
}
.case_23 {
    top: -13px;
    right: -316px;
}
.case_24 {
    top: -9px;
    right: -309px;
}
.case_25 {
    top: -6px;
    right: -302px;
}
.case_26 {
    top: -3px;
    right: -295px;
}
.case_27 {
    top: 1px;
    right: -288px;
}
.case_28 {
    top: 4px;
    right: -281px;
}
.case_29 {
    top: 7px;
    right: -274px;
}
.case_30 {
    top: 11px;
    right: -267px;
}
.case_31 {
    top: 14px;
    right: -260px;
}
.case_32 {
    top: 17px;
    right: -253px;
}
.case_33 {
    top: 20px;
    right: -246px;
}
.case_34 {
    top: 24px;
    right: -239px;
}
.case_35 {
    top: 27px;
    right: -232px;
}
.case_36 {
    top: 30px;
    right: -225px;
}
.case_37 {
    top: 33px;
    right: -218px;
}
.case_38 {
    top: 37px;
    right: -211px;
}
.case_39 {
    top: 40px;
    right: -204px;
}
.case_40 {
    top: 43px;
    right: -197px;
}
.case_41 {
    top: 46px;
    right: -190px;
}
.case_42 {
    top: 49px;
    right: -183px;
}
.case_43 {
    top: 53px;
    right: -176px;
}
.case_44 {
    top: 56px;
    right: -169px;
}
.case_45 {
    top: 59px;
    right: -162px;
}
.case_46 {
    top: 62px;
    right: -155px;
}
.case_47 {
    top: 65px;
    right: -148px;
}
.case__front {
    top: 3px;
    left: 0;
    width: 70px;
    height: 55px;
}
.case__front,
.case__label {
    position: absolute;
    background-color: #9d7f63;
    transform: skewY(25deg);
}
.case__label {
    width: 10px;
    height: 7px;
}
.case__label,
.case__label_left {
    top: -12px;
    left: 5px;
}
.case__label_right {
    top: 12px;
    left: 55px;
}
.case__top {
    position: absolute;
    top: 0;
    left: 2px;
    width: 70px;
    height: 4px;
    background-image: linear-gradient(0deg, #e9eceb, #a3bab4 50%, #e9eceb);
    transform: skewY(25deg) skewX(-45deg);
}
.case__right {
    position: absolute;
    top: 18px;
    left: 69px;
    width: 5px;
    height: 55px;
    background-image: linear-gradient(270deg, #e9eceb, #a3bab4 50%, #e9eceb);
    transform: skewY(-25deg);
}
.case__number {
    top: 41px;
    left: 10px;
    color: #7c664e;
    font-size: 8px;
    transform-origin: top left;
    transform: rotate(-66deg) skewY(-25deg);
}
.case__number,
.glow,
.glow__bottom {
    position: absolute;
}
.glow__bottom {
    top: 60px;
    left: 5px;
    width: 135px;
    height: 120px;
    background-image: linear-gradient(0deg, #84fff2, #84fff2 30%, rgba(132, 255, 242, 0));
    transform: perspective(120px) rotateX(-20deg);
}
.glow__top {
    position: absolute;
    top: -25px;
    left: 7px;
    width: 130px;
    height: 180px;
    background-image: linear-gradient(0deg, #84fff2, #84fff2 20%, rgba(132, 255, 242, 0));
    transform: perspective(150px) rotateX(-20deg);
}
.glow__ball {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #83fff2;
    transform: translateY(160px);
}
.glow__ball_1 {
    -webkit-animation: fadeUp 5s infinite;
    animation: fadeUp 5s infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.glow__ball_2 {
    left: 10px;
    width: 5px;
    height: 5px;
    -webkit-animation: fadeUp 4s infinite;
    animation: fadeUp 4s infinite;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
.glow__ball_3 {
    left: 24px;
    width: 15px;
    height: 15px;
    -webkit-animation: fadeUp 9s infinite;
    animation: fadeUp 9s infinite;
    -webkit-animation-delay: 0.65s;
    animation-delay: 0.65s;
}
.glow__ball_4 {
    left: 34px;
    width: 8px;
    height: 8px;
    -webkit-animation: fadeUp 7s infinite;
    animation: fadeUp 7s infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.glow__ball_5 {
    left: 57px;
    width: 14px;
    height: 14px;
    -webkit-animation: fadeUp 7s infinite;
    animation: fadeUp 7s infinite;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}
.glow__ball_6 {
    left: 78px;
    width: 11px;
    height: 11px;
    -webkit-animation: fadeUp 3s infinite;
    animation: fadeUp 3s infinite;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.glow__ball_7 {
    left: 91px;
    width: 13px;
    height: 13px;
    -webkit-animation: fadeUp 8s infinite;
    animation: fadeUp 8s infinite;
    -webkit-animation-delay: 0.77s;
    animation-delay: 0.77s;
}
.glow__ball_8 {
    left: 105px;
    width: 7px;
    height: 7px;
    -webkit-animation: fadeUp 6s infinite;
    animation: fadeUp 6s infinite;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
.glow__ball_9 {
    left: 113px;
    width: 8px;
    height: 8px;
    -webkit-animation: fadeUp 4s infinite;
    animation: fadeUp 4s infinite;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.glow__ball_10 {
    left: 120px;
    width: 4px;
    height: 4px;
    -webkit-animation: fadeUp 9s infinite;
    animation: fadeUp 9s infinite;
    -webkit-animation-delay: 0.92s;
    animation-delay: 0.92s;
}
.numbers {
    position: absolute;
    top: 0;
    left: 122px;
    color: #fff;
    font-family:
        Noto Sans,
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-size: 200px;
    display: flex;
}
.numbers__item {
    margin: 0 10px;
    -webkit-animation: bounceUpDown 5s infinite;
    animation: bounceUpDown 5s infinite;
}
.numbers__item_1 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.numbers__item_2 {
    -webkit-animation: bounceUpDown 5.4s infinite;
    animation: bounceUpDown 5.4s infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.numbers__item_3 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.sorry {
    color: #fff;
    width: 750px;
}
.sorry a {
    color: #fff;
    border-bottom: 1px solid #fff;
}
.sorry a:hover {
    text-decoration: none;
}
@-webkit-keyframes fadeUp {
    0% {
        transform: translateY(160px);
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    to {
        transform: translateY(-10px);
        opacity: 0;
    }
}
@keyframes fadeUp {
    0% {
        transform: translateY(160px);
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    to {
        transform: translateY(-10px);
        opacity: 0;
    }
}
@-webkit-keyframes bounceUpDown {
    0%,
    to {
        transform: translateY(0);
    }
    50% {
        transform: translateY(50px);
    }
}
@keyframes bounceUpDown {
    0%,
    to {
        transform: translateY(0);
    }
    50% {
        transform: translateY(50px);
    }
}
@media screen and (max-width: 800px) {
    .composition {
        transform: scale(0.8);
        margin-bottom: -30px;
    }
    .sorry {
        width: 600px;
    }
}
@media screen and (max-width: 700px) {
    .composition {
        transform: scale(0.7);
        margin-bottom: -50px;
    }
    .sorry {
        width: 525px;
    }
}
@media screen and (max-width: 600px) {
    .composition {
        transform: scale(0.6);
        margin-bottom: -75px;
    }
    .sorry {
        width: 450px;
    }
}
@media screen and (max-width: 500px) {
    .composition {
        transform: scale(0.5);
        margin-bottom: -100px;
    }
    .sorry {
        width: 375px;
    }
}
@media screen and (max-width: 400px) {
    .composition {
        transform: scale(0.4);
        margin-bottom: -120px;
    }
    .sorry {
        width: 300px;
    }
}
@media screen and (max-width: 300px) {
    .composition {
        transform: scale(0.3);
    }
}



/* Netzmaedchen CSS  */
.fluentform .section-info {
	padding-top: 2rem;
    border-block-start: 2px solid gray;
}