

/* contents of /scripts/fancybox/jquery.fancybox.css */

body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: rgb(30, 30, 30);
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
    background: linear-gradient(to top,
        rgba(0, 0, 0, .85) 0%,
        rgba(0, 0, 0, .3) 50%,
        rgba(0, 0, 0, .15) 65%,
        rgba(0, 0, 0, .075) 75.5%,
        rgba(0, 0, 0, .037) 82.85%,
        rgba(0, 0, 0, .019) 88%,
        rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Transition effects */

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}
/* Share */

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}
/* Thumbs */

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}

/* contents of /scripts/swiper/swiper-bundle.min.css */

/**
 * Swiper 6.3.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 30, 2020
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(-1 * var(--swiper-navigation-size)/ 2);z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}

/* contents of /scripts/sidr/stylesheets/jquery.sidr.dark.css */

.sidr {
  display: block;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  width: 260px;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
  font-size: 15px;
  background: #333;
  color: #fff;
  box-shadow: 0 0 5px 5px #222 inset;
}
.sidr .sidr-inner {
  padding: 0 0 15px;
}
.sidr .sidr-inner > p {
  margin-left: 15px;
  margin-right: 15px;
}
.sidr.right {
  left: auto;
  right: -260px;
}
.sidr.left {
  left: -260px;
  right: auto;
}
.sidr h1,
.sidr h2,
.sidr h3,
.sidr h4,
.sidr h5,
.sidr h6 {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRkNGQ0ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzFhMWExYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(100%, #1a1a1a));
  background-image: -moz-linear-gradient(#4d4d4d, #1a1a1a);
  background-image: -webkit-linear-gradient(#4d4d4d, #1a1a1a);
  background-image: linear-gradient(#4d4d4d, #1a1a1a);
  font-size: 11px;
  font-weight: normal;
  padding: 0 15px;
  margin: 0 0 5px;
  color: #fff;
  line-height: 24px;
  box-shadow: 0 5px 5px 3px rgba(0, 0, 0, 0.2);
}
.sidr p {
  font-size: 13px;
  margin: 0 0 12px;
}
.sidr p a {
  color: rgba(255, 255, 255, 0.9);
}
.sidr > p {
  margin-left: 15px;
  margin-right: 15px;
}
.sidr ul {
  display: block;
  margin: 0 0 15px;
  padding: 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #4d4d4d;
}
.sidr ul li {
  display: block;
  margin: 0;
  line-height: 48px;
  border-top: 1px solid #4d4d4d;
  border-bottom: 1px solid #1a1a1a;
}
.sidr ul li:hover, .sidr ul li.active, .sidr ul li.sidr-class-active {
  border-top: 0;
  line-height: 49px;
}
.sidr ul li:hover > a,
.sidr ul li:hover > span, .sidr ul li.active > a,
.sidr ul li.active > span, .sidr ul li.sidr-class-active > a,
.sidr ul li.sidr-class-active > span {
  box-shadow: 0 0 15px 3px #222 inset;
}
.sidr ul li a,
.sidr ul li span {
  padding: 0 15px;
  display: block;
  text-decoration: none;
  color: #fff;
}
.sidr ul li ul {
  border-bottom: 0;
  margin: 0;
}
.sidr ul li ul li {
  line-height: 40px;
  font-size: 13px;
}
.sidr ul li ul li:last-child {
  border-bottom: 0;
}
.sidr ul li ul li:hover, .sidr ul li ul li.active, .sidr ul li ul li.sidr-class-active {
  border-top: 0;
  line-height: 41px;
}
.sidr ul li ul li:hover > a,
.sidr ul li ul li:hover > span, .sidr ul li ul li.active > a,
.sidr ul li ul li.active > span, .sidr ul li ul li.sidr-class-active > a,
.sidr ul li ul li.sidr-class-active > span {
  box-shadow: 0 0 15px 3px #222 inset;
}
.sidr ul li ul li a,
.sidr ul li ul li span {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 30px;
}
.sidr form {
  margin: 0 15px;
}
.sidr label {
  font-size: 13px;
}
.sidr input[type="text"],
.sidr input[type="password"],
.sidr input[type="date"],
.sidr input[type="datetime"],
.sidr input[type="email"],
.sidr input[type="number"],
.sidr input[type="search"],
.sidr input[type="tel"],
.sidr input[type="time"],
.sidr input[type="url"],
.sidr textarea,
.sidr select {
  width: 100%;
  font-size: 13px;
  padding: 5px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 0 10px;
  border-radius: 2px;
  border: 0;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: block;
  clear: both;
}
.sidr input[type=checkbox] {
  width: auto;
  display: inline;
  clear: none;
}
.sidr input[type=button],
.sidr input[type=submit] {
  color: #333;
  background: #fff;
}
.sidr input[type=button]:hover,
.sidr input[type=submit]:hover {
  background: rgba(255, 255, 255, 0.9);
}


/* contents of /webjazz/lib9/assets/share/share.css */


ul.wj-share-buttons li a {
    float: left;
    width: 36px;
    height: 36px;
    font-size: 20px;
    margin-right: 10px;
    color: white;
    background-color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.wj-share-buttons li a svg {
    width: 20px;
    height: 20px;
}

ul.wj-share-buttons li a svg path {
    fill: white;
}

ul.wj-share-buttons li.wj-share-whatsapp a {
    background-color: rgb(77, 194, 71);
}

ul.wj-share-buttons li.wj-share-facebook a {
    background-color: rgb(59, 89, 152);
}

ul.wj-share-buttons li.wj-share-twitter a {
    background-color: rgb(29, 161, 242);
}

ul.wj-share-buttons li.wj-share-linkedin a {
    background-color: rgb(0, 119, 181);
}

ul.wj-share-buttons li.wj-share-mail a {
    background-color: rgb(111, 111, 111);
}

ul.wj-share-buttons li.wj-share-telegram a {
    background-color: rgb(43, 162, 213);
}

ul.wj-share-buttons li.wj-share-xing a {
    background-color: #1a7576;
}

ul.wj-share-buttons li.wj-share-pinterest a {
    background-color: #bd081c;
}

/* contents of /styles/0-font.css */


/* lato-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    src: url('/styles/fonts/lato-v24-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-300italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: italic;
    font-weight: 300;
    src: url('/styles/fonts/lato-v24-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('/styles/fonts/lato-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    src: url('/styles/fonts/lato-v24-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('/styles/fonts/lato-v24-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: italic;
    font-weight: 700;
    src: url('/styles/fonts/lato-v24-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noticia-text-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noticia Text';
    font-style: normal;
    font-weight: 400;
    src: url('/styles/fonts/noticia-text-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noticia-text-italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noticia Text';
    font-style: italic;
    font-weight: 400;
    src: url('/styles/fonts/noticia-text-v15-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noticia-text-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noticia Text';
    font-style: normal;
    font-weight: 700;
    src: url('/styles/fonts/noticia-text-v15-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noticia-text-700italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Noticia Text';
    font-style: italic;
    font-weight: 700;
    src: url('/styles/fonts/noticia-text-v15-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



/* contents of /styles/1-normalize.css */

*{box-sizing: border-box;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,textarea,p,
blockquote,th,td,figure {margin:0; padding:0;}
table { border-collapse:collapse; border-spacing:0; }
fieldset,img { border:0; }
address,caption,cite,code,dfn,strong,th,var { font-style:normal; font-weight:normal; }
ol,ul { list-style:none; }
caption,th { text-align:left; }
h1,h2,h3,h4,h5,h6 { font-size:100%; font-weight:normal; }
abbr,acronym { border:0; }
html {font-size: 62.5%;}
strong {font-weight: bold;}
a {text-decoration: none; color: #004D86;}
a:active, a:focus {outline: 0;}
img.fr-fil {float: left;}
img.fr-fir {float: right;}


/* contents of /styles/2-basic.css */

:root {
    --global-color-orange-light: rgba(247,187,76,1);
    --global-color-orange: rgb(214, 114, 0);
    --global-color-orange: #B35F00;
    --global-color-red: rgb(153, 42, 40);
    --global-color-berry: rgba(129,26,55,1);
    --global-color-berry-a: rgba(152,85,105,1);
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 320px;
    font-size: 18px;
    line-height: 130%;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    color: rgba(0,0,0,0.85);
    word-wrap: break-word;
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5 {
    color: rgba(153,42,40,1);
    display: block;
    line-height: 120%;
    margin: 15px 0;
    font-size: 24px;
    font-weight: 700;
}

h1 {
    font-size: 33px;
}

a {
    color: rgba(225,121,0,1);
    color: var(--global-color-orange);
    font-weight: 700;
}

.aside .box a {
    color: #7C2221;
    /*
    font-weight: 600;
    */
}

.aside .box a.button {
    font-weight: 400;
}

strong, b {
    font-weight: 600;
}

p {
    margin-bottom: 0.8em;
}
.box-body ul,
.body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8em 0;
}

.box-body ul li,
.body ul li {
    padding-left: 1.5em;
    text-indent: -.7em;
    margin-bottom: 5px;
}

.box-body ul li::before,
.body ul li::before {
    content: "> ";
    color: var(--global-color-orange);
}

.box-body ol,
.body ol {
    list-style-type: none;
    margin-bottom: 0.8em;
    margin-left: 1.5em;
}

.box-body ol li,
.body ol li {
    counter-increment: count-me;
}

.box-body ol li::before,
.body ol li::before {
    content: counter(count-me) ". ";
    display: block;
    position: relative;
    max-width: 0;
    max-height: 0;
    left: -1.3em;
    top: .05em;
    color: var(--global-color-orange);
    font-weight: bold;
}

.body table td {
    width: 100% !important;
    display: block;
}

main {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    width: 100%;
}

.content {
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    position: relative;
}

.content.error {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 60px;
}

.content.error i {
    margin-top: 20px;
    font-size: 80px;
    width: 120px;
    display: inline-block;
    color: rgba(153,42,40,1);
}

/*******************************************/
/* Header-Bereich
/*******************************************/

header {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 125px;
    /* border-bottom: 6px solid white;*/
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    flex-basis: auto;
}

header nav {
    position: relative;
    height: 100%;
}

div.top {
    display: none;
}

.logo {
    position: absolute;
    background: transparent url("/styles/images/logo.jpg") no-repeat 100% / contain;
    width: 250px;
    height: 125px;
    left: 0;
    top: 0;
    z-index: 99;
}

header nav ul {
   display: none;
}
header.sticky {
    position: fixed;
    top:0;
    width: 100%;
    display: none;
    height: 80px;
    min-height: 80px;
    background-color: rgba(255,255,255,1);
}
header.sticky .logo {
    width: 160px;
    height: 80px;
}

header div.spenden {
    background: var(--global-color-orange) none repeat scroll 0 0;
    border-radius: 6px;
    color: #ffffff;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    padding: 6px 8px 7px 39px;
    position: absolute;
    left: -150px;
    top: 10px;
    cursor: pointer;

    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);

}

header div.spenden:hover {
    background: rgba(129,26,55,1) none repeat scroll 0 0;
}
header div.spenden span {
    color: rgba(255,255,255,1);
}

div.herz {
    position: relative;
    margin-left: -30px;
    -webkit-animation: beat .35s infinite alternate;
    -moz-animation: beat .35s infinite alternate;
    -o-animation: beat .35s infinite alternate;
    animation: beat .35s infinite alternate;

    -webkit-transform-origin: 25% 50% 0;
    -moz-transform-origin: 25% 50% 0;
    -o-transform-origin: 25% 50% 0;
    transform-origin: 25% 50% 0;
}


div.herz:before, div.herz:after {
    position: absolute;
    content: "";
    left: 12px;
    top: 0;
    width: 12px;
    height: 20px;
    background: rgba(255,255,255,1);
    border-radius: 12px 12px 0 0;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

div.herz:after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

@keyframes beat{
    to {  -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
}

a.mobile-menu {
    display: block;
    width: 30px;
    margin: auto 0 auto auto;
    height: 30px;
}


a.mobile-menu span.bar {
    background-color: rgba(153,42,40,1);
    display: block;
    float: left;
    height: 2px;
    margin-left: 0;
    margin-top: 6px;
    width: 100%;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

a.mobile-menu.toggled span:first-child {
    transform: translateY(8px) rotate(45deg);
}

a.mobile-menu.toggled span {
    transform-origin: center center 0;
}

a.mobile-menu.toggled span:nth-child(2) {
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

a.mobile-menu.toggled span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}
/*******************************************/
/* Sidr
/*******************************************/

.sidr-open #sidr-body-overlay {
    display: block;
}

#sidr-body-overlay {
    background-color: rgba(0, 0, 0, 0.2);
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999998;
}

.sidr {
    background: rgba(153,42,40,1) none repeat scroll 0 0;
    box-shadow: none;
    color: #FFF;
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 230px;
    z-index: 999999;
    padding-top: 15px;
}

.sidr ul {
    border: 0 none;
}

.sidr ul li {
    border: 0 none;
    line-height: 40px;
}

.sidr ul li a, .sidr ul li span {
    color: #FFFFFF;
    display: inline-block;
}
.sidr ul li.indent {
    padding-left: 30px;
}

.sidr ul li a span {
    padding: 0;
}

.sidr ul li:hover > a, .sidr ul li:hover > span, .sidr ul li.active > a, .sidr ul li.active > span, .sidr ul li.sidr-class-active > a, .sidr ul li.sidr-class-active > span {
    box-shadow: none;
}


.sidr ul li.active, .sidr ul li.sidr-class-active, .sidr ul li.selected {
    border-top: 0 none;
    line-height: 40px;
    background-color: var(--global-color-orange);
}

/*******************************************/
/* Grid
/*******************************************/

.grid {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin-left: -20px;
}

.grid .item {
    width: calc(100% - 20px);
    margin-left: 20px;
    margin-bottom: 20px;
}

.left {
    margin: 0 auto 0 0;
}

.right {
    margin: 0 0 0 auto;
}

.grid .item span {
    display: block;
}

/*******************************************/
/* List                                    */
/*******************************************/

.list-item {
    color: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: wrap;
}

.list-item .more{
    display: inline-block;
    margin-left: auto;
}

.list-item img {
    display: block;
    width: 100%;
}
.news-list-wrap h2 {
    font-size: 28px;
}
.event-list-wrap,
.news-list-wrap.all {
    margin-top: -175px;
}

.event-group-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.event-group-nav a.button {
    margin-bottom: 5px;
    font-size: 18px;
    margin-left: 0;
    margin-right: auto;
}
.event-group-nav a.selected {
    color: rgb(153, 42, 40) !important;
    background-color: rgba(255,255,255,1);
}
.grid.event-list  {
    margin-top: 20px;
}
.grid.event-list .item {
    color: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: nowrap;
    position: relative;
}
.grid.event-list .item .event-more {
    position: absolute;
    top:10px;
    right:0;
    width: 22px;
}
.grid.event-list .item .date-wrap {
    width: 120px;
    align-self: stretch;
}
.grid.event-list .item .date-wrap .date-box {
    padding: 10px 10px;
    width: 100px;
    height:100%;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
}
.grid.event-list .item .date-wrap span {
    color: #FFFFFF;
}
.grid.event-list .item .date-box i {
    color: #FFFFFF;
    font-size: 40px;
    margin: auto;
}
.grid.event-list .item .date-wrap .year {
    text-align: center;
    font-size: 14px;
}
.grid.event-list .item .date-wrap .day-word {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}
.grid.event-list .item .date-wrap .day {
    font-weight: 700;
    font-size: 35px;
    margin: 10px 0;
    text-align: center;
}
.grid.event-list .item .date-wrap .month{
    text-align: center;
    font-size: 17px;
}

.grid.event-list .item .body {
    width: calc(100% - 110px);
    padding: 10px 0;
}
.grid.event-list .item h3{
    margin: 0 0 5px 0;
}

.event-info span {
    display: block;
    font-size: 20px;
    color: rgba(153,42,40,1);
    font-weight: 600;
    margin-right: 15px;
    margin-bottom: 10px;
}
.event-info span.location {
    margin-bottom: 20px;
}
.grid.donor-list .item {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    align-items: flex-start;
}

.grid.donor-list .item .donor-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.grid.donor-list .item .body {
    width: 100%;
}

.grid.donor-list .item .body h3 {
    margin-top: 5px;
}

.grid.donor-list .item .body strong {
    display: block;
    margin-bottom: .9em;
    font-size: 18px;
}

.grid.news-list {
    color: rgba(0,0,0,0.85);
    font-size: 18px;
    line-height: 125%;
    margin-top: 20px;
}

.grid.news-list .item {
    color: rgba(0,0,0,0.85);
    font-size: 18px;
    line-height: 125%;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    margin-bottom: 30px;
    align-items: flex-start;
}

.grid.news-list .item img {
    margin-bottom: 20px;
    width: 100%;
    display: block;
    align-items: flex-start;
}

.grid.news-list .item h3 {
   margin-top: 0;
}

.grid.news-list .item .body {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
    height: auto;
}

.grid.news-list .item .more {
    display: inline-flex;
    margin-left: auto;
    margin-top: auto;
}



/*******************************************/
/* Slides
/*******************************************/
.home.slider .content.first {
    margin-top: 90px;
}

#slider .intro-fadeout {
    display: none;
}

.swiper-wrapper {
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
    flex-basis: auto;
    height: auto;
}
.swiper-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.swiper-slide {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    flex-basis: auto;
    align-items: stretch;
    overflow: hidden;
    background-color: rgba(153,42,40,1);
    align-self: stretch;
}

#slider .swiper-slide {
    background-color: #000000;
}

.swiper-slide img {
    margin: auto !important;
    display: block;
    width: 100%;
}
/*.swiper-slide .slide-text{
    display: none;
}*/
.swiper-slide .slide-text {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: auto;
    right: 0;
    bottom: 0;
    padding: 20px 50px 20px 20px;
    background-color: rgba(153,42,40,1);
    color: white;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 135%;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
    margin-left: auto;
    /*border-right: 6px solid #ffffff;*/
}

.swiper-slide .slide-text strong {
    color: white;
    margin-top: 0;
}
.swiper-slide .slide-text p {
    color: white;
}
.swiper-slide .slide-text span.more {
    background-color: var(--global-color-orange);
    color: rgba(255,255,255,1);
    padding: 10px 15px;
    display: block;
    margin-right: auto;
    border-radius: 6px;

}
.swiper-slide .slide-text .read-more:hover {
    color: rgba(153,42,40,1);
    background-color: #ffffff;
    border: 1px solid rgba(153,42,40,1);
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.swiper-button-prev {
}
.swiper-button-next {
}
.swiper-nav {
    position: absolute;
    left: 5px;
    top: 40px;
}
.swiper-pagination {
    padding: 10px 0;
    width: 100%;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    text-align: center;
    line-height: 14px;
    font-size: 12px;
    opacity: 1;
    background: var(--global-color-orange);
    display: inline-block;
    margin: 4px 3px;
}

.swiper-pagination-bullet-active {
    background: rgba(153,42,40,1);
}

/*******************************************/
/* Fridolin
/*******************************************/
section .content.sidebar .aside a.fridolin  {
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
}
section .content.sidebar .aside a.fridolin img {
    width: 80%;
    margin: 0 auto;
}
section .content.sidebar .aside a.fridolin h2 {
   text-align: center;
    font-size: 18px;
}
/*******************************************/
/* Map
/*******************************************/
.maps {

}
.maps #map{
    width: 100%;
    height: 430px;
    display: block;
}

/*******************************************/
/* Paralax Intro
/*******************************************/
.intro-fadeout {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,0.6+49,1+100 */
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}
.intro-image {
    width: 100%;
    min-height: 250px;
    position: relative;
    text-align: center;
    background: transparent;
}

.intro-image-caption {
    max-width: 262px;
    padding-top: 30px;
    margin-left: auto;
    font-size: 16px;
    line-height: 130%;
    color: white;
    text-align: right;
    font-family: "Noticia Text", serif;
    font-weight: 300;
    font-style: italic;
}
.intro-image-caption .intro-image-bg {
    padding: 10px;
    background-color: rgba(129,26,55,0.7);
}
.intro-image-caption span {
    display: block;
    font-size: 16px;
    margin-top: 5px;
    font-weight: 700;
}
/*******************************************/
/* Inhalts-Bilder
/*******************************************/

.fr-dib {
    width: auto;
    max-width: 100%;
    display: block;
    float: none;
    margin: 20px 0 20px 0;
}

.fr-dii {
    display: inline-block;
    width: auto;
    max-width: 100%;
}

/*******************************************/
/* Customer Voice                          */
/*******************************************/

.customer-voice {
    background-color: rgba(129,26,55,0.7);
    padding: 20px 0;
    margin: 20px 0;
    color: #ffffff;
    text-align: center;
    font-family: "Noticia Text", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 130%;
}
.customer-voice span {
    text-align: right;
    margin-top: 10px;
    margin-right: 30px;
    font-weight: 700;
    font-size: 16px;
}
.customer-voice h3 {
    color: #ffffff;
    font-style: normal;
}
/*******************************************/
/* Page                                    */
/*******************************************/

section {
    margin: 0;
}
section .content.sidebar {
    flex-direction: column-reverse;
    width: 90%;
    flex-wrap: wrap;
}

section .content h2 {
    font-size: 30px;
    width: 100%;
    margin-bottom: 0;
}

.event-list-wrap .event-content-wrap {
    display: flex;
    flex-direction: column-reverse;
    flex-basis: auto;
}

.offer-list .item img {
    display: block;
    width: 100%;
}

.offer-list .item span {
    display: block;
    width: 100%;
    margin-top: 8px;
}

section .content.sidebar .body{
    width: 100%;
    margin-left: 0;
}
section .content.sidebar .aside{
    width: 100%;
    margin-left: auto;
    position: relative;
    margin-top: 20px;
}
section .content.sidebar .aside img{
    width: 100%;
   display: block;
    margin-bottom: 10px;
}
.event-group-nav  .box,
section .content.sidebar .aside .box{
    position: relative;
    width: 100%;
    background-color: var(--global-color-orange-light);
    padding: 70px 10px 10px 10px;
}
section .content.sidebar .aside .box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9em 0;
}
section .content.sidebar .aside .box p a {
    color: rgba(129,26,55,0.7);
}

section .content.sidebar .aside .box ul li {
    padding-left: 1em;
    text-indent: -.9em;
    margin-bottom: 5px;
}

section .content.sidebar .aside .box ul li::before {
    content: "> ";
    color: rgba(0,0,0,1);
}

.event-group-nav .box-title,
section .content.sidebar .box-title{
    color: #ffffff;
    background-color: rgba(129,26,55,0.7);
    width: 100%;
    position: absolute;
    top: -10px;
    left: 10px;
    text-align: right;
    padding: 15px 25px 15px 15px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 25px;
}
.event-group-nav  .box-title i,
section .content.sidebar .box-title i{
    font-size: 30px;
    margin-left: 6px;
}

section .content.sidebar .box a.event-item{
    font-size: 14px;
    color: rgba(0,0,0,0.85);
    position: relative;
    display: block;
}

section .content.sidebar .box a.event-item .event-more{
    position: absolute;
    right: -5px;
    top:0;
}
section .content.sidebar .box .button{
   margin-bottom: 0;
}
section .content.sidebar .box .events span {
    display: block;
}
section .content.sidebar .box .events .title {
    font-weight: bold;
    font-size: 16px;
}
section .content.sidebar .box .events .date {
    font-weight: bold;
    color: rgba(129,26,55,1);
}
 .content.first *,
 .content.sidebar * {
    z-index: 99;
}
 .event-image {
     width: 100%;
     border: 1px solid #ffffff;
     box-shadow: 2px 3px 13px #FFFFFF;
     display: block;
 }

/*******************************************/
/* Documents
/*******************************************/
.documents {
    margin-bottom: 20px;
}

a.document {
    line-height: 29px;
    padding: 10px;
}
a.document span {
    vertical-align: top;
    text-align: center;
    width: 100%;
    hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
}

a.document img.icon_attachment {
    width: 30px;
    margin: 0 8px 0 0;
    display: inline-block;
}


/*******************************************/
/* Gallery
/*******************************************/

#gallery {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-bottom: 55px;
    width: 100%;
}

#gallery .item {
    width: calc(100% - 15px);
    margin-left: 15px;
    margin-top: 15px;
}

#gallery .item  img{
    width: 100%;
}

.content-image {
    width: 100%;
}

.content-image img {
    width: 100%;
}

/*******************************************/
/* Form                                    */
/*******************************************/

form h3 {
    margin-bottom: 0.5em;
}

form.grid  {
    margin-top: 15px;
}

form.grid .item {
    flex-direction: column;
}

label {
    width: 100%;
    float:left;
    margin-left: 0;
    font-size: 16px;
    margin-bottom: 3px;
}

label.required {
    font-weight: 600;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:none;
    border-radius: 0;
    font-size: 14px;
    width: 100%;
}


/*!* remove standard-styles *!
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    !* appearance: none; *!
    border-radius: 0;
}

!* hide browser-styling (arrow) in IE10 *!
select::-ms-expand {
    display:none;
}

.lt-ie10 select {
    background-image: none;
}

select {
    background: rgba(109,110,94,0.1) url("/styles/images/select-arrow.png") no-repeat scroll right center / 23px auto;
    margin-bottom: 10px;
}

select:focus {
    background: rgba(109, 110, 94, 0.1) url("/styles/images/select-arrow-active.png") no-repeat scroll right center / 23px auto;
    margin-bottom: 10px;
}*/

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='password'],
textarea,
select {
    font-size: 16px;
    font-weight: 200;
    background-color: rgba(255,255,255,0.4);
    width: 100%;
    height: 35px;
    margin-left: 0;
    padding: 5px 6px;
    margin-bottom: 10px;
    border-radius: 0;
    color: rgba(0,0,0,0.85);
    border: 1px solid rgba(0,0,0,0.1);
}

select:focus,
input:focus,
textarea:focus {
    outline: 0;
    border: 1px solid rgba(153,42,40,1) !important;
}

form div.checkbox {
    float: left;
    margin-bottom: 15px;
    width: 100%;
}

form div.small {
    width: 100%;
    padding-top: 5px;
}

form input.error, form textarea.error {
    border: 1px solid rgba(219,8,18,1);
}

form input.checkbox-type {
    width: 60%;
}

form input[type="checkbox"] {
    margin-left: 0;
}

label.checkbox input {
    display: none;
}

label.checkbox span {
    border: 1px solid ;
    display: inline-block;
    float: left;
    font-size: 22px;
    height: 18px;
    margin-right: 10px;
    margin-top: 2px;
    position: relative;
    width: 18px;
}
select.error,
label.checkbox.error span {
    border: 1px solid rgba(219,8,18,1);
}

label.checkbox i {
    padding-left: 7px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    font-style: normal;
    display: inline-block;
    width: calc(100% - 28px);
}

[type=checkbox]:checked + span:before {
    content: '\2714';
    position: absolute;
    color: #6d6e62;
    top: -5px;
    left: 1px;
}

[type=checkbox]:checked + label.checkbox span {
    border: 0.5px solid #6d6e62;
}

textarea {
    height: 175px !important;
}
h2.button,
span.button,
a.button,
button {
    font-weight: 500;
    display: inline-block;
    cursor: pointer;
    color: rgba(255,255,255,1) !important;
    background-color: rgba(153,42,40,1);
    font-size: 100%;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: 30px;
    border: 2px solid rgba(153,42,40,1);
    border-radius: 6px;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    padding: 5px 10px;
    line-height: 100%;
}
h2.button {
    margin: 15px auto;
    display: inline-block;
    width: auto !important;
}

a.button.center {
    margin: 20px auto 10px auto;
}
a.button.left {
    margin: 20px auto 10px 0;
}
/*
a.button.active,
a.button:hover,
button.active,
button:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
 */

button:disabled{
    cursor: not-allowed;
}
button:disabled:hover {
    -webkit-transform: none;
    transform: none;
}

button.prev-next{
    margin-top: auto;
}

span.validatormessage {
    color: rgba(219,8,18,1);
    display: block;
    margin-top: -10px;
}

.checkbox span.missing {
    color: rgba(219,8,18,1);
    display: block;
    margin-left: 29px;
}
/*******************************************/
/* Footer
/*******************************************/

footer {
    color: rgba(0,0,0,.85);
    line-height: 120%;
    padding-top: 14px;
    border-top: 5px solid rgba(153,42,40,1);
}
footer .grid {
    flex-direction: row;
    display: block;
}

footer .grid .item {
    margin-bottom: 20px;
    justify-content: flex-start;
}
footer ul {
    display: block;
    margin-bottom: 35px;
}
footer ul li {
    display: block;
}
footer a {
    display: inline-block;
    color: var(--global-color-orange);
    margin: 10px 0 0 0;
}
footer .footer-logo {
    display: inline-block;
}
footer .footer-logo img {
    width: 200px;
    display: block;
    margin-bottom: 20px;
}
footer .fridolin {
    display: inline-block;
    width: 100px;
    margin-left: 10px;
}
footer .fridolin img {
    width: 120px;
    display: block;
}

.icon:before {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.icon.exclamation-triangle:before {
    width: 80px;
    height: 80px;
    content: url("/styles/images/icons/triangle-exclamation.svg");
    filter: invert(47%) sepia(91%) saturate(2098%) hue-rotate(10deg) brightness(98%) contrast(101%);
}
.icon.calendar-alt:before {
    content: url("/styles/images/icons/calendar.svg");
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(152deg) brightness(103%) contrast(103%);
}
.icon.filter:before {
    content: url("/styles/images/icons/filter.svg");
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(152deg) brightness(103%) contrast(103%);
}
.icon.info:before {
    width: 9px;
    content: url("/styles/images/icons/info.svg");
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(152deg) brightness(103%) contrast(103%);
}
.icon.home:before {
    content: url("/styles/images/icons/house.svg");
    filter: invert(47%) sepia(91%) saturate(2098%) hue-rotate(10deg) brightness(98%) contrast(101%);
}

/* contents of /styles/3-tablet-portrait.css */

@media (min-width: 768px) {

    /*******************************************/
    /* Inhalts-Bilder
    /*******************************************/

    .fr-dii.fr-fil {
        float: left;
        margin: 0 20px 0 0;
    }

    .fr-dii.fr-fir {
        float: right;
        margin: 0 0 0 20px;
    }

    /*******************************************/

    div.top {
        display: block;
    }

    .body table td {
        width: 50% !important;
        display: table-cell;
    }


    section .content h2 {
        font-size: 36px;
        width: 100%;
        margin-bottom: 40px;
    }

}

/* contents of /styles/4-tablet.css */

@media (min-width: 960px) {

    main {
        padding-bottom: 110px;
    }

    a#offcanvas-menu {
        display: none;
    }

    .intro-image {
        height: 675px;
    }

    .intro-image.divider {
        height: 450px;
        margin: 30px 0;
    }

    .event-list-wrap .intro-image,
    .page.event .intro-image,
    .news-list-wrap .intro-image,
    .page.news .intro-image {
        height: 500px;
    }


    h1 {
        font-size: 42px;
    }
    /*******************************************/
    /* Header-Bereich
    /*******************************************/

    #logo {
        position: absolute;
        background: transparent url("/styles/images/logo.jpg") no-repeat 100% / contain;
        width: 350px;
        height: 175px;
        left: -50px;
        top: 0;
        z-index: 99;
    }
    header {
        min-height: 175px;
    }
    header nav ul {
        display: block;
        margin-left: auto;
        margin-top: 10px;
    }

    header div.top {
        position: relative;
        width: auto;
        margin-left: auto;
    }

    header nav ul.top-menu {
        font-size: 18px;
    }

    header nav ul.main-menu {
        margin: auto calc(((100vw - 1024px) / 2 ) * -1) 0 auto;
        padding-right: calc((100vw - 1024px) / 2 );
        font-size: 20px;
        font-weight: 700;
        border-bottom: 6px solid var(--global-color-orange);
        padding-bottom: 10px;
    }

    header nav ul li {
        display: inline-block;
    }

    header nav ul.top-menu li {
        margin-left: 10px;
    }

    header nav ul.main-menu li {
        margin-left: 2px;
        margin-right: 18px;
    }

    header nav ul li a{
        color: var(--global-color-orange);
    }

    header nav ul li.selected a,
    header nav ul li:hover a{
        color: rgba(129,26,55,1);
    }

    .intro-image-caption {
        max-width: 650px;
        padding-top: 280px;
        font-size: 20px;
    }
    .intro-image-caption .intro-image-bg {
        padding: 20px 20px 20px 20px;
    }
    .intro-image-caption span {
        display: block;
        font-size: 16px;
        margin-top: 5px;
        font-weight: 700;
    }
    .intro-fadeout {
        height: 90px;
    }


    /*******************************************/
    /* Responsive-Navigation
    /*******************************************/

    a#offcanvas-menu {
        display: none;
    }


    /*******************************************/
    /* Grid
    /*******************************************/

    .grid .item.half {
        width: calc(50% - 20px);
    }
    .grid .item.fourth {
        width: calc(25% - 20px);
    }

    .grid .item.half input {
        width: 95%;
    }

    .grid.news-list .item {
        width: calc(100% - 20px);
    }

    .grid .list-item {
        width: calc(33% - 20px);
    }

    .grid.news-list .item {
        flex-direction: row;
    }

    .grid.news-list .item img {
        margin-bottom: 0;
        margin-right: 20px;
        width: 280px;
    }
    .grid.news-list .item .body {
        height: 100%;
        width: calc(100% - 300px);
    }

    .event-list-wrap .event-content-wrap {
        display: flex;
        flex-direction: row;
        flex-basis: auto;
    }

    /*******************************************/
    /* Home
    /*******************************************/

    .event-list-wrap:first-of-type h1,
    .news-list-wrap:first-of-type h1,
    section:first-of-type h1 {
        text-shadow: 3px 3px 15px rgba(255,255,255,0.6), 3px 3px 15px rgba(255,255,255,0.6), 3px 3px 15px rgba(255,255,255,0.6), 3px 3px 15px rgba(255,255,255,0.6);
    }
    section .content.sidebar {
        width: 90%;
        flex-direction: row;
    }

    section .content.sidebar .body{
        width: calc(50% - 50px);
        margin-left: 0;
    }
    section .content.sidebar .aside{
        width: calc(50% - 50px);
        margin-left: auto;
        position: relative;
    }
    section:first-of-type {
        margin-top: -175px;
    }
    .event-list-wrap .content.first,
    .news-list-wrap .content.first,
    section .content.first {
        margin-top: -80px;
    }

    /*******************************************/
    /* Slides
    /*******************************************/

    .swiper-button-next,
    .swiper-button-prev {
        display: block;
        color: #FFFFFF;
    }


    .swiper-slide .slide-text {
        position: absolute;
        width: 40%;
        bottom: 150px;
        height: auto;
    }

    #slider .intro-fadeout {
        z-index: 100;
        display: block;
    }
    /*******************************************/
    /* Event
    /*******************************************/

    .event-content-wrap {
        display: flex;
        flex-direction: row;
        flex-basis: auto;
        flex-wrap: nowrap;
    }
    .event-group-nav {
        width: 345px;
        margin-left: auto;
    }
    .event-content-wrap .grid.event-list {
        width: calc((100% + 20px) - 380px);
    }
    .event-image {
        width: 290px;
        position: absolute;
        right: 0;
        top: 30px;
    }
    .event .content.body {
        padding-right: 300px;
    }
    .event-group-nav  .box,
    section .content.sidebar .aside .box{
        padding: 70px 20px 20px 20px;
    }
    section .content.sidebar .box a.event-item .event-more{
        right: 0;
    }
    /*******************************************/
    /* Gallery
    /*******************************************/

    #gallery .item {
        width: calc(33.33% - 15px);
    }

    /* donor */


    .grid.donor-list .item .donor-image {
        width: 275px;
        height: auto;
        margin-bottom: 0;
        margin-right: 20px;
    }
    .grid.donor-list .item .body {
        margin-left: auto;
        width: calc(100% -  295px);
    }

    /*******************************************/
    /* Footer
    /*******************************************/

    footer {
        width: 100%;
    }

    footer .grid {
        display: flex;
        flex-direction: row;
    }

    footer .grid .item {
        width: calc(30% - 20px);
    }
    footer .grid .item:last-of-type {
        width: calc(10% - 20px);
    }
    footer .fridolin {
        margin-left: auto;
    }
    footer ul {
        text-align: right;
    }
}

/* contents of /styles/5-desktop.css */

@media (min-width: 1200px) {

}

/* contents of /styles/6-print.css */

@media print {

}