

/* 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/sidr/jquery.sidr.light.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: #f8f8f8;
    color: #333;
    box-shadow: 0 0 5px 5px #ebebeb 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+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RmZGZkZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #dfdfdf));
    background-image: -moz-linear-gradient(#ffffff, #dfdfdf);
    background-image: -webkit-linear-gradient(#ffffff, #dfdfdf);
    background-image: linear-gradient(#ffffff, #dfdfdf);
    font-size: 11px;
    font-weight: normal;
    padding: 0 15px;
    margin: 0 0 5px;
    color: #333;
    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(51, 51, 51, 0.9);
}

.sidr > p {
    margin-left: 15px;
    margin-right: 15px;
}

.sidr ul {
    display: block;
    margin: 0 0 15px;
    padding: 0;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid white;
}

.sidr ul li {
    display: block;
    margin: 0;
    line-height: 48px;
    border-top: 1px solid white;
    border-bottom: 1px solid #dfdfdf;
}

.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 #ebebeb inset;
}

.sidr ul li a,
.sidr ul li span {
    padding: 0 15px;
    display: block;
    text-decoration: none;
    color: #333;
}

.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 #ebebeb inset;
}

.sidr ul li ul li a,
.sidr ul li ul li span {
    color: rgba(51, 51, 51, 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(51, 51, 51, 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: #f8f8f8;
    background: #333;
}

.sidr input[type=button]:hover,
.sidr input[type=submit]:hover {
    background: rgba(51, 51, 51, 0.9);
}


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

/**
 * Swiper 6.5.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 16, 2021
 */

@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-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.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(0px - (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:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-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%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.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 /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-fonts.css */

/* source-sans-3-200 - 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: 'Source Sans 3';
    font-style: normal;
    font-weight: 200;
    src: url('/styles/fonts/source-sans-3-v9-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-200italic - 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: 'Source Sans 3';
    font-style: italic;
    font-weight: 200;
    src: url('/styles/fonts/source-sans-3-v9-latin-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-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: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    src: url('/styles/fonts/source-sans-3-v9-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-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: 'Source Sans 3';
    font-style: italic;
    font-weight: 400;
    src: url('/styles/fonts/source-sans-3-v9-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-600 - 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: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    src: url('/styles/fonts/source-sans-3-v9-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-600italic - 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: 'Source Sans 3';
    font-style: italic;
    font-weight: 600;
    src: url('/styles/fonts/source-sans-3-v9-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

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

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,textarea,p,
blockquote,th,td {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;}

* {
    box-sizing: border-box;
}

img.fr-fil {
    float: left;
}

img.fr-fir {
    float: right;
}

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


:root {
    --color-red-o: rgba(167, 36, 48,.7);
    --color-red: rgb(167, 36, 48);
    --color-grey-o: rgba(90, 90, 90,.8);
    --color-grey: rgb(90, 90, 90);
    --color-lightgrey: rgb(234, 234, 234);
    --font: 'Source Sans 3', sans-serif;
}

html {

}

strong, b {
    font-weight: 600;
}

body {
    font-size: 16px;
    font-family: var(--font);
    font-weight: 400;
    min-height: 100%;
    line-height: 145%;
    color: #666666;
}

button, input, textarea {
    font-family: var(--font);
    font-weight: 400;
    font-size: 16px;
}

input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #808080;
}
input::-moz-placeholder { /* Firefox 19+ */
    color: #808080;
}
input:-ms-input-placeholder { /* IE 10+ */
    color: #808080;
}
input:-moz-placeholder { /* Firefox 18- */
    color: #808080;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}

.w-100 {
    width: 100%;
}

/*h1[id]:before,
h2[id]:before,
h3[id]:before,
h4[id]:before,
h5[id]:before,
a[id]:before {
    display: block;
    content: " ";
    margin-top: -85px;
    height: 85px;
    visibility: hidden;
}*/

div.content a.fancybox {
    border: medium none;
}

a.document {
 line-height: 30px;
}
/*******************************************/
/* Fixed Buttons
/*******************************************/
.fixed_buttons {
    position: fixed;
    right: -110px;
    top: 30%;
    padding: 10px 0 5px 15px;
    background-color: var(--color-red);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    z-index: 999;
    color: #FFFFFF;
    text-transform: uppercase;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: flex;
    flex-basis: auto;
    flex-direction: column;
    flex-wrap: nowrap;
}
.fixed_buttons:hover {
    right: 0;
}

.fixed_buttons a {
    display: flex;
    flex-basis: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 8px;
}
.fixed_buttons a i {
    display: inline-block;
    padding-right: 10px;
}
.fixed_buttons a span {
    display: inline-block;
    line-height: 22px;
    width: 100%;
    padding-right: 15px;
}
.fixed_buttons .glyphicons:before {
    padding: 0 2px 0 2px;
    font-size: 22px;
}

/*
a.download.pdf {
    border: medium none;
    display: block;
    padding: 10px 0 10px 50px;
    background-image: url(/styles/images/icons/pdf.svg);
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
}

a.download.pdf span{
    border-bottom: 2px dotted var(--color-red);
}
*/

h1, h2 {
    color: var(--color-red);
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 130%;
    font-family: var(--font);
    font-weight: 600;
    position: relative;
}


h1 {
    margin-top: 50px;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}
.title {

}
.title:after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background-color: var(--color-red);
    position: absolute;
    bottom: -2px;
    left: calc(50% - 50px);
}
.cart .title:after {
    display: none;
}
h1.shop {
    margin-top: 30px;
}

h2.team_divider {
    font-family: var(--font);
    font-size: 24px;
    font-weight: 600;
}

h2.shop-divider {
    font-size: 28px;
    border-bottom: 1px solid var(--color-red);
    margin-top: 1em;
}

h2.shop-divider + p.description {
    margin-top: -20px;
}

h5.prehead {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    font-family: var(--font);
}

h3 {
    font-weight: 600;
    color: var(--color-red);
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

hr {
    border: none;
    border-top: 1px solid var(--color-red);
}

button,
a.button {
    background-color: var(--color-red);
    color: white !important;
    display: inline-block;
    padding: 8px 50px;
    font-size: 16px;
    font-family: var(--font);
    font-weight: 600;
    position: relative;
    margin-top: 0.6em;
    border: none;
    margin-right: 15px;
    line-height: 100%;
    border-radius: 5px;
}

.preh1 {
    margin-top: 50px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preh1 + h1 {
    margin-top: 0px;
}
/*
button:after,
a.button:after {
    position: absolute;
    display: inline-block;
    content:"";
    top: 0;
    right: -10px;
    width: 0;
    height: 0;
    border-top: 30px solid var(--color-red);
    border-right: 10px solid transparent;
}
 */

button span.glyphicons,
a.button span.glyphicons {

}

p {
    margin-bottom: 0.6em;
}

p.success-msg {
    font-size: 1.2em;
}


.body a,
a.underlined,
a.agb {
    color: var(--color-red);
    border-bottom: 2px dotted var(--color-red);
}

.story_body h3 a ,
.body h3 a {
    border-bottom: none;
}

.story_body ul ,
.body ul {
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.story_body ul li ,
.body ul li {
    position: relative;
    display: block;
}

.story_body ul li:before ,
.body ul li:before {
    display: inline-block;
    content: '>';
    font-family: var(--font);
    color: var(--color-red);
    position: relative;
    margin-left: -20px;
    margin-right: 10px;
    font-size: 20px;
    vertical-align: -1px;
}
.story_gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-basis: auto;
    width: calc(100% + 30px);
    margin-left: -30px;
}
.story_gallery a {
    width: calc(100% - 30px);
    margin-left: 30px;
    margin-bottom: 30px;
}
.maps iframe{
    width: 100%;
    pointer-events: none;
    height: 350px;
}
div.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/
    padding-top: 0px;
    height: 0;
    overflow: hidden;
    background-size: cover;

}

div.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

div.content {
    position: relative;
    clear: both;
    width: 100%;
    padding: 0 20px;
}

section.divider {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    height: 350px;
}

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

.half {
    margin-bottom: 2em;
    display: block;
    width: 100%;
}

.fourth {
    margin-bottom: 2em;
    display: block;
    width: 50%;
}

.body-context.body {
    padding-top: 35px;
}

div.product-price {
    border-top: 1px solid var(--color-red);
    float: right;
    width: 100%;
    position: relative;
}
div.product-price:last-child {
    border-bottom: 1px solid var(--color-red);
    margin-bottom: 30px;
}

div.product-price h3 {
    margin-top: 30px;
}
div.product-price span {
    display: block;
    float: left;
    margin: 13px 0;
    font-weight: 600;
    color: black;
    font-size: 18px;

}

div.product-price button {

}

img.product-image {
    float: left;
    margin: 0 30px 30px 0;
}

img.product-image.flavor {
    margin: 30px 30px 30px 0;
}
ul.product-categories {
    margin-left: 0;
    margin-bottom: 30px;
}
ul.product-categories li {
    display: inline-block;
}
ul.product-categories li:before {
    margin: 0 10px 0 0;
}
ul.product-categories li:first-of-type:before {
    content: "";
    margin: 0;
}
ul.product-categories li:before {
    content: ", ";
}
ul.wj-share-buttons  {
    margin-top: 10px;
}
ul.wj-share-buttons li {
    display: inline-block;
}
ul.wj-share-buttons li a {
    width: 32px;
    height: 32px;
}
ul.wj-share-buttons li:last-of-type a {
    margin-right: 0;
}

div.jobseeker .item {
    margin-bottom: 25px;
}

div.grid {
    display: flex;
    flex-flow: row wrap;
}

div.grid.shop {
    margin-left:-20px;
}
div.grid.shop figure {
    margin-bottom: 0;
}

div.grid.shop figure img {
    display: block;
    width: 100%;
}
article .story_component .story_body.individual {
    width: 100%;
    margin-left: 0;
}
.individual .body {
    text-align: left;
}
.individual figure {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    float: left;
    margin-bottom: 10px;
    border: 1px solid #dadada;
}
.individual figure img {
    display: block;
    width: 100%;
}
div.grid.shop .item {
    position: relative;
    display: block;
    font-size: 14px;
    margin-left: 20px;
    width: calc(50% - 20px);
    margin-bottom: 20px;
}

div.grid.shop.category .item  h3{
    padding: 10px 15px;
    background-color: var(--color-grey-o);
    color: #FFFFFF;
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
    width: 100%;
}

div.grid .item.menuletter-form {
    width: 100%;
}

div.grid .item {
    margin-bottom: 2em;
    border-bottom: medium none;
}
div.grid.news .item {
    margin-top: 10px;
    margin-bottom: 0;
}
div.grid.news .item .button {
    margin-bottom: 20px;
}

div.grid .item img {
    width: 100%;
    display: block;
}

div.grid.mini-shop {
    margin-top: 50px;
    margin-left: -10px;
}

div.grid.mini-shop-top {
    display: none;
}

div.grid.mini-shop .item {
    margin-bottom: 0;
    width: calc(33.33% - 10px);
    margin-left: 10px;
    border-bottom: 10px solid white;
}
div.grid.mini-shop-top .item img{
    border-bottom: 10px solid white;
}

div.grid.mini-shop .item.selected img {
    border-bottom: 10px solid var(--color-red);
}

div.grid.mini-shop .item h3 {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
}

div.grid figure {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    float: left;
    margin-bottom: 10px;
    border: 1px solid #dadada;
}

div.grid figure .triangle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    border-bottom: 350px solid rgba(196, 41, 50, 0.8);
    border-left: 30px solid transparent;
    opacity: 0;
    transition: 0.5s;
}

.pattern-item {
    display: inline-block;
}

.pattern-choose {
    border: 3px solid transparent;
    position: relative;
    margin-right: 10px;
    margin-top: 10px;
    cursor: pointer;
    display: inline-block;
}

.pattern-choose.selected {
    border: 3px solid var(--color-red);
    position: relative;
}
.pattern-choose.selected:after {
    background-color: var(--color-red);
    color: #FFFFFF;
    content: "✓";
    position: absolute;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    padding: 4px 5px 2px 5px;
    font-size: 22px;
}
.pattern-choose .product-image.pattern {
    margin: 0;
    display: block;
    width: 100%;
}

.pattern-name {
    font-size: 14px;
    line-height: 110%;
}

.pattern-no {
    font-size: 14px;
    line-height: 110%;
}

a.pattern-hires {
    position: absolute;
    right: 5px;
    top: 5px;
}

a.pattern-hires i {
    font-size: 16px;
    color: var(--color-red);
    background-color: #FFFFFF;
    border-radius: 50%;
    padding: 6px 0;
    width: 30px;
    height: 30px;
    text-align: center;
}

.product-price h3 span {
    display: inline;
    float: none;
}

.square {
    display: block;
    text-align: center;
    width: 90%;
    height: 90%;
    padding: 50px;
    margin: 5%;
    font-size: 16px;
    background-color: rgba(235, 235, 235, 1);
}

.square span.glyphicons {
    font-size: 30px;
    color: var(--color-red);
    margin-bottom: 5px;
}

.square strong {
    font-weight: 400;
}
.square a.button {
    margin-top: 10px;
}

.order_history .square {
    line-height: 32px;
    padding: 30px 0 10px 0;
}

.order_history .square a.button {
    margin: 10px 10px 10px 10px;
}

/*
div.grid div.item figure:hover .triangle {
    opacity: 1;
}

div.grid div.item.bistro figure:hover .triangle {
    opacity: 0;
}
*/

div.grid.team,
div.grid.team_new,
div.grid.glass_pattern {
    width: 100%;
    margin-left: -15px;
}

div.grid.team_anchors {
    width: 100%;
}


div.grid.team_anchors .item {
    width: calc(50% - 15px);
    margin-bottom: 0;
}

div.grid.glass_pattern .item {
    width: calc(33.33% - 15px);
    margin-left: 15px;
}

div.grid.team .item {
    width: calc(50% - 15px);
    margin-left: 15px;
}

div.grid.team_new .item {
    width: calc(50% - 15px);
    margin-left: 15px;
}

div.grid.team_new .item h3 {
    margin-bottom: 0;
    font-size: initial;
}

.team_anchors ul {
    margin-left: 1.5em;
}

.team_anchors ul li {
    position: relative;
}

.team_anchors ul li:before {
    display: block;
    content: '>';
    var(--font)var(--font);
    color: var(--color-red);
    position: absolute;
    left: -20px;
    font-size: 20px;
    padding-top: 2px;
}

.team_anchors ul li a {
    color: var(--color-red);
    font-weight: 600;
}

div.grid figure span.icon {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 150px;
    height: 75px;
    left: 0;
    bottom: 15px;
}

div.grid figure span.price {
    background-color: rgba(196, 41, 50, 0.9);
    border-top-left-radius: 100%;
    bottom: 0;
    color: #ffffff;
    display: block;
    font-size: 13px;
    font-weight: 400;
    height: 57px;
    line-height: 110%;
    padding-right: 6px;
    padding-top: 20px;
    position: absolute;
    right: 0;
    text-align: right;
    width: 68px;
}

div.grid figure span.price.product {
    padding-top: 10px;
}

div.grid figure span.price strong {
    padding-top: 2px;
    font-size: 15px;
    display: block;
}

/*
div.grid figure span.icon.consol {
    background-image: url(/styles/images/logo-consol-sm.png);
}

div.grid figure span.icon.bistro {
    background-image: url(/styles/images/logo-consol-bistro.png);
}

div.grid figure span.icon.glas {
    background-image: url(/styles/images/logo-consol-glas.png);
}

div.grid figure span.icon.office {
    background-image: url(/styles/images/logo-consol-office.png);
}

div.grid figure span.icon.papier {
    background-image: url(/styles/images/logo-consol-papier.png);
}

div.grid figure span.icon.textil {
    background-image: url(/styles/images/logo-consol-textil.png);
}
*/

div.grid figure img {
    width: 100%;
    float: left;
}
div.grid.team_new a div.mailto,
div.grid.team a div.mailto {
    bottom: 8px;
    color: #ffffff;
    font-size: 20px;
    position: absolute;
    right: 10px;
}

div.grid.downloads .item{
    width:100%;
    margin-bottom: 1em;
}
div.menu {
    padding-bottom: 20px;
}

div.grid.day{
    margin-left: -15px;
    padding-top: 15px;
    flex-direction: column;
}

div.grid.day:first-of-type{
    border: none;
    padding-top: 0;
}
div.grid.day .item {
    width:100%;
    margin-left: 15px;
    margin-bottom: 0;
}

div.grid.boom {
    width: calc(100% + 30px);
    margin-left: -30px;
}

div.grid.boom .item {
    width: calc(100% - 30px);
    margin-left: 30px;
}
div.gallery {
    width: 100%;
    float: left;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 30px;
}


div.gallery a.fancybox {
    width: calc( 33.33% - 5px);
    margin-right: 5px;
}
div.gallery a.fancybox:first-child {
    width: calc( 100% - 5px);
}
div.gallery a.fancybox img {
    width:100%;
}
.content-image {
    margin: 0;
    width: calc(50% - 15px);
}
.content-image.left {
    margin: 0 30px 30px 0;
    float: left;
}
.content-image.right {
    margin: 0 0 30px 30px;
    float: right;
}

.story_body a.fancybox img{
    width: 100%;
    display: block;
}
.anchor-nav a{
    display: inline-block;
    position: relative;
    margin-left: 20px;
    margin-right: 10px;

}
.anchor-nav a:after {
    display: inline-block;
    content: '>';
    font-family: var(--font);
    color: var(--color-red);
    position: absolute;
    left: -15px;
    font-size: 20px;
    margin-top: 0px;
}
.anchor-nav a:hover {
    color: var(--color-red);
}

form.newsletter-subscribe {
    width: 100%;
}

form.add_to_cart {
    width: 100%;
    float:right;
    text-align: right;
}

span.validatormessage {
    color: var(--color-red);
    font-size: 12px;
    margin-top: -18px;
    display: block;
    font-weight: 400;
}

p.form-field-info-mini {
    color: var(--color-red);
    font-size: 12px;
    margin-top: -18px;
    display: block;
    font-weight: 400;
}

/* remove standard-styles */
input[type="file"]{
    display: none;
}
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;
}

input,
textarea, select {
    font-family: var(--font);
    font-size: 16px;
    color: black;
    background-color: #d9d9d9;
    border: none;
    border-bottom: 2px solid var(--color-red);
    height: 35px;
    width: 100%;
    padding: 3px 10px;
    margin-bottom: 15px;
    /*  -webkit-box-shadow: inset 0 0 2px 0 rgba(213,213,213,0.6);
      -moz-box-shadow: inset 0 0 2px 0 rgba(213,213,213,0.6);
      box-shadow: inset 0 0 2px 0 rgba(213,213,213,0.6);*/
    text-align: center;
}
select {
    text-align-last: center;
}
input[type="file"] {
    background-color: transparent;
    border: none;
}
input[type="radio"] {
    position: relative;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: rgba(0,0,0,0.5);
    width: 16px;
    height: 16px;
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 0;
    vertical-align: -2px;
}
.radio-label {

}

input[type="radio"]::before {
    position: absolute;
    content: "";
    left: 2px;
    top: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: var(--color-red);
}

input[type="radio"]:checked::before {
    transform: scale(1);
}

span.currency {
    display: inline-block;
    color: #FFFFFF;
    background-color: var(--color-red);
    font-weight: 600;
    height: 35px;
    line-height: 35px;
    vertical-align: -1px;
    padding: 0 6px;
}

form.orderform input, form.orderform textarea, form.orderform select {
    margin-bottom: 15px;
}

form label{
    width: 100%;
    float: left;
    margin-bottom: 5px;
}
form label.fileupload{
    margin-top: 15px;
    margin-bottom: 15px;
}
form#supportformular .support_purpose {
    margin-top: 0;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
}
form#supportformular .grid {
    width: 100%;
    margin-left: 0;
}

form#supportformular .support_purpose div.text {
    display: inline-block;
    margin-left: 0;
    width: 100%;
    text-align: center;
}

form#supportformular .support_purpose h3 {
    margin-bottom: 0.1em;
}

form#supportformular .support_purpose img {
    display: inline-block;
    width: 70%;
    margin-bottom: 0;
    margin-right: auto;
    margin-left: auto;
}/*
form#supportformular .support_purpose.selected img {
    border-bottom: 10px solid var(--color-red);
}
*/
form#supportformular input {
    width: 100%;
}

form#supportformular textarea {
    width: 100%;
    height: 190px;
}
form#supportformular .support_purpose i {
    margin-right: 4px;
    display: none;
}
form#supportformular .support_purpose.selected i {
    display: inline-block;
}

form#supportformular .support_purpose.selected a.button {
    background-color: rgb(66, 137, 14);
    border-bottom: none;
}
form#supportformular .support_purpose.selected a.button:after {
    border-top: 30px solid rgb(66, 137, 14);
}
form#supportformular .support_purpose a.button span:after {
    content: "Auswählen";
}
form#supportformular .support_purpose.selected a.button span:after {
    content: "Ausgewählt";
}


form label:first-of-type{
    margin-top: 0;
}
/*
form label#label_firstname {
    margin-top: 15px;
}*/

form#supportformular label#label_firstname {
    margin-top: 0;
}

form#supportformular .support-amount {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: nowrap;
}
form#supportformular .support-amount div {
    width: calc(50% - 7.5px);
}
form#supportformular .support-amount div:first-of-type {
    margin-right: auto;
    margin-left: auto;
}

form#supportformular input#option_amount,
form#supportformular select#amount {
    width: calc(100% - 44px);
}
form#supportformular input#option_amount {
    margin-top: 0;
}
.invoice.grid,
form.grid {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    width: calc(100% + 15px);
    margin-left: -15px;
}
.invoice .item.half,
form.grid .item.half {
    padding: 0;
    margin-left: 15px;
}

form.grid .item.half p {
    margin-left: 0;
}

form.grid .item.half .label{
    width: 100%;
}

form.grid .grid.w-100 {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    width: calc(100% + 15px);
}
form.grid p {
    margin-left: 15px;
    width: calc(100% - 15px);
}
form.grid .button,
form.grid .checkbox.small {
    margin-left: 15px;
}
.payment_types {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    width: calc(100% + 15px);
    margin-left: -15px;
}
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 #CC0000;
}

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

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

label.checkbox input {
    display: none;
}

label.checkbox span {
    border: 2px solid var(--color-red);
    display: inline-block;
    float: left;
    font-size: 22px;
    height: 18px;
    margin-right: 10px;
    margin-top: 2px;
    position: relative;
    width: 18px;
}

label.checkbox p {
    margin-left:15px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

[type=checkbox]:checked + span:before {
    content: '\2714';
    position: absolute;
    color: var(--color-red);
    top: -5px;
    left: 1px;
}

[type=checkbox]:checked + label.checkbox span {
    border: 0.5px solid var(--color-red);
}

select.quantity{
    width: 60px;
    margin-right: 5px;
    margin-bottom: 15px;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #333333;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #333333;
    opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #333333;
    opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:    #333333;
}

textarea {
    height: 120px;
    margin-bottom: 15px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="currency"]:focus,
input[type="number"]:focus,
input[type="text"]:focus,
textarea:focus,
select:focus {
    border: 1px solid var(--color-red);
}

input[type="text"]:first-of-type, select:first-of-type, input[type="number"] {
    margin-top: 0;
}

select {
    background: rgba(217, 217, 217, 1) url("/styles/images/select-arrow.png") no-repeat scroll right center / 23px auto;
}

select:focus {
    background: rgba(217, 217, 217, 1) url("/styles/images/select-arrow-active.png") no-repeat scroll right center / 23px auto;
}

select#country {
    background: rgba(217, 217, 217, 1);
}

label.required {
    font-weight: 600;
}

.missingalv {
    color: var(--color-red);
    font-weight: 600;
}

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


header {
    position: relative;
    width: 100%;
}
article header {
    height: unset;
    position: relative;
    text-align: center;
    background-color: transparent;
    z-index: 1;
}


header div.content {
    padding: 0 15px;
}

header #logo,
header #jubi,
header nav.main {
    display: none;
}
#scroll-header .jubi {
    width: 60px;
    display: inline-block;
    margin-left: 15px;
}

#scroll-header .jubi img,
header #jubi img {
    width: 100%;
    display: block;
}
.header-img {
    margin-top: 85px;
    height: 292px;
    background-size: cover;
    background-repeat: no-repeat;
}

.map-wrapper {
    margin-top: 140px;
}

main {
    margin-top: 0px;
}

article.single,
section {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
}

section.cart {
    background-color: var(--color-red);
    color: white;
    padding: 10px 0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
}

section.cart a {
    font-weight: 600;
    color: white;
}

section.cart span.glyphicons:before{
    padding: 3px 8px;
}


section.invert {
    background-color: #595959;
    color: white;
    padding: 20px 0;
}

section.invert p,
section.invert a,
section.invert h3,
section.invert h2 {
    color: white;
}

section.invert h2 {
    border-bottom: none;
}

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

.image-wrapper img {
    margin-bottom: 0 !important;
}

.image-wrapper p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 16px;
}

.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%;
}


a.document img.icon_attachment {
    width: 30px;
    float: left;
    margin-top: 2px;
    margin-right: 4px;
}

div.body-context img.page_cntxt {
    width: 100%;
    margin-bottom: 1em;
}
div.spacer {
    margin-top: 85px;
}
/*******************************************/
/* Responsive-Navigation
/*******************************************/

div#sidr {
    left: auto;
    right: -260px;
}

div#scroll-header {
    display: block;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.8);
    top: 0;
    width: 100%;
    padding: 10px;
    z-index: 99;
}

div#scroll-header div.overlay {
    position: absolute;
    left: 10px;
    top: 0;
    padding: 15px 20px;
    background-color: white;
}

div#scroll-header a.logo {

}

div#scroll-header a.logo img {
    width: 130px;
}

div#scroll-header a#offcanvas-menu {
    display: block;
    float: right;
    width: 50px;
    border-radius: 8px;
}

a#offcanvas-menu span.bar {
    float: left;
    display: block;
    width: 60%;
    margin-left: 20%;
    margin-top: 7px;
    height: 0;
    border-bottom: 3px solid var(--color-red);
    -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;
}

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

#offcanvas-menu.toggled span {
    transform-origin: center center 0;
}

#offcanvas-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;
}

#offcanvas-menu.toggled span:last-child {
    transform: translateY(-12px) rotate(-45deg);
}

.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 .glyphicons:before {
    padding: 16px 8px;
}
.sidr ul li span {
    padding: 0;
}
.sidr ul li a span {
    display: inline-block;
}
/*******************************************/
/* Slides
/*******************************************/

.swiper-wrapper {
    position: relative;
    width: 100%;
    margin: 85px auto 0 auto;
    align-items: stretch;
    flex-basis: auto;
    height: auto;
    overflow: visible;
}
.swiper-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    align-items: stretch;
    height: auto;
}

.swiper-slide img {
    width: 100%;
    margin: auto !important;
    display: block;
    aspect-ratio: 440 / 320;
}

.swiper-slide .slide-text p {
   display: none;
}
.swiper-slide .slide-text strong {
    color: rgba(255,255,255,1);
    margin-bottom: .5em;
    margin-top: auto;
    font-size: 26px;
}

.swiper-slide .slide-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 20px 40px 20px 40px;
    background-color: rgba(30,30,30,.3);
    display: flex;
    flex-direction: column;
}
.swiper-slide .slide-text .button {
    margin-bottom: 20px;
    margin-right: auto;
}
.swiper-nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 10px;
    margin-bottom: 15px;
}

.swiper-pagination {
    position: relative;
    text-align: center;
    margin-top: 5px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    opacity: 1;
    background: var(--color-red);
    border-radius: 100%;
    margin: 0 5px 0 0 !important;
}

.swiper-pagination-bullet-active {
    background: #666666;
}
.swiper-button-next {
    margin-right: auto;
    margin-left: 15px;
}

.swiper-button-prev {
    margin-left: auto;
    margin-right: 2px;
}
.swiper-button-next,
.swiper-button-prev {
    position: relative;
    display: inline-block;
    height: 15px;
    top: 0;
    margin-top: 4px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #666666;
    font-size: 15px;
}

/*******************************************/
/* Story
/*******************************************/

section.article .content,
article .content {
    text-align: center;
}

article .story_banner  {
    position: relative;
    background-color: var(--color-lightgrey);
    margin: 2em 0;
}
article .story_fullscreen_image .image_container {
    width: 100%;
    height: auto;
}
article .story_image .content_image,
article .story_banner .content_image {
    width: 100%;
    margin: 0;
}
article .content_image {
    width: 50%;
    margin: 0 auto;
}
article .content_image img {
    display: block;
    width: 100%;
}

article .services .content_image figure img {
    aspect-ratio: 1 / 1;
}

article .story_banner .story_body {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 80;
    background-color: var(--color-grey-o);
    color: #FFFFFF;
    padding: 20px;
}
article .story_banner .story_body .prehead {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 20px;
}
article .story_banner .story_body h2 {
    color: #FFFFFF;
}
article .story_banner .story_body.left {
    left: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
}
article .story_banner .story_body.left span.prehead {
    margin-top: auto;
}
article .story_banner .story_body.left .button {
    margin-right: auto;
}
article .story_banner .story_body.right span.prehead {
    margin-top: auto;
}
article .story_banner .story_body.right .button {
    margin-right: 0;
    margin-left: auto;
}
article .story_banner .story_body.right {
    right: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
}
article .story_intro {
    position: relative;
    width: 100%;
}
article .story_body p a {
    color: var(--color-red);
}
article .story_body h2.title {
    text-align: center;
}
article .story_body.left,
article .story_body.right {
    text-align: center;
}
article .story_body .text-image {
    width: 100%;
    display: block;
    margin: 0 0 30px 0;
}
article .story_body .text-image img {
    width: 100%;
    display: block;
}
article .story_list .story_body,
article .story_component .story_body,
article .story_links .story_body,
article .story_intro .story_body {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin-left: -30px;
}
article .story_component .story_body .content_image,
article .story_intro .story_body .content_image {
    margin: 2em auto 1em auto;
}
article .story_intro .story_body .content_image img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

article .story_list .story_body .list_item,
article .story_component .story_body .products,
article .story_component .story_body a:not(.button),
article .story_links .story_body a,
article .story_links .story_body div,
article .story_intro .story_body a {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
    width: calc(100% - 30px);
    margin-left: 30px;
}
article .story_component .story_body .products a.button{
    margin: 10px auto 10px auto;
}
article .story_component .story_body .products h2,
article .story_component .story_body a h2,
article .story_links .story_body a h2,
article .story_links .story_body div h2,
article .story_intro .story_body a h2 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

article .story_links .story_body div .icon,
article .story_links .story_body a .icon {
    background-color: var(--color-lightgrey);
    border-radius: 50%;
    height: 80px;
    width: 80px;
    margin: 2em auto 1em auto;
    display: flex;
}
article .story_links .story_body div .icon img,
article .story_links .story_body a .icon img {
    width: 50%;
    margin: auto;
}
article .story_links .story_body div .icon span,
article .story_links .story_body a .icon span{
    color: var(--color-grey);
    line-height: 80px;
    text-align: center;
    font-size: 40px;
    margin: auto;
}

article .story_links .story_body .content_image img {
    height: 80px;
    width: 80px;
    margin: 2em auto 1em auto;
}
.story_component,
.story_list,
.story_links,
.text-section {
    margin: 2em auto 1em auto;
}

article .story_list .story_body .list_item {
    position: relative;
    text-align: left;
    border-bottom: 1px solid var(--color-lightgrey);
    margin-bottom: 1em;
}

article .story_list .story_body .list_item .icon {
    cursor: pointer;
}

article .story_list .story_body .list_item h3 {
    padding-right: 30px;
}
article .story_list .story_body {
    margin-top: 2em;
}
article .story_list .story_body .list_item .list_item_body {
    position: relative;
    text-align: left;
    /*visibility: collapse;*/ /*darstellungsfehler in firefox*/
    height: 0;
    opacity: 0;
    padding: 0 20px;
    transition: height 1s linear 0s, opacity 0.4s ease-in-out 0s;
}

article .story_list .story_body .list_item.open .list_item_body {
    visibility: visible;
    height: auto;
    opacity: 1;
}
article .story_component .story_body.jobs {
    text-align: left;
}
article .story_component .story_body.jobs a {
    position: relative;
}
article .story_component .story_body.jobs .icon,
article .story_list .icon {
    background-color: var(--color-lightgrey);
    color: var(--color-red);
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    line-height: 31px;
    top: 0;
    right: 0;
    margin: 0;
    transform: rotate(90deg);
    transition: all 0.5s ease 0s;
    transform-origin: center center;
}

article .story_list .list_item.open .icon {
    transform: rotate(180deg);
    transform-origin: center center;
}

article .story_list .list_item .icon span {
    transition: all 0.5s ease 0s;
}
.story_image {
    margin: 2em auto 4em auto;
}
.story_image_link {
    display: block;
    position: relative;
}
.button.issuu:after {
    display: block;
    position: absolute;
    content: " ▶︎";
    color: var(--color-red);
    background-color: var(--color-lightgrey);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 25px;
    line-height: 42px;
    vertical-align: 1px;
    top: -4px;
    right: -4px;
}
article .story_quote {
    position: relative;
   /* background-color: var(--color-lightgrey);*/
    margin: 2em 0;
    padding: 1.3em 0 1em 0;
}
.quote:before {
    color: var(--color-red);
    content: open-quote;
    font-size: 5.8em;
    line-height: 0.1em;
    margin-right: 0.1em;
    vertical-align: -0.3em;
    display: inline-block;
}

.quote {
    font-size: 1.3em;
    font-style: italic;
    line-height: 135%;
    quotes: "“" "”";
    width: 100%;
    position: relative;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    display: inline-block;
    margin: 30px auto;
    text-align: center;
    padding: .2em 20px;
}
.quote blockquote {
    display: inline-block;
}
.quote .author {
    margin-top: 15px;
    font-size: .8em;
    font-style: normal;
    display: block;
}
#quote-slider .swiper-wrapper {
    margin-top: 0;
}
#quote-slider .swiper-pagination {
    margin-left: 18px;
}

.podcast-list div.grid .item {
    margin-bottom: 50px;
}

.podcast-list div.grid .item .text h2 {
   margin-bottom: 15px;
}

.podcast-list div.grid .item .text a {
    display: block;
    margin-top: 15px;
    font-size: 18px;
    line-height: 40px;
    margin-right: 20px;
}

.podcast-list div.grid .item .text a img {
    width: 30px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: -8px;
}

.podcast-list div.grid .item .text a span {
    display: inline-block;
}
/*******************************************/
/* Footer
/*******************************************/

footer {
    float: left;
    width: 100%;
    margin-top: 15px;
    padding: 0 15px;
    background-color: var(--color-grey);
    color: #fff;
    font-size: 14px;
}

footer div.content {
    padding-top: 15px;
    padding-bottom: 15px;
}

footer div.grid .item img.iso_cert {
    margin-top: 1em;
    width: 50%;
}

footer h2 {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 600;
}

footer div.content a,
footer div.content h3,
footer div.content h2,
footer div.content p {
    color: #fff;
}

footer div.content p a {
    color: #fff;
    font-weight: 600;
}

footer div.grid {
    margin-bottom: 2em;
}

footer div.grid .item {
    width: calc( 100% - 15px);

}

#boom-1,
#boom-2,
#boom-3,
#boom-4,
#boom-5 {
    display: none;
    position: absolute;
    left: -50px;
    top: -400px;
    width: 700px;
}

#boom-4 {
    top: -300px;
}

#boom-5 {
    top: -200px;
}


footer ul.social-nav {
    background-color: var(--color-lightgrey);
    padding: 5px;
    display: inline-block;
}

footer ul.social-nav li {
    display: inline-block;
}


footer ul.social-nav li a {
    color: var(--color-red);
}

footer ul.social-nav li a {
    margin-left: 4px;
    margin-right: 4px;
    color: var(--color-red);
}

footer ul.social-nav li a span {
    font-size: 20px;
}

footer ul.social-nav li:first-of-type a span {
    padding-left: 3px;
    padding-top: 1px;
}

footer ul.social-nav li:first-of-type a {
    color: var(--color-red);
    font-weight: 600;
    line-height: 24px;
    margin-right: 10px;
}

footer ul.social-nav li a {
    font-weight: 200;
    font-size: 14px;
}


footer ul.social-nav li a i.glyphicons {
    vertical-align: -5px;
    color: var(--color-red);
    font-size: 20px;
}


.toTop {
    border-radius: 100%;
    bottom: 40px;
    display: none;
    height: 30px;
    position: fixed;
    right: 50px;
    width: 30px;
    font-size: 33px;
    overflow: visible;
    z-index: 999;
    background-color: #FFFFFF;
    color: var(--color-red);
}
.toTop span {
    margin-left: -2px;
    margin-top: -2px;
}

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

@media (max-width: 380px) {
    h1, h2 {
        font-size: 34px;
    }
}
@media (min-width: 500px) {

    .swiper-slide img {
        width: 100%;
        margin: auto !important;
        display: block;
        aspect-ratio: 2400 / 830;
    }

    div.grid.mini-shop .item {
        margin-bottom: 0;
        width: calc(25% - 10px);
        margin-left: 10px;
    }

    div.grid.shop .item {
        width: calc(33.33% - 20px);
        margin-left: 20px;
    }

    footer div.grid .item {
        width: calc( 50% - 15px);
    }

    div.grid.team_new .item {
        width: calc(33% - 15px);
        margin-left: 15px;
    }

    div.grid.team_new .item h3 {
        margin-bottom: 0;
        font-size: initial;
    }
    .story_gallery a {
        width: calc(33.33% - 30px);
    }
}

@media (min-width: 768px) {

    .body-context.body {
        padding-top: 0px;
    }

    h1, h2 {
        font-size: 28px;
    }

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

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

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

    .half {
        width: 50%;
    }

    .half:nth-of-type(even) {
        padding-left: 15px;
    }

    .half:nth-of-type(odd) {
        padding-right: 15px;
    }

    form#supportformular .item.half:nth-of-type(even) {
        padding-left: 0;
    }

    form#supportformular .item.half:nth-of-type(odd) {
        padding-right: 0;
    }

    .fourth {
        width: 25%;
    }
    .story_gallery a {
        width: calc(25% - 30px);
    }

    div.grid.news .item {
        width: calc(50% - 15px);
    }

    div.grid.news .item:nth-of-type(odd) {
        margin-right: 15px;
    }
    div.grid.news .item:nth-of-type(even) {
        margin-left: 15px;
    }

    div.grid.day {
        flex-direction: row;
    }


    div.grid.day .item h4 {
        display: none;
    }

    div.grid.day .item {
        width: 36%;
    }
    div.grid.day .item:first-of-type {
        width: 20%;
    }


    div.grid.team,
    div.grid.glass_pattern {
        width: 100%;
        margin-left: -15px;
    }

    div.grid.team .item,
    div.grid.glass_pattern .item {
        width: 15%;
        margin-left: 15px;
    }

    div.grid.shop .item {
        width: calc( 25% - 20px);
        margin-left: 20px;
    }

    div.grid.shop .item:nth-of-type(2n+0) {
        margin-right: 0;
    }

    div.grid.team_new .item {
        width: calc(25% - 15px);
        margin-left: 15px;
    }

    div.grid.team_new .item h3 {
        margin-bottom: 0;
        font-size: initial;
    }

    div.grid.mini-shop-top {
        display: flex;
    }

    section.mobile-category-nav {
        display: none;
    }

    div.grid.mini-shop .item {
        width: calc(12.5% - 10px);
    }
    div.gallery {
        width: calc( 38% - 15px);
        margin-right: 30px;
    }

    .content.product {
        padding-top: 2em;
    }

    .product .body {
        float: right;
        width: calc( 62% - 15px);
    }

    .product .body h1 {
        margin-top: 0;
    }

    form.add_to_cart {
        width: 50%;
    }

    input[type="text"],
    input[type="number"],
    input[type="tel"],
    input[type="email"],
    input[type="password"],
    input[type="url"],
    textarea, select {
        width: 90%;
    }

    form#supportformular .support_purpose {
        flex-direction: row;
    }
    form#supportformular .support_purpose div.text {
        display: inline-block;
        margin-left: 30px;
        width: calc(100% - 130px);
        text-align: left;
    }
    form#supportformular .grid {
        width: calc(100% + 15px);
        margin-left: -15px;
    }
    form#supportformular .support_purpose h3 {
        margin-bottom: 0.1em;
    }

    form#supportformular .support_purpose img {
        display: inline-block;
        width: 30%;
        margin-left: 0;
        margin-bottom: 20px;
    }
    article .story_body.text {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    article .story_body .text-body {
       width: 100%;
        text-align: center;
    }

    article .story_body.left .text-body {
        width: calc(50% - 15px);
        text-align: left;
        margin-left: auto;
    }
    article .story_body.right .text-body {
        width: calc(50% - 15px);
        text-align: right;
        margin-right: auto;
    }
    article .story_body.left .text-image {
        width: calc(50% - 15px);
        display: block;
        margin: 0 auto 30px 0;
    }
    article .story_body.right .text-image {
        width: calc(50% - 15px);
        display: block;
        margin: 0 0 30px auto;
    }
}

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

@media (min-width: 960px) {


    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 26px;
    }

    a#offcanvas-menu {
        display: none;
    }

    div.content {
        position: relative;
        clear: both;
        width: 960px;
        margin: 0 auto;
    }

    footer div.grid .item {
        width: calc(25% - 15px);
    }

    .body-context {
        width: 28%;
        font-size: 14px;
        line-height: 135%;
    }

    .body-context img.logo {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .body-context h3 {
        margin-bottom: 0.2em;
        font-size: 1em;
    }

    .body-content {
        width: 65%;
        margin-right: auto;
    }

    div#scroll-header {
        display: none;
    }

    header {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 99999;
        background-color: white;
    }

    header nav.main {
        display: block;
    }

    a#logo {
        position: absolute;
        display: block;
        width: 280px;
        left: 40px;
        top: 20px;
        z-index: 100;
    }

    a#logo img {
        width: 80%;
    }
    header #jubi {
        width: 90px;
        position: absolute;
        display: block;
        left: 290px;
        top: 20px;
        z-index: 100;
    }

    header p.claim {
        color: white;
        float: left;
        width: 100%;
        text-align: left;
        margin-top: 30px;
        font-size: 20px;
        line-height: 145%;
        font-weight: 400;
    }

    nav {
        position: fixed;
        float: left;
        padding-left: 20px;
        margin-top: 0px;
        width: 100%;
        background-color: white;
        z-index: 19;
        transition: 0.5s linear;
    }

    header.scrolled nav {

    }

    header.scrolled p.claim {
        display: none;
    }

    div.main-wrapper {
        float: right;
        width: 100%;
    }

    nav ul {
        display: block;
        float: right;
        padding: 5px 0;
    }

    nav ul.main {
        width: auto;
        margin-top: 57px;
        margin-bottom: 10px;
        margin-right: 20px;
        font-weight: 400;
        font-size: 20px;
    }

    nav ul.top {
        font-weight: 400;
        width: auto;
        margin-top: 10px;
    }

    nav ul.social-nav {
        width: auto;
        margin-top: 10px;
        margin-right: 20px;
        background-color: var(--color-lightgrey);
        padding: 5px;
    }

    nav ul li {
        display: block;
        float: left;
    }

    nav ul li a {
        position: relative;
        display: block;
        float: left;
        margin-left: 4px;
        margin-right: 15px;
        color: var(--color-grey);
    }

    nav ul li.selected a {
        font-weight: 600;
        color: var(--color-red);
    }

    nav ul.top li.selected a {
        font-weight: 600;
        color: var(--color-red);
    }

    nav ul.social-nav li a {
        margin-left: 4px;
        margin-right: 4px;
        color: var(--color-red);
    }

    nav ul.social-nav li a span {
        font-size: 20px;
    }

    nav ul.social-nav li:first-of-type a span {
        padding-left: 3px;
        padding-top: 1px;
    }

    nav ul.social-nav li:first-of-type a {
        color: var(--color-red);
        font-weight: 600;
        line-height: 24px;
        margin-right: 10px;
    }

    nav ul.social-nav li a,
    nav ul.top li a {
        font-size: 14px;
    }


    nav ul.top li a i.glyphicons {
        vertical-align: -5px;
        color: var(--color-red);
        font-size: 20px;
    }

    nav ul.main li:hover a:after,
    nav ul.main li.selected a:after {
        content: "";
        display: block;
        width: 30px;
        height: 2px;
        background-color: var(--color-red);
        position: absolute;
        bottom: -2px;
        left: calc(50% - 15px);
    }

    .header-img {
        margin-top: 140px;
        height: 429px;
    }
    div.spacer {
        margin-top: 140px;
    }
    .glyphicons:before {
        padding: 0;
    }

    .flex {
        flex-direction: row;
    }

    div.grid.boom .item {
        width: calc(50% - 30px);
        margin-left: 30px;
    }

    div.grid.team_new .item {
        width: calc(25% - 15px);
        margin-left: 15px;
    }
    div.grid.team_anchors .item {
        width: calc(33% - 15px);
        margin-left: 15px;
    }
    .grid .item.third {
        width: calc(33.33% - 15px);
        margin-left: 15px;
    }

    div.grid.three .item {
        width: calc(33% - 15px);
        margin-left: 15px;
    }

    div.grid.five .item {
        width: calc(20% - 15px);
        margin-left: 15px;
    }

    .grid .item.half {
        width: calc(50% - 15px);
        margin-left: 15px;
    }
    .grid .item.full {
        width: calc(100% - 15px);
        margin-left: 15px;
    }
    article .content_image {
        width: 80%;
    }
    article .story_links .story_body div,
    article .story_links .story_body a,
    article .story_intro .story_body a {
        width: calc(33.33% - 30px);
        margin-left: 30px;
    }

    article #section-35.story_links .story_body div,
    article #section-35.story_links .story_body a {
        width: calc(25% - 30px);
    }

    article .story_component .story_body .products,
    article .story_component .story_body a:not(.button, .list_item) {
        width: calc(25% - 30px);
        margin-left: 30px;
    }
    article .story_intro:after {
        content: "";
        display: block;
        position: absolute;
        height: 1px;
        width: 100%;
        top: 147px;
        background-color: var(--color-grey);
        z-index: -1;
    }
    .story_image_link.issuu:before {
        right: -80px;
        bottom: -39px;
    }
    .story_image_link.issuu:after {
        font-size: 28px;
        right: -34px;
        bottom: -45px;
    }
    article .story_banner .story_body {
        width: 40%;
        position: absolute;
        top: 0;
    }
    article .story_banner .story_body.left {
        left: 20px;
    }
    article .story_banner .story_body.right {
        right: 20px;
    }
    .swiper-wrapper {
        margin: 130px auto 0 auto;
    }
    .swiper-slide .slide-text {
        right: 60%;
    }
    .swiper-slide .slide-text p {
        color: rgba(255,255,255,1);
        font-size: 19px;
        font-weight: 500;
        display: block;
    }
    .individual .body {
        margin-left: 30px;
    }

    .podcast-list div.grid .item  {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        flex-basis: auto;
    }
    .podcast-list div.grid .item .image {
        width: 33.33%;
    }
    .podcast-list div.grid .item .text {
        width: calc(66.66% - 35px);
        margin-left: auto;
    }
}

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

@media (min-width: 1200px) {
        .fixed_buttons {
            right: 0;
        }
}

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

@media print {

}

/* contents of /styles/7-cart.css */

div.cart-box {
    position: absolute;
    top: -120px;
    right: 150px;
    background-color: rgba(100, 154, 0, 1);
    padding: 15px 35px;
    color: white;
    border-radius: 10px;
    box-shadow: 2px 2px 8px 0 rgba(0,0,0,0.3);
    /*
    transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    -moz-transform: rotate(-2deg);
    */
    z-index: 100;
}

div.cart-box.discounted {
    top: -140px;
}

div.cart-box p {
    margin-bottom: 0.2em;
}

div.cart-box p.info {
    font-size: 12px;
    color: white;
}
section.checkout {
    margin-top: 30px    ;
}

div.cart-box a.checkout {
    background-color: #5b7f63;
    border: none;
    border-radius: 30px;
    color: white;
    padding: 3px 25px;
    margin-top: 10px;
    display: inline-block;
}

div#cart-content {
    float:left;
    margin-bottom: 100px;
    width: 100%;
}

div.cart {
    float: left;
    margin-bottom: 25px;
    width: 100%;
}

div.cart div.cart-item {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

div.cart div.cart-item.header {
    border-bottom: 1px dotted #808080;
    margin-top: 10px;
    margin-bottom: 10px;
}

div.cart div.cart-item.header div.sum,
div.cart div.cart-item.header div.price {
    font-size: 16px;
}
div.cart div.cart-item.header div {
    padding-bottom: 10px;
    font-size: 16px;
}

div.cart div.cart-item div {
    margin-right: 2%;
}

div.cart div.cart-item div.image {
    float: left;
    width: 10%;
    min-height: 10px;
    text-align: center;
    margin-right: 0;
}

div.cart div.cart-item div.image img {
    width: 50%;
    /*border: 5px solid #ffffff;
    box-shadow: 2px 2px 8px 0 rgba(0,0,0,0.3);*/
}

div.cart div.cart-item div.quantity {
    float: left;
    width: 10%;
    text-align: center;
}

div.cart div.cart-item div.quantity select {
    padding: 5px 10px;
}

div.cart div.cart-item div.title {
    float: left;
    width: 45%;
}

div.cart div.cart-item div.tax {
    font-size: 12px;
}

div.cart div.cart-item div.title h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 3px;
}

div.cart div.cart-item div.title p {
    margin-bottom: 3px;
}

div.cart div.cart-item div.price {
    float: left;
    width: 10%;
    text-align: right;
    font-weight: 500;
    font-size: 17px;
}

div.cart div.cart-item p.discount {
    color: var(--color-red);
}

del {
    color: var(--color-red);
    font-weight: 500;
    font-size: 17px;
}

div.cart div.cart-item div.sum {
    float: left;
    width: 10%;
    text-align: right;
    font-weight: 500;
    font-size: 17px;
}

div.cart div.cart-item div.delete {
    float: left;
    width: 2%;
    text-align: center;
}

div.cart div.cart-item div.delete a {
    color: var(--color-red);
    font-size: 20px;
    cursor: pointer;
    border-bottom: none;
}

div.cart div.item-sum {
    border-top: 1px dotted #808080;
    padding-top: 10px;
}

div.cart div.cart-total {
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

div.cart div.cart-total div.title {
    float: left;
    width: 72%;
    text-align: right;
    margin-right: 2%;
}

div.cart div.cart-total div.total {
    float: right;
    width: 20%;
    text-align: right;
    font-size: 20px;
    margin-right: 6%;
}

div.cart div.cart-total div.total.end-total {
    font-weight: 500;
    color: black;
}

a.nextButton {
    background-color: #666666;
    border: none;
    border-radius: 30px;
    color: white;
    padding: 3px 25px;
    margin-top: 10px;
    display: inline-block;
    float: right;
}

ul.cart-progress {
    padding: 0;
    list-style-type: none;
    clear: both;
    line-height: 1em;
    margin: 0 -1px;
    margin-bottom: 35px;
    text-align: center;
    float: left;
    width: 100%;
}

ul.cart-progress li {
    float: left;
    padding: 12px 5px 10px 30px;
    background: #666666;
    color: #fff;
    position: relative;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    width: 24%;
    margin: 0 1px;
}

ul.cart-progress li a {
    color: white;
    font-weight: bold;
}

ul.cart-progress li i.glyphicons:before {
    padding: 0 10px 0 0;
}

ul.cart-progress li:before {
    content: '';
    border-left: 19px solid #fff;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    position: absolute;
    top: 0;
    left: 0;
}

ul.cart-progress li:first-child::before {
    border-left: none;
}

ul.cart-progress li:after {
    content: '';
    border-left: 19px solid #666666;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1;
}

ul.cart-progress li.active {
    background: var(--color-red);
}

ul.cart-progress li.active:after {
    border-left-color: var(--color-red);
}

div.address_box {
    float: left;
    width: 100%;
    border: 1px solid #b3b3b3;
    border-radius: 10px;
    padding: 20px;
    padding-bottom: 10px;
    background-color: white;
    margin-top: 1em;
    margin-bottom: 2em;
}

div.address_box h4 {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #808080;
}


.payment_types .item.payment_type {
    text-align: center;
    border: 1px solid var(--color-red);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    position: relative;
}

.payment_types .item.payment_type i.fa-check {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: var(--color-red);
    display: none;
}

.payment_types .item.payment_type .icons {
    color: var(--color-red);
    font-size: 36px;
}

.payment_types .item.payment_type .icons i {
    margin: 5px;
}

.payment_types .item.payment_type.selected {
    text-align: center;
    border: 3px solid var(--color-red);
    background-color: #E0C4C7;
    padding: 10px;
}

.payment_types .item.payment_type.selected i.fa-check {
    display: block;
}

.donate_amounts {
    margin-left: -15px;
}

.donate_amounts .item.donate_amount {
    text-align: center;
    border: 1px solid var(--color-red);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    position: relative;
}

.donate_amounts .item.donate_amount i.fa-check {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: var(--color-red);
    display: none;
    font-size: 24px;
}

.donate_amounts .item.donate_amount .icons {
    color: var(--color-red);
    font-size: 36px;
}

.donate_amounts .item.donate_amount .icons i {
    margin: 5px;
}

.donate_amounts .item.donate_amount.selected {
    text-align: center;
    border: 3px solid var(--color-red);
    background-color: #E0C4C7;
    padding: 10px;
}

.donate_amounts .item.donate_amount.green {
    border: 1px solid #0D8326;
}

.donate_amounts .item.donate_amount.green i.fa-check {
    color: #0D8326;
}

.donate_amounts .item.donate_amount.green.selected {
    border: 3px solid #0D8326;
    background-color: #C4EBCC;
}

#ticket_total_amount {
    font-size: 30px;
    font-weight: bold;
    color: black;
    margin-top: 20px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.donate_amounts .item.donate_amount.green.selected i.fa-heart {
    animation: pulse 1s infinite;
}

.donate_amounts .item.donate_amount.selected i.fa-check {
    display: block;
}

form.add_discount_token input.discount_token_code {
    display: inline-block;
    width: 14em;
    margin-right: 1em;
}

@media (max-width: 480px) {
    div.cart div.cart-item div.price,
    div.cart div.cart-item div.image {
        display: none;
    }

    div.cart div.cart-item div.quantity {
        width: 20%;
    }

    div.cart div.cart-item div.sum {
        width: 25%;
    }

    div.cart div.cart-total div.title {
        width: 58%;
        margin-right: 1%;
    }

    div.cart div.cart-total div.total {
        width: 40%;
        margin-right: 1%;
    }

    div.cart div.cart-item div.delete {
        width: 25%;
        margin-top: 10px;
        text-align: right;
    }
}

@media (max-width: 768px) {

    ul.cart-progress li span {
        display: none;
    }

}

/* contents of /styles/cookie-message.css */


.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 99999;
    padding: 20px 0;
    border-top: 5px solid #A72430;
}

.cookie-popup span.title {
    font-size: 20px;
    width: 100%;
    position: relative;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    display: block;
    line-height: 135%;
    margin-bottom: 10px;
}
.cookie-popup a {
    text-decoration: underline;
}

.cookie-popup div.button-wrapper {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    margin: 0;
}
.cookie-popup div.button-wrapper a {
    display: inline-block;
    padding: 10px 10px 8px 10px;
    background-color: #A72430;
    color: #FFFFFF;
    border-radius: 5px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 0;
    font-weight: 400;
    margin-left: auto;
    text-decoration: none;
}

.cookie-popup h2 {
    text-align: left;
    margin: 0 0 10px 0;
    font-size: 22px;
}

.cookie-popup .cookie-text {
    position: relative;
    display: inline-block;
    width: 100%;
}


/* The switch - the box around the slider */
.cookie-popup .cookie-text .switch {
    position: absolute;
    top: 5px;
    right: 0;
    display: inline-block;
    width: 61px;
    height: 16px;
    z-index: 999;
    margin-left: 10px;
}

/* Hide default HTML checkbox */
.cookie-popup .cookie-text .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.cookie-popup .cookie-text .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.cookie-popup .cookie-text .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    top: -6px;
    border: 1px solid #d0d0d0;
}

.cookie-popup .cookie-text input:checked + .slider {
    background-color: #A72430;
}

.cookie-popup .cookie-text input:focus + .slider {
    box-shadow: 0 0 1px #A72430;
}

.cookie-popup .cookie-text input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.cookie-popup .cookie-text .slider.round {
    border-radius: 16px;
}

.cookie-popup .cookie-text .slider.round:before {
    border-radius: 50%;
}
#cookie-message-init {
    display: flex;
    flex-direction: column;
    flex-basis: auto;
    flex-wrap: nowrap;
    line-height: 34px;
}
@media (min-width: 768px) {
    #cookie-message-init {
        display: flex;
        flex-direction: row;
        flex-basis: auto;
        flex-wrap: nowrap;
    }
}

