/* res_id: da43dbb38537873e055b5b489d62f55a */

/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.4.2 (24/11/2017)
 */
/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */
@font-face {
    font-family: 'lightcase';
    src: url("../fonts/lightcase.eot?55356177");
    src: url("../fonts/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("../fonts/lightcase.woff?55356177") format("woff"), url("../fonts/lightcase.ttf?55356177") format("truetype"), url("../fonts/lightcase.svg?55356177#lightcase") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* line 12, ../scss/components/fonts/_font-lightcase.scss */
[class*='lightcase-icon-']:before {
    font-family: 'lightcase', sans-serif;
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */
/* line 35, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-play:before {
    content: '\e800';
}

/* line 36, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-pause:before {
    content: '\e801';
}

/* line 37, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-close:before {
    content: '\e802';
}

/* line 38, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-prev:before {
    content: '\e803';
}

/* line 39, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-next:before {
    content: '\e804';
}

/* line 40, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-spin:before {
    content: '\e805';
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */
/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */
/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */
/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */
@-webkit-keyframes lightcase-spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-moz-keyframes lightcase-spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-o-keyframes lightcase-spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-ms-keyframes lightcase-spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes lightcase-spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

/* line 1, ../scss/components/modules/_case.scss */
#lightcase-case {
    display: none;
    position: fixed;
    z-index: 2002;
    top: 50%;
    left: 50%;
    font-family: arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 640px) {
    /* line 16, ../scss/components/modules/_case.scss */
    html[data-lc-type=inline] #lightcase-case, html[data-lc-type=ajax] #lightcase-case {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        margin: 0 !important;
        padding: 55px 0 70px 0;
        width: 100% !important;
        height: 100% !important;
        overflow: auto !important;
    }
}

@media screen and (min-width: 641px) {
    /* line 4, ../scss/components/modules/_content.scss */
    html:not([data-lc-type=error]) #lightcase-content {
        position: relative;
        z-index: 1;
        text-shadow: none;
        background-color: #fff;
        -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
        -o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
        -webkit-backface-visibility: hidden;
    }
}

@media screen and (min-width: 641px) {
    /* line 23, ../scss/components/modules/_content.scss */
    html[data-lc-type=image] #lightcase-content, html[data-lc-type=video] #lightcase-content {
        background-color: #FFF;
    }
}

/* line 31, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

@media screen and (max-width: 640px) {
    /* line 31, ../scss/components/modules/_content.scss */
    html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: none !important;
    }
}

/* line 43, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width: 640px) {
    /* line 43, ../scss/components/modules/_content.scss */
    html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
        padding: 15px;
    }

    /* line 52, ../scss/components/modules/_content.scss */
    html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=error] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
        width: 100% !important;
        max-width: none !important;
    }

    /* line 59, ../scss/components/modules/_content.scss */
    html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
        height: auto !important;
        max-height: none !important;
    }
}

@media screen and (max-width: 640px) {
    /* line 70, ../scss/components/modules/_content.scss */
    html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media screen and (max-width: 640px) and (min-width: 641px) {
    /* line 74, ../scss/components/modules/_content.scss */
    html[data-lc-type=image] #lightcase-content .lightcase-contentInner, html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
        line-height: 0.75;
    }
}

/* line 82, ../scss/components/modules/_content.scss */
html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
    position: relative;
    overflow: hidden !important;
}

@media screen and (max-width: 640px) {
    /* line 91, ../scss/components/modules/_content.scss */
    html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: none !important;
    }
}

@media screen and (min-width: 641px) {
    /* line 100, ../scss/components/modules/_content.scss */
    html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
        padding: 30px;
        overflow: auto;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 640px) {
    /* line 117, ../scss/components/modules/_content.scss */
    #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
        color: #aaa;
    }
}

@media screen and (min-width: 641px) {
    /* line 117, ../scss/components/modules/_content.scss */
    #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
        color: #333;
    }
}

/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
    margin: 0;
    font-size: 17px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #aaa;
}

@media screen and (max-width: 640px) {
    /* line 3, ../scss/components/modules/_error.scss */
    #lightcase-case p.lightcase-error {
        padding: 30px 0;
    }
}

@media screen and (min-width: 641px) {
    /* line 3, ../scss/components/modules/_error.scss */
    #lightcase-case p.lightcase-error {
        padding: 0;
    }
}

/* line 4, ../scss/components/modules/_global.scss */
.lightcase-open body {
    overflow: hidden;
}

/* line 8, ../scss/components/modules/_global.scss */
.lightcase-isMobileDevice .lightcase-open body {
    max-width: 100%;
    max-height: 100%;
}

/* line 1, ../scss/components/modules/_info.scss */
#lightcase-info {
    position: absolute;
    padding-top: 15px;
}

/* line 9, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-weight: normal;
    text-overflow: ellipsis;
}

/* line 19, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title {
    font-size: 17px;
    color: #aaa;
}

@media screen and (max-width: 640px) {
    /* line 19, ../scss/components/modules/_info.scss */
    #lightcase-info #lightcase-title {
        position: fixed;
        top: 10px;
        left: 0;
        max-width: 87.5%;
        padding: 5px 15px;
        background: #333;
    }
}

/* line 33, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-caption {
    clear: both;
    font-size: 13px;
    color: #aaa;
}

/* line 39, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-sequenceInfo {
    font-size: 11px;
    color: #aaa;
}

@media screen and (max-width: 640px) {
    /* line 45, ../scss/components/modules/_info.scss */
    .lightcase-fullScreenMode #lightcase-info {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* line 51, ../scss/components/modules/_info.scss */
    html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
        position: static;
    }
}

/* line 1, ../scss/components/modules/_loading.scss */
#lightcase-loading {
    position: fixed;
    z-index: 9999;
    width: 1.123em;
    height: auto;
    font-size: 38px;
    line-height: 1;
    text-align: center;
    text-shadow: none;
    position: fixed;
    z-index: 2001;
    top: 50%;
    left: 50%;
    margin-top: -0.5em;
    margin-left: -0.5em;
    opacity: 1;
    font-size: 32px;
    text-shadow: 0 0 15px #fff;
    -moz-transform-origin: 50% 53%;
    -webkit-animation: lightcase-spin 0.5s infinite linear;
    -moz-animation: lightcase-spin 0.5s infinite linear;
    -o-animation: lightcase-spin 0.5s infinite linear;
    animation: lightcase-spin 0.5s infinite linear;
}

/* line 20, ../scss/components/mixins/_presets.scss */
#lightcase-loading, #lightcase-loading:focus {
    text-decoration: none;
    color: #fff;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: color, opacity, ease-in-out 0.25s;
    -moz-transition: color, opacity, ease-in-out 0.25s;
    -o-transition: color, opacity, ease-in-out 0.25s;
    transition: color, opacity, ease-in-out 0.25s;
}

/* line 32, ../scss/components/mixins/_presets.scss */
#lightcase-loading > span {
    display: inline-block;
    text-indent: -9999px;
}

/* line 2, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'] {
    position: fixed;
    z-index: 9999;
    width: 1.123em;
    height: auto;
    font-size: 38px;
    line-height: 1;
    text-align: center;
    text-shadow: none;
    outline: none;
    cursor: pointer;
}

/* line 20, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'], a[class*='lightcase-icon-']:focus {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: color, opacity, ease-in-out 0.25s;
    -moz-transition: color, opacity, ease-in-out 0.25s;
    -o-transition: color, opacity, ease-in-out 0.25s;
    transition: color, opacity, ease-in-out 0.25s;
}

/* line 32, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'] > span {
    display: inline-block;
    text-indent: -9999px;
}

/* line 49, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-']:hover {
    color: white;
    text-shadow: 0 0 15px white;
}

/* line 10, ../scss/components/modules/_navigation.scss */
.lightcase-isMobileDevice a[class*='lightcase-icon-']:hover {
    color: #aaa;
    text-shadow: none;
}

/* line 17, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-close {
    position: fixed;
    top: 15px;
    right: 15px;
    bottom: auto;
    margin: 0;
    opacity: 0;
    outline: none;
}

/* line 28, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-prev {
    left: 15px;
}

/* line 33, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-next {
    right: 15px;
}

/* line 38, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
    left: 50%;
    margin-left: -0.5em;
}

@media screen and (min-width: 641px) {
    /* line 38, ../scss/components/modules/_navigation.scss */
    a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
        opacity: 0;
    }
}

@media screen and (max-width: 640px) {
    /* line 2, ../scss/components/modules/_navigation.scss */
    a[class*='lightcase-icon-'] {
        bottom: 15px;
        font-size: 24px;
    }
}

@media screen and (min-width: 641px) {
    /* line 2, ../scss/components/modules/_navigation.scss */
    a[class*='lightcase-icon-'] {
        bottom: 50%;
        margin-bottom: -0.5em;
    }

    /* line 57, ../scss/components/modules/_navigation.scss */
    a[class*='lightcase-icon-']:hover, #lightcase-case:hover ~ a[class*='lightcase-icon-'] {
        opacity: 1;
    }
}

/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
    display: none;
    width: 100%;
    min-height: 100%;
    position: fixed;
    z-index: 2000;
    top: -9999px;
    bottom: -9999px;
    left: 0;
    background: #333;
}

@media screen and (max-width: 640px) {
    /* line 1, ../scss/components/modules/_overlay.scss */
    #lightcase-overlay {
        opacity: 1 !important;
    }
}


/** cookie consent **/
.cc-window {
    opacity: 1;
    transition: opacity 1s ease;


}

.cc-window.cc-invisible {
    opacity: 0;
}

.cc-animate.cc-revoke {
    transition: transform 1s ease;
}

.cc-animate.cc-revoke.cc-top {
    transform: translateY(-2em);
}

.cc-animate.cc-revoke.cc-bottom {
    transform: translateY(2em);
}

.cc-animate.cc-revoke.cc-active.cc-bottom, .cc-animate.cc-revoke.cc-active.cc-top, .cc-revoke:hover {
    transform: translateY(0);
}

.cc-grower {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s;
}

.cc-link, .cc-revoke:hover {
    text-decoration: underline;
}

.cc-revoke, .cc-window {
    position: fixed;
    overflow: hidden;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    line-height: 1.2em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    z-index: 9999;
}

.cc-window.cc-static {
    position: static;
}

.cc-window.cc-floating {
    padding: 2em;
    max-width: 24em;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cc-window.cc-banner {
    padding: 1em 1.8em;
    width: 100%;
    -ms-flex-direction: row;
    flex-direction: row;
}

.cc-revoke {
    padding: .5em;
}

.cc-header {
    font-size: 18px;
    font-weight: 700;
}

.cc-btn, .cc-close, .cc-link, .cc-revoke {
    cursor: pointer;
}

.cc-link {
    opacity: .8;
    display: inline-block;
    padding: .2em;
}

.cc-link:hover {
    opacity: 1;
}

.cc-link:active, .cc-link:visited {
    color: initial;
}

.cc-btn {
    display: block;
    padding: .4em .8em;
    font-size: .9em;
    font-weight: 700;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    white-space: nowrap;
}

.cc-banner .cc-btn:last-child {
    min-width: 140px
}

.cc-highlight .cc-btn:first-child {
    background-color: transparent;
    border-color: transparent;
}

.cc-highlight .cc-btn:first-child:focus, .cc-highlight .cc-btn:first-child:hover {
    background-color: transparent;
    text-decoration: underline;
}

.cc-close {
    display: block;
    position: absolute;
    top: .5em;
    right: .5em;
    font-size: 1.6em;
    opacity: .9;
    line-height: .75
}

.cc-close:focus, .cc-close:hover {
    opacity: 1
}

.cc-revoke.cc-top {
    top: 0;
    left: 3em;
    border-bottom-left-radius: .5em;
    border-bottom-right-radius: .5em
}

.cc-revoke.cc-bottom {
    bottom: 0;
    left: 3em;
    border-top-left-radius: .5em;
    border-top-right-radius: .5em
}

.cc-revoke.cc-left {
    left: 3em;
    right: unset;
}

.cc-revoke.cc-right {
    right: 3em;
    left: unset;
}

.cc-top {
    top: 1em;
}

.cc-left {
    left: 1em;
}

.cc-right {
    right: 1em;
}

.cc-bottom {
    bottom: 1em;
}

.cc-floating > .cc-link {
    margin-bottom: 1em
}

.cc-floating .cc-message {
    display: block;
    margin-bottom: 1em;
}

.cc-window.cc-floating .cc-compliance {
    -ms-flex: 1;
    flex: 1;
}

.cc-window.cc-banner {
    -ms-flex-align: center;
    align-items: center;
}

.cc-banner.cc-top {
    left: 0;
    right: 0;
    top: 0;
}

.cc-banner.cc-bottom {
    left: 0;
    right: 0;
    bottom: 0;
}

.cc-banner .cc-message {
    -ms-flex: 1;
    flex: 1;
}

.cc-compliance {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.cc-compliance > .cc-btn {
    -ms-flex: 1;
    flex: 1;
}

.cc-btn + .cc-btn {
    margin-left: .5em;
}

@media print {
    .cc-revoke, .cc-window {
        display: none;
    }
}

@media screen and (max-width: 900px) {
    .cc-btn {
        white-space: normal;
    }
}

@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
    .cc-window.cc-top {
        top: 0;
    }

    .cc-window.cc-bottom {
        bottom: 0;
    }

    .cc-window.cc-banner, .cc-window.cc-left, .cc-window.cc-right {
        left: 0;
        right: 0;
    }

    .cc-window.cc-banner {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cc-window.cc-banner .cc-compliance {
        -ms-flex: 1;
        flex: 1;
    }

    .cc-window.cc-floating {
        max-width: none;
    }

    .cc-window .cc-message {
        margin-bottom: 1em;
    }

    .cc-window.cc-banner {
        -ms-flex-align: unset;
        align-items: unset;
    }
}

.cc-floating.cc-theme-classic {
    padding: 1.2em;
    border-radius: 5px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
    text-align: center;
    display: inline;
    -ms-flex: none;
    flex: none;
}

.cc-theme-classic .cc-btn {
    border-radius: 5px;
}

.cc-theme-classic .cc-btn:last-child {
    min-width: 140px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
    display: inline-block;
}

.cc-theme-edgeless.cc-window {
    padding: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
    margin: 2em 2em 1.5em;
}

.cc-banner.cc-theme-edgeless .cc-btn {
    margin: 0;
    padding: .8em 1.8em;
    height: 100%;
}

.cc-banner.cc-theme-edgeless .cc-message {
    margin-left: 1em;
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
    margin-left: 0;
}

/** cookie consent end **/

.simple-marquee-container * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

.simple-marquee-container {
    width: 100%;
    background: grey;
    float: left;
    display: inline-block;
    overflow: hidden;
    box-sizing: border-box;
    height: 45px;
    position: relative;
    cursor: pointer;
}

.marquee-sibling {
    padding: 0;
    background: rgb(61, 61, 61);
    width: 20%;
    height: 45px;
    line-height: 42px;
    font-size: 12px;
    font-weight: normal;
    color: #ffffff;
    text-align: center;
    float: left;
    left: 0;
    z-index: 2000;
}

.marquee, *[class^="marquee"] {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
}

.marquee {
    margin-left: 25%;
}

.marquee-content-items {
    display: inline-block;
    padding: 5px;
    margin: 0;
    height: 45px;
    position: relative;
}

.marquee-content-items li {
    display: inline-block;
    line-height: 35px;
    color: #fff;
}

/*
.marquee-content-items li:after{
	content: "|";
	margin: 0 1em;
}
*/


/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
    src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul > li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before, .fa-close:before, .fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before, .fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before, .fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before, .fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before, .fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before, .fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before, .fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before, .fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before, .fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before, .fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before, .fa-users:before {
    content: "\f0c0"
}

.fa-chain:before, .fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before, .fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before, .fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before, .fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before, .fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before, .fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before, .fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before, .fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before, .fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before, .fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before, .fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before, .fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before, .fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before, .fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before, .fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before, .fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before, .fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before, .fa-usd:before {
    content: "\f155"
}

.fa-rupee:before, .fa-inr:before {
    content: "\f156"
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
    content: "\f158"
}

.fa-won:before, .fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before, .fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before, .fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before, .fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before, .fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before, .fa-car:before {
    content: "\f1b9"
}

.fa-cab:before, .fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before, .fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before, .fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before, .fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before, .fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before, .fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before, .fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before, .fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-yc:before, .fa-y-combinator:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
    content: "\f240"
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before, .fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before, .fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before, .fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-tv:before, .fa-television:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-signing:before, .fa-sign-language:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-google-plus-circle:before, .fa-google-plus-official:before {
    content: "\f2b3"
}

.fa-fa:before, .fa-font-awesome:before {
    content: "\f2b4"
}

.fa-handshake-o:before {
    content: "\f2b5"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-o:before {
    content: "\f2b7"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-book-o:before {
    content: "\f2ba"
}

.fa-vcard:before, .fa-address-card:before {
    content: "\f2bb"
}

.fa-vcard-o:before, .fa-address-card-o:before {
    content: "\f2bc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-circle-o:before {
    content: "\f2be"
}

.fa-user-o:before {
    content: "\f2c0"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-drivers-license:before, .fa-id-card:before {
    content: "\f2c2"
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
    content: "\f2c3"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thermometer-2:before, .fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-0:before, .fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
    content: "\f2cd"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-times-rectangle:before, .fa-window-close:before {
    content: "\f2d3"
}

.fa-times-rectangle-o:before, .fa-window-close-o:before {
    content: "\f2d4"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-eercast:before {
    content: "\f2da"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-snowflake-o:before {
    content: "\f2dc"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-meetup:before {
    content: "\f2e0"
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}


@font-face {
    font-display: swap;
    font-family: "Handlee";
    font-style: normal;
    font-weight: 400;
    src: url("/assets/theme/fonts/handlee-v14-latin-regular.eot");
    src: url("/assets/theme/fonts/handlee-v14-latin-regular.eot?#iefix") format("embedded-opentype"), url("/assets/theme/fonts/handlee-v14-latin-regular.woff2") format("woff2"), url("/assets/theme/fonts/handlee-v14-latin-regular.woff") format("woff"), url("/assets/theme/fonts/handlee-v14-latin-regular.ttf") format("truetype"), url("/assets/theme/fonts/handlee-v14-latin-regular.svg#Handlee") format("svg")
}

@font-face {
    font-display: swap;
    font-family: "Pacifico";
    font-style: normal;
    font-weight: 400;
    src: url("/assets/theme/fonts/pacifico-v22-latin-regular.eot");
    src: url("/assets/theme/fonts/pacifico-v22-latin-regular.eot?#iefix") format("embedded-opentype"), url("/assets/theme/fonts/pacifico-v22-latin-regular.woff2") format("woff2"), url("/assets/theme/fonts/pacifico-v22-latin-regular.woff") format("woff"), url("/assets/theme/fonts/pacifico-v22-latin-regular.ttf") format("truetype"), url("/assets/theme/fonts/pacifico-v22-latin-regular.svg#Pacifico") format("svg")
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

body {
    line-height: 1
}

blockquote, q {
    quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

.footer-wrapper {
    background-color: #6d1d29;
    background-image: url("../img/bg_footer_texture.png");
    background-repeat: repeat;
    position: relative;
    margin-top: 18px
}

.footer-wrapper .footer-wrapper-bg {
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    right: 0;
    top: -10px;
    height: 10px;
    background: url("../img/bg_footer_texture_border.png") repeat
}

.footer-wrapper footer {
    position: relative;
    text-align: center;
    color: #FFFFFF;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-height: 400px;
    padding-bottom: 30px;
    padding-top: 20px
}

.footer-wrapper footer .footer-background-img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    background-size: cover;
    background-position: top center
}

.footer-wrapper footer .developer-link-wrapper a {
    opacity: 0.75;
    filter: alpha(opacity=75);
    color: #FFFFFF;
    font-style: italic;
    font-size: 12px
}

#wrapper > .header-wrapper {
    background-color: #ffdd86;
    background: url("../img/bg_header_texture.png") repeat;
    position: relative
}

#wrapper > .header-wrapper .header-wrapper-bg {
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 10px;
    background: url("../img/bg_header_texture_border.png") repeat
}

#wrapper > .header-wrapper #header .header-background-img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    background-size: cover;
    background-position: top center
}

#wrapper > .header-wrapper #header .shadow_top, #wrapper > .header-wrapper #header .shadow_bottom {
    position: absolute;
    width: 100%;
    height: 30px;
    left: 0;
    right: 0;
    opacity: 0.8;
    filter: alpha(opacity=80)
}

#wrapper > .header-wrapper #header .shadow_top {
    top: 0
}

#wrapper > .header-wrapper #header .shadow_bottom {
    bottom: 0
}

.kopfzeile-wrapper #kopfzeile {
    position: relative;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    min-height: 100px
}

.kopfzeile-wrapper #kopfzeile .main-top-navigation {
    display: block
}

.kopfzeile-wrapper #kopfzeile .modul-z-Kopfzeile-Logo {
    text-align: center;
    position: absolute;
    left: 0px;
    right: 0;
    width: 180px;
    z-index: 100
}

@media (max-width: 960px) {
    .kopfzeile-wrapper #kopfzeile .modul-z-Kopfzeile-Logo {
        left: 10px
    }
}

@media (max-width: 640px) {
    .kopfzeile-wrapper #kopfzeile .modul-z-Kopfzeile-Logo {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        left: auto;
        right: auto;
        margin-bottom: 0px
    }
}

.kopfzeile-wrapper #kopfzeile .modul-z-Kopfzeile-Logo img.shadow, .kopfzeile-wrapper #kopfzeile .modul-z-Kopfzeile-Logo img.rahmen_bottom_logo {
    position: absolute;
    left: 0;
    right: 0
}

.kopfzeile-wrapper #kopfzeile .modul-z-Kopfzeile-Logo img.shadow.shadow, .kopfzeile-wrapper #kopfzeile .modul-z-Kopfzeile-Logo img.rahmen_bottom_logo.shadow {
    bottom: -30px;
    height: 30px;
    left: -1%;
    right: -1%;
    width: 102%;
    opacity: 0.5;
    filter: alpha(opacity=50)
}

.kopfzeile-wrapper #kopfzeile .modul-z-Kopfzeile-Logo img.shadow.rahmen_bottom_logo, .kopfzeile-wrapper #kopfzeile .modul-z-Kopfzeile-Logo img.rahmen_bottom_logo.rahmen_bottom_logo {
    width: 100%;
    bottom: -19px;
    height: 20px
}

.kopfzeile-wrapper #kopfzeile .modul-z-Kopfzeile-Logo a {
    display: block;
    background: #FFFFFF;
    padding: 10px;
    padding-top: 20px;
    text-decoration: none
}

.kopfzeile-wrapper #kopfzeile .modul-z-Kopfzeile-Logo a img.logo {
    overflow: hidden;
    max-width: 100%;
    height: auto
}

.kopfzeile-wrapper #kopfzeile .modul-z-Kopfzeile-Logo a:hover {
    text-decoration: none
}

.kopfzeile-wrapper #kopfzeile .modul-z-Kopfzeile-Logo a:hover .label {
    text-decoration: underline
}

.modal201-wrapper {
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    -webkit-transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
    -ms-transition: all 1s ease-in-out 0s;
    transition: all 1s ease-in-out 0s;
    display: none
}

.modal201-wrapper .modal-container {
    margin-top: 100px;
    min-width: 300px;
    max-width: 420px;
    background: white;
    min-height: 200px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7);
    position: relative
}

@media (max-width: 440px) {
    .modal201-wrapper .modal-container {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 10px
    }
}

.modal201-wrapper .modal-container .modal-close-btn {
    cursor: pointer;
    font-size: 24px;
    text-align: center;
    position: absolute;
    padding: 10px;
    top: 0px;
    right: 0px;
    color: #727782;
    opacity: 0.75;
    filter: alpha(opacity=75)
}

.modal201-wrapper .modal-container .modal-close-btn:hover {
    opacity: 1;
    filter: alpha(opacity=100)
}

.modal201-wrapper .modal-container .modal-content {
    padding: 10px
}

.modal201-wrapper .modal-container .modal-content .modal-icon-wrapper {
    margin-top: 24px;
    text-align: center;
    margin-bottom: 24px
}

.modal201-wrapper .modal-container .modal-content .modal-icon-wrapper > span {
    font-size: 60px;
    border: 3px solid #922432;
    color: #922432;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    width: 100px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    -webkit-border-radius: 120px;
    -moz-border-radius: 120px;
    -ms-border-radius: 120px;
    border-radius: 120px
}

.modal201-wrapper .modal-container .modal-content .modal-header {
    font-size: 32px;
    color: #727782;
    margin-bottom: 24px
}

.modal201-wrapper .modal-container .modal-content .modal-text {
    padding: 10px;
    background: #727782;
    color: #FFFFFF;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 24px
}

.modal201-wrapper .modal-container .modal-content .modal-text p {
    font-size: 32px;
    line-height: 1.25
}

.modal201-wrapper .modal-container .modal-content .modal-btn-wrapper {
    text-align: center;
    margin-bottom: 24px
}

.modal201-wrapper .modal-container .modal-content .modal-btn-wrapper > a {
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    padding: 14px 18px;
    padding-bottom: 10px;
    background: #922432;
    text-decoration: none;
    line-height: 1.25;
    color: #FFFFFF;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Handlee", cursive
}

.modal201-wrapper .modal-container .modal-content .modal-btn-wrapper > a:hover {
    background: #6d1d29
}

.modal201-wrapper .modal-container .modal-content .modal-btn-wrapper > a strong {
    font-size: 20px
}

.modal201-wrapper .modal-container .modal-content .modal-btn-wrapper > a small {
    font-size: 14px;
    opacity: 0.75;
    filter: alpha(opacity=75)
}

@media (max-width: 640px) {
    .modal201-wrapper .modal-container .modal-content .modal-btn-wrapper > a {
        font-size: 16px;
        padding: 4px 7px;
        letter-spacing: 0.5px
    }
}

.modal201-wrapper.visible-animation {
    display: block
}

.modal201-wrapper .modal-container {
    -webkit-transform: translate(0, -1000px);
    -ms-transform: translate(0, -1000px);
    -o-transform: translate(0, -1000px);
    transform: translate(0, -1000px);
    -webkit-transition: all 0.5s ease-in-out 0.1s;
    -moz-transition: all 0.5s ease-in-out 0.1s;
    -o-transition: all 0.5s ease-in-out 0.1s;
    -ms-transition: all 0.5s ease-in-out 0.1s;
    transition: all 0.5s ease-in-out 0.1s
}

.modal201-wrapper .modal-container .modal-icon-wrapper > span {
    -webkit-transition: all 1s ease-in-out 0.3s;
    -moz-transition: all 1s ease-in-out 0.3s;
    -o-transition: all 1s ease-in-out 0.3s;
    -ms-transition: all 1s ease-in-out 0.3s;
    transition: all 1s ease-in-out 0.3s;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    opacity: 0;
    filter: alpha(opacity=0)
}

.modal201-wrapper.show-animation {
    background: rgba(146, 36, 50, 0.4)
}

.modal201-wrapper.show-animation .modal-container {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal201-wrapper.show-animation .modal-container .modal-icon-wrapper > span {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
    filter: alpha(opacity=100)
}

.rex-slice-output .modul_abstandshalter_bild .image-wrapper {
    margin-bottom: 0 !important;
    margin-top: 0 !important
}

.modul_abstandshalter_bild {
    position: relative;
    z-index: 5 !important;
    text-align: center
}

.modul_abstandshalter_bild .image-wrapper {
    max-width: 1200px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -16px;
    margin-top: -16px;
    min-height: 32px
}

.modul_abstandshalter_bild .image-wrapper img {
    width: 100%;
    height: auto
}

@media (max-width: 960px) {
    .modul_abstandshalter_bild .image-wrapper {
        margin-bottom: -10px;
        margin-top: -10px;
        min-height: 20px
    }
}

@media (max-width: 640px) {
    .modul_abstandshalter_bild .image-wrapper {
        margin-bottom: -5px;
        margin-top: -5px;
        min-height: 10px
    }
}

.modul_abstandshalter_bild .img-wrapper-rahmen-top, .modul_abstandshalter_bild .img-wrapper-rahmen-bottom {
    position: absolute;
    left: 0;
    right: 0;
    width: auto;
    text-align: center
}

@media (max-width: 980px) {
    .modul_abstandshalter_bild .img-wrapper-rahmen-top, .modul_abstandshalter_bild .img-wrapper-rahmen-bottom {
        width: auto;
        left: 10px;
        right: 10px
    }
}

.modul_abstandshalter_bild .img-wrapper-rahmen-top.img-wrapper-rahmen-top, .modul_abstandshalter_bild .img-wrapper-rahmen-bottom.img-wrapper-rahmen-top {
    top: 15px
}

@media (max-width: 960px) {
    .modul_abstandshalter_bild .img-wrapper-rahmen-top.img-wrapper-rahmen-top, .modul_abstandshalter_bild .img-wrapper-rahmen-bottom.img-wrapper-rahmen-top {
        top: 9px
    }
}

@media (max-width: 640px) {
    .modul_abstandshalter_bild .img-wrapper-rahmen-top.img-wrapper-rahmen-top, .modul_abstandshalter_bild .img-wrapper-rahmen-bottom.img-wrapper-rahmen-top {
        top: 4px
    }
}

.modul_abstandshalter_bild .img-wrapper-rahmen-top.img-wrapper-rahmen-bottom, .modul_abstandshalter_bild .img-wrapper-rahmen-bottom.img-wrapper-rahmen-bottom {
    bottom: 15px
}

@media (max-width: 960px) {
    .modul_abstandshalter_bild .img-wrapper-rahmen-top.img-wrapper-rahmen-bottom, .modul_abstandshalter_bild .img-wrapper-rahmen-bottom.img-wrapper-rahmen-bottom {
        bottom: 9px
    }
}

@media (max-width: 640px) {
    .modul_abstandshalter_bild .img-wrapper-rahmen-top.img-wrapper-rahmen-bottom, .modul_abstandshalter_bild .img-wrapper-rahmen-bottom.img-wrapper-rahmen-bottom {
        bottom: 4px
    }
}

.modul_abstandshalter_bild .img-wrapper-rahmen-top img, .modul_abstandshalter_bild .img-wrapper-rahmen-bottom img {
    position: relative;
    display: block;
    max-width: 980px;
    z-index: 6 !important;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto
}

.modul_abstandshalter_bild .img-wrapper-rahmen-top img.rahmen-half, .modul_abstandshalter_bild .img-wrapper-rahmen-bottom img.rahmen-half {
    display: none
}

@media (max-width: 640px) {
    .modul_abstandshalter_bild .img-wrapper-rahmen-top img.rahmen-half, .modul_abstandshalter_bild .img-wrapper-rahmen-bottom img.rahmen-half {
        display: block
    }
}

@media (max-width: 640px) {
    .modul_abstandshalter_bild .img-wrapper-rahmen-top img.rahmen-full, .modul_abstandshalter_bild .img-wrapper-rahmen-bottom img.rahmen-full {
        display: none
    }
}

.modul_abstandshalter_einfach {
    background: white;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px;
    height: 30px
}

@media (max-width: 960px) {
    .modul_abstandshalter_einfach {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 20px;
        padding-bottom: 10px
    }
}

@media (max-width: 340px) {
    .modul_abstandshalter_einfach {
        padding-top: 5px;
        padding-bottom: 10px
    }
}

.modul_abstandshalter_einfach.abstand--2 {
    height: 60px
}

.modul_abstandshalter_einfach.abstand--3 {
    height: 90px
}

.modul_abstandshalter_einfach.abstand--4 {
    height: 120px
}

.modul_abstandshalter_einfach.abstand--5 {
    height: 150px
}

.modul_abstandshalter_einfach.abstand--6 {
    height: 180px
}

.modul_abstandshalter_einfach.abstand--7 {
    height: 210px
}

.modul_abstandshalter_einfach.abstand--8 {
    height: 240px
}

.modul_abstandshalter_einfach.abstand--9 {
    height: 270px
}

.modul_abstandshalter_einfach.abstand--10 {
    height: 300px
}

.modul_abstandshalter_einfach.abstand--11 {
    height: 330px
}

.modul_abstandshalter_einfach.abstand--12 {
    height: 360px
}

.modul_abstandshalter_einfach.abstand--13 {
    height: 390px
}

.modul_abstandshalter_einfach.abstand--14 {
    height: 420px
}

.modul_abstandshalter_einfach.abstand--15 {
    height: 450px
}

.modul_abstandshalter_einfach.abstand--16 {
    height: 480px
}

.modul_abstandshalter_einfach.abstand--17 {
    height: 510px
}

.modul_abstandshalter_einfach.abstand--18 {
    height: 540px
}

.modul_abstandshalter_einfach.abstand--19 {
    height: 570px
}

.modul_abstandshalter_einfach.abstand--20 {
    height: 600px
}

.modul_abstandshalter_einfach.stile--transparent {
    background: none !important
}

.modul_abstandshalter_logo {
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    opacity: 0.2;
    filter: alpha(opacity=20);
    text-align: center
}

.modul_abstandshalter_logo img {
    position: relative;
    width: 15%;
    margin-left: auto;
    margin-right: auto;
    height: auto
}

@media (max-width: 640px) {
    .modul_abstandshalter_logo img {
        width: 30%
    }
}

.footer-wrapper .modul_abstandshalter_logo {
    opacity: 1;
    filter: alpha(opacity=100)
}

@media (max-width: 340px) {
    .footer-wrapper .modul_abstandshalter_logo {
        width: 80%
    }
}

.modul_abstandshalter_text_mit_hintergrundbild {
    max-width: 1200px;
    height: auto;
    background-size: cover;
    background-position: center, center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -100px auto;
    padding: 150px 0;
    min-height: 300px;
    line-height: 1.25;
    letter-spacing: 1px;
    word-spacing: 2px;
    font-family: "Pacifico", cursiv;
    vertical-align: middle !important
}

@media (max-width: 960px) {
    .modul_abstandshalter_text_mit_hintergrundbild {
        margin: -50px auto;
        padding: 75px 0;
        min-height: 150px
    }
}

@media (max-width: 640px) {
    .modul_abstandshalter_text_mit_hintergrundbild {
        margin: -10px auto;
        padding: 15px 0;
        min-height: 40px
    }
}

.modul_abstandshalter_text_mit_hintergrundbild .overlay-text {
    padding: 32px;
    margin: 32px 0;
    color: #FFFFFF;
    background-color: rgba(127, 20, 35, 0.6);
    font-size: 32px;
    font-weight: 400;
    vertical-align: middle;
    text-align: center
}

.modul_abstandshalter_text_mit_hintergrundbild .overlay-text span {
    vertical-align: middle
}

.modul_abstandshalter_einfach + .modul_inhalt_0_uberschrift {
    padding-top: 40px
}

.modul_inhalt_0_uberschrift {
    background: white;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px;
    padding-bottom: 20px !important
}

@media (max-width: 960px) {
    .modul_inhalt_0_uberschrift {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 20px;
        padding-bottom: 10px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_0_uberschrift {
        padding-top: 5px;
        padding-bottom: 10px
    }
}

.modul_inhalt_0_uberschrift .headline-img {
    position: absolute;
    width: 80px;
    height: auto;
    top: 20px;
    right: 20px
}

@media (max-width: 640px) {
    .modul_inhalt_0_uberschrift .headline-img {
        width: 60px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_0_uberschrift .headline-img {
        width: 40px
    }
}

@media (max-width: 640px) {
    .modul_inhalt_0_uberschrift {
        padding-bottom: 0px !important
    }
}

.modul_inhalt_0_uberschrift.with-headline-img .modul-content {
    margin-top: 40px
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper {
    text-align: center;
    margin-bottom: 0px;
    margin-top: 10px
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    position: relative
}

@media (max-width: 640px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline {
        display: block
    }
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline .headline {
    font-size: 32px;
    font-family: "Pacifico", cursiv;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #922432;
    margin-bottom: 10px;
    line-height: 1.35;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word
}

@media (max-width: 960px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline .headline {
        font-size: 28.8px
    }
}

@media (max-width: 640px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline .headline {
        font-size: 24px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline .headline {
        font-size: 19.2px
    }
}

@media (max-width: 640px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline .headline {
        font-size: 20px
    }
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline h2.headline {
    font-size: 24px;
    font-weight: 300;
    padding: 0;
    margin: 0;
    color: rgba(50, 40, 46, 0.6);
    margin-bottom: 0px;
    margin-top: 6px;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word
}

@media (max-width: 960px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline h2.headline {
        font-size: 21.6px
    }
}

@media (max-width: 640px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline h2.headline {
        font-size: 18px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline h2.headline {
        font-size: 14.4px
    }
}

@media (max-width: 640px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline h2.headline {
        font-size: 400
    }
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline h3.headline {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: left;
    margin-bottom: 12px;
    font-style: italic;
    color: #32282E;
    display: block
}

@media (max-width: 640px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline h3.headline {
        font-size: 16px
    }
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline h4.headline {
    color: #922432;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: none;
    margin-bottom: 6px
}

@media (max-width: 640px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline h4.headline {
        text-decoration: underline
    }
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline .subheadline {
    font-family: "Handlee", cursive;
    font-size: 20px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #922432;
    margin-bottom: 0px;
    margin-top: 12px;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word
}

@media (max-width: 960px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline .subheadline {
        font-size: 18px
    }
}

@media (max-width: 640px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline .subheadline {
        font-size: 15px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline .subheadline {
        font-size: 14px
    }
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline .headline-border-wrapper {
    position: relative;
    text-align: center
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline .headline-border-wrapper .headline-border {
    text-align: center;
    min-width: 200px
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline .headline-border-wrapper .headline-border .headline-border-box-icon {
    color: #922432;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    margin-left: 6px;
    margin-right: 6px;
    font-size: 14px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    opacity: 0;
    filter: alpha(opacity=0)
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper .submodul-headline .headline-border-wrapper .headline-border .headline-border-box {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    width: 40%;
    height: 3px;
    -webkit-transition: all 0.5s ease-in-out 0.4s;
    -moz-transition: all 0.5s ease-in-out 0.4s;
    -o-transition: all 0.5s ease-in-out 0.4s;
    -ms-transition: all 0.5s ease-in-out 0.4s;
    transition: all 0.5s ease-in-out 0.4s;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    background: #fac5cd;
    margin-left: auto;
    margin-right: auto
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper.visible-in-viewport .submodul-headline .headline-border-wrapper .headline-border .headline-border-box {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1)
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper.visible-in-viewport .submodul-headline .headline-border-wrapper .headline-border .headline-border-box-icon {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100)
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper .headline-border-wrapper {
    display: none
}

.modul_inhalt_0_uberschrift .submodul-headline-wrapper.headline--1 .headline-border-wrapper {
    display: block
}

.modul_abstandshalter_einfach + .modul_inhalt_1_spalte_bild {
    padding-top: 30px
}

.modul_inhalt_1_spalte_bild {
    background: white;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px;
    position: relative
}

@media (max-width: 960px) {
    .modul_inhalt_1_spalte_bild {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 20px;
        padding-bottom: 10px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_1_spalte_bild {
        padding-top: 5px;
        padding-bottom: 10px
    }
}

.modul_inhalt_1_spalte_bild .modul-background {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    background-size: cover
}

.modul_inhalt_1_spalte_bild .modul-image {
    text-align: center;
    position: relative;
    margin-bottom: 32px;
    margin-top: 32px
}

.modul_inhalt_1_spalte_bild .modul-image .image-wrapper-for-title {
    max-width: 80%;
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    margin-left: auto;
    margin-right: auto
}

.modul_inhalt_1_spalte_bild .modul-image .image-wrapper-for-title img {
    max-width: 100%
}

.modul_inhalt_1_spalte_bild .modul-image .img-caption {
    display: block;
    font-size: 14px;
    color: rgba(50, 40, 46, 0.6);
    text-align: justify;
    letter-spacing: 0.2px;
    line-height: 1.5;
    font-style: italic;
    padding: 5px;
    text-align: center
}

@media (max-width: 640px) {
    .modul_inhalt_1_spalte_bild .modul-image .img-caption {
        text-align: left;
        line-height: 1.35
    }
}

.modul_inhalt_1_spalte_bild .modul-image a:hover {
    text-decoration: none
}

.modul_inhalt_1_spalte_bild .modul-image a:hover img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03)
}

.modul_inhalt_1_spalte_bild .modul-content {
    position: relative;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
    text-align: left
}

.modul_inhalt_1_spalte_bild .modul-content.text-of-html-editor p {
    font-size: 16px !important;
    text-align: left
}

@media (max-width: 640px) {
    .modul_inhalt_1_spalte_bild .modul-content {
        margin: 12px 20px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_1_spalte_bild .modul-content {
        margin: 12px 10px
    }
}

.modul_abstandshalter_einfach + .modul_inhalt_1_spalte_text {
    padding-top: 30px
}

.modul_inhalt_1_spalte_text {
    background: white;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px
}

@media (max-width: 960px) {
    .modul_inhalt_1_spalte_text {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 20px;
        padding-bottom: 10px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_1_spalte_text {
        padding-top: 5px;
        padding-bottom: 10px
    }
}

.modul_inhalt_1_spalte_text .modul-content {
    position: relative;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.25;
    text-align: left
}

.modul_inhalt_1_spalte_text .modul-content.text-of-html-editor p {
    font-size: 16px !important;
    text-align: left
}

@media (max-width: 640px) {
    .modul_inhalt_1_spalte_text .modul-content {
        margin: 12px 20px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_1_spalte_text .modul-content {
        margin: 12px 10px
    }
}

.modul_abstandshalter_einfach + .modul_inhalt_2_spalten_mit_text_und_hintergrundbild {
    padding-top: 30px
}

@media (max-width: 960px) {
    .modul_inhalt_2_spalten_mit_text_und_hintergrundbild + .modul_inhalt_2_spalten_mit_text_und_hintergrundbild {
        margin-top: 20px;
        padding-top: 20px
    }
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild {
    position: relative;
    text-align: center;
    background: white;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px
}

@media (max-width: 960px) {
    .modul_inhalt_2_spalten_mit_text_und_hintergrundbild {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 20px;
        padding-bottom: 10px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_2_spalten_mit_text_und_hintergrundbild {
        padding-top: 5px;
        padding-bottom: 10px
    }
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .header-wrapper {
    margin-bottom: 24px;
    display: block
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .header-wrapper h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: left;
    margin-bottom: 12px;
    font-style: italic;
    color: #32282E;
    display: block;
    text-align: center
}

@media (max-width: 640px) {
    .modul_inhalt_2_spalten_mit_text_und_hintergrundbild .header-wrapper h3 {
        font-size: 16px
    }
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper {
    text-align: left;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    width: 40%;
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
    color: rgba(50, 40, 46, 0.6);
    font-size: 400;
    position: relative;
    padding: 0 4%
}

@media (max-width: 960px) {
    .modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper {
        width: auto;
        margin-left: auto;
        margin-right: auto;
        display: block;
        padding: 10px;
        max-width: 420px
    }
}

@media (max-width: 640px) {
    .modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper {
        padding: 10px;
        text-align: left
    }
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content {
    min-height: 180px
}

@media (max-width: 960px) {
    .modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content {
        min-height: 100px
    }
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-headline {
    color: #922432;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: none;
    margin-bottom: 6px
}

@media (max-width: 640px) {
    .modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-headline {
        text-decoration: underline
    }
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-text {
    font-size: 14px;
    color: rgba(50, 40, 46, 0.6);
    text-align: justify;
    letter-spacing: 0.2px;
    line-height: 1.5;
    color: inherit
}

@media (max-width: 640px) {
    .modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-text {
        text-align: left;
        line-height: 1.35
    }
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-text p {
    line-height: inherit
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .text-of-html-editor p {
    font-size: 16px !important;
    text-align: left
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-image {
    text-align: center
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-image img {
    height: auto;
    max-width: 100%
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-image.modul-image--outline img {
    border: 3px solid #cad3e2
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-image .img-caption {
    display: block;
    font-size: 14px;
    color: rgba(50, 40, 46, 0.6);
    text-align: justify;
    letter-spacing: 0.2px;
    line-height: 1.5;
    font-style: italic;
    padding: 5px;
    text-align: center
}

@media (max-width: 640px) {
    .modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-image .img-caption {
        text-align: left;
        line-height: 1.35
    }
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content a:hover .img-caption {
    text-decoration: none;
    color: #922432
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-sonderfunction {
    color: inherit;
    text-align: left;
    margin-bottom: 12px
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-sonderfunction ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-sonderfunction ul li {
    display: block
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-sonderfunction ul li a {
    margin-left: -5px;
    margin-right: -5px;
    font-size: 16px;
    display: block;
    color: inherit;
    padding: 5px 10px;
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    text-decoration: none;
    letter-spacing: 1px
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-sonderfunction ul li a small {
    display: block;
    font-size: 16px
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-sonderfunction ul li a:hover {
    background: #922432
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-button .link-btn {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Handlee", cursive;
    color: #922432;
    padding: 6px 10px;
    padding-left: 0;
    padding-bottom: 1px;
    text-decoration: none;
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    display: block;
    text-align: left;
    margin-bottom: 6px
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-button .link-btn:hover {
    text-decoration: underline
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-button .link-btn .link-prefix {
    padding-right: 5px
}

@media (max-width: 640px) {
    .modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper .modul-content .modul-button .link-btn {
        font-size: 14px
    }
}

.modul_inhalt_2_spalten_mit_text_und_hintergrundbild .modul-content-wrapper.modul-content-wrapper--with-background {
    background-size: cover
}

.modul_inhalt_3_spalten_leistungsuebersicht {
    background: white;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px
}

@media (max-width: 960px) {
    .modul_inhalt_3_spalten_leistungsuebersicht {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 20px;
        padding-bottom: 10px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_3_spalten_leistungsuebersicht {
        padding-top: 5px;
        padding-bottom: 10px
    }
}

.modul_inhalt_3_spalten_leistungsuebersicht .box-wrapper {
    text-align: center
}

.modul_inhalt_3_spalten_leistungsuebersicht .box-wrapper .box {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    max-width: 270px;
    min-height: 50px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    color: rgba(50, 40, 46, 0.6);
    line-height: 1.25
}

@media (max-width: 680px) {
    .modul_inhalt_3_spalten_leistungsuebersicht .box-wrapper .box {
        max-width: 640px;
        margin-left: 10px;
        margin-right: 10px
    }
}

.modul_inhalt_3_spalten_leistungsuebersicht .box-wrapper .box .box_headline {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: left;
    margin-bottom: 12px;
    font-style: italic;
    color: #32282E;
    display: block
}

@media (max-width: 640px) {
    .modul_inhalt_3_spalten_leistungsuebersicht .box-wrapper .box .box_headline {
        font-size: 16px
    }
}

.modul_inhalt_3_spalten_leistungsuebersicht .box-wrapper .box .box_content {
    font-size: 14px;
    color: rgba(50, 40, 46, 0.6);
    text-align: justify;
    letter-spacing: 0.2px;
    line-height: 1.5;
    text-align: left
}

@media (max-width: 640px) {
    .modul_inhalt_3_spalten_leistungsuebersicht .box-wrapper .box .box_content {
        text-align: left;
        line-height: 1.35
    }
}

.modul_inhalt_3_spalten_leistungsuebersicht .box-wrapper .box .btn-wrapper a {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Handlee", cursive;
    color: #922432;
    padding: 6px 10px;
    padding-left: 0;
    padding-bottom: 1px;
    text-decoration: none;
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    display: block;
    text-align: left
}

.modul_inhalt_3_spalten_leistungsuebersicht .box-wrapper .box .btn-wrapper a:hover {
    text-decoration: underline
}

.modul_inhalt_3_spalten_leistungsuebersicht .box-wrapper .box .btn-wrapper a .link-prefix {
    padding-right: 5px
}

@media (max-width: 640px) {
    .modul_inhalt_3_spalten_leistungsuebersicht .box-wrapper .box .btn-wrapper a {
        font-size: 14px
    }
}

.modul_inhalt_bilder_galerie {
    position: relative;
    text-align: center;
    background: white;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px;
    background: white
}

@media (max-width: 960px) {
    .modul_inhalt_bilder_galerie {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 20px;
        padding-bottom: 10px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_bilder_galerie {
        padding-top: 5px;
        padding-bottom: 10px
    }
}

.modul_inhalt_bilder_galerie .image-wrapper {
    margin: 20px
}

.modul_inhalt_bilder_galerie .image-wrapper-for-title {
    max-width: 90%;
    margin: 5px;
    vertical-align: top;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px
}

.modul_inhalt_bilder_galerie .image-wrapper-for-title img {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    height: auto;
    max-width: 100%;
    margin: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px
}

.modul_inhalt_bilder_galerie.modul-style--1 .image-wrapper-for-title {
    max-width: 90%;
    margin-bottom: 20px
}

.modul_inhalt_bilder_galerie.modul-style--2 .image-wrapper-for-title {
    max-width: 45%
}

@media (max-width: 640px) {
    .modul_inhalt_bilder_galerie.modul-style--2 .image-wrapper-for-title {
        max-width: 90%
    }
}

.modul_inhalt_bilder_galerie.modul-style--3 .image-wrapper-for-title {
    max-width: 30%
}

@media (max-width: 640px) {
    .modul_inhalt_bilder_galerie.modul-style--3 .image-wrapper-for-title {
        max-width: 90%
    }
}

.modul_inhalt_bilder_galerie.modul-style--4 .image-wrapper-for-title {
    max-width: 23%
}

@media (max-width: 640px) {
    .modul_inhalt_bilder_galerie.modul-style--4 .image-wrapper-for-title {
        max-width: 90%
    }
}

.modul_inhalt_bilder_galerie.modul-style--5 .image-wrapper-for-title {
    max-width: 18%
}

@media (max-width: 640px) {
    .modul_inhalt_bilder_galerie.modul-style--5 .image-wrapper-for-title {
        max-width: 90%
    }
}

.modul_inhalt_bilder_galerie .link-btns-wrapper {
    text-align: center
}

.modul_inhalt_bilder_galerie .link-btns-wrapper a.link-btn {
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    padding: 14px 18px;
    padding-bottom: 10px;
    background: #922432;
    text-decoration: none;
    line-height: 1.25;
    color: #FFFFFF;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Handlee", cursive;
    margin: 5px;
    line-height: 1.25
}

.modul_inhalt_bilder_galerie .link-btns-wrapper a.link-btn:hover {
    background: #6d1d29
}

.modul_inhalt_bilder_galerie .link-btns-wrapper a.link-btn strong {
    font-size: 20px
}

.modul_inhalt_bilder_galerie .link-btns-wrapper a.link-btn small {
    font-size: 14px;
    opacity: 0.75;
    filter: alpha(opacity=75)
}

@media (max-width: 640px) {
    .modul_inhalt_bilder_galerie .link-btns-wrapper a.link-btn {
        font-size: 16px;
        padding: 4px 7px;
        letter-spacing: 0.5px
    }
}

.modul_inhalt_buttons {
    background: white;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px
}

@media (max-width: 960px) {
    .modul_inhalt_buttons {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 20px;
        padding-bottom: 10px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_buttons {
        padding-top: 5px;
        padding-bottom: 10px
    }
}

.modul_inhalt_buttons .link-btns-wrapper {
    text-align: center
}

.modul_inhalt_buttons .link-btns-wrapper a.link-btn {
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    padding: 14px 18px;
    padding-bottom: 10px;
    background: #922432;
    text-decoration: none;
    line-height: 1.25;
    color: #FFFFFF;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Handlee", cursive;
    margin: 5px;
    line-height: 1.25
}

.modul_inhalt_buttons .link-btns-wrapper a.link-btn:hover {
    background: #6d1d29
}

.modul_inhalt_buttons .link-btns-wrapper a.link-btn strong {
    font-size: 20px
}

.modul_inhalt_buttons .link-btns-wrapper a.link-btn small {
    font-size: 14px;
    opacity: 0.75;
    filter: alpha(opacity=75)
}

@media (max-width: 640px) {
    .modul_inhalt_buttons .link-btns-wrapper a.link-btn {
        font-size: 16px;
        padding: 4px 7px;
        letter-spacing: 0.5px
    }
}

.modul_inhalt_buttons .link-btns-wrapper a.link-btn.active {
    text-decoration: underline
}

.modul_inhalt_FAQ_Frage_und_Antwort {
    background: white;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px;
    background: white
}

@media (max-width: 960px) {
    .modul_inhalt_FAQ_Frage_und_Antwort {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 20px;
        padding-bottom: 10px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_FAQ_Frage_und_Antwort {
        padding-top: 5px;
        padding-bottom: 10px
    }
}

.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper {
    margin: 6px 40px
}

@media (max-width: 640px) {
    .modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper {
        margin: 6px 20px
    }
}

@media (max-width: 340px) {
    .modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper {
        margin: 6px 10px
    }
}

.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .more-btn {
    font-size: 14px;
    display: block;
    padding: 3px 5px;
    margin-left: -5px;
    cursor: pointer
}

.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .more-btn:hover {
    text-decoration: underline
}

.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .question {
    text-transform: none;
    color: #922432;
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 6px
}

.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .answer {
    font-size: 14px;
    color: rgba(50, 40, 46, 0.6);
    text-align: justify;
    letter-spacing: 0.2px;
    line-height: 1.5;
    position: relative;
    line-height: 1.25;
    text-align: left;
    font-size: 16px !important
}

@media (max-width: 640px) {
    .modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .answer {
        text-align: left;
        line-height: 1.35
    }
}

.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .answer .text-of-html-editor p {
    font-size: 16px !important
}

.modul_special_sitemap {
    background: white;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px
}

@media (max-width: 960px) {
    .modul_special_sitemap {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 20px;
        padding-bottom: 10px
    }
}

@media (max-width: 340px) {
    .modul_special_sitemap {
        padding-top: 5px;
        padding-bottom: 10px
    }
}

.modul_special_sitemap .sitemap-links-wrapper {
    text-align: center
}

.modul_special_sitemap .sitemap-links-wrapper .sitemap-links {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    text-align: left
}

.modul_special_sitemap .sitemap-links-wrapper .sitemap-links li {
    list-style: none;
    margin-left: 10px
}

.modul_special_sitemap .sitemap-links-wrapper .sitemap-links a {
    display: block;
    padding: 10px 20px;
    color: #922432;
    background: #cad3e2;
    margin-bottom: 1px;
    text-decoration: none;
    cursor: pointer
}

.modul_special_sitemap .sitemap-links-wrapper .sitemap-links a:hover {
    background: #922432;
    color: #FFFFFF
}

.modul_special_sitemap .sitemap-links-wrapper .sitemap-links a.category-link {
    background: #922432;
    color: #FFFFFF;
    font-weight: 600
}

.modul_special_sitemap .sitemap-links-wrapper .sitemap-links a.category-link:hover {
    color: #922432;
    background: #FFFFFF
}

.modul_Special_Ladengeschaeft {
    background: white;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px
}

@media (max-width: 960px) {
    .modul_Special_Ladengeschaeft {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 20px;
        padding-bottom: 10px
    }
}

@media (max-width: 340px) {
    .modul_Special_Ladengeschaeft {
        padding-top: 5px;
        padding-bottom: 10px
    }
}

.modul_Special_Ladengeschaeft .map_and_hint_wrapper, .modul_Special_Ladengeschaeft .kontakt_info_wrapper {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    width: 48%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 16px
}

@media (max-width: 760px) {
    .modul_Special_Ladengeschaeft .map_and_hint_wrapper, .modul_Special_Ladengeschaeft .kontakt_info_wrapper {
        width: auto;
        max-width: 90%;
        margin-bottom: 60px;
        margin-left: auto;
        margin-right: auto
    }

    .modul_Special_Ladengeschaeft .map_and_hint_wrapper .map_content, .modul_Special_Ladengeschaeft .kontakt_info_wrapper .map_content {
        display: -moz-inline-stack;
        display: inline-block;
        zoom: 1;
        *display: inline;
        vertical-align: middle
    }
}

@media (max-width: 760px) {
    .modul_Special_Ladengeschaeft .map_and_hint_wrapper.map_and_hint_wrapper, .modul_Special_Ladengeschaeft .kontakt_info_wrapper.map_and_hint_wrapper {
        display: block
    }
}

@media (max-width: 640px) {
    .modul_Special_Ladengeschaeft .map_and_hint_wrapper, .modul_Special_Ladengeschaeft .kontakt_info_wrapper {
        font-size: 14px
    }
}

.modul_Special_Ladengeschaeft .map_and_hint_wrapper .map_canvas_wrapper {
    position: relative
}

.modul_Special_Ladengeschaeft .map_and_hint_wrapper .map_canvas_wrapper .map_canvas {
    width: 90%;
    height: 300px;
    margin-bottom: 6px;
    margin-left: auto;
    margin-right: auto
}

.modul_Special_Ladengeschaeft .map_and_hint_wrapper .map_canvas_wrapper .anti-drag-overlay-for-mobil {
    display: none
}

@media (max-width: 640px) {
    .modul_Special_Ladengeschaeft .map_and_hint_wrapper .map_canvas_wrapper .anti-drag-overlay-for-mobil {
        display: block;
        opacity: 0.001;
        filter: alpha(opacity=0.1);
        background: white;
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        top: 0
    }
}

.modul_Special_Ladengeschaeft .map_and_hint_wrapper .map_hinweis_wrapper {
    text-align: center;
    font-size: 14px;
    font-style: italic;
    line-height: 1.25;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px
}

.modul_Special_Ladengeschaeft .map_and_hint_wrapper .btn-wrapper {
    text-align: center;
    margin-top: 12px
}

.modul_Special_Ladengeschaeft .map_and_hint_wrapper .btn-wrapper a {
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    padding: 14px 18px;
    padding-bottom: 10px;
    background: #922432;
    text-decoration: none;
    line-height: 1.25;
    color: #FFFFFF;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Handlee", cursive;
    background: #FFFFFF;
    color: #922432
}

.modul_Special_Ladengeschaeft .map_and_hint_wrapper .btn-wrapper a:hover {
    background: #6d1d29
}

.modul_Special_Ladengeschaeft .map_and_hint_wrapper .btn-wrapper a strong {
    font-size: 20px
}

.modul_Special_Ladengeschaeft .map_and_hint_wrapper .btn-wrapper a small {
    font-size: 14px;
    opacity: 0.75;
    filter: alpha(opacity=75)
}

@media (max-width: 640px) {
    .modul_Special_Ladengeschaeft .map_and_hint_wrapper .btn-wrapper a {
        font-size: 16px;
        padding: 4px 7px;
        letter-spacing: 0.5px
    }
}

.modul_Special_Ladengeschaeft .map_and_hint_wrapper .btn-wrapper a:hover {
    background: #6d1d29;
    color: #FFFFFF
}

.modul_Special_Ladengeschaeft .kontakt_info_wrapper {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    line-height: 1.25
}

.modul_Special_Ladengeschaeft .kontakt_info_wrapper h4 {
    font-size: 18px;
    color: #922432;
    margin-bottom: 0
}

.modul_Special_Ladengeschaeft .kontakt_info_wrapper .map_address, .modul_Special_Ladengeschaeft .kontakt_info_wrapper .opening_hours {
    font-weight: 300;
    color: rgba(50, 40, 46, 0.6);
    line-height: 1.3;
    padding-top: 4px;
    padding-bottom: 12px;
    margin-bottom: 12px
}

.modul_Special_Ladengeschaeft .kontakt_info_wrapper .map_address strong, .modul_Special_Ladengeschaeft .kontakt_info_wrapper .opening_hours strong {
    font-weight: 600;
    letter-spacing: 0.5px
}

.modul_Special_Ladengeschaeft .kontakt_info_wrapper .map_address p, .modul_Special_Ladengeschaeft .kontakt_info_wrapper .opening_hours p {
    padding: 0;
    margin: 0
}

.modul_Special_Ladengeschaeft .kontakt_info_wrapper .map_address table td, .modul_Special_Ladengeschaeft .kontakt_info_wrapper .opening_hours table td {
    padding: 3px 0px;
    padding-right: 10px
}

.modul_Special_Ladengeschaeft .kontakt_info_wrapper .map_info {
    font-weight: 300
}

.modul_Special_Ladengeschaeft .kontakt_info_wrapper .map_info .info-label, .modul_Special_Ladengeschaeft .kontakt_info_wrapper .map_info .info-value {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    color: #922432
}

.modul_Special_Ladengeschaeft .kontakt_info_wrapper .map_info .info-label {
    width: 60px
}

.modul_Special_Ladengeschaeft .kontakt_info_wrapper .map_info.map_info--email {
    margin-top: 12px
}

.modul_Special_Ladengeschaeft .kontakt_info_wrapper .map_info a {
    text-decoration: underline
}

.modul_z_Fusszeile_Copyright_Slogan_Metamenue {
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative
}

.modul_z_Fusszeile_Copyright_Slogan_Metamenue .modul-content {
    display: block;
    padding: 10px
}

.modul_z_Fusszeile_Copyright_Slogan_Metamenue .modul-content > a, .modul_z_Fusszeile_Copyright_Slogan_Metamenue .modul-content > span, .modul_z_Fusszeile_Copyright_Slogan_Metamenue .modul-content .footer-item {
    font-size: 16px;
    font-weight: 300;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    padding: 0 10px;
    padding-right: 12px;
    line-height: 1.25;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: inherit
}

.modul_z_Fusszeile_Copyright_Slogan_Metamenue .modul-content > span {
    padding: 0
}

.modul_z_Fusszeile_Copyright_Slogan_Metamenue .modul-content > a {
    border-right: 1px solid #FFFFFF
}

@media (max-width: 640px) {
    .modul_z_Fusszeile_Copyright_Slogan_Metamenue .modul-content > a {
        border-width: 0
    }
}

.modul_z_Fusszeile_Copyright_Slogan_Metamenue .modul-content > a:last-child {
    border-width: 0
}

.modul_z_Fusszeile_Copyright_Slogan_Metamenue .modul-content > a:hover {
    text-decoration: underline
}

.content-wrapper .modul_z_Fusszeile_Kontaktformular {
    background: white;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px
}

@media (max-width: 960px) {
    .content-wrapper .modul_z_Fusszeile_Kontaktformular {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 20px;
        padding-bottom: 10px
    }
}

@media (max-width: 340px) {
    .content-wrapper .modul_z_Fusszeile_Kontaktformular {
        padding-top: 5px;
        padding-bottom: 10px
    }
}

.content-wrapper .modul_z_Fusszeile_Kontaktformular .modul-content .modul-headline {
    font-size: 32px;
    font-family: "Pacifico", cursiv;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #922432;
    margin-bottom: 10px;
    line-height: 1.35;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word
}

@media (max-width: 960px) {
    .content-wrapper .modul_z_Fusszeile_Kontaktformular .modul-content .modul-headline {
        font-size: 28.8px
    }
}

@media (max-width: 640px) {
    .content-wrapper .modul_z_Fusszeile_Kontaktformular .modul-content .modul-headline {
        font-size: 24px
    }
}

@media (max-width: 340px) {
    .content-wrapper .modul_z_Fusszeile_Kontaktformular .modul-content .modul-headline {
        font-size: 19.2px
    }
}

@media (max-width: 640px) {
    .content-wrapper .modul_z_Fusszeile_Kontaktformular .modul-content .modul-headline {
        font-size: 20px
    }
}

.content-wrapper .modul_z_Fusszeile_Kontaktformular .modul-content .form-group.button button {
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    padding: 14px 18px;
    padding-bottom: 10px;
    background: #922432;
    text-decoration: none;
    line-height: 1.25;
    color: #FFFFFF;
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Handlee", cursive
}

.content-wrapper .modul_z_Fusszeile_Kontaktformular .modul-content .form-group.button button:hover {
    background: #6d1d29
}

.content-wrapper .modul_z_Fusszeile_Kontaktformular .modul-content .form-group.button button strong {
    font-size: 20px
}

.content-wrapper .modul_z_Fusszeile_Kontaktformular .modul-content .form-group.button button small {
    font-size: 14px;
    opacity: 0.75;
    filter: alpha(opacity=75)
}

@media (max-width: 640px) {
    .content-wrapper .modul_z_Fusszeile_Kontaktformular .modul-content .form-group.button button {
        font-size: 16px;
        padding: 4px 7px;
        letter-spacing: 0.5px
    }
}

.modul_z_Fusszeile_Kontaktformular {
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative
}

.modul_z_Fusszeile_Kontaktformular .modul-content {
    margin-top: 20px;
    margin-bottom: 24px;
    max-width: 580px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.modul_z_Fusszeile_Kontaktformular .modul-content .modul-headline {
    color: inherit;
    margin-bottom: 24px;
    font-size: 24px;
    font-family: "Pacifico", cursiv;
    letter-spacing: 3px
}

.modul_z_Fusszeile_Kontaktformular .modul-content .modul-call-to-action-wrapper {
    margin-top: 32px;
    display: block;
    font-size: 24px;
    font-family: "Pacifico", cursiv;
    letter-spacing: 2px;
    line-height: 1.35
}

.modul_z_Fusszeile_Kontaktformular .modul-content .modul-call-to-action-wrapper a {
    color: inherit;
    font-size: inherit;
    font-family: inherit
}

.modul_z_Fusszeile_Kontaktformular .modul-content .alert {
    margin-bottom: 24px;
    line-height: 1.4;
    font-size: 14px;
    font-style: italic
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group-set {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    width: 49%
}

@media (max-width: 640px) {
    .modul_z_Fusszeile_Kontaktformular .modul-content .form-group-set {
        width: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center
    }
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group {
    margin-bottom: 16px
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group .form-control {
    height: auto
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group ::-webkit-input-placeholder {
    color: #CCCCCC;
    opacity: 1 !important
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group :-moz-placeholder {
    color: #CCCCCC
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group ::-moz-placeholder {
    color: #CCCCCC
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group :-ms-input-placeholder {
    color: #CCCCCC
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group input[placeholder], .modul_z_Fusszeile_Kontaktformular .modul-content .form-group textarea[placeholder] {
    color: #CCCCCC
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group label {
    display: block;
    font-size: 14px;
    text-align: left;
    margin-bottom: 8px;
    line-height: 1.35
}

@media (max-width: 640px) {
    .modul_z_Fusszeile_Kontaktformular .modul-content .form-group label {
        text-align: center
    }
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group input, .modul_z_Fusszeile_Kontaktformular .modul-content .form-group textarea {
    display: block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    border: 2px solid #fac5cd;
    font-size: 16px;
    padding: 8px 10px;
    color: #922432 !important;
    width: 80%
}

@media (max-width: 640px) {
    .modul_z_Fusszeile_Kontaktformular .modul-content .form-group input, .modul_z_Fusszeile_Kontaktformular .modul-content .form-group textarea {
        margin-left: auto;
        margin-right: auto
    }
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group input:focus, .modul_z_Fusszeile_Kontaktformular .modul-content .form-group textarea:focus {
    background: #922432 !important;
    color: #FFFFFF !important
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group textarea {
    resize: vertical;
    min-height: 150px
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group.button {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: 12px
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group.button button {
    padding: 10px 25px;
    background: #FFFFFF;
    color: #922432;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid transparent;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer
}

.modul_z_Fusszeile_Kontaktformular .modul-content .form-group.button button:hover {
    color: #FFFFFF;
    background: #922432;
    border-color: #FFFFFF
}

.modul_z_Header_breadcrump_menue {
    text-align: center;
    margin-top: 30px;
    margin-bottom: -30px;
    background: white;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px
}

@media (max-width: 960px) {
    .modul_z_Header_breadcrump_menue {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 20px;
        padding-bottom: 10px
    }
}

@media (max-width: 340px) {
    .modul_z_Header_breadcrump_menue {
        padding-top: 5px;
        padding-bottom: 10px
    }
}

.modul_z_Header_breadcrump_menue .link-wrapper {
    margin: 0;
    padding: 0 10px;
    padding-bottom: 14px;
    text-align: center;
    padding-top: 33px
}

.modul_z_Header_breadcrump_menue .link-wrapper .breadcrump-icon, .modul_z_Header_breadcrump_menue .link-wrapper .breadcrump-spacer {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    font-size: 14px;
    color: rgba(50, 40, 46, 0.6) !important
}

.modul_z_Header_breadcrump_menue .link-wrapper a.breadcrump-icon {
    padding: 3px 10px;
    cursor: pointer !important
}

.modul_z_Header_breadcrump_menue .link-wrapper a.breadcrump-icon:hover {
    text-decoration: underline
}

.modul_z_Header_breadcrump_menue .link-wrapper .breadcrump-icon--current-article {
    font-weight: 600;
    text-decoration: underline
}

.modul_z_Header_breadcrump_menue .link-wrapper span.breadcrump-icon {
    margin: 3px 10px
}

.modul_z_Header_Hauptmenue .header-image-wrapper {
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    text-align: right;
    padding-left: 200px;
    padding-right: 0px;
    margin-bottom: -50px
}

@media (max-width: 640px) {
    .modul_z_Header_Hauptmenue .header-image-wrapper {
        padding-left: 10px;
        padding-right: 10px;
        text-align: center
    }
}

.modul_z_Header_Hauptmenue .header-image-wrapper .image-wrapper {
    margin-right: 5px
}

.modul_z_Header_Hauptmenue .header-image-wrapper .image-wrapper img {
    max-height: 320px;
    max-width: 240px;
    width: auto
}

@media (max-width: 960px) {
    .modul_z_Header_Hauptmenue .header-image-wrapper .image-wrapper img {
        max-height: 200px;
        max-width: 150px
    }
}

@media (max-width: 640px) {
    .modul_z_Header_Hauptmenue .header-image-wrapper .image-wrapper img {
        max-width: 110px
    }
}

@media (max-width: 1200px) {
    .modul_z_Header_Hauptmenue .header-image-wrapper .image-wrapper {
        margin-right: 80px
    }
}

@media (max-width: 960px) {
    .modul_z_Header_Hauptmenue .header-image-wrapper .image-wrapper {
        margin-left: 10px;
        margin-right: 10px
    }
}

@media (max-width: 960px) {
    .modul_z_Header_Hauptmenue .header-image-wrapper {
        margin-bottom: -30px
    }
}

.modul_z_Header_Hauptmenue nav.main-top-navigation {
    text-align: left;
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    margin-bottom: -50px
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .menu_left_bg, .modul_z_Header_Hauptmenue nav.main-top-navigation .menu_right_bg {
    position: absolute;
    top: 10px;
    bottom: 0;
    height: 100%;
    width: 50px;
    z-index: 100
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .menu_left_bg.menu_left_bg, .modul_z_Header_Hauptmenue nav.main-top-navigation .menu_right_bg.menu_left_bg {
    left: -17px
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .menu_left_bg.menu_right_bg, .modul_z_Header_Hauptmenue nav.main-top-navigation .menu_right_bg.menu_right_bg {
    right: -17px
}

@media (max-width: 960px) {
    .modul_z_Header_Hauptmenue nav.main-top-navigation .menu_left_bg, .modul_z_Header_Hauptmenue nav.main-top-navigation .menu_right_bg {
        width: 34px
    }

    .modul_z_Header_Hauptmenue nav.main-top-navigation .menu_left_bg.menu_left_bg, .modul_z_Header_Hauptmenue nav.main-top-navigation .menu_right_bg.menu_left_bg {
        left: -8px
    }

    .modul_z_Header_Hauptmenue nav.main-top-navigation .menu_left_bg.menu_right_bg, .modul_z_Header_Hauptmenue nav.main-top-navigation .menu_right_bg.menu_right_bg {
        right: -8px
    }
}

@media (max-width: 960px) {
    .modul_z_Header_Hauptmenue nav.main-top-navigation {
        margin-left: 10px;
        margin-right: 10px
    }
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper {
    position: relative;
    z-index: 100;
    background: #922432;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul {
    list-style: none;
    margin: 0;
    position: relative;
    text-align: center;
    padding: 10px;
    padding-top: 0px;
    padding-bottom: 0px
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    position: relative;
    overflow: hidden
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item > a, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer > a {
    display: block;
    position: relative;
    padding: 10px 18px;
    line-height: 1;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    min-height: 30px;
    padding-top: 15px
}

@media (max-width: 640px) {
    .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item > a, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer > a {
        padding: 5px
    }
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item > a .label, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer > a .label {
    font-weight: 300;
    color: #FFFFFF;
    font-size: 20px;
    font-family: "Handlee", cursive;
    letter-spacing: 0.5px;
    display: block;
    text-align: center;
    padding: 2px 3px;
    border-bottom: 1px solid transparent;
    vertical-align: middle;
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s
}

@media (max-width: 640px) {
    .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item > a .label, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer > a .label {
        min-width: 0;
        display: block;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 18px
    }
}

@media (max-width: 340px) {
    .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item > a .label, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer > a .label {
        padding: 7px 3px
    }
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item > a .label .link-img, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item > a .label .link-img-hover, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer > a .label .link-img, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer > a .label .link-img-hover {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-right: 4px;
    margin-top: -4px
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item > a .label .link-img-hover, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer > a .label .link-img-hover {
    display: none
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item > a .label .fa, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer > a .label .fa {
    font-size: 26px;
    margin-top: -6px;
    margin-bottom: -6px
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item:hover .label, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item.active .label, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer:hover .label, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer.active .label {
    border-bottom: 1px solid #FFFFFF
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item:hover .label .link-img-hover, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item.active .label .link-img-hover, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer:hover .label .link-img-hover, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer.active .label .link-img-hover {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle
}

.modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item:hover .label .link-img, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item.active .label .link-img, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer:hover .label .link-img, .modul_z_Header_Hauptmenue nav.main-top-navigation .main-top-wrapper ul li.nav-item-spacer.active .label .link-img {
    display: none
}

.modul_z_Kopfzeile_Telefon_Email_mit_Metamenu {
    display: none
}

#kopfzeile .modul_z_Kopfzeile_Telefon_Email_mit_Metamenu {
    display: block
}

.modul_z_Kopfzeile_Telefon_Email_mit_Metamenu {
    padding-top: 0px;
    margin-left: 200px;
    text-align: right;
    position: relative
}

@media (max-width: 640px) {
    .modul_z_Kopfzeile_Telefon_Email_mit_Metamenu {
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 10px;
        text-align: center;
        padding-top: 20px
    }
}

.modul_z_Kopfzeile_Telefon_Email_mit_Metamenu .modul-inner-wrapper {
    text-align: right;
    margin-left: auto;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle
}

@media (max-width: 640px) {
    .modul_z_Kopfzeile_Telefon_Email_mit_Metamenu .modul-inner-wrapper {
        text-align: center
    }
}

.modul_z_Kopfzeile_Telefon_Email_mit_Metamenu .modul-inner-wrapper .meta-menu-wrapper {
    margin-top: 6px;
    margin-bottom: 6px
}

.modul_z_Kopfzeile_Telefon_Email_mit_Metamenu .modul-inner-wrapper .meta-menu-wrapper a {
    color: #727782;
    text-decoration: none;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    padding: 3px 7px;
    border-right: 1px solid #727782;
    font-size: 14px
}

.modul_z_Kopfzeile_Telefon_Email_mit_Metamenu .modul-inner-wrapper .meta-menu-wrapper a:hover {
    color: #922432
}

.modul_z_Kopfzeile_Telefon_Email_mit_Metamenu .modul-inner-wrapper .meta-menu-wrapper a:last-child {
    border-right-width: 0
}

.modul_z_Kopfzeile_Telefon_Email_mit_Metamenu .modul-inner-wrapper .icon-wrapper {
    text-align: right;
    margin-top: 16px
}

@media (max-width: 640px) {
    .modul_z_Kopfzeile_Telefon_Email_mit_Metamenu .modul-inner-wrapper .icon-wrapper {
        text-align: center;
        margin-bottom: 10px
    }
}

.modul_z_Kopfzeile_Telefon_Email_mit_Metamenu .modul-inner-wrapper .icon-wrapper .icon-link {
    text-decoration: none;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    padding: 6px 12px;
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    color: #922432;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
    margin-left: 10px;
    margin-bottom: 5px
}

@media (max-width: 640px) {
    .modul_z_Kopfzeile_Telefon_Email_mit_Metamenu .modul-inner-wrapper .icon-wrapper .icon-link {
        font-size: 400;
        margin-left: 0px;
        padding: 3px 6px
    }
}

.modul_z_Kopfzeile_Telefon_Email_mit_Metamenu .modul-inner-wrapper .icon-wrapper .icon-link .icon-symbole + .icon-label {
    margin-left: 6px
}

.modul_z_Kopfzeile_Telefon_Email_mit_Metamenu .modul-inner-wrapper .icon-wrapper .icon-link:hover {
    background: #922432;
    color: #FFFFFF
}

.cc-window {
    background: #6d1d29;
    background: rgba(109, 29, 41, 0.8);
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
    border: 3px solid #6d1d29
}

.cc-window.cc-floating.cc-theme-edgeless {
    max-width: 30em
}

.cc-window.cc-floating.cc-theme-edgeless .cc-message {
    margin: 1em 1em 1.5em;
    margin-bottom: 12px
}

.cc-window.cc-floating.cc-theme-edgeless a {
    color: inherit;
    font-size: inherit;
    padding: 0px;
    margin-top: 3px;
    display: block
}

.cc-window.cc-floating.cc-theme-edgeless a:hover {
    color: inherit
}

.cc-window.cc-floating.cc-theme-edgeless .cc-btn {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
    border-width: 0;
    background: #FFFFFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    color: #922432;
    flex: none;
    font-size: inherit;
    padding: 5px 30px;
    margin-bottom: 6px;
    font-size: 14px;
    letter-spacing: 0.5px
}

.cc-window.cc-floating.cc-theme-edgeless .cc-btn:hover {
    color: #922432 !important
}

body {
    background: #F6F5EC;
    font-family: Tahoma, Arial, sans-serif
}

@media (max-width: 340px) {
    body {
        max-width: 320px;
        overflow-x: hidden
    }
}

.content-wrapper {
    text-align: center;
    min-height: 400px;
    margin-top: 35px;
    position: relative
}

.content-wrapper .content > div, .content-wrapper .content > section > div {
    z-index: 10
}

.content-wrapper .content .modul:first-child {
    padding-top: 40px
}

.text-of-html-editor {
    font-size: 14px;
    color: rgba(50, 40, 46, 0.6);
    text-align: justify;
    letter-spacing: 0.2px;
    line-height: 1.5;
    font-size: 16px
}

.text-of-html-editor img {
    max-width: 100%
}

.text-of-html-editor .more-btn, .text-of-html-editor .more-btn-mobil {
    display: block;
    margin-top: 6px;
    margin-bottom: 6px;
    cursor: pointer !important;
    font-size: 18px;
    font-family: "Handlee", cursive;
    color: #922432
}

.text-of-html-editor .more-btn:hover, .text-of-html-editor .more-btn-mobil:hover {
    text-decoration: underline
}

@media (min-width: 641px) {
    .text-of-html-editor .ui-more-text-second-part {
        display: block !important
    }

    .text-of-html-editor .more-btn-mobil {
        display: none !important
    }
}

.text-of-html-editor h1 {
    font-size: 32px;
    font-family: "Pacifico", cursiv;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: #922432;
    margin-bottom: 10px;
    line-height: 1.35;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    border-bottom: 2px solid #922432
}

@media (max-width: 960px) {
    .text-of-html-editor h1 {
        font-size: 28.8px
    }
}

@media (max-width: 640px) {
    .text-of-html-editor h1 {
        font-size: 24px
    }
}

@media (max-width: 340px) {
    .text-of-html-editor h1 {
        font-size: 19.2px
    }
}

@media (max-width: 640px) {
    .text-of-html-editor h1 {
        font-size: 20px
    }
}

.text-of-html-editor h2 {
    font-size: 24px;
    font-weight: 300;
    padding: 0;
    margin: 0;
    color: rgba(50, 40, 46, 0.6);
    margin-bottom: 0px;
    margin-top: 6px;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word
}

@media (max-width: 960px) {
    .text-of-html-editor h2 {
        font-size: 21.6px
    }
}

@media (max-width: 640px) {
    .text-of-html-editor h2 {
        font-size: 18px
    }
}

@media (max-width: 340px) {
    .text-of-html-editor h2 {
        font-size: 14.4px
    }
}

@media (max-width: 640px) {
    .text-of-html-editor h2 {
        font-size: 400
    }
}

.text-of-html-editor h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: left;
    margin-bottom: 12px;
    font-style: italic;
    color: #32282E;
    display: block
}

@media (max-width: 640px) {
    .text-of-html-editor h3 {
        font-size: 16px
    }
}

.text-of-html-editor h4 {
    color: #922432;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: none;
    margin-bottom: 6px
}

@media (max-width: 640px) {
    .text-of-html-editor h4 {
        text-decoration: underline
    }
}

.text-of-html-editor p + h1, .text-of-html-editor p + h2, .text-of-html-editor p + h3, .text-of-html-editor p + h4 {
    margin-top: 18px
}

.text-of-html-editor p + h3 {
    margin-top: 24px
}

.text-of-html-editor p + p {
    margin-top: 18px
}

.text-of-html-editor em {
    font-style: italic
}

@media (max-width: 640px) {
    .text-of-html-editor {
        text-align: left;
        line-height: 1.35
    }
}

.text-of-html-editor > strong, .text-of-html-editor p > strong {
    color: #32282E;
    font-weight: 600
}

.text-of-html-editor p {
    font-size: 14px;
    color: rgba(50, 40, 46, 0.6);
    text-align: justify;
    letter-spacing: 0.2px;
    line-height: 1.5
}

@media (max-width: 640px) {
    .text-of-html-editor p {
        text-align: left;
        line-height: 1.35
    }
}

.text-of-html-editor.text-format--text--left-aligned p {
    text-align: left !important
}

.text-of-html-editor .text-right, .text-of-html-editor p.text-right {
    text-align: right !important
}

.text-of-html-editor .text-left, .text-of-html-editor p.text-left {
    text-align: left !important
}

.text-of-html-editor .text-center, .text-of-html-editor p.text-center {
    text-align: center !important
}

.text-of-html-editor .text-justify, .text-of-html-editor p.text-justify {
    text-align: justify !important
}

.text-of-html-editor ul, .text-of-html-editor ol {
    margin-bottom: 6px;
    margin-top: 6px;
    margin-left: 16px;
    text-align: left
}

.text-of-html-editor ul li, .text-of-html-editor ol li {
    margin-bottom: 6px;
    font-size: inherit;
    color: #727782
}

.load-more-images-btn {
    cursor: pointer
}

.intern-anchor-link {
    font-size: 1px;
    height: 1px;
    overflow: hidden;
    display: block;
    margin-top: -1px
}

.container {
    max-width: 970px
}

a {
    text-decoration: none;
    color: #922432
}

a:hover {
    text-decoration: underline
}

.link-to-top {
    text-align: center;
    padding: 10px
}

.link-to-top a {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    font-size: 14px;
    color: #922432;
    font-style: italic
}

.hide-until-visible-in-viewport-element {
    -webkit-transition: all 0.75s ease-in-out 0s;
    -moz-transition: all 0.75s ease-in-out 0s;
    -o-transition: all 0.75s ease-in-out 0s;
    -ms-transition: all 0.75s ease-in-out 0s;
    transition: all 0.75s ease-in-out 0s
}

.hide-until-visible-in-viewport-element.hide-until-visible-in-viewport {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    -o-transform: translate(0, 100%);
    transform: translate(0, 100%)
}

.image-wrapper-for-title {
    position: relative;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    overflow: hidden
}

.image-wrapper-for-title .image-wrapper-title {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5px 10px;
    background: #922432;
    color: #FFFFFF;
    text-align: center;
    font-size: 14px !important;
    font-weight: 300;
    font-style: italic;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    -o-transform: translate(0, 100%);
    transform: translate(0, 100%);
    -webkit-transition: all 0.35s ease-in-out 0s;
    -moz-transition: all 0.35s ease-in-out 0s;
    -o-transition: all 0.35s ease-in-out 0s;
    -ms-transition: all 0.35s ease-in-out 0s;
    transition: all 0.35s ease-in-out 0s
}

.image-wrapper-for-title.image-wrapper--with-title:hover .image-wrapper-title {
    display: block;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translate(0px, 0);
    -ms-transform: translate(0px, 0);
    -o-transform: translate(0px, 0);
    transform: translate(0px, 0)
}

.image-wrapper-for-title img {
    -webkit-transition: all 0.35s ease-in-out 0s !important;
    -moz-transition: all 0.35s ease-in-out 0s !important;
    -o-transition: all 0.35s ease-in-out 0s !important;
    -ms-transition: all 0.35s ease-in-out 0s !important;
    transition: all 0.35s ease-in-out 0s !important
}

.image-wrapper-for-title.image-wrapper--with-lightbox:hover img {
    -webkit-transform: scale(1.1) rotate(1deg);
    -moz-transform: scale(1.1) rotate(1deg);
    -o-transform: scale(1.1) rotate(1deg);
    -ms-transform: scale(1.1) rotate(1deg);
    transform: scale(1.1) rotate(1deg)
}

#lightcase-overlay {
    background: #922432;
    opacity: 0.5 !important;
    filter: alpha(opacity=50 !important) !important
}

.lightcase-icon-next, .lightcase-icon-prev {
    position: fixed;
    display: block;
    height: 90% !important;
    bottom: 0 !important;
    width: 40% !important;
    text-align: left;
    font-size: 12px
}

.lightcase-icon-next::before, .lightcase-icon-prev::before {
    content: ""
}

.lightcase-icon-next > span, .lightcase-icon-prev > span {
    display: block;
    font-size: 12px;
    height: 100%;
    width: 100%;
    padding-top: 50%;
    text-indent: 0 !important
}

.lightcase-icon-next > span .btn, .lightcase-icon-prev > span .btn {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: top;
    width: 50px;
    height: 50px;
    background: #922432;
    color: #FFFFFF;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px;
    text-align: center
}

.lightcase-icon-next > span .btn .fa, .lightcase-icon-prev > span .btn .fa {
    color: inherit;
    font-size: 18px;
    margin-top: 16px
}

.lightcase-icon-next.lightcase-icon-prev, .lightcase-icon-prev.lightcase-icon-prev {
    left: 15px
}

.lightcase-icon-next.lightcase-icon-prev > span, .lightcase-icon-prev.lightcase-icon-prev > span {
    text-align: left
}

.lightcase-icon-next.lightcase-icon-next, .lightcase-icon-prev.lightcase-icon-next {
    right: 15px
}

.lightcase-icon-next.lightcase-icon-next > span, .lightcase-icon-prev.lightcase-icon-next > span {
    text-align: right
}

.lightcase-icon-close:hover, #lightcase-nav a:hover {
    text-decoration: none !important
}

#lightcase-info {
    background: #922432;
    width: 96%;
    padding: 10px 2%
}

#lightcase-info, #lightcase-title, #lightcase-caption, #lightcase-sequenceInfo {
    color: #FFFFFF !important
}

.lazy-load-img {
    opacity: 0;
    filter: alpha(opacity=0)
}

.lazy-load-img.show-loaded-img {
    -webkit-transition: all 2s ease-in-out 0s;
    -moz-transition: all 2s ease-in-out 0s;
    -o-transition: all 2s ease-in-out 0s;
    -ms-transition: all 2s ease-in-out 0s;
    transition: all 2s ease-in-out 0s;
    opacity: 1;
    filter: alpha(opacity=100)
}

