

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

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

.fancybox-active {
    height: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Buttons */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Navigation arrows */

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

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

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

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

/* Caption */

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

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

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

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

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

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

/* Loading indicator */

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

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

/* Transition effects */

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

/* transitionEffect: slide */

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

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

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

/* transitionEffect: fade */

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

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

/* transitionEffect: zoom-in-out */

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

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

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

/* transitionEffect: rotate */

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

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

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

/* transitionEffect: circular */

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

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

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

/* transitionEffect: tube */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* contents of /scripts/flexslider/flexslider.css */

/*
 * jQuery FlexSlider v2.7.2
 * https://www.woocommerce.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: 'flexslider-icon';
  src: url('fonts/flexslider-icon.eot');
  src: url('fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('fonts/flexslider-icon.woff') format('woff'), url('fonts/flexslider-icon.ttf') format('truetype'), url('fonts/flexslider-icon.svg#flexslider-icon') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
@-moz-document url-prefix() {
  .loading .flex-viewport {
    max-height: none;
  }
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: '\f001';
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.flex-direction-nav a.flex-next:before {
  content: '\f002';
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}


/* contents of /scripts/sidr/stylesheets/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 /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 */


@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('/styles/fonts/open-sans-v35-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-300italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 300;
    src: url('/styles/fonts/open-sans-v35-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-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: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('/styles/fonts/open-sans-v35-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-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: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    src: url('/styles/fonts/open-sans-v35-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('/styles/fonts/open-sans-v35-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* fira-sans-condensed-100 - 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: 'Fira Sans Condensed';
    font-style: normal;
    font-weight: 100;
    src: url('/styles/fonts/fira-sans-condensed-v10-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-condensed-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: 'Fira Sans Condensed';
    font-style: normal;
    font-weight: 200;
    src: url('/styles/fonts/fira-sans-condensed-v10-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-condensed-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: 'Fira Sans Condensed';
    font-style: italic;
    font-weight: 200;
    src: url('/styles/fonts/fira-sans-condensed-v10-latin-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-condensed-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Fira Sans Condensed';
    font-style: normal;
    font-weight: 300;
    src: url('/styles/fonts/fira-sans-condensed-v10-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-condensed-300italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Fira Sans Condensed';
    font-style: italic;
    font-weight: 300;
    src: url('/styles/fonts/fira-sans-condensed-v10-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-condensed-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: 'Fira Sans Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('/styles/fonts/fira-sans-condensed-v10-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-condensed-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: 'Fira Sans Condensed';
    font-style: italic;
    font-weight: 400;
    src: url('/styles/fonts/fira-sans-condensed-v10-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-condensed-500 - 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: 'Fira Sans Condensed';
    font-style: normal;
    font-weight: 500;
    src: url('/styles/fonts/fira-sans-condensed-v10-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* fira-sans-condensed-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: 'Fira Sans Condensed';
    font-style: normal;
    font-weight: 600;
    src: url('/styles/fonts/fira-sans-condensed-v10-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cardo-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: 'Cardo';
    font-style: normal;
    font-weight: 400;
    src: url('/styles/fonts/cardo-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cardo-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: 'Cardo';
    font-style: italic;
    font-weight: 400;
    src: url('/styles/fonts/cardo-v19-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

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

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


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

/*

color

green #A0AD20

*/

:root {
    --global-color-green: rgba(187,211,27,1);
    --global-color-red: rgba(158,40,49,1);
}


html {
    width: 100%;
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 18px;
    line-height: 145%;
    font-weight: 200;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    color: rgba(187,211,27,1);
    color: var(--global-color-red);
    display: block;
    line-height: 120%;
    margin: 0 0 15px 0;
    font-size: 24px;
}

h1 {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
}
h2 {
    font-size: 34px;
    font-weight: 300;
}
h2.subheadline {
    color: black;
    margin-bottom: 10px;
}
h3.lined {
    color: #bbd31b;
    border-bottom: 2px solid #bbd31b;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 110%;
    margin-bottom: 10px;
    text-transform: uppercase;
}
h3.alternate {
    font-size: 100%;
    font-family: 'Fira Sans Condensed', sans-serif;
    color: rgba(0,0,0,0.85);
}

a {
    color: #0f0f0f;
}

strong {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
}

p {
    margin-bottom: 0.8em;
}

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

.body ul:not(.wj-share-buttons) li {
    padding-left: 1.5em;
    text-indent: -.7em;
}

.body ul:not(.wj-share-buttons) li::before {
    content: "> ";
    color: rgba(187,211,27,1);
}

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

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

.body ol li::before {
    content: counter(count-me) ". ";
    display: block;
    position: relative;
    max-width: 0;
    max-height: 0;
    left: -1.3em;
    top: .05em;
    color: rgba(187,211,27,1);
    font-weight: bold;
}

.body ol li ol li {
    counter-increment: none;
}

.body ol li ol li:before {
    display: none;
}

.content {
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0;
}

.icon:before {
    display: inline-block;
    content:"";
    width: 20px;
    height: 20px;
    margin-right: 3px;
}

.icon.phone-alt:before {
    content: url("/styles/images/icons/phone.svg");
}

.icon.envelope:before {
    content: url("/styles/images/icons/envelope.svg");
}

.icon.lock:before {
    content: url("/styles/images/icons/lock-keyhole.svg");
}

.icon.unlock:before {
    content: url("/styles/images/icons/lock-keyhole-open.svg");
}

.icon.shopping-cart:before {
    content: url("/styles/images/icons/cart-shopping.svg");
}

.icon.user:before {
    content: url("/styles/images/icons/user.svg");
}

.icon.woman:before {
    content: url("/styles/images/icons/user-hair-long.svg");
}

.icon.home:before {
    content: url("/styles/images/icons/house.svg");
}

.icon.edit:before {
    content: url("/styles/images/icons/pen.svg");
}

.icon.delete:before,
.icon.bin:before {
    content: url("/styles/images/icons/trash-xmark.svg");
}

.icon.asterisk:before {
    content: url("/styles/images/icons/asterisk.svg");
}

.icon.send:before {
    content: url("/styles/images/icons/paper-plane.svg");
}

.icon.cube-black:before {
    content: url("/styles/images/icons/clock-rotate-left.svg");
}

.icon.keys:before {
    content: url("/styles/images/icons/key.svg");
}

.icon.log-out:before {
    content: url("/styles/images/icons/right-from-bracket.svg");
}

.icon.money:before {
    content: url("/styles/images/icons/money-bill.svg");
}

.icon.eye-open:before {
    content: url("/styles/images/icons/eye.svg");
}

.icon.eye-open:before {
    content: url("/styles/images/icons/eye.svg");
}

.icon.circle-arrow-top:before {
    content: url("/styles/images/icons/circle-arrow-up.svg");
}

.icon.search:before {
    content: url("/styles/images/icons/magnifying-glass.svg");
}

.icon.cc-visa:before {
    content: url("/styles/images/icons/cc-visa.svg");
}
.icon.cc-mastercard:before {
    content: url("/styles/images/icons/cc-mastercard.svg");
}
.icon.check:before {
    content: url("/styles/images/icons/check.svg");
}
.icon.file-invoice:before {
    content: url("/styles/images/icons/file-invoice.svg");
}
.icon.fax:before {
    content: url("/styles/images/icons/fax.svg");
}
.icon.hat-chef:before {
    content: url("/styles/images/icons/hat-chef.svg");
}
.icon.hiking:before {
    content: url("/styles/images/icons/person-hiking.svg");
}
.icon.acorn:before {
    content: url("/styles/images/icons/acorn.svg");
}

.icon.social-facebook:before {
    content: url("/styles/images/icons/facebook-f.svg");
    width: 15px;
    height: 15px;
}

.icon.social-instagram:before {
    content: url("/styles/images/icons/instagram.svg");
    width: 25px;
    height: 25px;
    vertical-align: -2px;
}

.icon.social-youtube:before {
    content: url("/styles/images/icons/youtube.svg");
    width: 25px;
    height: 25px;
}

nav.top .icon:before {
    width: 13px;
    height: 13px;
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(356deg) brightness(113%) contrast(102%);
}
.book_tips .icon:before {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(356deg) brightness(113%) contrast(102%);
}
.grid.account .icon:before,
.social-nav .icon:before,
header .main .icon:before {
    filter: invert(24%) sepia(62%) saturate(948%) hue-rotate(34deg) brightness(90%) contrast(101%);
}
.payment_types .icons .icon:before {
    vertical-align: -6px;
    width: 40px;
    height: 40px;
    filter: invert(67%) sepia(72%) saturate(451%) hue-rotate(25deg) brightness(99%) contrast(103%);
}
.payment_type:nth-of-type(2) .icon.check:before {
    margin-top: 18px;
}
.payment_type .icon.check:before {
    float: right;
    width: 25px;
    height: 25px;
    filter: invert(67%) sepia(72%) saturate(451%) hue-rotate(25deg) brightness(99%) contrast(103%);
}
.grid.account .item .square:hover .icon:before {
    filter: invert(67%) sepia(72%) saturate(451%) hue-rotate(25deg) brightness(99%) contrast(103%);
}
/*************************************/
/* Header                            */
/*************************************/

header {
    background: #bbd31b none repeat scroll 0 0;
    /*background: #fdce44 none repeat scroll 0 0;*/
    height: 80px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
}

header nav.top {
    display: block;
}

header nav.top ul {
    margin-left: 10px;
    padding: 5px 5px;
    float: left;
    display: none;
}

header nav.top ul li {
    float: left;
}

header nav.top ul li a {
    float: left;
    margin-right: 20px;
}

header nav.top a {
    color: white;
}

header nav.top a.newsletter {
    display: none;
}

main {
    display: block;
    width: 100%;
    float: left;
    margin-top: 80px;
}

a#logo {
    background: rgba(0, 0, 0, 0) url("/styles/images/logo2017.svg") no-repeat scroll 0 0 / contain;
    display: inline-block;
    height: 40px;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 145px;
}

a.country {
    margin-top: 6px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    height: 18px;
    margin-left: 0px;
    width: 18px;
    display: none;
    background-size: cover;
    background-repeat: no-repeat;
}

a.switzerland {
    background-image: url("/styles/images/switzerland.png");
}

a.germany {
    background-image: url("/styles/images/germany.png");
}

a.austria {
    background-image: url("/styles/images/austria.png");
}

a.international {
    background-image: url("/styles/images/international.png");
}

header ul.social-nav {
    float: left;
    font-size: 170%;
    margin: 42px 10px 0;
    position: absolute;
}

header ul.social-nav li {
    display: none;
}

header ul.social-nav li a {
    color: #3e4700;
}


a#preview_pdf {
    display: block;
    font-size: 16px;
    background-color: #3e4700;
    color: #bbd31b;
    padding: 1px 20px 1px 10px;
    line-height: 100%;
    border-radius: 3px;
    position: absolute;
    margin: 80px 10px 0;
}

a#preview_pdf i {
    font-size: 18px;
    display: inline-block;
}

a#preview_pdf i:before {
    padding: 3px 3px;
}

a#preview_pdf span {
    margin-top: 4px;
    margin-left: 10px;
    display: inline-block;
}

header div.userinfo {
    padding-top: 5px;
    padding-right: 5px;
    position: absolute;
    top: 27px;
    left: 65px;
    width: auto;
    display: block;
}

header div.userinfo span.legend {
    display: none;
}

header div.userinfo a {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
}

header div.userinfo a.user {
    margin-left: 4px;
    margin-right: 10px;
}

header div.userinfo a span.glyphicons:before {
    padding-right: 5px;
    color: #3e4700;
}

header div.userinfo a span.glyphicons {
    vertical-align: top;
}

header div.userinfo a:hover, header div.userinfo a:hover span.glyphicons:before {
    color: #FFFFFF;
}

header div.main {
    display: none;
}



header ul.main-nav li {
    display: inline-block;
    padding: 5px;
}

header ul.main-nav li:nth-child(2) {
    border-right: 1px solid white;
    padding-right: 15px;
    margin-right: 10px;
}

header ul.main-nav li:last-child {
    border-left: 1px solid white;
    padding-left: 15px;
    margin-left: 10px;
}

header ul.main-nav li i.glyphicons {
    margin-top: -8px;
}

/*

header ul.main-nav li:last-child {
    border-left: 1px solid white;
    padding-left: 15px;
    margin-left: 10px;
}
*/

header form.search-form {
    display: none;
}

header div.main a.search {
    float: right;
}

header div.main a {
    color: #3e4700;
}

header div.main li.selected a {
    color: rgba(255, 255, 255, 1);
}
/*
header div.main a:hover {
    color: rgba(255, 255, 255, 1);
    !*color: rgba(255,255,255, 0.7);*!
}*/

header ul.main-nav li a.search {
    padding-top: 1px;
    font-size: 90%;
}

/*************************************/
/* Sidr                              */
/*************************************/

a#offcanvas-menu {
    border-radius: 8px;
    display: block;
    height: 40px;
    left: 20px;
    padding-top: 5px;
    position: absolute;
    top: 20px;
    width: 30px;
}

a#offcanvas-menu span.bar {
    background-color: #fff;
    border-radius: 3px;
    display: block;
    float: left;
    height: 2px;
    margin-left: 20%;
    margin-top: 6px;
    width: 25px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-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;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

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

.sidr {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 17px;
    width: 220px;
}

.sidr ul li {
    line-height: 38px;
}

.sidr ul li:hover, .sidr ul li.active, .sidr ul li.sidr-class-active {
    line-height: 39px;
}

div#sidr input {
    width: 100%;
    padding: 5px 15px;
    font-size: 17px;
    color: black;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 999998;
    display: none;
}

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

form#search-form-sidr{
    padding-top:15px;
}

.sidr ul.social-nav {
    display: block;
    margin: 15px 0 15px 15px;
    padding: 0;
    border: none;
}
.sidr ul.social-nav li {
    display: inline-block;
    margin: 0;
    line-height: 48px;
    border: none;
}
.sidr ul.social-nav li a {
    padding: 0 5px;
    display: block;
    text-decoration: none;
    color: #333;
}
.sidr ul.social-nav li a:hover {
    box-shadow: none;
}
.sidr ul.social-nav li a.glyphicons:before {
    padding: 0;
}
/*************************************/
/* Slider                            */
/*************************************/
section.slider {
    overflow: hidden;
}

div.flexslider {
    background-color: transparent;
    border: medium none;
    float: left;
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
}

ul.slides {
    float: left;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

ul.slides li {
    position: relative;
}

ul.slides li.slide-first {
}

.flexslider .slides img {
    display: block;
    width: 100%;
    margin-left: 0;
}

ul.slides li img {
    border: none
}

ul.slides li div.flex-caption {
    background-color: rgba(255, 255, 255, 0.5);
    bottom: 60px;
    left: 0;
    letter-spacing: 1px;
    padding: 10px 5px 10px 15px;
    position: absolute;
    text-transform: uppercase;
    width: 450px;
    z-index: 100;
}

ul.slides li div.flex-caption h3 {
    margin-bottom: 0.3em;
    padding-top: 0.3em;
    font-size: 1.5em;
}

ul.slides li div.flex-caption p {
    margin-bottom: 0;
    color: #666666;
    font-size: 27px;
    line-height: 130%;
}

ul.slides li.slide-desktop{
    display: none !important;
}

.flex-control-paging li {
    margin: 0 3px;
}

.flex-control-paging li a {
    float: left;
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background: #666666 none repeat scroll 0 0;
    box-shadow: none;
}

.flex-control-paging li a.flex-active {
    background: #bbd31b none repeat scroll 0 0;
}

.flex-control-paging li a:hover {
    background: #bbd31b none repeat scroll 0 0;
}

.flex-control-nav {
    bottom: -5px;
    position: relative;
    text-align: center;
    width: 100%;
}

ul.flex-direction-nav {
    display: none;
}

.flex-direction-nav a {
    background-color: white;
    border-radius: 100%;
    color: #666666;
    cursor: pointer;
    display: block;
    height: 40px;
    opacity: 1;
    overflow: hidden;
    position: absolute;
    text-decoration: none;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease-in-out 0s;
    width: 40px;
    z-index: 10;
}

.flex-direction-nav a:before {
    content: " ";
    width: 1.1rem;
    height: 1.1rem;
    position: absolute;
    border: 0 solid transparent;
    border-right: .2rem solid #666666;
    border-bottom: .2rem solid #666666;
    transform: rotate(135deg);
    left: 16px;
    top: 14px;
    border-radius: 1px;
}

.flex-direction-nav a.flex-next::before {
    content: " ";
    transform: rotate(-45deg);
    top: 14px;
    left: 11px;
}

.flex-direction-nav .flex-prev {
    left: 50px;
}

.flex-direction-nav .flex-next {
    right: 50px;
    text-align: right;
}

/*************************************/
/* Swiper Video                      */
/*************************************/

div.video-wrap {
    position: relative;
}
.video-preview {
    width: 100%;
    height: 51vw;
    border: 1px solid white;
    margin-bottom: 10px;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
}


.video-overlay {
    background: rgba(0, 0, 0, 0) url("/styles/images/video_play.png") no-repeat scroll 0 0 / contain ;
    height: 60px;
    margin: 22% auto 0;
    width: 60px;
    opacity: 0.8;
}

div.video-embed-placeholder {
    position: relative;
}

div.video-embed-placeholder img {
    opacity: 0.2;
    width: 100%;
}

div.video-embed-placeholder div.overlay {
    text-align: center;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    font-size: 16px;
    padding-top: 25%;
    color: black;
    background: none;
    color: black;
}

div.swiper-button-next {
    right: -40px;
    color: #bbd31b;
}

div.swiper-button-prev {
    left: -40px;
    color: #bbd31b;
}
#video-pagination {
    width: 100%;
    text-align: center;
}
.swiper-pagination-bullet:first-of-type {
    margin-left: 0;
}
.swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    display: inline-block;
    border-radius: 100%;
    background: #666666;
    opacity: 1;
    margin-left: 5px;
}
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #bbd31b;
}

div.responsive-video {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/
    padding-top: 0px;
    height: 0;
    overflow: hidden;
    background-size: cover;
    margin-bottom: 2em;
}

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

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

.intro-image-caption {
    max-width: 650px;
    padding-top: 280px;
    margin-left: auto;
    font-size: 20px;
    line-height: 130%;
    color: white;
    text-align: right;
    font-weight: 300;
    font-style: italic;
}
.intro-image-caption .intro-image-bg {
    padding: 20px calc(((100vw - 1024px) / 2) - 60px) 20px 20px;
}
.intro-image-caption span {
    display: block;
    font-size: 16px;
    margin-top: 5px;
    font-weight: 700;
}

/*******************************************/
/* Main
/*******************************************/

section {
    display: block;
    width: 100%;
    float: left;
    margin-top: 0;
    overflow: hidden;
}

section.home {
    margin-top: 0;
    margin-bottom: 30px;
}
section.event {

}

section.light-grey {
    background-color: #e0e0e0;
}


section.cart {
    margin-top: 30px;
}

section.cart h1 {
    margin-top: 0;
}

section.slider {
    margin-top: 0;
}

section.green {
    background-color: #666666;
    margin-top: 60px;
    color: white;
}

div.content {
    margin: 0 auto;
    max-width: 960px;
    width: 90%;
}

div.intro a,
section div.content a {
    color: var(--global-color-red);
    font-weight:500;
}

section div.content div.recipe_txt ol {
    list-style-type:decimal;
    margin-left: 15px;
}

div.full {
    width: 90%;
    margin: 0 auto;
}

div.cart-summary a,
p.contact a,
p.address a,
div.teamcontact a,
ul.alphabeth-filter a,
div.contact-right a {
    color: #0f0f0f !important;
}

section.address div.delivery a {
    color: #666666 !important;
}

div.cart-summary {
    width: 100%;
}

.flex {
    display: inline-flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.flex.left {
    justify-content: flex-start;
    width: 100%;
}

.row{
    width:100%;
}

section h1 {
    font-size: 230%;
    line-height: 1.1em;
    margin-top: 20px;
    margin-bottom: 15px;
    text-align: left;
    color: rgba(0,0,0,.85);
}

section h2 {
    font-size: 140%;
    color: #666666;
    line-height: 1.2em;
}

section h4 {
    font-size: 100%;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
}

div.full h2 {
    color: #666666;
    font-size: 200%;
    margin-top: 20px;
    text-align: left;
    border-bottom: 3px solid #bbd31b;
    padding-bottom: 0.4em;
    margin-bottom: 20px;
}

section.green h2 {
    color: #FFFFFF;
    padding-bottom: 0;
    line-height: 30px;
    margin-top: 1em;
    margin-bottom: 1em;
    border: none;
    font-size: 200%;
}

section.contact form {
    width: 100%;
}
section.register form{
    width: 100%;
}

section.review form#review h2 {
    width: 100%;
}

section.media div.two-thirds p,
section.rights div.two-thirds p,
section.about div.two-thirds p,
section.about div.two-thirds h2{
    width: 95%;
}


section.contact form h2, section.about h2, section.booktrade h2, .page_no-img h2{
    border-top: 2px solid #b3b3b3;
    clear: both;
    margin-top: 30px;
    padding-top: 10px;
    margin-bottom: 20px;
}

section.booktrade h2 {
    width: 95%;
}

section.green article {
    margin: 15px auto 0;
}

section.media h2 {
    margin-top: 15px;
    color: #000000;
    font-size: 100%;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
}

section.order h2{
    margin-bottom: 10px;
}

section.media p:first-of-type {
    margin-bottom: 10px;
}

.one-third {
    width: 100%;
    float: left;
}

.two-thirds {
    width: 100%;
    float: left;
}

.half{
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

span.glyphicons{
    vertical-align: text-top;
}

span.glyphicons:before {
    padding: 1px 8px 10px 0;
    color: #666666;
}

div.intro {
    margin-bottom: 2em;
}

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

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

.grid .item {
    width: calc(50% - 20px);
    margin-left: 20px;
    margin-bottom: 20px;
    position: relative;
}
.grid .item.box,
.grid .item.half {
    width: calc(100% - 20px);
    margin-left: 20px;
    margin-bottom: 20px;
    position: relative;
}

div.authors div.grid-item{

}

section.rights div.grid-item div.price-tag{
    display: none;
}

.recipe .item,
.grid.videos .item {
    margin-bottom: 10px;
}


/*******************************************/
/* Documents
/*******************************************/

#documents {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    flex-basis: auto;
    margin: 0 0 20px 0;
}

div.page_txt a.document,
a.document {
    margin-bottom: 10px;
    display: block;
    text-align: left;
}

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

a.document span.title {
    line-height: 30px;
    margin-top: 0;
}
/*************************************/
/* Book                              */
/*************************************/

a.book {
    /*align-self: stretch;*/
    margin-bottom: 35px;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-basis: auto;
    flex-direction: column;
}

/*a.book:after { content: attr(data-content); display: inline-block; width: 100%; }*/


a.book:last-of-type {
    margin-right: 0;
}

a.book img {
    width: 100%;
    float: left;
    border-radius: 3px;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.6);
}

a.book figure {
    width: 100%;
    float: left;
    border-radius: 3px;
    margin: 0;
    position: relative;
    display: block;
}

a.book figure:after {
    content: ' ';
    display: block;
    position: absolute;
    box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 3px;
    z-index: 90;
}

a.book figure span.missing {
    color: white;
    font-size: 160%;
    font-weight: bold;
    left: 0;
    position: absolute;
    text-align: center;
    top: 135px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
}

a.book figure .placeholder-title {
    display: none;
}

span.new-tag{

}

span.new-tag img{
    border-radius: 3px;
    box-shadow: none;
    width: 100%;
}


div.price-tag {
    align-self: flex-start;
    background: #bbd31b none repeat scroll 0 0;
    bottom: 12px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    font-size: 110%;
    /*top: calc(53% - 18px);*/
    padding: 4px 0 3px;
    position: absolute;
    right: -0.8em;
    text-align: center;
    font-family: 'Cardo', serif;
    font-style: italic;
    width: 90px;
    height: 25px;
    display: none;
    z-index: 100;
}

a.book p.title {
    float: left;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 0;
    color: black;
    text-align: left;
    line-height: 120%;
}

a.book p.price {
    float: left;
    width: 100%;
    color: #676767;
    text-align: left;
}

section.light-grey a.book p.price {
    color: #595959;
}

a.book div.footer {
    float: left;
    width: 100%;
}

a.book .counter {
    text-align: center;
    display: inline-block;
    font-size: 15px;
    line-height: 16px;
    position: absolute;
    top: 0;
    right: 0;
    color: #FFFFFF;
    z-index: 99;
    padding: 10px 0 0 0;
    font-weight: bold;
    transform: rotate(45deg);
}
a.book .counter:after {
    content: " ";
    position: absolute;
    top: 6px;
    right: -19px;
    width: 80px;
    height: 80px;
    z-index: -1;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    background-color: #bbd31b;
    transform: rotate(-45deg);
    overflow: visible;
}
a.book .counter.preview-tag {
    font-size: 14px;
}
a.book .counter.preview-tag.english {
    font-size: 14px;
    padding: 20px 0 0 2px;
}
a.book .counter.new-tag {
    font-size: 17px;
    padding: 24px 3px 0 0;
}
a.book .counter.preview-tag:after {
    background-color: #1D4D85;
    top: 6px;
    right: -19px;
}
a.book .counter.preview-tag.english:after {
    background-color: #1D4D85;
    top: 1px;
    right: -18px;
}
a.book .counter.new-tag:after {
    background-color: #FCC63D;
    top: 6px;
    right: -19px;
}
a.book .counter em {
    display: block;
    color: white;
    font-size: 22px;
    margin-bottom: 2px;
    font-style: normal;
}

a.book .counter img {
    display: block;
    width: 35px;
    height: 35px;
}


a.book figure div.price-tag span.price {
    color: #000000;
}

a.book figure div.price-tag span.currency {
    color: #FFFFFF;
    margin-left: 5px;
    font-size:14px;
}

a.book-more {
    align-items: flex-start;
    align-self: stretch;
    display: flex;
    border-radius: 3px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    width: 45%;
    background-color: #bbd31b;
    margin-left: 15px;
    height: 250px;
    -webkit-margin-before: 1.35em;
}

a.book-more img {
    margin-right: 5px;
    margin-top: 5px;
    width: 30%;
    height: 70px;
}

a.book-more img:nth-of-type(3n+3) {
    margin-right: 0;
}

a.book-more span.arrow {
}

a.book-more span.arrow:before {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: transparent #ffffff #ffffff transparent;
    border-image: none;
    border-style: solid;
    border-width: 0 0.2rem 0.2rem 0;
    content: "";
    height: 4rem;
    position: absolute;
    transform: rotate(-45deg);
    width: 4rem;
    bottom: 20px;
    right: 15px;
}

a.book-more span.arrow:after {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: transparent #ffffff #ffffff transparent;
    border-image: none;
    border-style: solid;
    border-width: 0 0.2rem 0.2rem 0;
    content: "";
    height: 4rem;
    position: absolute;
    transform: rotate(-45deg);
    width: 4rem;
    bottom: 20px;
    right: 30px;
}

a.book-more span.book-more-category {
    align-self: flex-end;
    color: #ffffff;
    font-size: 100%;
    margin-bottom: 10px;
    width: 93%;
}

/*************************************/
/* Author                            */
/*************************************/

div.authors{
    width:100%;
    justify-content: space-between;
}

a.author, div.author {
    background: no-repeat scroll center center / cover;
    align-self: stretch;
    border: 1px solid #ffffff;
    font-family: 'EB Garamond', serif;
    margin-bottom: 20px;
    position: relative;
    float: left;
}

a.author.gray, div.author.gray {
    filter: grayscale(1.0) brightness(1.1);
}

a.author {
    height: 50vw;
    width: 47%;
}
div.author {
    height: 40vw;
    width: 100%;
}

div.grid .item a.author {
    height: 50vw;
    width: 100%;
}

a.author.missing, div.author.missing {
    background-color: #cccccc;
    background-image: url('/styles/images/missing-author.png');
}

a.author:nth-child(13), a.author:nth-child(14) {
    display: none !important;
}

div.overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0); /* IE6-9 */
    bottom: 0;
    color: #ffffff;
    font-size: 120%;
    height: auto;
    line-height: 100%;
    padding: 10px;
    position: absolute;
    width: 100%;
}

a.author.missing div.overlay {
    color: black;
    background: none;
}

div.jump-target{
    height:100px;
    margin-top: -100px;
    pointer-events: none;
}

div.author_img {
    margin-top: 30px;
    width: 100%;
}

div.author_img img {
    width: 100%;
    filter: grayscale(100%);
}

div.author_txt {
    width: 100%;
    margin-top: 30px;
}

/*************************************/
/* Page Single                       */
/*************************************/

div.page_img {
    float: left;
    width: 100%;
    margin-top: 30px;
}

div.page_img img {
    height: auto;
    width: 100%;
}

div.page_txt {
    float: right;
    width: 100%;
    margin-top: 30px;
}

div.page_txt a{
    margin-top: 10px;
    height: 30px;
    display: inline-block;
}
div.page_txt a span {
    margin-top: 6px;
    position: absolute;
}

div.page_no-img {
    margin-top: 30px;
}

.page_no-img ul {
    list-style-type: disc;
    margin-left: 1.5em;
}

.page-detail-nav {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin-left: -20px;
    padding-top: 5px;
}
section div.content a.page-detail-button {
    color: rgba(0,0,0,.85);
    font-size: 17px;
    margin-left: 20px;
}
section div.content a.page-detail-button:before {
    content: "▶  ︎";
    color: #bbd31b;
    font-size: 13px;
    line-height: 15px;
}
.page-detail {
    margin-bottom: 35px;
}

.page-detail.boxes {
    background-color: #bbd31b;
    padding: 20px 0;
    margin: 0 0 35px 0;
}
.page-detail.boxes .grid {
    width: calc(100% + 20px);
    margin-left: -20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-basis: auto;
}
.page-detail.boxes .grid .item {
    margin: 0 0 20px 20px;
    background-color: #eff4d5;
    padding: 12px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex-basis: auto;
    align-items: flex-start;
    font-size: 15px;
    font-weight: 300;
}
.page-detail.boxes .grid .item:last-of-type {
    margin-bottom: 0;
}

.page-detail.boxes .grid .item h2 {
    margin-bottom: 15px;
    color: rgba(0,0,0,.85);
    width: 100%;
}
.page-detail.boxes .grid .item .box-img {
    max-width: 100px;
    margin-right: 15px;
    margin-bottom: auto;
}

.page-detail.boxes .grid .item .body {

}

.page-detail.boxes .grid .item .body.img {
    width: calc( 100% - 115px);
    height: 100%;
}

.page-detail .grid.page_detail_column .item {
    width: calc( 100% - 20px);
    height: 100%;
}
.page-detail.text span:before,
.page-detail.column span:before,
.page-detail.boxes span:before {
   display: inline-block;
    margin-right: 3px;
    width: 15px;
    height: 15px;
    filter: invert(32%) sepia(0%) saturate(1463%) hue-rotate(228deg) brightness(101%) contrast(69%);
}

.page-detail.text span.phone:before ,
.page-detail.column span.phone:before ,
.page-detail.boxes span.phone:before {
    content: url("/styles/images/icons/phone.svg");
}
.page-detail.text span.fax:before ,
.page-detail.column span.fax:before ,
.page-detail.boxes span.fax:before {
    content: url("/styles/images/icons/fax.svg");
}
.page-detail.text span.email:before ,
.page-detail.column span.email:before ,
.page-detail.boxes span.email:before {
    content: url("/styles/images/icons/envelope.svg");
}
.page-detail.text span.web:before ,
.page-detail.column span.web:before ,
.page-detail.boxes span.web:before {
    content: url("/styles/images/icons/globe.svg");
}

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


div.link_book_list{
    margin-top: 30px;
    margin-bottom: 30px;
    float: left;
}

div.link_book_list a img {
    width: 60px;
    float: left;
}

div.link_book_list a div {
    display: block;
    float: left;
    margin-left: 10px;
    padding-top: 10px;
    color: #bbd31b;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
}



.page-detail.text h2 {
    color: black;
}

/*************************************/
/* news Single                       */
/*************************************/

div.news_img {
    float: left;
    width: 100%;
    margin-top: 30px;
}

div.news_img img {
    height: auto;
    width: 100%;
}

div.news_img div.gallery {
    width: 100%;
    margin-top: 10px;
}

div.news_img div.gallery a {
    width: 100%;
    display: block;
    float: left;
}

div.news_img div.gallery a:nth-of-type(odd) {
    margin-right: 16px;
}
div.news_img div.gallery a img {
    display: block;
    margin-bottom: 16px;
}
div.news_txt {
    float: right;
    width: 100%;
    margin-top: 30px;
}
div.news_txt a{
    display: inline;
}
div.news_txt a span {
    margin-top: 6px;
    position: absolute;
}

/*************************************/
/* Recipe Single                       */
/*************************************/

div.recipe_img {
    float: left;
    width: 100%;
    margin-top: 30px;
}

div.recipe_img img {
    height: auto;
    width: 100%;
}

div.recipe_txt {
    float: right;
    width: 100%;
    margin-top: 30px;
}

div.recipe_txt a{
    display: inline-block;
}
div.recipe_txt a span {
    margin-top: 6px;
    position: absolute;
}

div.tags {
    margin: 35px 0;
}

div.tags h3 {
    color: #bbd31b;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 110%;
    font-weight: normal !important;
}

div.tags a.tag {
    display: inline-block;
    background-color: rgb(220, 220, 220);
    border-radius: 15px;
    color: black;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    line-height: 100%;
    padding: 7px 15px 4px 15px;
    margin: 0 10px 10px 0;
}
.map-img {
    display: block;
    margin: 10px 0 30px 0;
    width: 100%;
}


/*************************************/
/* Book Single                       */
/*************************************/

div.book_img {
    width: 100%;
    margin-bottom: 30px;
    float: left;
}

.content.intro div.book_img {
    margin-top: -100px;
}

.content.intro div.book_img img {
    border: 3px solid #FFFFFF;
    z-index: 9999;
}

div.book_img img {
    width: 100%;
}

div.book_img .wj-share-buttons {
    margin-top: 20px;
}

div.book_img a {
    display: inline-block;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    color: #000000;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
}

div.book_img a.cover {
    margin: 0;
}

div.book_img a.book_view {
    color: #3e4700;
    display: inline-block;
    font-size: 140%;
    height: 25px;
    margin-bottom: 20px;
    padding-right: 10px;
    text-align: right;
}

div.book_img a.book_view:after {
    content: url("/styles/images/icons/reply.svg");
    width: 80px;
    height: 80px;
    display: inline-block;
    -moz-osx-font-smoothing: grayscale;
    filter: invert(67%) sepia(72%) saturate(451%) hue-rotate(25deg) brightness(99%) contrast(103%);
    text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
    margin-top: -40px;
    margin-left: 10px;
    transform: rotate(115deg);
    vertical-align: top;
}

div.book_img a.book_hires,
div.book_img a.book_ebook {
    color: #0f0f0f;
}

div.book_img a.book_hires:before {
    content: url("/styles/images/icons/magnifying-glass.svg");
    width: 17px;
    height: 17px;
    display: inline-block;
}

div.book_img a.book_ebook p {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

div.book_img a.book_ebook:before {
    content: url("/styles/images/icons/tablet-screen.svg");
    width: 17px;
    height: 17px;
    display: inline-block;
}

div.book_img a.book_share_facebook, div.book_img a.book_share_facebook:before {
    color: #3b5998;
}

div.book_img a.book_preview {
    color: #0f0f0f;
}

div.book_img a.book_preview:before {
    content: url("/styles/images/icons/eye.svg");
    width: 17px;
    height: 17px;
    display: inline-block;
}

div.book_img a.book_share_facebook:before {
    content: url("/styles/images/icons/facebook-f.svg");
    width: 17px;
    height: 17px;
    display: inline-block;
}

div.book_img a.book_share_instagram, div.book_img a.book_share_instagram:before {
    color: #f56040;
}

div.book_img a.book_share_instagram:before {
    content: url("/styles/images/icons/instagram.svg");
    width: 17px;
    height: 17px;
    display: inline-block;
}

div.book_txt {
    width: 100%;
    margin-top: 30px;
}

div.book_txt h4 {
    color: black;
}

div.book_txt h1 {
    color: rgba(0,0,0,0.85);
}

div.book_txt ul {
    font-size: 110%;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 15px;
}

div.book_txt ul li {
    font-size: 1em;
    line-height: 22px;
    margin-bottom: 10px;
    margin-left: 5px;
}

div.book_txt ul li:before {
    -moz-osx-font-smoothing: grayscale;
    content: "";
    display: inline-block;
    float: left;
    background-image: url("/styles/images/icons/highlight.svg");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    font-style: normal;
    font-weight: normal;
    margin-left: -20px;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    color: #bbd31b;
}

div.book_txt span.book_info {
    width: 50%;
    font-size: 15px;
    line-height: 140%;
    display: block;
}

div.book_txt span.price {
    display: block;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 150%;
    margin-bottom: 25px;
    margin-top: 20px;
    width: 50%;
}

div.book_txt div.book_award {
    width: 100%;
}

div.book_txt div.book_award a {
    width: 15%;
    margin-right: 2%;
    margin-top: 10px;
    display: inline-block;
}

div.book_txt div.book_award>img {
    width: 15%;
    margin-right: 2%;
    margin-top: 10px;
    display: inline-block;
}

div.book_txt div.book_award a>img {
    width: 100%;
}

div.book_txt div.book_award {
    margin-top: 0;
}

div.book_txt span.availability {
    color: #b30000;
    display: block;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 110%;
    margin-bottom: 16px;
    width: 100%;
}

div.book_txt div.book_more_button {
    float: left;
    margin-top: 30px;
    width: 100%;
}

div.gallery_book_award {
    bottom: -9px;
    height: 90px;
    position: absolute;
    right: -9px;
    width: 90px;
    z-index: 99;
}
div.gallery_book_award img {
    width: 100%;
    border: 1px solid #FFFFFF;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    border-radius: 100%;
}
div.book_tips {
    display: block;
    float: right;
    width: 140px;
}
a.book_recipe {
    border-radius: 50%;
    background-color: #366576;
    color: white !important;
    display: block;
    width: 120px;
    height: 120px;
    overflow: hidden;
    margin-right: 20px;
    text-align: center;
    padding-top: 15px;
    line-height: 120%;
    transform: rotate(10deg);
    margin-bottom: 10px;
}

a.book_recipe i {
    font-size: 32px;
    margin-bottom: 5px;
}

a.book_hike {
    border-radius: 50%;
    background-color: #366576;
    color: white !important;
    display: block;
    width: 120px;
    height: 120px;
    overflow: hidden;
    margin-right: 20px;
    text-align: center;
    padding-top: 15px;
    line-height: 120%;
    transform: rotate(10deg);
    margin-bottom: 10px;
}

a.book_hike i {
    font-size: 32px;
    margin-bottom: 5px;
}

button.shoppingbasket {
    background-color: #fdce44;
    border: medium none;
    clear: both;
    font-size: 110%;
    padding: 5px;
    padding-right: 10px;
    margin: 0;
    cursor: pointer;
}

button.shoppingbasket span.glyphicons {
    vertical-align: top !important;
}

button.shoppingbasket span.button_text {
    display: inline-block;
    margin-top: 4px;
    padding-right: 5px;
}

button.shoppingbasket .glyphicons:before {
    color: black;
    padding: 5px 8px 5px 10px;
}

div.book_txt h3 {
    color: var(--global-color-red);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 110%;
    font-weight: normal !important;
}

div.book_txt strong {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-weight: normal;
}

div.book_description p {
    margin-top: 0.8em;
}

div.book_txt div.book_description, div.book_txt div.book_award, div.book_txt div.book_quote, div.book_txt div.book_author, div.book_txt div.book_video {
    display: block;
    border-top: 2px solid var(--global-color-red);
    margin-bottom: 15px;
    margin-top: 50px;
    width: 100%;
    padding-top: 5px;
    float:left;
}

div.book_txt div.book_video iframe {
    min-width: 100%;
    max-width: 100%;
}

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

div.book_author div.book_author_img {
    filter: grayscale(100%);
    width: 60px;
    height: 80px;
    float: left;
    margin-right: 10px;
    background: no-repeat scroll center center / cover;
    margin-top: 5px;
}

div.book_author div.book_author_text {
    float: left;
    width: calc(100% - 70px);
}

div.book_quote blockquote {
    font-family: 'Cardo', serif;
    font-style: italic;
    font-size: 120%;
    margin-top: 1em;
}

div.book_quote cite {
    font-family: 'Fira Sans Condensed', sans-serif;
    color: #666666;
    font-size: 14px;
}

a.book_tip {
    background: no-repeat scroll center center / cover;
    margin-bottom: 20px;
    position: relative;
    width: 50%;
}

a.book_tip img {
    width: 80%;
}

a.author_single {
    color: #666 !important;
}

/*************************************/
/* CART                              */
/*************************************/

div.shopping-cart {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #3e4700;
    color: #ffffff;
    line-height: 135%;
    height: 40px;
    margin-top: 80px;
    overflow: hidden;
    right: 0;
    vertical-align: middle;
    width: 100%;
    z-index: 999;
}

div.cart-icon:before {
    display: inline-block;
    float: left;
    margin-top: 3px;
    width: 27px;
    height: 27px;
    margin-right: 3px;
    content: url("/styles/images/icons/cart-shopping.svg");
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(356deg) brightness(113%) contrast(102%);
}
div.shopping-cart div.products {
    float: left;
    margin-top: 11px;
    magrin-right: 10px;
}

div.shopping-cart div.total {
    float: left;
    margin-top: 11px;
    margin-left: 10px;
    margin-right: 10px;
}

div.shopping-cart div.total {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
}

.checkout {
    background: #fdce44 none repeat scroll 0 0;
    border: 0 solid transparent;
    margin-top: 5px;
    color: #000;
    display: inline-block;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    left: 5px;
    padding: 5px 6px 6px;
    position: relative;
    text-decoration: none;
}

.checkout:hover {
    /*background:#bbd31b;*/
}


.payment_types .item.payment_type {
    text-align: center;
    border: 1px solid var(--global-color-green);
    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(--global-color-green);
    display: none;
}

.payment_types .item.payment_type h3 {
    width: 100%;
    font-size: 20px;
}
.payment_types .item.payment_type .icons {
    color: var(--global-color-green);
    font-size: 36px;
    width: 100%;
}

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

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

.payment_types .item.payment_type.selected i.fa-check {
    display: block;
}
/*
ul.cart-progress {
    align-items: flex-start;
    clear: both;
    display: flex;
    flex-wrap: nowrap;
    float: left;
    font-size: 16px;
    justify-content: center;
    line-height: 1em;
    list-style-type: none;
    margin: 0 -1px 35px;
    padding: 0;
    text-align: center;
    width: 100%;
    background-color: #ffffff;
}

ul.cart-progress li {
    background: #FFFFFF none repeat scroll 0 0;
    border-bottom: 1px solid #ffffff;
    border-top: 1px solid #ffffff;
    color: #000000;
    float: left;
    margin: 0 1px;
    padding: 10px 0 10px 20px;
    position: relative;
    width: 20%;
    transition: background-color 1000ms linear;
}

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

ul.cart-progress li::before {
    border-bottom: 18px solid transparent;
    border-left: 18px solid #ffffff;
    border-top: 18px solid transparent;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
}

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

ul.cart-progress li:last-child::after {
    border-left: medium none;
}

ul.cart-progress li::after {
    border-bottom: 18px solid transparent;
    border-left: 18px solid #FFFFFF;
    border-top: 18px solid transparent;
    content: "";
    left: 100%;
    position: absolute;
    top: 0;
    z-index: 20;
    transition: border 1000ms linear;
}

ul.cart-progress li.active {
    background: #fdce44 none repeat scroll 0 0;
}

ul.cart-progress li.active::after {
    border-left-color: #fdce44;
}

ul.cart-progress li.completed {
    background: #ffe389 none repeat scroll 0 0;
    color: rgba(0, 0, 0, 0.5);
    !*color: #ffe389;*!
    border-bottom: 1px solid #ffffff;
    border-top: 1px solid #ffffff;

}

ul.cart-progress li.completed::after {
    border-left-color: #ffe389;
}

ul.cart-progress li span:first-of-type:before {
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-family: "Glyphicons Regular", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    margin-right: 5px;
    position: relative;
    top: 1px;
    vertical-align: top;
}

ul.cart-progress li span.cart:before {
    content: "\E203";
}

ul.cart-progress li span.login:before {
    content: "\E204";
}

ul.cart-progress li span.customer:before {
    content: "\E025";
}

ul.cart-progress li span.order:before {
    content: "\E030";
}

ul.cart-progress li span.complete:before {
    content: "\E199";
}

div.cart-summary div {
    align-self: center;
    text-align: center;
    vertical-align: bottom;
    font-size: 110%;
}

div.cart-summary div.count {
    width: 16%;
}

div.cart-summary div.item {
    width: 80%;
    text-align: left;
}

div.cart-summary div.row div.item {
    width: 74%;
}

div.final div.item {
    width: 59%;
}

div.final div.row div.item {
    width: 59%;
}

div.cart-summary div.item_reseller {
    width: 44%;
}

div.cart-summary div.tax {
    width: 15%;
}

div.cart-summary div.price {
    width: 15%;
}

div.cart-summary div.partie {
    height: auto;
}

div.cart-summary div.price-discount {
    width: 10%;
}

div.cart-summary div.price-currency {
    text-align: right;
    font-size: 90%;
}

div.cart-summary div.price-single {
    width: 15%;
}

div.cart-summary div.price-total {
    width: 15%;
    text-align: right;
}

div.cart-summary hr {
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 10px;
}

div.cart-summary hr.cart-top {
    border-top: 2px solid #bbd31b;
}

div.cart-summary hr.cart-bottom {
}

div.cart-summary div.row div {
    vertical-align: top;
    height: 110px;
}

div.cart-summary div.row div.partie {
    vertical-align: top;
    height: auto;
}

div.cart-summary div.row div.count input {
    width: 50%;
    text-align: center;
    padding: 5px;
    font-size: 14px;
}

div.cart-summary div.row div.count select {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 2px;
    border: 1px solid lightgrey;
    width: 50%;
    text-align: center;
    background: none;
    margin-bottom: 0px;
}

div.cart-summary div.row div.count a:before {
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-family: "Glyphicons Regular", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    margin-right: 10px;
    position: relative;
    top: 10px;
    vertical-align: top;
    content: "\E017";
    color: #b40000;
}

div.cart-summary div.row div.item a.item-img img, div.cart-summary div.row div.item_reseller a.item-img img{
    float: left;
    width: 60px;
}

div.cart-summary div.row div.item-description {
    float: left;
    width: 70%;
}

div.cart-summary div.row div.item-description a.item-title {
    float: left;
    padding-left: 15px;
    text-align: left;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    width: 80%;
    font-size: 16px;
}

div.cart-summary div.row div.item-description p {
    float: left;
    padding-left: 15px;
    margin-top: 10px;
    text-align: left;
    font-size: 16px;
    width: 80%;
}

div.cart-summary div.row div.item-description span {
    float: left;
    padding-left: 15px;
    margin-top: 10px;
    text-align: left;
    font-size: 16px;
}

div.cart-summary div.row div.price-currency {

}

div.cart-summary div.row div.price-single {

}

div.cart-summary div.row div.discount {
    width: 10%;
}

div.cart-summary div.row div.price {
    text-align: right;
}

div.cart-summary div.row div.price span.oldprice {
    text-decoration: line-through;
}

div.cart-summary div.row div.price-total {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
}

input[type="number"] {

}

div.cart-summary div.row div.cart-total {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    width: 100%;
    text-align: right;
    height: 30px;
}

div.cart-summary div.row div.cart-total span {
    margin-left: 15px;
}

div.cart-summary div.row div.shipping {
    width: 100%;
    text-align: right;
    height: 30px;
}

div.cart-summary div.row div.total {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    width: 100%;
    text-align: right;
    height: 30px;
}

div.cart-summary-login {
    justify-content: space-between;
    margin-bottom: 60px;
    width: 100%;
}

div.cart-summary-login div {
    display: block;
    font-size: 100%;
    margin-bottom: 15px;
    margin-top: 30px;
    padding-top: 5px;
    width: 45%;
}

div.cart-summary-login h3 {
    color: #bbd31b;
    font-size: 110%;
    margin-bottom: 10px;
    text-transform: uppercase;
}

div.cart-summary-login p {
    margin-bottom: 10px;
}

div.cart-summary-login div a.button {
    margin-top: 10px;
    display: inline-block;
}*/

/*************************************/
/* Events                            */
/*************************************/
article.eventitem {
    width: 49%;
}

div.datebox {
    border: 1px solid rgb(204, 204, 204);
    border-top: 5px solid #bbd31b;
    float: left;
    font-family: Georgia, Times, serif;
    margin-right: 20px;
    padding: 3px;
    width: 75px;
}

div.datebox span.day {
    float: left;
    font-size: 180%;
    font-weight: bold;
    line-height: 13px;
    padding-bottom: 10px;
    padding-top: 3px;
    text-align: center;
    width: 100%;
}

div.datebox div.month_year {
    float: left;
    text-align: center;
    width: 100%;
}

div.datebox div.month_year span.month {
    text-align: center;
}

div.datebox div.month_year span.year {
    color: #666666;
}

div.event-list.grid {
    margin-top: 15px;
    margin-bottom: 40px;
    width: 100%;
    align-items: stretch;
}

.author_txt div.event-list {
    margin-bottom: 0;
}

div.event-list .item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    width: 100%;
    border-bottom: 1px dotted #808080;
}

.author_txt div.event-list .item {
    border-bottom: none;
}

div.event-list .item div.date {
    width: 30%;
}

div.event-list .item a.date {
    float: left;
    width: 100%;
}

div.event-list .item span.time {
    clear: both;
    color: #666666;
    float: left;
    font-size: 0.9em;
    line-height: 20px;
}

div.event-list .item span.category {
    color: #666666;
    float: left;
    font-size: 0.916em;
    letter-spacing: 1px;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    width: 100%;
}

div.event-list .item div.description {
    width: 75%;
    padding-right: 5px;
}

div.event-list .item div.description h2 {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
}

div.event-list .item div.description h3 {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 20px;
}

div.event-list .item div.description p {
    margin-top: 5px;
    padding: 0;
}

div.event-list .item div.image {
    float: right;
    width: 70px;
}

div.event-list .item a {
    border: medium none;
    color: rgba(0,0,0,.9) !important;
}

#event_itemview {
    color: #515151;
}

#event_itemview div.date {
    float: left;
    margin-top: -17px;
    width: 80px;
}

#event_itemview div.datebox {
    color: black;
    margin-top: 15px;
}

#event_itemview div#more_info {
    border-top: 2px solid #bbd31b;
    /*float: left;*/
    margin-top: 20px;
    margin-bottom: 20px;
    width: 66.66%;
}

#event_itemview div#more_info h3 {
    color: #7c8b12;
    float: left;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 1em;
    letter-spacing: 1px;
    margin-left: 0;
    padding: 2px;
    text-transform: uppercase;
    width: 100%;
}

#event_itemview img {
    float: right;
    margin-left: 20px;
}

#event_itemview p {
    margin-top: 15px;
    width: 66.66%;
}

#event_itemview div.attachment {
    clear: both;
    float: left;
    margin-top: 10px;
}

#event_itemview div.attachment img {
    float: left;
    margin-left: 0;
}

#event_itemview div.attachment img a {
    float: left;
}

/*************************************/
/* News                              */
/*************************************/

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

.author_txt .news_listview {
    flex-direction: column-reverse;
}
.author_txt h2 {
    margin-top: 30px;
    padding-top: 3px;
    color: var(--global-color-red);
    text-transform: uppercase;
    border-top: 1px solid var(--global-color-red);
    font-weight: 400;
}

.author_txt .news_listview h3 {
    font-size: 17px;
    color: rgba(0,0,0,.85);
    font-weight: bold;
}

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

.newsitem {
    width: calc(100% - 30px);
    margin-left: 30px;
    margin-bottom: 30px;
}
section div.content a.newsitem {
    color: #0f0f0f;
    font-weight: 300;
}
.videos span.prehead,
#video span.prehead,
.news span.prehead,
.newsitem span.prehead{
    color: #666666;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 1px;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    width: 100%;
}
.videos h3,
#video h3,
.newsitem h3 {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 22px;
    margin-bottom: 5px;
}
.newsitem img {
    width: 100%;
    display: block;
    margin-bottom: 1em;
}

#video .link {
    cursor: pointer;
}
/*************************************/
/* Contact                           */
/*************************************/

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

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

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

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

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

label {
    display: block;
    width: 100%;
}

form.order_complete {
    width: 100%;
    float:left;
    margin-top: 15px;
    text-align: center;
}

form input[type='text'],
form input[type='tel'],
form input[type='email'],
form input[type='password'],
form textarea,
form select {
    border: none;
    border-bottom: 1px solid #cacaca;
    background-color: white;
    width: 80%;
    margin-bottom: 20px;
    padding: 5.5px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: .5px;
}

form:not(#orderform) div.gender {
    width: 40%;
    float: left;
    height: 55px;
}


form#newsletter-form div.gender {
    width:100%;
}

form#newsletter-form div.gender select,
form#newsletter-form input {
    max-width:350px;
}

form div.title {
    width: 50%;
    display: inline-block;
    height: 65px;
}

form div.title:after {
    clear: left;
}

form input.error {
    border-bottom: 2px solid #b40000;
}

form input:active, form select:active, form input:focus, form select:focus {
    border:none;
    border-bottom: 1px solid var(--global-color-red);
}

input[type="radio"]:active, form.search-form input:active, form.search-form select:active, form.search-form input:focus, form.search-form select:focus {
    border: 0 solid transparent;
}

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

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

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

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

label.checkbox input {
    display: none;
}

label.checkbox span {
    height: 18px;
    width: 18px;
    border: 1px solid #b3b3b3;
    display: inline-block;
    float:left;
    margin-right: 5px;
    margin-top: 4px;
    position: relative;
}
label.checkbox p {
    margin-left:25px;
}

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

[type=checkbox]:checked + label.checkbox span {
    border: 1px solid #bbd31b;
}

label.checkbox p {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
/*
form input[type="radio"] {
    clear: both;
    float: left;
    width: 15px;
    margin-bottom: 15px;
    margin-right: 10px;
}*/

form input:focus ,
form select:focus {
    outline: none;
}

form textarea::placeholder,
form input::placeholder {
    color: #676767;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 300;
}

form select {
    color: #676767;
}

/*label.radio {
    padding-top: 1.5px;
}*/

form#delivery_data_edit,
form#invoice_data_edit,
form#login_data_edit,
form#login_data {
    margin-top: 30px;
}
/*  RADIO  */

input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

form div.radio_group {
    margin: 0;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
}
form div.radio_group fieldset{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-basis: auto;
}

label.radio span {
    border: 1px solid #b3b3b3;
    display: block;
    float: left;
    font-size: 22px;
    height: 18px;
    margin-right: 10px;
    margin-top: 2px;
    position: relative;
    width: 18px;
}
label.radio i {
    padding-left: 7px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    font-style: normal;
    display: inline-block;
    width: calc(100% - 28px);
}

[type=radio]:checked + label.radio span:before {
    content: '\2718';
    position: absolute;
    color: var(--global-color-green);
    top: -5px;
    left: 1px;
}

section div.content a.button,
a.button,
button {
    background-color: #fdce44;
    color: #0f0f0f;
    border: medium none;
    clear: both;
    font-size: 110%;
    padding: 5px 10px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
    display: inline-block;
}
section div.content a.button:nth-of-type(2), a.button:nth-of-type(2), button:nth-of-type(2){
    margin: 15px 0 0 0;
}

a.button.right,
button.right {
    margin-left: auto;
}
.button.green,
button.green {
    background-color: #bbd31b;
}

a.button-grey{
    background-color: #4c4c4c;
    color: #ffffff  !important;
    border: medium none;
    clear: both;
    font-size: 110%;
    padding: 5px 10px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    margin: 0 0 15px;
    cursor: pointer;
    display: inline-block;
}

input#expm{
    width:33%;
    margin-right: 2%;
}
input#expy{
    width:33%;
    margin-left: 2%;
}
input#cvv{
    width:33%;
}

form#submitorder button#sendPaymentButton{
    margin-bottom: 30px;
}

h2.top_border_light {
    font-size: 20px;
}

h2.top_border_light:first-of-type {
    margin-top: 20px;
}

div.contact-right {
    border-top: 2px solid #bbd31b;
    margin-bottom: 30px;
}

div.contact-right:first-of-type {
    margin-top: 70px;
}

section.review div.contact-right:first-of-type {
    margin-top: 70px;
}

section.media div.contact-right:first-of-type {
    margin-top: 15px;
}
section.about div.contact-right:first-of-type {
    margin-top: 88px;
}

section.rights div.contact-right:first-of-type {
    margin-top: 70px;
}


div.contact-right h3 {
    color: #bbd31b;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 110%;
    width: 100%;
}

div.contact-right img {
    float: left;
    margin-top: 3px;
    margin-right: 20px;
    height: 80px;
}

div.contact-right img.contactimg {
    margin-right: 50%;
    margin-top: 0;
    width: 50%;
    height: auto;
}

section.about div.contact-right img.contactimg {
    margin-right: 0;
    width: 95%;
}

div.contact-right p.address {
    margin-top: 15px;
    width: 50%;
}
/*************************************/
/* Address Form Invoice & Send        */
/*************************************/

div#invoice_data form, div.delivery form {
    text-align: right;
}

form button.submit_light {
    background-color: #ffffff;
    color: #b3b3b3 !important;
    padding: 0 0 0 3px;
    position: relative;
    top: 10px;
}
form button.submit_light span {
    margin-top:-1px;
}
form button.submit_light span:before {
    padding: 0 6px 9px 0;
}
div#invoice_data{
    border: 3px solid #bbd31b;
    padding: 15px;
    width: 95%;
}
div#invoice_data h2{
    background-color: #ffffff;
    padding-left: 3px;
    position: relative;
    top: -30px;
    width: 163px;
    margin-bottom: -20px;
}
div#invoice_data span.data, div#invoice_data span.label {
    padding-left: 3px;
}
div#invoice_data span.data:first-of-type, div#invoice_data span.data:nth-of-type(2) {
    font-weight: bold;
}
.grid.delivery{
    width: 100%;
}
div.delivery:first-of-type, div.delivery_complete:first-of-type{
    border: 3px solid #bbd31b;
}
div.delivery h2, div.delivery_complete h2{
    background-color: #ffffff;
    padding-left: 3px;
    position: relative;
    top: -30px;
    width: 99px;
}
div.delivery:first-of-type h2, div.delivery_complete:first-of-type h2{
    width: 116px;
}
div.delivery:last-of-type h2{
    width: 166px;
}
div.delivery span.data, div.delivery_complete span.data, div.delivery span.label, div.delivery_complete span.label{
    padding-left: 3px;
}
div.delivery span.data:first-of-type, div.delivery span.data:nth-of-type(2),
div.delivery_complete span.data:first-of-type, div.delivery_complete span.data:nth-of-type(2){
    font-weight: bold;
}

section.order h1{
    margin-bottom: 30px;
}

section.order form{
    width:100%;
    margin-bottom: 30px;
}


div#creditcardForm{
    margin-top: 20px;
    display: none;
}

div#creditcardlogo{
    margin-bottom: 10px;
}

/*************************************/
/* customer account                   */
/*************************************/

div.edit div#invoice_data{
    border: 1px solid #b3b3b3;
}

div.edit div.delivery:first-of-type, div.edit div.delivery_complete:first-of-type{
    border: 1px solid #b3b3b3;
}

div.edit div.delivery:first-of-type h2, div.edit div.delivery_complete:first-of-type h2{
    width: 116px;
}

div.edit div.delivery h2, div.edit div.delivery_complete h2 {
    width: 133px;
}

div.edit div.delivery:last-of-type h2{
    width: 166px;
}

.center {
    max-width: 70%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 35px auto;
}

.center button {
    margin-bottom: 20px;
}

.grid.account .item .square {
    /*border: 2px solid var(--global-color-green);*/
    display: block;
    text-align: center;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0;
    color: #7c8b12;
    font-size: 18px;
}

.grid.account .item .square span.glyphicons {
    font-size: 30px;
}
.grid.account .item .square span.glyphicons:before {
    color: #7c8b12;
}

.square strong {
    font-weight: 500;
}

.grid.account .item .square:hover,
.grid.account .item .square:hover span.glyphicons:before {
    color: var(--global-color-green);
}

.square {
    line-height: 32px;
    padding: 20px;
    border: 1px solid var(--global-color-green);
    text-align: center;
    background-color: rgba(187,211, 28, 0.1);
}

.order_history .square a.button {
    margin: 20px 10px 10px 10px;
    display: inline-block;
}

/*************************************/
/* order complete                    */
/*************************************/

label#label_tokencode{
    margin-top: 10px;
}

input#tokencode {
    width: 30%;
}


/*************************************/
/* About                             */
/*************************************/

section.about ul {
    list-style: circle;
    margin: 10px 0 10px 15px;
}

section.about ul li {
    color: #b3b3b3;
}

section.about ul li span {
    color: black;
}

section.team div.teamcontact {
    width: 100%;
    padding-bottom: 30px;
}

section.team div.teamcontact:last-child {
    margin-bottom: 60px;
}

section.team div.teamcontact img {
    float: left;
    margin-right: 15px;
}

section.links div.link {
    border-bottom: 1px solid #999999;
    margin-bottom: 15px;
    padding-bottom: 15px;
    width: 100%;
    text-align: center;
}

section.links div.link img {
    display: block;
    margin: 0 auto 0 auto;
}
div.teammember{
    width: 100%;
}

/*************************************/
/* Booktrade                         */
/*************************************/

section.booktrade div.contact-right {
    margin-top: 63px;
}

section.register div.contact-right {
    margin-top: 51px;
}

section.booktrade div.contact-right p {
    margin-bottom: 15px;
    width: 100%;
}
section.booktrade div.contact-right p.contact {
    margin-bottom: 15px;
    width: 60%;
}

section.booktrade div.vert1 {
    float: left;
    margin-bottom: 30px;
    width: 50%;
}

section.booktrade div.vert2 {
    margin-bottom: 30px;
    width: 50%;
}

section.booktrade div.vert2 a{
    color: #000000;
}

section.booktrade div.two-thirds h3 {
    width: 100%;
    margin-bottom: 10px;
}

section.register p {
    margin-bottom: 15px;
}

/*************************************/
/* Flyer                             */
/*************************************/

section.flyer div.two-thirds h3 {
    width: 100%;
    margin-bottom: 10px;
}

section.flyer div.bookitem {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #b3b3b3;
    width: 100%;
}

section.flyer div.bookitem:first-of-type {
    margin-top: 15px;
}

section.flyer div.column_left {
    width: 15%;
}

section.flyer div.column_left a {
    width: 85%;
    display: block;
    position: relative;
    /*box-shadow: 0 5px 15px -5px rgba(0,0,0,0.6);*/
}

section.flyer div.column_left a figure {
    /*border-radius: 3px;*/
    width: 100%;
    height: 100%;
    margin: 0;
}

/*
section.flyer div.column_left a figure:after {
    content:'';
    display:block;
    box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.3);
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border-radius: 3px;
}*/

section.flyer div.column_left a figure img {
    width: 100%;
    float: left;
    border-radius: 3px;
}

section.flyer div.column_right {
    width: 85%;
}

section.flyer p.description a {
    display: block;
    margin-top: 10px;
}

/*************************************/
/* Rights  Catalog                   */
/*************************************/

ul.rights_catalog {
    color: #515151;
    float: left;
    list-style: outside none disc;
    margin-left: 13px;
    width: 250px;
}

p.link_book_list{
    margin-top: 30px;
}

p.link_book_list a img {
    width: 60px;
    float: left;
}

p.link_book_list a span {
    display: block;
    float: left;
    margin-left: 10px;
    padding-top: 10px;
    color: #bbd31b;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
}

section.rights .contact-right p:first-of-type {
    margin-bottom: 20px;
}


/*************************************/
/* Vorschau                          */
/*************************************/

div.pdf_catalogue a {
    color: #FFFFFF;
}
div.pdf_catalogue a img {
    width:100%;
}


/*******************************************/
/* Blog                                    */
/*******************************************/

.blog-home a .text-body {
    color: rgba(0,0,0,0.85);
    margin-top: 30px;
}
.blog-home .grid .item {
    flex-direction: column;
    padding-top: 30px;
    width: 100%;
}

.blog-home a figure.img-body {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.blog-home a figure.img-body img{
    max-width: 100%;
}

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

footer {
    display: block;
    width: 100%;
    float: left;
    margin-top: 30px;
    background-color: #6a6a6a;
    color: white;
}

footer a {
    color: white;
}

.footer-links-section {
    display: flex;
}

.footer-links-section a.button {
    background-color: white;
    border: 2px solid #888;
    border-radius: 3px;
    color: white !important;
    margin: 0 auto;
}
.footer-links-section a.button:hover,
.footer-links-section a.button:active,
.footer-links-section a.button:focus {
    background-color: #888;
    color: #fff !important;
}

.footer-links-section button {
    background-color: white;
    border: 2px solid #888;
    border-radius: 3px;
    color: #888 !important;
    display: block;
    font-size: 110%;
    margin-left: auto;
    margin-right: auto;
    outline: 0 none;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1;
    padding: 10px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.07s ease-in-out 0s;
}

.footer-links-section button:hover, .footer-links-section button:active, .footer-links-section button:focus {
    background-color: #888;
    color: #fff !important;
}

#footer_menu_section{
    margin-top: 30px;
}
.footer-links-wrap {
    display: none;
}

.footer-info-wrap {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.footer-address {
    margin-bottom: 30px;
    width: 100%;
}

.footer-address img {
    width: 200px;
    margin-bottom: 20px;
}

.footer-seo-text {
    width: 100%;
}
section .content address a {
    color: #ffffff;
}
.footer-menu-wrap {
    display: block;
    width: 100%;
}

.footer-headline {
    color: white;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 26px;
    margin-top: 20px;
    text-align: center;
}

.footer-ch-logo {
    margin-bottom: -8px;
    margin-left: 6px;
    max-width: 100px;
    width: 100%;
}

.footer-links {
    display: inline-block;
    float: left;
    margin-bottom: 20px;
    width: 100%;
}

.footer-links-title {
    color: white;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-links-list-item a {
    color: white !important;
    display: block;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 5px;
    padding-right: 20px;
    text-decoration: none;
}

.footer-copyright {
    color: white;
    display: inline-block;
    padding-bottom: 15px;
    padding-top: 15px;
    text-align: center;
    width: 100%;
}

div.confirmation {
    font-weight: bold;
    color: #3e4700;
    font-size: 18px;
    margin-bottom: 20px;
}

div.login-form {
    width: 350px;
    margin: 0 auto;
    border-radius: 3px;
    margin-bottom: 50px;
}

div.login-form p,
div.login-form h2 {
    text-align: center;
    color: #808080;
}

div.login-form form {
    margin-top: 20px;
}

div.login-form form input {
    width: 100%;
}

div.login-form form button {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: blocK;
}

span.validatormessage {
    width: 100%;
    display: block;
    margin-top: -20px;
    color: #b40000;
    font-size: 15px;
}

ul.alphabeth-filter {
    display: inline-block;
    width: 100%;
}

ul.alphabeth-filter li {
    display: inline-block;
}

ul.alphabeth-filter li a {
    display: inline-block;
    padding: 10px 10px 10px 2px;
    font-weight: bold;
}


.toTop {
    border-radius: 100%;
    bottom: 40px;
    display: none;
    height: 32px;
    position: fixed;
    right: 50px;
    width: 32px;
    font-size: 32px;
    overflow: visible;
    z-index: 999;
}

.toTop div.background{
    position: relative;
    background-color: #FFFFFF;
    width: 30px;
    height: 30px;
    margin-top: -32px;
    margin-left: -2px;
    border-radius: 100%;
    z-index: -1;
}


.toTop span {
    margin-top: -2px;
    margin-left: -2px;
}
.toTop .icon:before {
    width: 30px;
    height: 30px;
    filter: invert(24%) sepia(62%) saturate(948%) hue-rotate(34deg) brightness(90%) contrast(101%);
}
/*
div.responsive-video {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    margin-bottom: 2em;
}*/

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

.audio-view img {
    width: 100%;
}

.audio-view audio {
    width: 100%;
}

article.agbs p {
    margin-bottom: 0.8em;
}

.page_no-img h3,
article.agbs h3 {
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
}

.page.landing-page iframe {
    width: 100% !important;
    margin: 20px 0 !important;
}

.download_hints {

}

div.distributors {
    float: left;
    margin-top: 2em;
}

div.distributors h3 {
    color: #bbd31b;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 110%;
    border-top: 2px solid #bbd31b;
    padding-top: 5px;
}

div.distributors div.distributor {
    float: left;
    width: 40%;
    margin-right: 10%;
    height: 70px;
}

div.distributors div.distributor a {
    float: left;
    width: 100%;
    text-align: center;
}

div.distributors div.distributor a img {
    width: auto;
    max-width: 100%;
    max-height: 50px;
}
footer ul.social-nav {
    font-size: 170%;
    margin: 22px 0 0 0;
}

footer ul.social-nav li {
    display: inline-block;
    margin-right: 10px;
}

footer ul.social-nav li a {
    color: #FFFFFF;
}

footer ul.social-nav li a:hover {
    color: rgba(255,255,255,0.5);
}

footer ul.social-nav li:last-of-type a.glyphicons {
    display: inline-block;
    vertical-align: unset;
}

footer ul.social-nav li:last-of-type a.glyphicons:before {
    padding: 0;
}
ul.wj-share-buttons li a  {
    margin-right: 5px;
}

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

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

footer .social-nav .icon:before {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(356deg) brightness(113%) contrast(102%);
}

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

@media (min-width: 760px) {

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

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

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

    /*
  .flexslider .slides img {
      width: 100%;
      margin-left: 0;
  }
  */

    ul.flex-direction-nav {
        display: inline-block;
    }

    .flex-direction-nav a {
        width: 40px;
        height: 40px;
    }

    .flex-direction-nav a:before {
        height: 1.1rem;
        left: 16px;
        top: 14px;
        width: 1.1rem;
    }

    .flex-direction-nav a.flex-next:before {
        top: 14px;
        left: 11px;
    }

    .flex-direction-nav .flex-prev {
        left: 20px;
    }

    .flex-direction-nav .flex-next {
        right: 20px;
    }

    div.jump-target{
        height:110px;
        margin-top: -110px;
    }

    .grid .item.half{
        width:calc(50% - 20px);
    }
    .grid .item.thirds {
        width: calc(33.33% - 20px);
    }
    .grid .item.fourth {
        width: calc(25% - 20px);
    }
    .grid.account .item .square {
        padding-top: 30px;
        padding-bottom: 30px;
        margin-bottom: 30px;
        color: #7c8b12;
        font-size: 18px;
    }

    div.news_img {
        float: left;
        width: 35%;
        margin-top: 30px;
    }
    
    div.news_txt {
        float: right;
        width: 60%;
        margin-top: 30px;
    }
    .authorlist div.grid .item a.author {
        height: 30vw;
    }

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

    section.single div.content {
        padding-top: 40px;
    }

    a.book {
        margin-bottom: 35px;
    }

    a.book:nth-child(7), div.flex a.book:nth-child(8), a.book:nth-child(9), a.book:nth-child(10), a.book:nth-child(11), a.book:nth-child(12),
    a.author:nth-child(10), a.author:nth-child(11), a.author:nth-child(12), a.author:nth-child(13), a.author:nth-child(14) {
        display: none !important;
    }

    div.more a.book:nth-child(6) {
        display: none !important;
    }

    div.price-tag {
        font-size: 110%;
    }

    a.book-more {
        margin-bottom: 35px;
        width: 29%;
        height: 300px;
    }

    a.book-more img {
        width: 30%;
    }

    a.book-more span.book-more-category {
        font-size: 130%;
    }

    a.book_tip {
        width: 20%;
    }

    div.overlay{
        font-size: 140%;
    }

    .footer-links {
        width: 25%;
    }
    ul.cart-progress li span.step-name{
        display: none;
    }

    section.team div.teamcontact {
        width: 50%;
    }

    section.register form{
        width: 70%;
    }

    .footer-address {
        width: 40%;
    }
    .footer-seo-text {
        width: 60%;
    }

}

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

@media (min-width: 960px) {



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

    .intro-image {
        height: 350px;
    }

    section.page.single .intro-image {
        height: 350px;
    }

    header {
        background: #bbd31b none repeat scroll 0 0;
        /*background: #fdce44 none repeat scroll 0 0;*/
        height: 80px;
        position: fixed;
        top: 0px;
        width: 100%;
        z-index: 999;
    }

    header nav.top {
        display: block;
    }

    header nav.top ul {
        margin-left: 10px;
        padding: 5px 5px;
        float: left;
        display: none;
    }

    header nav.top ul li {
        float: left;
    }

    header nav.top ul li a {
        float: left;
        margin-right: 20px;
        font-size: 15px;
    }

    header nav.top a {
        color: white;
    }

    header nav.top a.newsletter {
        float: right;
        padding: 5px;
        font-size: 15px;
        margin-right: 20px;
        display: inline-block;
    }

    main {
        display: block;
        width: 100%;
        float: left;
        margin-top: 60px;
    }

    a#logo {
        background: rgba(0, 0, 0, 0) url("/styles/images/logo2017.svg") no-repeat scroll 0 0 / contain;
        display: inline-block;
        height: 40px;
        position: absolute;
        left: 20px;
        top: 20px;
        width: 145px;
    }

    a.country {
        margin-top: 6px;
        font-family: 'FrutigerNextW01-Medium', sans-serif;
        height: 18px;
        margin-left: 0px;
        width: 18px;
        display: none;
        background-size: cover;
        background-repeat: no-repeat;
    }

    a.switzerland {
        background-image: url("/styles/images/switzerland.png");
    }

    a.germany {
        background-image: url("/styles/images/germany.png");
    }

    a.austria {
        background-image: url("/styles/images/austria.png");
    }

    a.international {
        background-image: url("/styles/images/international.png");
    }

    header ul.social-nav {
        float: left;
        font-size: 170%;
        margin: 42px 10px 0;
        position: absolute;
        right: 0px;
    }

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

    header ul.social-nav li a {
        color: #616f00;
    }

    header ul.social-nav li a:hover {
        color: #FFFFFF;
    }

    header ul.social-nav li:last-of-type a.glyphicons {
        display: inline-block;
        vertical-align: unset;
    }

    header ul.social-nav li:last-of-type a.glyphicons:before {
        padding: 0;
    }

    /*******************************************/
    /* From Responsive 980
    /*******************************************/

    header {
        height: 150px;
    }

    header div.userinfo span.legend {
        display: inline-block;
        font-size: 15px;
    }

    a#logo {
        top: 45px;
    }

    a#offcanvas-menu {
        display: none;
    }

    a.country {
        display: inline-block;
    }

    /*header ul.top-nav {*/
    /*display: inline-block;*/
    /*}*/

    header nav.top {
        display: block;
        float: left;
        width: 100%;
        background-color: #666666;
        color: white;
    }

    header nav.top ul{
        display: inline-block;
    }

    header div.main {
        display: block;
        width: 960px;
        height: 39px;
        margin: 110px auto 0;
        font-size: 130%;
        overflow: hidden;
    }

    header div.main a.search {
        margin-top: 3px;
    }

    div.shopping-cart {
        margin-top: 0;
    }

    header form.search-form {
        display: block;
        background-color: #EAEAEA;
        height: 0;
        width: 100%;
        overflow: hidden;
        text-align: center;
        transition: height 1s;
        -moz-transition: height 1s; /* Firefox 4 */
        -webkit-transition: height 1s; /* Safari and Chrome */
        -o-transition: height 1s; /* Opera */
    }

    header input.search-field {
        font-size: 110%;
        background-color: transparent;
        width: 355px;
        height: 30px;
        border: none;
        padding-left: 3px;
        display: inline-block;
        margin-bottom: 0;
        opacity: 0;
        transition: opacity 0.5s;
        -moz-transition: opacity 0.5s; /* Firefox 4 */
        -webkit-transition: opacity 0.5s; /* Safari and Chrome */
        -o-transition: opacity 0.5s; /* Opera */
    }

    header input.search-field:focus {
        outline: none;
        border: none;
    }

    header form.search-form button{
        background-color: #6a6a6a;
        color: #FFFFFF;
        font-size: 16px;
        display: inline-block;
        margin-top: -40px;
        margin-bottom: 0;
        opacity: 0;
        transition: opacity 0.5s;
        -moz-transition: opacity 0.5s; /* Firefox 4 */
        -webkit-transition: opacity 0.5s; /* Safari and Chrome */
        -o-transition: opacity 0.5s; /* Opera */
    }

    input::-webkit-input-placeholder {
        color: #6a6a6a;
        position: relative;
        padding-left: 0;
        -webkit-transition: padding 0.5s;
        /* For Safari 3.1 to 6.0 */
        transition: all 0.5s;
    }

    input:-moz-placeholder {
        /* Firefox 18- */
        color: #6a6a6a;
        position: relative;
        padding-left: 0;
        -moz-transition: padding 0.5s;
        /* For Safari 3.1 to 6.0 */
        transition: all 0.5s;
    }

    input::-moz-placeholder {
        /* Firefox 19+ */
        color: #6a6a6a;
        position: relative;
        padding-left: 0;
        -moz-transition: padding 0.5s;
        /* For Safari 3.1 to 6.0 */
        transition: all 0.5s;
    }

    input:-ms-input-placeholder {
        color: #6a6a6a;
        position: relative;
        padding-left: 0;
        /* For Safari 3.1 to 6.0 */
        transition: all 0.5s;
    }

    /*
    * On hover
    */
    input:hover::-webkit-input-placeholder, input:focus::-webkit-input-placeholder {
        padding-left: 0;
    }

    input:hover:-moz-placeholder, input:focus:-moz-placeholder {
        /* Firefox 18- */
        padding-left: 100px;
    }

    input:hover::-moz-placeholder, input:focus::-moz-placeholder {
        /* Firefox 19+ */
        padding-left: 100px;
    }

    input:hover:-ms-input-placeholder, input:focus:-ms-input-placeholder {
        padding-left: 100px;
    }

    header ul.main-nav {
        position: relative;
        float: left;
    }

    .move-search {
        height: 40px !important;
        padding-top: 4px !important;
    }
    .hide-search {
        margin-top: 0 !important;
        opacity: 1 !important;
    }

    div.contact-right p.address {
        width: 100%;
    }

    header div.userinfo {
        float: right;
        display: block;
        position: relative;
        top: 0;
        left: 0;
    }

    a#logo {
        height: 55px;
        width: 200px;
    }

    header div.userinfo a span.glyphicons::before {
        color: #b3b3b3;
        padding-right: 5px;
    }

    header input.search-field {
        width: 330px;
    }

    main {
        margin-top: 150px;
    }

    .one-third {
        width: 33.33%;
        float: left;
    }

    .two-thirds {
        width: 66.66%;
        float: left;
    }

    section.review form#review {
        width: 95%;
    }

    section.booktrade div.contact-right {
        margin-top: 93px;
    }
    .flex-control-nav {
        bottom: -20px;
    }
    .flex-direction-nav a {
        width: 50px;
        height: 50px;
    }

    .flex-direction-nav a:before {
        height: 1.5rem;
        left: 19px;
        top: 17px;
        width: 1.5rem;
    }

    .flex-direction-nav a.flex-next:before {
        left: 13px;
        top: 17px;
    }

    .flex-direction-nav .flex-prev {
        left: 30px;
    }

    .flex-direction-nav .flex-next {
        right: 30px;
    }

    div.jump-target{
        height:180px;
        margin-top: -180px;
    }

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

    a.author {
        height:25vw;
        width: 24%;
    }

    div.grid .item a.author {
        height: 27vw;
    }

    a.author:nth-child(9) {
        display: none !important;
    }

    a.book:nth-child(7), div.flex a.book:nth-child(8)
        /*a.author:nth-child(9), div.flex a.author:nth-child(10){*/{
        display: block !important;
    }

    div.price-tag {
        font-size: 120%;
    }

    a.book-more {
        width: 21%;
    }

    a.book-more img {
        width: 30%;
    }

    ul.cart-progress li span.step-name{
        font-size: 15px;
        display: inline-block;
    }
    div.cart-summary div.row div.item a{
        width:70%;
    }

    div#invoice_data, div.delivery, div.delivery_complete {
        width: 80%;
    }

    div.event-list .item {
        width: calc(50% - 20px);
    }
    .author_txt div.event-list .item {
        width: calc(100% - 20px);
    }

    .newsitem {
        width: calc(33.33% - 30px);
    }
    .author_txt .newsitem {
        width: calc(100% - 30px);
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: nowrap;
        flex-basis: auto;
    }
    .author_txt .newsitem .text {
        width: calc(66.66% - 15px);
        display: block;
    }
    .author_txt .newsitem figure {
        width: 33.33%;
        margin-left: 15px;
        display: block;
    }

    .author_txt .newsitem figure img{
        width: 100%;
        display: block;
    }

    div.author_img {
        float: left;
        margin-top: 30px;
        width: 33.33%;
    }

    div.author_img img {
        width: 100%;
        filter: grayscale(100%);
    }

    div.author_txt {
        float: right;
        width: 60%;
        margin-top: 30px;
    }

    div.book_img {
        float: left;
        width: 35%;
        margin-top: 30px;
    }

    div.book_txt {
        float: right;
        width: 60%;
        margin-top: 30px;
    }

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

    .grid.half .item {
        width: calc(50% - 40px);
    }
    .grid.thirds .item {
        width: calc(33.33% - 40px);
    }

    .page-detail.boxes .grid .item {
        width: calc(33.33% - 20px);
        margin: 0 0 0 20px;

    }
    /*******************************************/
    /* Slides
    /*******************************************/

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

    .video-preview {
        height: 16vw;
    }


    .grid.videos .item {
        width: calc(33.33% - 20px);
    }

    /*******************************************/
    /* totop
    /*******************************************/

    .toTop {
        bottom: 60px;
        right: 45px;
    }

    div.page_img,
    div.recipe_img {
        float: left;
        width: 35%;
        margin-top: 30px;
    }

    div.page_txt,
    div.recipe_txt {
        float: right;
        width: 60%;
        margin-top: 30px;
    }
}

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

/* Normale Monitore */
@media only screen and (min-width: 1250px) {

    .content.video-wrap .video-preview {
        height: 12vw;
    }

    header div.userinfo a span.glyphicons:before {
        font-size: 11px;
        padding-right: 3px;
    }

    div.shopping-cart {
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
        padding-left: 0;
        margin-top: -21px;
        position: absolute;
        height: 110px;
        right: 0;
        width: 200px;
        z-index: 999;
    }

    div.cart-icon::before {
        font-size: 26px;
        margin-left: 7px;
        margin-right: 15px;
    }

    div.shopping-cart div.products {
        margin-top: 10px;
        margin-right: 0;
        float:none;
    }

    div.shopping-cart div.total {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        float:none;
    }

    .checkout {
        background: #fdce44 none repeat scroll 0 0;
        border: 0 solid transparent;
        bottom: 10px;
        color: #000;
        display: block;
        left: 10px;
        padding: 5px 11px 6px;
        position: absolute;
        text-decoration: none;
        margin-top: 0;
    }


    .flex-direction-nav a {
        width: 60px;
        height: 60px;
    }

    .flex-direction-nav a:before {
        height: 1.8rem;
        left: 24px;
        top: 20px;
        width: 1.8rem;
    }

    .flex-direction-nav a.flex-next:before {
        left: 15px;
        top: 20px;
    }

    .flex-direction-nav .flex-prev {
        left: 40px;
    }

    .flex-direction-nav .flex-next {
        right: 40px;
    }

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

    .authorlist div.grid .item,
    section.rights .grid .item {
        width: calc(16.6667% - 20px);
        padding-right: 0;
    }

    a.book:nth-child(6), a.book:nth-child(9), a.book:nth-child(10),
    a.author:nth-child(9), a.author:nth-child(10), a.author:nth-child(11), div.flex a.author:nth-child(12){
        display: block !important;
    }

    a.author {
        height: 15vw;
        width:15%;
    }

    .authorlist div.grid .item a.author {
        height: 10vw;
    }

    div.price-tag {
        font-size: 120%;
    }

    a.book-more {
        width: 14.3%;
    }

    ul.cart-progress li span.step-name{
        font-size: 16px;
    }
    div.cart-summary div.row div.item a{
        width:70%;
    }
    section.team div.teamcontact {
        width: 50%;
    }

    div.teamcontact img {
        width: 150px;
    }
}

/* Große Monitore */
@media only screen and (min-width: 1590px) {

    header div.main {
        font-size: 140%;
        width: 950px;
    }

    header input.search-field {
        width: 585px;
    }


    .flex-direction-nav a {
        width: 70px;
        height: 70px;
    }

    .flex-direction-nav a:before {
        height: 2rem;
        left: 27px;
        top: 24px;
        width: 2rem;
    }

    .flex-direction-nav a.flex-next:before {
        left: 18px;
        top: 24px;
    }

    .flex-direction-nav .flex-prev {
        left: 40px;
    }

    .flex-direction-nav .flex-next {
        right: 40px;
    }

    a.book-more {
        width: 14.3%;
    }

    a.book-more img {
        height: 90px;
    }

    a.author {
        height:16vw;
    }

    div.grid-item a.author {
        height: 10vw;
    }

    div.more a.book:nth-child(6), a.book:nth-child(9), a.book:nth-child(10), a.book:nth-child(11), a.book:nth-child(12),
    a.author:nth-child(13), a.author:nth-child(14){
        display: block !important;
    }

    div.price-tag {
        font-size: 140%;
    }

    div.cart-summary div.row div.item a{
        width:80%;
    }
}

/* Sehr Große Monitore */
@media only screen and (min-width: 1920px) {
    a.book-more {
        width: 15.3%;
        height: 430px;
    }
    a.book-more img {
        height: 140px;
        margin-top: 15px;
    }
}

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

@media print {

}

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


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

div.cart {
    float: left;
    width: 100%;
}

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

div.cart div.cart-item.header {
    border-bottom: 2px solid #bbd31b;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #909090;
    font-size: 15px;
}

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

div.cart div.cart-item div.image {
    display: none;
}

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

div.cart div.cart-item div.quantity select {
    padding: 5px 10px;
    width: 90%;
    border: 1px solid #b3b3b3;
    background-color: white;
    margin-bottom: 20px;
    font-size: 15px;
}

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

div.cart div.cart-item div.title h3{
    margin: 0 0 5px 0;
}
div.cart div.cart-item div.title h3 a {
    font-weight: 400;
    font-size: 17px;
    color: rgba(0,0,0,0.85);
    margin-bottom: 3px;
}

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

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

div.cart div.cart-item span.mobile-price {
    display: none;
    margin-right: 20px;
}

div.cart div.cart-item p.discount {
    color: #d40000;
}

del {
    color: #d40000;
    font-weight: 300;
}

div.cart div.cart-item.header div {
    font-size: initial !important;
    font-weight: initial !important;
    padding-bottom: 5px;
}

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

div.cart div.cart-item div.sum sup {
    font-size: 11px;
    font-weight: 200;
    position: absolute;
    right: -15px;
    top: -10px;
    text-align: left;
    width: 10px;
}

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

div.cart div.cart-item div.delete a {
    color: #bbd31b;
    font-size: 20px;
    cursor: pointer;
}
div.cart div.cart-item div.delete a.glyphicons:before {
    padding: 2px 5px;
}


div.cart div.item-sum {
    border-top: 1px solid #b4b4b4;
    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: 71%;
    text-align: right;
    margin-right: 2%;
}

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

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

a.nextButton {
    background-color: #bbd31b;
    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: 13px 5px 10px 30px;
    background: #fdce44;
    color: #000000;
    position: relative;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    width: 24%;
    margin: 0 1px;
}

ul.cart-progress li a {
    color: #000000;
}

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

ul.cart-progress li:before {
    content: '';
    border-left: 20px solid #fff;
    border-top: 20px solid transparent;
    border-bottom: 20px 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: 20px solid transparent;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 20;
    border-left-color: #fdce44;
}

ul.cart-progress li.active {
    background: #bbd31b;
}

ul.cart-progress li.active:after {
    border-left-color: #bbd31b;
}

ul.cart-progress li.completed {
    background: #bbd31b none repeat scroll 0 0;
    color: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid #ffffff;
    border-top: 1px solid #ffffff;
}

ul.cart-progress li.completed:after {
    border-left-color: #bbd31b;
}
ul.cart-progress li.completed a {
    color: rgba(0, 0, 0, 0.85);
}

#completeorder {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    flex-wrap: wrap;
}

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

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

form.orderform textarea#note {
    height: 80px !important;
}

/*form.orderform .grid .item:nth-of-type(2){
   display: flex;
    flex-direction: column;
    flex-basis: auto;
    align-items: flex-start;
}*/

form.orderform .grid .item button {
    margin-top: 20px;
}

form#payment-form button.prev-next:first-of-type{
 margin-right: 5px;
}

div.cart div.cart-item div.rebuy {
    width: 20%;
    float: left;
}

div.cart div.cart-item div.rebuy form {
    width: 100%;
    display: inline-block;
}

div.cart div.cart-item div.rebuy form button {
    margin: 0;
}
form#voucher_form {

}

form#voucher_form input.field {
    font-size: 16px;
    padding: 5px 10px;
    width: 100%;
    margin-right: 10px;
    margin-top: 5px;
    float: left;
}
form#completeorder input {
    margin-bottom: 0;
    margin-right: 20px;
}
form#completeorder  {
    margin-bottom: 30px;
}
@media (max-width: 410px){

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

    div.cart div.cart-item div.price {
        display: none;
    }
    div.cart div.cart-item div.title {
        width: 50%;
    }

    div.cart div.cart-item span.mobile-price {
        display: inline-block;
    }

    div.cart div.cart-item span.grind-divider {
        display: none;
    }

    div.cart div.cart-item div.rebuy {
        width: 100%;
    }

    div.cart div.cart-item div.rebuy form {
        width: 100%;
        display: block;
    }

    div.cart div.cart-item div.rebuy form button {
        width: 100%;
    }
}

@media (min-width: 960px) {

    div.cart div.cart-item div.title {
        width: 48%;
    }

    div.cart div.cart-item div.title.title-narrow {
        width: 38%;
    }

    div.cart div.cart-item div.price {
        width: 10%;
    }
    div.cart div.cart-item div.sum {
        width: 10%;
    }
    div.cart div.cart-item div.image {
        float: left;
        width: 10%;
        min-height: 10px;
        text-align: center;
        display: inline-block;
    }

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

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

    form#voucher_form input.field {
        width: 300px;
    }

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

}

