/**
 * VARS
 */

* {
    --space1x: 8vh;
    --space2x: calc(var(--space1x) * 2);
    --space3x: calc(var(--space1x) * 3);
    --space4x: calc(var(--space2x) * 2);
    --space6x: calc(var(--space2x) * 3);
    --space8x: calc(var(--space4x) * 2);
    --space12x: calc(var(--space4x) * 3);
    --space16x: calc(var(--space8x) * 2);
}


/**
 * STYLE
 */

*:focus,
#map-canvas * {
    outline: 0 none !important;
    border: 0 none !important;
}

input[type='checkbox'],
input[type='radio'] {
    filter: grayscale(1);
    cursor: pointer;
}

html,
body {
    font-family: gill-sans-nova, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    width: 100vw;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: #F0EEEF;
}

header,
main,
footer {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
}

header {
    height: 100vh;
    height: var(--vh);
    overflow: hidden;
}

footer {
    /*
    min-height: 100vh;
    min-height: var(--vh);
    height: 100vh;
    height: var(--vh);
    */
    min-height: auto;
    height: auto;
}

main {
    padding: 8vh 0;
    padding: var(--space1x) 0;
}

header .container,
main .container,
footer .container {
    position: relative;
    height: calc(100% - 16vh);
    height: calc(100% - var(--space2x));
    margin: 0;
    padding: 0 8vh;
    padding: 0 var(--space1x);
}

.container-heading {
    position: absolute;
    z-index: 995;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.container-nav {
    position: absolute;
    z-index: 999;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min-content;
    min-height: 8vh;
    min-height: var(--space1x);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-heading,
.container-spacer {
    line-height: 8vh;
    line-height: var(--space1x);
    height: 8vh;
    height: var(--space1x);
}

.container-inner {
    width: 100%;
    margin: 0;
    padding: 0;
}

.container-inner-narrow {
    width: 64vh;
    width: calc(var(--vh) * 0.64);
    max-width: calc(100vw - 8vh);
    max-width: calc(100vw - var(--space1x));
    height: auto;
    margin: 0 auto;
    padding: 0;
}

.container-inner-mask {
    position: relative;
    height: auto;
    margin: 0;
    padding: 0;
}

.full-height {
    position: relative;
    height: 100%;
    overflow: hidden;
}

header .full-height,
footer .container-map .full-height {
    position: relative;
    height: 100% !important;
    overflow: hidden;
}

.padding-vertical {
    padding: 16vh 0;
    padding: var(--space2x) 0;
}

.bg-neutral-color {
    background: #F0EEEF;
}

.bg-primary-color {
    background: #829499;
}

.bg-secondary-color {
    background: #C2AD8F;
}

.bg-image {
    position: relative;
    height: 100vh;
    height: var(--vh);
    min-height: 100vh;
    min-height: var(--vh);
    width: 100vw;
    left: calc(50vw - 8vh);
    left: calc(50vw - var(--space1x));
    top: 42vh;
    top: calc(var(--vh) * 0.42);
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bg-text {
    position: relative;
    width: 48vh;
    width: var(--space6x);
    max-width: calc(100vw - 24vhv);
    max-width: calc(100vw - var(--space3x));
    left: 50%;
    top: 50vh;
    top: calc(var(--vh) * .5);
    transform: translate(-50%, -50%);
}

p,
li {
    font-size: 1.5em;
    font-weight: 400;
    line-height: 2em;
    margin: 0 0 0 0;
}

#infoContent p,
.overlay p {
    font-size: initial;
    font-weight: initial;
    line-height: initial;
    display: inherit;
}

.container-heading p {
    white-space: nowrap;
    display: inline;
}

a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

a:hover {
    color: #C2AD8F;
}

.neutral-color {
    color: #F0EEEF;
}

.primary-color {
    color: #829499;
}

.secondary-color {
    color: #C2AD8F;
}

.uppercase {
    text-transform: uppercase;
}

.center {
    text-align: center;
}

.spacing {
    letter-spacing: .8em;
    padding-left: .8em;
}

.vertical-center {
    line-height: 100vh;
    line-height: var(--vh);
    height: 100vh;
    height: var(--vh);
}

.hide {
    display: none;
}

.preloader {
    opacity: 0;
}

.pace-done .wrapper.preloader {
    opacity: 1;
}


/**
 * FORM
 */

.form-wrapper {
    font-size: 1.5em;
    font-weight: 400;
    line-height: 2em;
    margin: 0;
    display: inline-table;
    color: #F0EEEF;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .8em;
    width: 100%;
}

.form-wrapper .form-group {
    margin-bottom: 2em;
}

.form-wrapper label {
    display: none;
}

.form-wrapper .row {
    display: grid;
    margin-bottom: 2em;
}

.form-wrapper .row label {
    display: inherit;
    font-size: 1em;
    font-weight: 400;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: .8em;
    float: left;
    color: #C2AD8F;
    padding: .5em 0;
}

.form-wrapper .row .input {
    float: right;
}

.form-wrapper input {
    font-size: 1em;
    font-weight: 400;
    line-height: 2em;
    display: inline-block;
    color: #829499;
    background: #F0EEEF;
    width: calc(100% - 2em);
    margin: 0;
    padding: .5em 1em;
    border: 0px;
    text-transform: uppercase;
    letter-spacing: .8em;
    text-align: center;
}

.form-wrapper .help-block {
    font-size: 1em;
    font-weight: 400;
    line-height: 2em;
    display: inline;
    color: #C2AD8F;
    background: none;
    width: 100%;
    margin: 0 0 0 1em;
    padding: 0;
    border: 0px;
    text-transform: uppercase;
    letter-spacing: .8em;
}

.form-wrapper .row input {
    width: auto;
}

.form-wrapper input::-webkit-input-placeholder {
    /* Edge */
    color: #829499;
    opacity: .5;
}

.form-wrapper input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #829499;
    opacity: .5;
}

.form-wrapper input::placeholder {
    color: #829499;
    opacity: .5;
}

.form-wrapper input:focus::-webkit-input-placeholder,
.form-wrapper input:active::-webkit-input-placeholder {
    /* Edge */
    opacity: 0;
}

.form-wrapper input:focus:-ms-input-placeholder,
.form-wrapper input:active:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    opacity: 0;
}

.form-wrapper input:focus::placeholder,
.form-wrapper input:active::placeholder {
    opacity: 0;
}

.form-wrapper button {
    font-size: 1em;
    font-weight: 400;
    line-height: 2em;
    display: block;
    width: 100%;
    color: #F0EEEF;
    background: #829499;
    margin: 0;
    padding: .5em .2em .5em 1em;
    border: 0;
    box-shadow: inset 0 0 0 2px #F0EEEF;
    text-transform: uppercase;
    letter-spacing: .8em;
    text-align: center;
    cursor: pointer;
}

.form-wrapper button:hover {
    color: #829499;
    background: #F0EEEF;
}

.form-wrapper input:-webkit-autofill,
.form-wrapper input:-webkit-autofill:hover,
.form-wrapper input:-webkit-autofill:focus,
.form-wrapper input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #F0EEEF inset !important;
    -webkit-text-fill-color: #829499 !important;
}

.form-wrapper input {
    -webkit-appearance: none !important;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
}

.form-wrapper input[type=number]::-webkit-inner-spin-button,
.form-wrapper input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
    cursor: pointer;
}


/**
 * MAP
 */

#map-canvas {
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

.pin-wrap {
    position: absolute;
    width: 48px;
    height: 48px;
    margin-top: -48px;
    margin-left: -24px;
    transform-origin: 50% 120.7106781187% 0;
}

.pin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    margin-left: -24px;
    transform-origin: 50% 120.7106781187% 0;
}

.pin::after {
    position: absolute;
    display: none;
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    content: "";
    transform: rotateZ(-45deg);
    border: 18px solid #C2AD8F;
    border-radius: 50% 50% 50% 50%;
}

.pin::before {
    position: absolute;
    display: none;
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    content: "";
    transform: rotateZ(-45deg);
    border: 18px solid #c2ad8f;
    border-radius: 50% 50% 50% 0;
}

.location-marker {
    position: absolute;
    fill: #FFFFFF;
    z-index: 1;
    margin-top: -24px;
    -webkit-filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.2));
}

.location-marker .st0 {
    fill: #F0EEEF;
}

.location-marker .st1 {
    fill: #829499;
}

.shadow {
    position: absolute;
}

.shadow::after {
    position: absolute;
    left: -57px;
    display: block;
    width: 18px;
    height: 9px;
    margin-top: -6px;
    content: "";
    /*transform: rotateX(55deg);*/
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 1) 48px 0 20px;
}

.pulse {
    position: absolute;
    margin-top: -9px;
    margin-left: -18px;
    /*transform: rotateX(55deg);*/
}

.pulse::after {
    display: block;
    width: 36px;
    height: 18px;
    content: "";
    animation: pulsate 1s ease-out;
    animation-delay: 1.1s;
    animation-iteration-count: infinite;
    opacity: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px #c2ad8f;
}

@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

#legend {
    position: absolute;
    background: #FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
    cursor: pointer;
    left: 10px;
    top: 10px;
    width: auto;
}

#containerUI {
    position: relative;
    background: none;
    cursor: pointer;
}

.filter {
    clear: both;
    position: relative;
    user-select: none;
    width: 100%;
    left: 0%;
    background: none;
    cursor: pointer;
    margin-top: 4px;
}

.state {
    display: block;
    user-select: none;
    height: 40px;
    position: relative;
    background: none;
    cursor: pointer;
}

.controlUI {
    display: block;
    cursor: pointer;
    user-select: none;
}

.controlUI input {
    display: none;
}

.controlUI-border {
    position: relative;
    clear: both;
    display: block;
    width: calc(100% - 16px);
    height: 1px;
    margin: 0 8px;
    background-color: #e6e6e6;
}

.controlText svg {
    height: 18px;
    margin: 11px 2px;
}

.stateText svg,
.controlText svg,
.controlText label,
.stateText label {
    float: left;
}

.controlUI .controlText label,
.controlUI .stateText label {
    font-family: gill-sans-nova, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    cursor: pointer;
    padding-right: 8px;
}

.controlUI:hover input.chk-btn:checked+.controlText svg {
    opacity: 1;
}

.controlUI:hover input.chk-btn:not(:checked)+.controlText svg {
    opacity: .5;
}

input.chk-btn:checked+.controlText svg {
    opacity: .75;
}

input.chk-btn:not(:checked)+.controlText svg {
    opacity: .25;
}

.controlUI:hover input.chk-btn:checked+.controlText label {
    color: #333333;
}

.controlUI:hover input.chk-btn:not(:checked)+.controlText label {
    color: #999999;
}

input.chk-btn:checked+.controlText label {
    color: #666666;
}

input.chk-btn:not(:checked)+.controlText label {
    color: #cccccc;
}

.state label {
    color: #666666;
}

.state:hover label {
    color: #333333;
}

.state #state-icon .st0 {
    fill: #666666;
}

.state:hover #state-icon .st0 {
    fill: #333333;
}

button:hover,
button:focus,
button:active {
    outline: none;
}

#state-icon .close {
    display: block;
}

#state-icon .filt {
    display: none;
}

.collapsed #state-icon .close {
    display: none;
}

.collapsed #state-icon .filt {
    display: block;
}

.collapsed .controlUI-border {
    display: none;
}

.collapsed .filter {
    display: none;
}

.gm-style .gmnoprint div {
    border-radius: 0px !important;
}

.gm-style {
    font-family: gill-sans-nova, Helvetica, Arial, sans-serif !important;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    letter-spacing: 0.1em;
}

.gm-style .gm-style-iw {
    width: 320px;
    max-width: 75vw !important;
    max-height: 75vh;
}

.gm-style .gm-style-iw-c {
    border-radius: 0px;
    padding: 12px !important;
}

.gm-style .gm-style-iw-d {
    overflow: auto !important;
}

.gm-style .gm-style-iw-t::after {
    background: #FFFFFF;
}

.index {
    z-index: 108 !important;
}

#magic {
    display: none;
    cursor: default;
}

#magic.show {
    display: block;
}

.gm-style .magic-style-iw-t {
    position: relative;
    width: 100%;
    left: 0px;
    bottom: 90px;
}

.gm-style .magic-style-iw {
    font-weight: 300;
    font-size: 13px;
    overflow: hidden;
    width: 400px;
    min-width: 0px;
    max-width: 75vw;
    max-height: 75vh;
    padding-right: 0px;
    padding-bottom: 0px;
}

.gm-style .magic-style-iw-c {
    position: absolute;
    box-sizing: border-box;
    overflow: hidden;
    top: 0;
    left: 0;
    transform: translate(-50%, -100%);
    background-color: white;
    border-radius: 0px;
    padding: 12px;
    box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.3);
}

.gm-style .magic-style-iw-d {
    box-sizing: border-box;
    overflow: auto;
    max-height: calc(50vh - 18px);
}

.gm-style .magic-style-iw-d::-webkit-scrollbar {
    width: 18px;
    height: 12px;
    -webkit-appearance: none;
}

.gm-style .magic-style-iw-c .magic-style-iw-d::-webkit-scrollbar-corner {
    background: transparent;
}

.gm-style .magic-style-iw-c .magic-style-iw-d::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.12);
    border: 6px solid transparent;
    border-radius: 0px;
    background-clip: content-box;
}

.gm-style .magic-style-iw-d::-webkit-scrollbar-track,
.gm-style .magic-style-iw-d::-webkit-scrollbar-track-piece {
    background: #fff;
}

.gm-style .magic-style-iw-d::-webkit-scrollbar-track,
.gm-style .magic-style-iw-d::-webkit-scrollbar-track-piece {
    background: #fff;
}

.gm-style .magic-style-iw-t::after {
    background: linear-gradient(45deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%);
    box-shadow: -2px 2px 2px 0 rgba(178, 178, 178, .4);
    content: "";
    height: 15px;
    left: 0;
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 15px;
    background: #FFFFFF;
}

#map-canvas>div>div>div:nth-child(1)>div:nth-child(1)>div:nth-child(2) {
    mix-blend-mode: multiply;
}

button.gm-ui-hover-effect {
    display: none !important;
}


/**
 * COOKIES
 */

.cc-floating.cc-window {
    font-size: 1.5em;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 2em;
    letter-spacing: .8em;
    max-width: inherit !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    transition: none !important;
    display: flex !important;
    z-index: 997;
}

.cc-floating.cc-window .cc-window-wrapper {
    padding: 8vh !important;
    padding: var(--space1x) !important;
    margin: 8vh !important;
    margin: var(--space1x) !important;
    box-sizing: border-box;
    border: 2px solid #829499;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
}

.dp--cookie-check {
    display: inline-flex !important;
    flex-wrap: wrap;
    margin-top: 2em !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: inset 0 0 0 2px #829499;
}

.cc-floating.cc-theme-edgeless .cc-message {
    padding: 0 0 0 .8vh !important;
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cc-floating.cc-window .cc-compliance {
    margin: 0 auto;
    flex: inherit;
}

.dp--cookie-check label {
    margin-right: 2em !important;
    padding: 1em .8em 1em 1.6em !important;
    color: #C2AD8F;
}

.dp--cookie-check label:first-child {
    padding-left: .8em !important;
}

.dp--cookie-check label:last-child {
    margin-right: 0 !important;
}

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

.cc-btn {
    padding: 1em .8em 1em 1.6em !important;
    border: 0 !important;
}

.cc-btn:hover {
    text-decoration: none !important;
}

.cc-btn.cc-dismiss:hover {
    background: #829499 !important;
}

.cc-revoke {
    display: none !important;
}

.cc-window.cc-invisible {
    opacity: inherit !important;
    display: none !important;
}


/**
 * NAVIGATION
 */

.nav {
    display: inline-flex;
    padding: 1vh 0;
    margin: 0;
}

.nav li {
    color: #829499;
    list-style: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .8em;
    padding-left: .8em;
    cursor: pointer;
}

.nav li:hover {
    color: #C2AD8F;
}

.nav li:last-child {
    display: none;
}

.container-legal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 8vh;
    padding: 0 var(--space1x);
    word-wrap: break-word;
    z-index: 997;
}

.container-legal .legal-close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
    z-index: 998;
    cursor: pointer;
}

.stroke1 {
    height: 20px;
    width: 2px;
    margin-left: 12px;
    background-color: #829499;
    transform: rotate(45deg);
    Z-index: 1;
}

.stroke2 {
    height: 20px;
    width: 2px;
    background-color: #829499;
    transform: rotate(90deg);
    Z-index: 2;
}

.container-legal .container-inner {
    padding: 8vh;
    padding: var(--space1x);
    box-sizing: border-box;
    border: 2px solid #829499;
}

.container-legal.imprint p {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

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


/**
 * PACE
 */

.pace {
    height: 100vh;
    width: 100vw;
    background: #829499;
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: fixed;
    z-index: 1000;
}

.pace-inactive {
    display: none;
}

.pace-progress {
    position: relative;
    overflow: hidden;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    background-image: url(../Images/Svg/flower.svg);
    background-color: #829499;
    background-repeat: no-repeat;
    background-size: 150%;
    background-position: center;
    -webkit-transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
    -o-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
}

.pace-activity {
    display: none;
}

.pace-progress-inner {
    position: absolute;
    background: #829499;
    top: 0px;
    left: 0px;
    height: 100px;
    width: 100px;
    z-index: 0;
    -webkit-animation: pace 1s ease-in-out infinite;
    -moz-animation: pace 1s ease-in-out infinite;
    -o-animation: pace 1s ease-in-out infinite;
    -ms-animation: pace 1s ease-in-out infinite;
    animation: pace 1s ease-in-out infinite;
}

@-webkit-keyframes pace {
    0% {
        height: 100px;
    }
    100% {
        height: 0px;
    }
}

@-moz-keyframes pace {
    0% {
        height: 100px;
    }
    100% {
        height: 0px;
    }
}

@-o-keyframes pace {
    0% {
        height: 100px;
    }
    100% {
        height: 0px;
    }
}

@-ms-keyframes pace {
    0% {
        height: 100px;
    }
    100% {
        height: 0px;
    }
}

@keyframes pace {
    0% {
        height: 100px;
    }
    100% {
        height: 0px;
    }
}


/**
 * PLUPLOAD
 */

.tx-pluploadfe-pi1,
.tx-pluploadfe-pi1 * {
    height: 100%;
}

.plupload_wrapper {
    font-family: gill-sans-nova, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.plupload_container {
    padding: 0;
    background: none;
    ;
    -moz-border-radius: 0;
    pointer-events: none;
}

.plupload_header,
.plupload_filelist_header,
.plupload_filelist_footer,
.plupload_file_action a {
    display: none;
}

.plupload_scroll .plupload_filelist {
    height: 100%;
    background: none;
    overflow-y: scroll;
    pointer-events: all;
    cursor: pointer;
}

.plupload_filelist li {
    padding: 1em 0.8em 1em 1.6em;
    background: none;
    border-bottom: 2px solid #F0EEEF;
    height: auto;
    display: block;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .8em;
    text-align: left;
}

.plupload_filelist li * {
    height: auto;
}

li.plupload_done {
    color: #C2AD8F;
}

li.plupload_droptext {
    display: flex;
    border-bottom: 0px;
    text-align: center;
    line-height: 2em;
    margin: 0 8vh;
    margin: 0 var(--space1x);
    box-sizing: border-box;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: inherit;
    flex-wrap: wrap;
    flex-direction: column;
}

li.plupload_droptext::before {
    content: url(../Images/Svg/upload.svg);
    height: auto;
    width: 25vw;
    max-height: 200px;
    max-width: 200px;
    display: block;
    margin: 0 .8em 2em 0;
}

.plupload_file_size,
.plupload_file_status,
.plupload_file_action {
    white-space: nowrap;
    width: auto;
}

.plupload_file_name {
    width: 50% !important;
}

.plupload_file_status {
    color: #F0EEEF;
    width: 8em;
}


/**
 * MEDIA
 */

@media only screen and (max-width: 1359px) {
    .dp--cookie-check {
        text-align: left;
        width: min-content;
        margin-right: .8vh;
    }
    .dp--cookie-check label {
        padding: 0em .8em 0em .8em !important;
        margin-right: 0em !important;
    }
    .dp--cookie-check label:first-child {
        padding: 1em .8em 0em .8em !important;
    }
    .dp--cookie-check label:last-child {
        padding: 0em .8em 1em .8em !important;
    }
}

@media only screen and (max-width: 991px) {
    html,
    body,
    .plupload_wrapper {
        font-size: 9px;
    }
}

@media only screen and (max-width: 767px) {
    header .container,
    footer .container {
        height: 100%;
        height: var(--vh);
        padding: 0;
    }
    main .container {
        min-height: calc(100% - 16vh);
        min-height: calc(100% - var(--space2x));
        padding: 0;
    }
    .container-heading p {
        color: #C2AD8F;
    }
    .container-heading .spacing {
        letter-spacing: .8em;
        padding-left: .4em;
    }
    header .container-spacer,
    footer .container-spacer {
        line-height: 0;
        height: 0;
    }
    .container-nav {
        position: relative;
        z-index: 996;
    }
    .container-legal {
        padding: 0;
    }
    .container-legal .legal-close {
        display: inherit;
    }
    .container-legal .container-inner {
        padding: 8vh 0;
        padding: var(--space1x) 0;
        height: 100% !important;
        height: var(--vh) !important;
        border: 0;
    }
    .container-inner-narrow {
        width: 64vh;
        width: calc(var(--vh) * 0.64);
        max-width: 100vw;
        height: auto;
        margin: 0 auto;
        padding: 0;
    }
    .bg-image {
        height: 120%;
        height: calc(var(--vh) * 1.2);
        width: 100vw;
        left: 50vw;
        top: 50vh;
        top: calc(var(--vh) * 0.5);
    }
    .bg-text {
        left: 50%;
        top: 50%;
        top: calc(var(--vh) * .6);
        transform: translate(-50%, -50%);
    }
    .form-wrapper form {
        padding: 0 2vh;
    }
    #map-canvas {
        width: 100vw;
        height: 100%;
        height: var(--vh);
    }
    .cc-floating.cc-window {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .cc-floating.cc-window .cc-window-wrapper {
        padding: 0 !important;
        margin: 0 !important;
        height: 100% !important;
        height: var(--vh) !important;
        border: 0;
    }
    .nav {
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav li {
        display: inherit;
    }
    .nav li:nth-child(2n) {
        display: none;
    }
    .plupload_file_size {
        display: none;
    }
    li.plupload_droptext {
        margin: 0;
    }
}