img:not(.lazy-loaded)[data-src] {
    background: url("../images/layout/loading.svg") no-repeat center center
}

.lazy-bg:not(.lazy-loaded) {
    opacity: .99
}

:root {
    --image-path: ../images/;
    --base-font-size: 1rem;
    --base-line-height: 1.66667rem;
    --h1-size: 2.44444rem;
    --h2-size: 1.77778rem;
    --h3-size: 1.44444rem;
    --h4-size: 1.33333rem;
    --h5-size: 1.11111rem;
    --h6-size: 1rem;
    --main-font: Roboto, sans-serif;
    --display-font: Roboto, sans-serif;
    --icon-font: icomoon, sans-serif;
    --primary: #00385E;
    --secondary: #2B77AB;
    --light: #fff;
    --medium: #F3F3F3;
    --dark: #414141;
    --border: #E8E8E8;
    --alert: #54A0D4;
    --base-gap: 1rem;
    --row-max-width: 90rem;
    --column-count: 12;
    --base-border: 1px solid #E8E8E8;
    --base-border-radius: 0;
    --base-box-shadow: 0px 5px 10px 0px rgba(65, 65, 65, 0.2);
    --outline: 1px dotted #54A0D4;
    --bp-context: 16px;
    --hide-text-direction: right
}

@font-face {
    font-family: "icomoon";
    font-weight: null;
    font-style: normal;
    font-display: block;
    src: url("../fonts/icomoon.woff") format("woff"), url("../fonts/icomoon.ttf") format("truetype"), url("../fonts/icomoon.svg#icomoon") format("svg"), url("../fonts/icomoond41d.eot?#iefix") format("embedded-opentype")
}

@font-face {
    font-family: "Roboto";
    font-weight: 400;
    font-style: normal;
    font-display: block;
    src: url("../fonts/roboto-v30-latin-regular.woff2") format("woff2")
}

@font-face {
    font-family: "Roboto";
    font-weight: 700;
    font-style: normal;
    font-display: block;
    src: url("../fonts/roboto-v30-latin-700.woff2") format("woff2")
}

@font-face {
    font-family: "Roboto";
    font-weight: 300;
    font-style: normal;
    font-display: block;
    src: url("../fonts/roboto-v30-latin-300.woff2") format("woff2")
}

@font-face {
    font-family: "Roboto";
    font-weight: 400;
    font-style: italic;
    font-display: block;
    src: url("../fonts/roboto-v30-latin-italic.woff2") format("woff2")
}

:root {
    --scrollbar-width: calc(100vw - 100%);
    --viewport-without-scrollbar: calc(100vw - var(--scrollbar-width));
    --row-max-width-dynamic: calc(min(90rem, var(--viewport-without-scrollbar)))
}

.row {
    margin-left: auto;
    margin-right: auto;
    max-width: 90rem;
    width: 100%;
    position: relative;
    display: flex;
    flex: 0 1 auto;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch
}

.row:not(.full-width) .row {
    margin-left: -1rem;
    padding-left: 0;
    padding-right: 0;
    max-width: calc(100% + 2rem);
    width: calc(100% + 2rem)
}

.row.full-width {
    max-width: none
}

.row .cms-el-row {
    margin-left: -1rem;
    padding-left: 0;
    padding-right: 0;
    max-width: calc(100% + 2rem);
    width: calc(100% + 2rem)
}

.row>.row {
    margin: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
    flex-basis: 100%
}

@media (min-width: 101.25em) {

    .row.break-right,
    .row.break-left {
        max-width: calc(50vw + (var(--row-max-width-dynamic) / 2 - var(--scrollbar-width) / 2))
    }

    .row.break-right {
        margin-left: auto;
        margin-right: 0;
        justify-content: flex-start
    }

    .row.break-left {
        margin-right: auto;
        margin-left: 0;
        justify-content: flex-end
    }
}

.col {
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
    width: 100%;
    flex: 0 0 auto;
    flex-grow: 1;
    flex-basis: 100%;
    box-sizing: border-box
}

.no-gutter,
.no-gutter>.col {
    padding-left: 0;
    padding-right: 0
}

@media (min-width: 0) {
    .col.default-1 {
        max-width: 8.33333%;
        flex-basis: 8.33333%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-1,
    .row.break-right>.col.default-1 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 0) {
    .col.default-2 {
        max-width: 16.66667%;
        flex-basis: 16.66667%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-2,
    .row.break-right>.col.default-2 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 0) {
    .col.default-3 {
        max-width: 25%;
        flex-basis: 25%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-3,
    .row.break-right>.col.default-3 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 0) {
    .col.default-4 {
        max-width: 33.33333%;
        flex-basis: 33.33333%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-4,
    .row.break-right>.col.default-4 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 0) {
    .col.default-5 {
        max-width: 41.66667%;
        flex-basis: 41.66667%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-5,
    .row.break-right>.col.default-5 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 0) {
    .col.default-6 {
        max-width: 50%;
        flex-basis: 50%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-6,
    .row.break-right>.col.default-6 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 0) {
    .col.default-7 {
        max-width: 58.33333%;
        flex-basis: 58.33333%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-7,
    .row.break-right>.col.default-7 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 0) {
    .col.default-8 {
        max-width: 66.66667%;
        flex-basis: 66.66667%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-8,
    .row.break-right>.col.default-8 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 0) {
    .col.default-9 {
        max-width: 75%;
        flex-basis: 75%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-9,
    .row.break-right>.col.default-9 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 0) {
    .col.default-10 {
        max-width: 83.33333%;
        flex-basis: 83.33333%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-10,
    .row.break-right>.col.default-10 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 0) {
    .col.default-11 {
        max-width: 91.66667%;
        flex-basis: 91.66667%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-11,
    .row.break-right>.col.default-11 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 0) {
    .col.default-12 {
        max-width: 100%;
        flex-basis: 100%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-12,
    .row.break-right>.col.default-12 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 0) {
    .col.default-auto {
        max-width: 100%;
        flex-basis: 0
    }

    .row.break-left>.col.default-auto,
    .row.break-right>.col.default-auto {
        max-width: 100%
    }

    .col.default-prefix-0 {
        margin-left: 0%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-prefix-0,
    .row.break-right>.col.default-prefix-0 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 0) {
    .col.default-prefix-1 {
        margin-left: 8.33333%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-prefix-1,
    .row.break-right>.col.default-prefix-1 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 0) {
    .col.default-prefix-2 {
        margin-left: 16.66667%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-prefix-2,
    .row.break-right>.col.default-prefix-2 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 0) {
    .col.default-prefix-3 {
        margin-left: 25%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-prefix-3,
    .row.break-right>.col.default-prefix-3 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 0) {
    .col.default-prefix-4 {
        margin-left: 33.33333%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-prefix-4,
    .row.break-right>.col.default-prefix-4 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 0) {
    .col.default-prefix-5 {
        margin-left: 41.66667%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-prefix-5,
    .row.break-right>.col.default-prefix-5 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 0) {
    .col.default-prefix-6 {
        margin-left: 50%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-prefix-6,
    .row.break-right>.col.default-prefix-6 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 0) {
    .col.default-prefix-7 {
        margin-left: 58.33333%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-prefix-7,
    .row.break-right>.col.default-prefix-7 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 0) {
    .col.default-prefix-8 {
        margin-left: 66.66667%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-prefix-8,
    .row.break-right>.col.default-prefix-8 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 0) {
    .col.default-prefix-9 {
        margin-left: 75%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-prefix-9,
    .row.break-right>.col.default-prefix-9 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 0) {
    .col.default-prefix-10 {
        margin-left: 83.33333%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-prefix-10,
    .row.break-right>.col.default-prefix-10 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 0) {
    .col.default-prefix-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-prefix-11,
    .row.break-right>.col.default-prefix-11 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 0) {
    .col.default-prefix-12 {
        margin-left: 100%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-prefix-12,
    .row.break-right>.col.default-prefix-12 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 0) {
    .col.default-suffix-0 {
        margin-right: 0%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-suffix-0,
    .row.break-right>.col.default-suffix-0 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 0) {
    .col.default-suffix-1 {
        margin-right: 8.33333%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-suffix-1,
    .row.break-right>.col.default-suffix-1 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 0) {
    .col.default-suffix-2 {
        margin-right: 16.66667%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-suffix-2,
    .row.break-right>.col.default-suffix-2 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 0) {
    .col.default-suffix-3 {
        margin-right: 25%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-suffix-3,
    .row.break-right>.col.default-suffix-3 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 0) {
    .col.default-suffix-4 {
        margin-right: 33.33333%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-suffix-4,
    .row.break-right>.col.default-suffix-4 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 0) {
    .col.default-suffix-5 {
        margin-right: 41.66667%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-suffix-5,
    .row.break-right>.col.default-suffix-5 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 0) {
    .col.default-suffix-6 {
        margin-right: 50%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-suffix-6,
    .row.break-right>.col.default-suffix-6 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 0) {
    .col.default-suffix-7 {
        margin-right: 58.33333%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-suffix-7,
    .row.break-right>.col.default-suffix-7 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 0) {
    .col.default-suffix-8 {
        margin-right: 66.66667%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-suffix-8,
    .row.break-right>.col.default-suffix-8 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 0) {
    .col.default-suffix-9 {
        margin-right: 75%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-suffix-9,
    .row.break-right>.col.default-suffix-9 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 0) {
    .col.default-suffix-10 {
        margin-right: 83.33333%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-suffix-10,
    .row.break-right>.col.default-suffix-10 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 0) {
    .col.default-suffix-11 {
        margin-right: 91.66667%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-suffix-11,
    .row.break-right>.col.default-suffix-11 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 0) {
    .col.default-suffix-12 {
        margin-right: 100%
    }
}

@media (min-width: 0) and (min-width: 101.25em) {

    .row.break-left>.col.default-suffix-12,
    .row.break-right>.col.default-suffix-12 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 0) {
    .default-start {
        justify-content: flex-start
    }

    .default-center {
        justify-content: center
    }

    .default-end {
        justify-content: flex-end
    }

    .default-between {
        justify-content: space-between
    }

    .default-around {
        justify-content: space-around
    }

    .default-top {
        align-items: flex-start
    }

    .default-middle {
        align-items: center
    }

    .default-baseline {
        align-items: flex-baseline
    }

    .default-bottom {
        align-items: flex-end
    }

    .default-stretch {
        align-items: stretch
    }

    .default-reverse {
        flex-direction: row-reverse
    }

    .default-forward {
        flex-direction: row
    }

    .default-first {
        order: -1
    }

    .default-last {
        order: 1
    }

    .default-unset {
        order: 0
    }
}

@media (min-width: 30em) {
    .col.tiny-1 {
        max-width: 8.33333%;
        flex-basis: 8.33333%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-1,
    .row.break-right>.col.tiny-1 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 30em) {
    .col.tiny-2 {
        max-width: 16.66667%;
        flex-basis: 16.66667%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-2,
    .row.break-right>.col.tiny-2 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 30em) {
    .col.tiny-3 {
        max-width: 25%;
        flex-basis: 25%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-3,
    .row.break-right>.col.tiny-3 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 30em) {
    .col.tiny-4 {
        max-width: 33.33333%;
        flex-basis: 33.33333%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-4,
    .row.break-right>.col.tiny-4 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 30em) {
    .col.tiny-5 {
        max-width: 41.66667%;
        flex-basis: 41.66667%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-5,
    .row.break-right>.col.tiny-5 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 30em) {
    .col.tiny-6 {
        max-width: 50%;
        flex-basis: 50%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-6,
    .row.break-right>.col.tiny-6 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 30em) {
    .col.tiny-7 {
        max-width: 58.33333%;
        flex-basis: 58.33333%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-7,
    .row.break-right>.col.tiny-7 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 30em) {
    .col.tiny-8 {
        max-width: 66.66667%;
        flex-basis: 66.66667%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-8,
    .row.break-right>.col.tiny-8 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 30em) {
    .col.tiny-9 {
        max-width: 75%;
        flex-basis: 75%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-9,
    .row.break-right>.col.tiny-9 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 30em) {
    .col.tiny-10 {
        max-width: 83.33333%;
        flex-basis: 83.33333%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-10,
    .row.break-right>.col.tiny-10 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 30em) {
    .col.tiny-11 {
        max-width: 91.66667%;
        flex-basis: 91.66667%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-11,
    .row.break-right>.col.tiny-11 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 30em) {
    .col.tiny-12 {
        max-width: 100%;
        flex-basis: 100%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-12,
    .row.break-right>.col.tiny-12 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 30em) {
    .col.tiny-auto {
        max-width: 100%;
        flex-basis: 0
    }

    .row.break-left>.col.tiny-auto,
    .row.break-right>.col.tiny-auto {
        max-width: 100%
    }

    .col.tiny-prefix-0 {
        margin-left: 0%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-prefix-0,
    .row.break-right>.col.tiny-prefix-0 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 30em) {
    .col.tiny-prefix-1 {
        margin-left: 8.33333%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-prefix-1,
    .row.break-right>.col.tiny-prefix-1 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 30em) {
    .col.tiny-prefix-2 {
        margin-left: 16.66667%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-prefix-2,
    .row.break-right>.col.tiny-prefix-2 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 30em) {
    .col.tiny-prefix-3 {
        margin-left: 25%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-prefix-3,
    .row.break-right>.col.tiny-prefix-3 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 30em) {
    .col.tiny-prefix-4 {
        margin-left: 33.33333%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-prefix-4,
    .row.break-right>.col.tiny-prefix-4 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 30em) {
    .col.tiny-prefix-5 {
        margin-left: 41.66667%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-prefix-5,
    .row.break-right>.col.tiny-prefix-5 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 30em) {
    .col.tiny-prefix-6 {
        margin-left: 50%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-prefix-6,
    .row.break-right>.col.tiny-prefix-6 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 30em) {
    .col.tiny-prefix-7 {
        margin-left: 58.33333%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-prefix-7,
    .row.break-right>.col.tiny-prefix-7 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 30em) {
    .col.tiny-prefix-8 {
        margin-left: 66.66667%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-prefix-8,
    .row.break-right>.col.tiny-prefix-8 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 30em) {
    .col.tiny-prefix-9 {
        margin-left: 75%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-prefix-9,
    .row.break-right>.col.tiny-prefix-9 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 30em) {
    .col.tiny-prefix-10 {
        margin-left: 83.33333%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-prefix-10,
    .row.break-right>.col.tiny-prefix-10 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 30em) {
    .col.tiny-prefix-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-prefix-11,
    .row.break-right>.col.tiny-prefix-11 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 30em) {
    .col.tiny-prefix-12 {
        margin-left: 100%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-prefix-12,
    .row.break-right>.col.tiny-prefix-12 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 30em) {
    .col.tiny-suffix-0 {
        margin-right: 0%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-suffix-0,
    .row.break-right>.col.tiny-suffix-0 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 30em) {
    .col.tiny-suffix-1 {
        margin-right: 8.33333%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-suffix-1,
    .row.break-right>.col.tiny-suffix-1 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 30em) {
    .col.tiny-suffix-2 {
        margin-right: 16.66667%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-suffix-2,
    .row.break-right>.col.tiny-suffix-2 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 30em) {
    .col.tiny-suffix-3 {
        margin-right: 25%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-suffix-3,
    .row.break-right>.col.tiny-suffix-3 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 30em) {
    .col.tiny-suffix-4 {
        margin-right: 33.33333%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-suffix-4,
    .row.break-right>.col.tiny-suffix-4 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 30em) {
    .col.tiny-suffix-5 {
        margin-right: 41.66667%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-suffix-5,
    .row.break-right>.col.tiny-suffix-5 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 30em) {
    .col.tiny-suffix-6 {
        margin-right: 50%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-suffix-6,
    .row.break-right>.col.tiny-suffix-6 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 30em) {
    .col.tiny-suffix-7 {
        margin-right: 58.33333%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-suffix-7,
    .row.break-right>.col.tiny-suffix-7 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 30em) {
    .col.tiny-suffix-8 {
        margin-right: 66.66667%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-suffix-8,
    .row.break-right>.col.tiny-suffix-8 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 30em) {
    .col.tiny-suffix-9 {
        margin-right: 75%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-suffix-9,
    .row.break-right>.col.tiny-suffix-9 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 30em) {
    .col.tiny-suffix-10 {
        margin-right: 83.33333%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-suffix-10,
    .row.break-right>.col.tiny-suffix-10 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 30em) {
    .col.tiny-suffix-11 {
        margin-right: 91.66667%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-suffix-11,
    .row.break-right>.col.tiny-suffix-11 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 30em) {
    .col.tiny-suffix-12 {
        margin-right: 100%
    }
}

@media (min-width: 30em) and (min-width: 101.25em) {

    .row.break-left>.col.tiny-suffix-12,
    .row.break-right>.col.tiny-suffix-12 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 30em) {
    .tiny-start {
        justify-content: flex-start
    }

    .tiny-center {
        justify-content: center
    }

    .tiny-end {
        justify-content: flex-end
    }

    .tiny-between {
        justify-content: space-between
    }

    .tiny-around {
        justify-content: space-around
    }

    .tiny-top {
        align-items: flex-start
    }

    .tiny-middle {
        align-items: center
    }

    .tiny-baseline {
        align-items: flex-baseline
    }

    .tiny-bottom {
        align-items: flex-end
    }

    .tiny-stretch {
        align-items: stretch
    }

    .tiny-reverse {
        flex-direction: row-reverse
    }

    .tiny-forward {
        flex-direction: row
    }

    .tiny-first {
        order: -1
    }

    .tiny-last {
        order: 1
    }

    .tiny-unset {
        order: 0
    }
}

@media (min-width: 40em) {
    .col.small-1 {
        max-width: 8.33333%;
        flex-basis: 8.33333%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-1,
    .row.break-right>.col.small-1 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 40em) {
    .col.small-2 {
        max-width: 16.66667%;
        flex-basis: 16.66667%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-2,
    .row.break-right>.col.small-2 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 40em) {
    .col.small-3 {
        max-width: 25%;
        flex-basis: 25%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-3,
    .row.break-right>.col.small-3 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 40em) {
    .col.small-4 {
        max-width: 33.33333%;
        flex-basis: 33.33333%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-4,
    .row.break-right>.col.small-4 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 40em) {
    .col.small-5 {
        max-width: 41.66667%;
        flex-basis: 41.66667%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-5,
    .row.break-right>.col.small-5 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 40em) {
    .col.small-6 {
        max-width: 50%;
        flex-basis: 50%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-6,
    .row.break-right>.col.small-6 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 40em) {
    .col.small-7 {
        max-width: 58.33333%;
        flex-basis: 58.33333%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-7,
    .row.break-right>.col.small-7 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 40em) {
    .col.small-8 {
        max-width: 66.66667%;
        flex-basis: 66.66667%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-8,
    .row.break-right>.col.small-8 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 40em) {
    .col.small-9 {
        max-width: 75%;
        flex-basis: 75%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-9,
    .row.break-right>.col.small-9 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 40em) {
    .col.small-10 {
        max-width: 83.33333%;
        flex-basis: 83.33333%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-10,
    .row.break-right>.col.small-10 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 40em) {
    .col.small-11 {
        max-width: 91.66667%;
        flex-basis: 91.66667%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-11,
    .row.break-right>.col.small-11 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 40em) {
    .col.small-12 {
        max-width: 100%;
        flex-basis: 100%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-12,
    .row.break-right>.col.small-12 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 40em) {
    .col.small-auto {
        max-width: 100%;
        flex-basis: 0
    }

    .row.break-left>.col.small-auto,
    .row.break-right>.col.small-auto {
        max-width: 100%
    }

    .col.small-prefix-0 {
        margin-left: 0%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-prefix-0,
    .row.break-right>.col.small-prefix-0 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 40em) {
    .col.small-prefix-1 {
        margin-left: 8.33333%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-prefix-1,
    .row.break-right>.col.small-prefix-1 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 40em) {
    .col.small-prefix-2 {
        margin-left: 16.66667%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-prefix-2,
    .row.break-right>.col.small-prefix-2 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 40em) {
    .col.small-prefix-3 {
        margin-left: 25%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-prefix-3,
    .row.break-right>.col.small-prefix-3 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 40em) {
    .col.small-prefix-4 {
        margin-left: 33.33333%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-prefix-4,
    .row.break-right>.col.small-prefix-4 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 40em) {
    .col.small-prefix-5 {
        margin-left: 41.66667%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-prefix-5,
    .row.break-right>.col.small-prefix-5 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 40em) {
    .col.small-prefix-6 {
        margin-left: 50%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-prefix-6,
    .row.break-right>.col.small-prefix-6 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 40em) {
    .col.small-prefix-7 {
        margin-left: 58.33333%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-prefix-7,
    .row.break-right>.col.small-prefix-7 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 40em) {
    .col.small-prefix-8 {
        margin-left: 66.66667%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-prefix-8,
    .row.break-right>.col.small-prefix-8 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 40em) {
    .col.small-prefix-9 {
        margin-left: 75%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-prefix-9,
    .row.break-right>.col.small-prefix-9 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 40em) {
    .col.small-prefix-10 {
        margin-left: 83.33333%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-prefix-10,
    .row.break-right>.col.small-prefix-10 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 40em) {
    .col.small-prefix-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-prefix-11,
    .row.break-right>.col.small-prefix-11 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 40em) {
    .col.small-prefix-12 {
        margin-left: 100%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-prefix-12,
    .row.break-right>.col.small-prefix-12 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 40em) {
    .col.small-suffix-0 {
        margin-right: 0%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-suffix-0,
    .row.break-right>.col.small-suffix-0 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 40em) {
    .col.small-suffix-1 {
        margin-right: 8.33333%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-suffix-1,
    .row.break-right>.col.small-suffix-1 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 40em) {
    .col.small-suffix-2 {
        margin-right: 16.66667%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-suffix-2,
    .row.break-right>.col.small-suffix-2 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 40em) {
    .col.small-suffix-3 {
        margin-right: 25%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-suffix-3,
    .row.break-right>.col.small-suffix-3 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 40em) {
    .col.small-suffix-4 {
        margin-right: 33.33333%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-suffix-4,
    .row.break-right>.col.small-suffix-4 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 40em) {
    .col.small-suffix-5 {
        margin-right: 41.66667%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-suffix-5,
    .row.break-right>.col.small-suffix-5 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 40em) {
    .col.small-suffix-6 {
        margin-right: 50%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-suffix-6,
    .row.break-right>.col.small-suffix-6 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 40em) {
    .col.small-suffix-7 {
        margin-right: 58.33333%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-suffix-7,
    .row.break-right>.col.small-suffix-7 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 40em) {
    .col.small-suffix-8 {
        margin-right: 66.66667%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-suffix-8,
    .row.break-right>.col.small-suffix-8 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 40em) {
    .col.small-suffix-9 {
        margin-right: 75%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-suffix-9,
    .row.break-right>.col.small-suffix-9 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 40em) {
    .col.small-suffix-10 {
        margin-right: 83.33333%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-suffix-10,
    .row.break-right>.col.small-suffix-10 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 40em) {
    .col.small-suffix-11 {
        margin-right: 91.66667%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-suffix-11,
    .row.break-right>.col.small-suffix-11 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 40em) {
    .col.small-suffix-12 {
        margin-right: 100%
    }
}

@media (min-width: 40em) and (min-width: 101.25em) {

    .row.break-left>.col.small-suffix-12,
    .row.break-right>.col.small-suffix-12 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 40em) {
    .small-start {
        justify-content: flex-start
    }

    .small-center {
        justify-content: center
    }

    .small-end {
        justify-content: flex-end
    }

    .small-between {
        justify-content: space-between
    }

    .small-around {
        justify-content: space-around
    }

    .small-top {
        align-items: flex-start
    }

    .small-middle {
        align-items: center
    }

    .small-baseline {
        align-items: flex-baseline
    }

    .small-bottom {
        align-items: flex-end
    }

    .small-stretch {
        align-items: stretch
    }

    .small-reverse {
        flex-direction: row-reverse
    }

    .small-forward {
        flex-direction: row
    }

    .small-first {
        order: -1
    }

    .small-last {
        order: 1
    }

    .small-unset {
        order: 0
    }
}

@media (min-width: 47.5em) {
    .col.medium-1 {
        max-width: 8.33333%;
        flex-basis: 8.33333%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-1,
    .row.break-right>.col.medium-1 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 47.5em) {
    .col.medium-2 {
        max-width: 16.66667%;
        flex-basis: 16.66667%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-2,
    .row.break-right>.col.medium-2 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 47.5em) {
    .col.medium-3 {
        max-width: 25%;
        flex-basis: 25%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-3,
    .row.break-right>.col.medium-3 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 47.5em) {
    .col.medium-4 {
        max-width: 33.33333%;
        flex-basis: 33.33333%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-4,
    .row.break-right>.col.medium-4 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 47.5em) {
    .col.medium-5 {
        max-width: 41.66667%;
        flex-basis: 41.66667%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-5,
    .row.break-right>.col.medium-5 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 47.5em) {
    .col.medium-6 {
        max-width: 50%;
        flex-basis: 50%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-6,
    .row.break-right>.col.medium-6 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 47.5em) {
    .col.medium-7 {
        max-width: 58.33333%;
        flex-basis: 58.33333%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-7,
    .row.break-right>.col.medium-7 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 47.5em) {
    .col.medium-8 {
        max-width: 66.66667%;
        flex-basis: 66.66667%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-8,
    .row.break-right>.col.medium-8 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 47.5em) {
    .col.medium-9 {
        max-width: 75%;
        flex-basis: 75%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-9,
    .row.break-right>.col.medium-9 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 47.5em) {
    .col.medium-10 {
        max-width: 83.33333%;
        flex-basis: 83.33333%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-10,
    .row.break-right>.col.medium-10 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 47.5em) {
    .col.medium-11 {
        max-width: 91.66667%;
        flex-basis: 91.66667%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-11,
    .row.break-right>.col.medium-11 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 47.5em) {
    .col.medium-12 {
        max-width: 100%;
        flex-basis: 100%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-12,
    .row.break-right>.col.medium-12 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 47.5em) {
    .col.medium-auto {
        max-width: 100%;
        flex-basis: 0
    }

    .row.break-left>.col.medium-auto,
    .row.break-right>.col.medium-auto {
        max-width: 100%
    }

    .col.medium-prefix-0 {
        margin-left: 0%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-prefix-0,
    .row.break-right>.col.medium-prefix-0 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 47.5em) {
    .col.medium-prefix-1 {
        margin-left: 8.33333%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-prefix-1,
    .row.break-right>.col.medium-prefix-1 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 47.5em) {
    .col.medium-prefix-2 {
        margin-left: 16.66667%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-prefix-2,
    .row.break-right>.col.medium-prefix-2 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 47.5em) {
    .col.medium-prefix-3 {
        margin-left: 25%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-prefix-3,
    .row.break-right>.col.medium-prefix-3 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 47.5em) {
    .col.medium-prefix-4 {
        margin-left: 33.33333%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-prefix-4,
    .row.break-right>.col.medium-prefix-4 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 47.5em) {
    .col.medium-prefix-5 {
        margin-left: 41.66667%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-prefix-5,
    .row.break-right>.col.medium-prefix-5 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 47.5em) {
    .col.medium-prefix-6 {
        margin-left: 50%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-prefix-6,
    .row.break-right>.col.medium-prefix-6 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 47.5em) {
    .col.medium-prefix-7 {
        margin-left: 58.33333%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-prefix-7,
    .row.break-right>.col.medium-prefix-7 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 47.5em) {
    .col.medium-prefix-8 {
        margin-left: 66.66667%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-prefix-8,
    .row.break-right>.col.medium-prefix-8 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 47.5em) {
    .col.medium-prefix-9 {
        margin-left: 75%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-prefix-9,
    .row.break-right>.col.medium-prefix-9 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 47.5em) {
    .col.medium-prefix-10 {
        margin-left: 83.33333%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-prefix-10,
    .row.break-right>.col.medium-prefix-10 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 47.5em) {
    .col.medium-prefix-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-prefix-11,
    .row.break-right>.col.medium-prefix-11 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 47.5em) {
    .col.medium-prefix-12 {
        margin-left: 100%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-prefix-12,
    .row.break-right>.col.medium-prefix-12 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 47.5em) {
    .col.medium-suffix-0 {
        margin-right: 0%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-suffix-0,
    .row.break-right>.col.medium-suffix-0 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 47.5em) {
    .col.medium-suffix-1 {
        margin-right: 8.33333%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-suffix-1,
    .row.break-right>.col.medium-suffix-1 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 47.5em) {
    .col.medium-suffix-2 {
        margin-right: 16.66667%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-suffix-2,
    .row.break-right>.col.medium-suffix-2 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 47.5em) {
    .col.medium-suffix-3 {
        margin-right: 25%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-suffix-3,
    .row.break-right>.col.medium-suffix-3 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 47.5em) {
    .col.medium-suffix-4 {
        margin-right: 33.33333%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-suffix-4,
    .row.break-right>.col.medium-suffix-4 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 47.5em) {
    .col.medium-suffix-5 {
        margin-right: 41.66667%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-suffix-5,
    .row.break-right>.col.medium-suffix-5 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 47.5em) {
    .col.medium-suffix-6 {
        margin-right: 50%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-suffix-6,
    .row.break-right>.col.medium-suffix-6 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 47.5em) {
    .col.medium-suffix-7 {
        margin-right: 58.33333%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-suffix-7,
    .row.break-right>.col.medium-suffix-7 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 47.5em) {
    .col.medium-suffix-8 {
        margin-right: 66.66667%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-suffix-8,
    .row.break-right>.col.medium-suffix-8 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 47.5em) {
    .col.medium-suffix-9 {
        margin-right: 75%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-suffix-9,
    .row.break-right>.col.medium-suffix-9 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 47.5em) {
    .col.medium-suffix-10 {
        margin-right: 83.33333%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-suffix-10,
    .row.break-right>.col.medium-suffix-10 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 47.5em) {
    .col.medium-suffix-11 {
        margin-right: 91.66667%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-suffix-11,
    .row.break-right>.col.medium-suffix-11 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 47.5em) {
    .col.medium-suffix-12 {
        margin-right: 100%
    }
}

@media (min-width: 47.5em) and (min-width: 101.25em) {

    .row.break-left>.col.medium-suffix-12,
    .row.break-right>.col.medium-suffix-12 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 47.5em) {
    .medium-start {
        justify-content: flex-start
    }

    .medium-center {
        justify-content: center
    }

    .medium-end {
        justify-content: flex-end
    }

    .medium-between {
        justify-content: space-between
    }

    .medium-around {
        justify-content: space-around
    }

    .medium-top {
        align-items: flex-start
    }

    .medium-middle {
        align-items: center
    }

    .medium-baseline {
        align-items: flex-baseline
    }

    .medium-bottom {
        align-items: flex-end
    }

    .medium-stretch {
        align-items: stretch
    }

    .medium-reverse {
        flex-direction: row-reverse
    }

    .medium-forward {
        flex-direction: row
    }

    .medium-first {
        order: -1
    }

    .medium-last {
        order: 1
    }

    .medium-unset {
        order: 0
    }
}

@media (min-width: 62em) {
    .col.large-1 {
        max-width: 8.33333%;
        flex-basis: 8.33333%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-1,
    .row.break-right>.col.large-1 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 62em) {
    .col.large-2 {
        max-width: 16.66667%;
        flex-basis: 16.66667%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-2,
    .row.break-right>.col.large-2 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 62em) {
    .col.large-3 {
        max-width: 25%;
        flex-basis: 25%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-3,
    .row.break-right>.col.large-3 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 62em) {
    .col.large-4 {
        max-width: 33.33333%;
        flex-basis: 33.33333%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-4,
    .row.break-right>.col.large-4 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 62em) {
    .col.large-5 {
        max-width: 41.66667%;
        flex-basis: 41.66667%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-5,
    .row.break-right>.col.large-5 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 62em) {
    .col.large-6 {
        max-width: 50%;
        flex-basis: 50%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-6,
    .row.break-right>.col.large-6 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 62em) {
    .col.large-7 {
        max-width: 58.33333%;
        flex-basis: 58.33333%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-7,
    .row.break-right>.col.large-7 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 62em) {
    .col.large-8 {
        max-width: 66.66667%;
        flex-basis: 66.66667%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-8,
    .row.break-right>.col.large-8 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 62em) {
    .col.large-9 {
        max-width: 75%;
        flex-basis: 75%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-9,
    .row.break-right>.col.large-9 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 62em) {
    .col.large-10 {
        max-width: 83.33333%;
        flex-basis: 83.33333%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-10,
    .row.break-right>.col.large-10 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 62em) {
    .col.large-11 {
        max-width: 91.66667%;
        flex-basis: 91.66667%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-11,
    .row.break-right>.col.large-11 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 62em) {
    .col.large-12 {
        max-width: 100%;
        flex-basis: 100%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-12,
    .row.break-right>.col.large-12 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 62em) {
    .col.large-auto {
        max-width: 100%;
        flex-basis: 0
    }

    .row.break-left>.col.large-auto,
    .row.break-right>.col.large-auto {
        max-width: 100%
    }

    .col.large-prefix-0 {
        margin-left: 0%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-prefix-0,
    .row.break-right>.col.large-prefix-0 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 62em) {
    .col.large-prefix-1 {
        margin-left: 8.33333%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-prefix-1,
    .row.break-right>.col.large-prefix-1 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 62em) {
    .col.large-prefix-2 {
        margin-left: 16.66667%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-prefix-2,
    .row.break-right>.col.large-prefix-2 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 62em) {
    .col.large-prefix-3 {
        margin-left: 25%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-prefix-3,
    .row.break-right>.col.large-prefix-3 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 62em) {
    .col.large-prefix-4 {
        margin-left: 33.33333%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-prefix-4,
    .row.break-right>.col.large-prefix-4 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 62em) {
    .col.large-prefix-5 {
        margin-left: 41.66667%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-prefix-5,
    .row.break-right>.col.large-prefix-5 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 62em) {
    .col.large-prefix-6 {
        margin-left: 50%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-prefix-6,
    .row.break-right>.col.large-prefix-6 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 62em) {
    .col.large-prefix-7 {
        margin-left: 58.33333%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-prefix-7,
    .row.break-right>.col.large-prefix-7 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 62em) {
    .col.large-prefix-8 {
        margin-left: 66.66667%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-prefix-8,
    .row.break-right>.col.large-prefix-8 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 62em) {
    .col.large-prefix-9 {
        margin-left: 75%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-prefix-9,
    .row.break-right>.col.large-prefix-9 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 62em) {
    .col.large-prefix-10 {
        margin-left: 83.33333%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-prefix-10,
    .row.break-right>.col.large-prefix-10 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 62em) {
    .col.large-prefix-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-prefix-11,
    .row.break-right>.col.large-prefix-11 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 62em) {
    .col.large-prefix-12 {
        margin-left: 100%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-prefix-12,
    .row.break-right>.col.large-prefix-12 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 62em) {
    .col.large-suffix-0 {
        margin-right: 0%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-suffix-0,
    .row.break-right>.col.large-suffix-0 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 62em) {
    .col.large-suffix-1 {
        margin-right: 8.33333%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-suffix-1,
    .row.break-right>.col.large-suffix-1 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 62em) {
    .col.large-suffix-2 {
        margin-right: 16.66667%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-suffix-2,
    .row.break-right>.col.large-suffix-2 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 62em) {
    .col.large-suffix-3 {
        margin-right: 25%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-suffix-3,
    .row.break-right>.col.large-suffix-3 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 62em) {
    .col.large-suffix-4 {
        margin-right: 33.33333%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-suffix-4,
    .row.break-right>.col.large-suffix-4 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 62em) {
    .col.large-suffix-5 {
        margin-right: 41.66667%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-suffix-5,
    .row.break-right>.col.large-suffix-5 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 62em) {
    .col.large-suffix-6 {
        margin-right: 50%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-suffix-6,
    .row.break-right>.col.large-suffix-6 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 62em) {
    .col.large-suffix-7 {
        margin-right: 58.33333%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-suffix-7,
    .row.break-right>.col.large-suffix-7 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 62em) {
    .col.large-suffix-8 {
        margin-right: 66.66667%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-suffix-8,
    .row.break-right>.col.large-suffix-8 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 62em) {
    .col.large-suffix-9 {
        margin-right: 75%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-suffix-9,
    .row.break-right>.col.large-suffix-9 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 62em) {
    .col.large-suffix-10 {
        margin-right: 83.33333%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-suffix-10,
    .row.break-right>.col.large-suffix-10 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 62em) {
    .col.large-suffix-11 {
        margin-right: 91.66667%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-suffix-11,
    .row.break-right>.col.large-suffix-11 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 62em) {
    .col.large-suffix-12 {
        margin-right: 100%
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {

    .row.break-left>.col.large-suffix-12,
    .row.break-right>.col.large-suffix-12 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 62em) {
    .large-start {
        justify-content: flex-start
    }

    .large-center {
        justify-content: center
    }

    .large-end {
        justify-content: flex-end
    }

    .large-between {
        justify-content: space-between
    }

    .large-around {
        justify-content: space-around
    }

    .large-top {
        align-items: flex-start
    }

    .large-middle {
        align-items: center
    }

    .large-baseline {
        align-items: flex-baseline
    }

    .large-bottom {
        align-items: flex-end
    }

    .large-stretch {
        align-items: stretch
    }

    .large-reverse {
        flex-direction: row-reverse
    }

    .large-forward {
        flex-direction: row
    }

    .large-first {
        order: -1
    }

    .large-last {
        order: 1
    }

    .large-unset {
        order: 0
    }
}

@media (min-width: 75em) {
    .col.giant-1 {
        max-width: 8.33333%;
        flex-basis: 8.33333%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-1,
    .row.break-right>.col.giant-1 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 75em) {
    .col.giant-2 {
        max-width: 16.66667%;
        flex-basis: 16.66667%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-2,
    .row.break-right>.col.giant-2 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 75em) {
    .col.giant-3 {
        max-width: 25%;
        flex-basis: 25%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-3,
    .row.break-right>.col.giant-3 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 75em) {
    .col.giant-4 {
        max-width: 33.33333%;
        flex-basis: 33.33333%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-4,
    .row.break-right>.col.giant-4 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 75em) {
    .col.giant-5 {
        max-width: 41.66667%;
        flex-basis: 41.66667%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-5,
    .row.break-right>.col.giant-5 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 75em) {
    .col.giant-6 {
        max-width: 50%;
        flex-basis: 50%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-6,
    .row.break-right>.col.giant-6 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 75em) {
    .col.giant-7 {
        max-width: 58.33333%;
        flex-basis: 58.33333%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-7,
    .row.break-right>.col.giant-7 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 75em) {
    .col.giant-8 {
        max-width: 66.66667%;
        flex-basis: 66.66667%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-8,
    .row.break-right>.col.giant-8 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 75em) {
    .col.giant-9 {
        max-width: 75%;
        flex-basis: 75%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-9,
    .row.break-right>.col.giant-9 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 75em) {
    .col.giant-10 {
        max-width: 83.33333%;
        flex-basis: 83.33333%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-10,
    .row.break-right>.col.giant-10 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 75em) {
    .col.giant-11 {
        max-width: 91.66667%;
        flex-basis: 91.66667%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-11,
    .row.break-right>.col.giant-11 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 75em) {
    .col.giant-12 {
        max-width: 100%;
        flex-basis: 100%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-12,
    .row.break-right>.col.giant-12 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 75em) {
    .col.giant-auto {
        max-width: 100%;
        flex-basis: 0
    }

    .row.break-left>.col.giant-auto,
    .row.break-right>.col.giant-auto {
        max-width: 100%
    }

    .col.giant-prefix-0 {
        margin-left: 0%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-prefix-0,
    .row.break-right>.col.giant-prefix-0 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 75em) {
    .col.giant-prefix-1 {
        margin-left: 8.33333%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-prefix-1,
    .row.break-right>.col.giant-prefix-1 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 75em) {
    .col.giant-prefix-2 {
        margin-left: 16.66667%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-prefix-2,
    .row.break-right>.col.giant-prefix-2 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 75em) {
    .col.giant-prefix-3 {
        margin-left: 25%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-prefix-3,
    .row.break-right>.col.giant-prefix-3 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 75em) {
    .col.giant-prefix-4 {
        margin-left: 33.33333%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-prefix-4,
    .row.break-right>.col.giant-prefix-4 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 75em) {
    .col.giant-prefix-5 {
        margin-left: 41.66667%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-prefix-5,
    .row.break-right>.col.giant-prefix-5 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 75em) {
    .col.giant-prefix-6 {
        margin-left: 50%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-prefix-6,
    .row.break-right>.col.giant-prefix-6 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 75em) {
    .col.giant-prefix-7 {
        margin-left: 58.33333%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-prefix-7,
    .row.break-right>.col.giant-prefix-7 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 75em) {
    .col.giant-prefix-8 {
        margin-left: 66.66667%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-prefix-8,
    .row.break-right>.col.giant-prefix-8 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 75em) {
    .col.giant-prefix-9 {
        margin-left: 75%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-prefix-9,
    .row.break-right>.col.giant-prefix-9 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 75em) {
    .col.giant-prefix-10 {
        margin-left: 83.33333%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-prefix-10,
    .row.break-right>.col.giant-prefix-10 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 75em) {
    .col.giant-prefix-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-prefix-11,
    .row.break-right>.col.giant-prefix-11 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 75em) {
    .col.giant-prefix-12 {
        margin-left: 100%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-prefix-12,
    .row.break-right>.col.giant-prefix-12 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 75em) {
    .col.giant-suffix-0 {
        margin-right: 0%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-suffix-0,
    .row.break-right>.col.giant-suffix-0 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 75em) {
    .col.giant-suffix-1 {
        margin-right: 8.33333%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-suffix-1,
    .row.break-right>.col.giant-suffix-1 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 75em) {
    .col.giant-suffix-2 {
        margin-right: 16.66667%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-suffix-2,
    .row.break-right>.col.giant-suffix-2 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 75em) {
    .col.giant-suffix-3 {
        margin-right: 25%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-suffix-3,
    .row.break-right>.col.giant-suffix-3 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 75em) {
    .col.giant-suffix-4 {
        margin-right: 33.33333%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-suffix-4,
    .row.break-right>.col.giant-suffix-4 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 75em) {
    .col.giant-suffix-5 {
        margin-right: 41.66667%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-suffix-5,
    .row.break-right>.col.giant-suffix-5 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 75em) {
    .col.giant-suffix-6 {
        margin-right: 50%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-suffix-6,
    .row.break-right>.col.giant-suffix-6 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 75em) {
    .col.giant-suffix-7 {
        margin-right: 58.33333%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-suffix-7,
    .row.break-right>.col.giant-suffix-7 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 75em) {
    .col.giant-suffix-8 {
        margin-right: 66.66667%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-suffix-8,
    .row.break-right>.col.giant-suffix-8 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 75em) {
    .col.giant-suffix-9 {
        margin-right: 75%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-suffix-9,
    .row.break-right>.col.giant-suffix-9 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 75em) {
    .col.giant-suffix-10 {
        margin-right: 83.33333%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-suffix-10,
    .row.break-right>.col.giant-suffix-10 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 75em) {
    .col.giant-suffix-11 {
        margin-right: 91.66667%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-suffix-11,
    .row.break-right>.col.giant-suffix-11 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 75em) {
    .col.giant-suffix-12 {
        margin-right: 100%
    }
}

@media (min-width: 75em) and (min-width: 101.25em) {

    .row.break-left>.col.giant-suffix-12,
    .row.break-right>.col.giant-suffix-12 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 75em) {
    .giant-start {
        justify-content: flex-start
    }

    .giant-center {
        justify-content: center
    }

    .giant-end {
        justify-content: flex-end
    }

    .giant-between {
        justify-content: space-between
    }

    .giant-around {
        justify-content: space-around
    }

    .giant-top {
        align-items: flex-start
    }

    .giant-middle {
        align-items: center
    }

    .giant-baseline {
        align-items: flex-baseline
    }

    .giant-bottom {
        align-items: flex-end
    }

    .giant-stretch {
        align-items: stretch
    }

    .giant-reverse {
        flex-direction: row-reverse
    }

    .giant-forward {
        flex-direction: row
    }

    .giant-first {
        order: -1
    }

    .giant-last {
        order: 1
    }

    .giant-unset {
        order: 0
    }
}

@media (min-width: 85.25em) {
    .col.huge-1 {
        max-width: 8.33333%;
        flex-basis: 8.33333%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-1,
    .row.break-right>.col.huge-1 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 85.25em) {
    .col.huge-2 {
        max-width: 16.66667%;
        flex-basis: 16.66667%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-2,
    .row.break-right>.col.huge-2 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 85.25em) {
    .col.huge-3 {
        max-width: 25%;
        flex-basis: 25%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-3,
    .row.break-right>.col.huge-3 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 85.25em) {
    .col.huge-4 {
        max-width: 33.33333%;
        flex-basis: 33.33333%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-4,
    .row.break-right>.col.huge-4 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 85.25em) {
    .col.huge-5 {
        max-width: 41.66667%;
        flex-basis: 41.66667%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-5,
    .row.break-right>.col.huge-5 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 85.25em) {
    .col.huge-6 {
        max-width: 50%;
        flex-basis: 50%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-6,
    .row.break-right>.col.huge-6 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 85.25em) {
    .col.huge-7 {
        max-width: 58.33333%;
        flex-basis: 58.33333%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-7,
    .row.break-right>.col.huge-7 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 85.25em) {
    .col.huge-8 {
        max-width: 66.66667%;
        flex-basis: 66.66667%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-8,
    .row.break-right>.col.huge-8 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 85.25em) {
    .col.huge-9 {
        max-width: 75%;
        flex-basis: 75%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-9,
    .row.break-right>.col.huge-9 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 85.25em) {
    .col.huge-10 {
        max-width: 83.33333%;
        flex-basis: 83.33333%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-10,
    .row.break-right>.col.huge-10 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 85.25em) {
    .col.huge-11 {
        max-width: 91.66667%;
        flex-basis: 91.66667%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-11,
    .row.break-right>.col.huge-11 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 85.25em) {
    .col.huge-12 {
        max-width: 100%;
        flex-basis: 100%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-12,
    .row.break-right>.col.huge-12 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 85.25em) {
    .col.huge-auto {
        max-width: 100%;
        flex-basis: 0
    }

    .row.break-left>.col.huge-auto,
    .row.break-right>.col.huge-auto {
        max-width: 100%
    }

    .col.huge-prefix-0 {
        margin-left: 0%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-prefix-0,
    .row.break-right>.col.huge-prefix-0 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 85.25em) {
    .col.huge-prefix-1 {
        margin-left: 8.33333%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-prefix-1,
    .row.break-right>.col.huge-prefix-1 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 85.25em) {
    .col.huge-prefix-2 {
        margin-left: 16.66667%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-prefix-2,
    .row.break-right>.col.huge-prefix-2 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 85.25em) {
    .col.huge-prefix-3 {
        margin-left: 25%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-prefix-3,
    .row.break-right>.col.huge-prefix-3 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 85.25em) {
    .col.huge-prefix-4 {
        margin-left: 33.33333%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-prefix-4,
    .row.break-right>.col.huge-prefix-4 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 85.25em) {
    .col.huge-prefix-5 {
        margin-left: 41.66667%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-prefix-5,
    .row.break-right>.col.huge-prefix-5 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 85.25em) {
    .col.huge-prefix-6 {
        margin-left: 50%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-prefix-6,
    .row.break-right>.col.huge-prefix-6 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 85.25em) {
    .col.huge-prefix-7 {
        margin-left: 58.33333%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-prefix-7,
    .row.break-right>.col.huge-prefix-7 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 85.25em) {
    .col.huge-prefix-8 {
        margin-left: 66.66667%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-prefix-8,
    .row.break-right>.col.huge-prefix-8 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 85.25em) {
    .col.huge-prefix-9 {
        margin-left: 75%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-prefix-9,
    .row.break-right>.col.huge-prefix-9 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 85.25em) {
    .col.huge-prefix-10 {
        margin-left: 83.33333%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-prefix-10,
    .row.break-right>.col.huge-prefix-10 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 85.25em) {
    .col.huge-prefix-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-prefix-11,
    .row.break-right>.col.huge-prefix-11 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 85.25em) {
    .col.huge-prefix-12 {
        margin-left: 100%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-prefix-12,
    .row.break-right>.col.huge-prefix-12 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 85.25em) {
    .col.huge-suffix-0 {
        margin-right: 0%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-suffix-0,
    .row.break-right>.col.huge-suffix-0 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 85.25em) {
    .col.huge-suffix-1 {
        margin-right: 8.33333%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-suffix-1,
    .row.break-right>.col.huge-suffix-1 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 85.25em) {
    .col.huge-suffix-2 {
        margin-right: 16.66667%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-suffix-2,
    .row.break-right>.col.huge-suffix-2 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 85.25em) {
    .col.huge-suffix-3 {
        margin-right: 25%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-suffix-3,
    .row.break-right>.col.huge-suffix-3 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 85.25em) {
    .col.huge-suffix-4 {
        margin-right: 33.33333%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-suffix-4,
    .row.break-right>.col.huge-suffix-4 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 85.25em) {
    .col.huge-suffix-5 {
        margin-right: 41.66667%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-suffix-5,
    .row.break-right>.col.huge-suffix-5 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 85.25em) {
    .col.huge-suffix-6 {
        margin-right: 50%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-suffix-6,
    .row.break-right>.col.huge-suffix-6 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 85.25em) {
    .col.huge-suffix-7 {
        margin-right: 58.33333%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-suffix-7,
    .row.break-right>.col.huge-suffix-7 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 85.25em) {
    .col.huge-suffix-8 {
        margin-right: 66.66667%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-suffix-8,
    .row.break-right>.col.huge-suffix-8 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 85.25em) {
    .col.huge-suffix-9 {
        margin-right: 75%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-suffix-9,
    .row.break-right>.col.huge-suffix-9 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 85.25em) {
    .col.huge-suffix-10 {
        margin-right: 83.33333%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-suffix-10,
    .row.break-right>.col.huge-suffix-10 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 85.25em) {
    .col.huge-suffix-11 {
        margin-right: 91.66667%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-suffix-11,
    .row.break-right>.col.huge-suffix-11 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 85.25em) {
    .col.huge-suffix-12 {
        margin-right: 100%
    }
}

@media (min-width: 85.25em) and (min-width: 101.25em) {

    .row.break-left>.col.huge-suffix-12,
    .row.break-right>.col.huge-suffix-12 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 85.25em) {
    .huge-start {
        justify-content: flex-start
    }

    .huge-center {
        justify-content: center
    }

    .huge-end {
        justify-content: flex-end
    }

    .huge-between {
        justify-content: space-between
    }

    .huge-around {
        justify-content: space-around
    }

    .huge-top {
        align-items: flex-start
    }

    .huge-middle {
        align-items: center
    }

    .huge-baseline {
        align-items: flex-baseline
    }

    .huge-bottom {
        align-items: flex-end
    }

    .huge-stretch {
        align-items: stretch
    }

    .huge-reverse {
        flex-direction: row-reverse
    }

    .huge-forward {
        flex-direction: row
    }

    .huge-first {
        order: -1
    }

    .huge-last {
        order: 1
    }

    .huge-unset {
        order: 0
    }
}

@media (min-width: 95em) {
    .col.full-1 {
        max-width: 8.33333%;
        flex-basis: 8.33333%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-1,
    .row.break-right>.col.full-1 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 95em) {
    .col.full-2 {
        max-width: 16.66667%;
        flex-basis: 16.66667%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-2,
    .row.break-right>.col.full-2 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 95em) {
    .col.full-3 {
        max-width: 25%;
        flex-basis: 25%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-3,
    .row.break-right>.col.full-3 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 95em) {
    .col.full-4 {
        max-width: 33.33333%;
        flex-basis: 33.33333%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-4,
    .row.break-right>.col.full-4 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 95em) {
    .col.full-5 {
        max-width: 41.66667%;
        flex-basis: 41.66667%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-5,
    .row.break-right>.col.full-5 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 95em) {
    .col.full-6 {
        max-width: 50%;
        flex-basis: 50%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-6,
    .row.break-right>.col.full-6 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 95em) {
    .col.full-7 {
        max-width: 58.33333%;
        flex-basis: 58.33333%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-7,
    .row.break-right>.col.full-7 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 95em) {
    .col.full-8 {
        max-width: 66.66667%;
        flex-basis: 66.66667%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-8,
    .row.break-right>.col.full-8 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 95em) {
    .col.full-9 {
        max-width: 75%;
        flex-basis: 75%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-9,
    .row.break-right>.col.full-9 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 95em) {
    .col.full-10 {
        max-width: 83.33333%;
        flex-basis: 83.33333%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-10,
    .row.break-right>.col.full-10 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 95em) {
    .col.full-11 {
        max-width: 91.66667%;
        flex-basis: 91.66667%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-11,
    .row.break-right>.col.full-11 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 95em) {
    .col.full-12 {
        max-width: 100%;
        flex-basis: 100%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-12,
    .row.break-right>.col.full-12 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 95em) {
    .col.full-auto {
        max-width: 100%;
        flex-basis: 0
    }

    .row.break-left>.col.full-auto,
    .row.break-right>.col.full-auto {
        max-width: 100%
    }

    .col.full-prefix-0 {
        margin-left: 0%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-prefix-0,
    .row.break-right>.col.full-prefix-0 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 95em) {
    .col.full-prefix-1 {
        margin-left: 8.33333%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-prefix-1,
    .row.break-right>.col.full-prefix-1 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 95em) {
    .col.full-prefix-2 {
        margin-left: 16.66667%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-prefix-2,
    .row.break-right>.col.full-prefix-2 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 95em) {
    .col.full-prefix-3 {
        margin-left: 25%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-prefix-3,
    .row.break-right>.col.full-prefix-3 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 95em) {
    .col.full-prefix-4 {
        margin-left: 33.33333%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-prefix-4,
    .row.break-right>.col.full-prefix-4 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 95em) {
    .col.full-prefix-5 {
        margin-left: 41.66667%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-prefix-5,
    .row.break-right>.col.full-prefix-5 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 95em) {
    .col.full-prefix-6 {
        margin-left: 50%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-prefix-6,
    .row.break-right>.col.full-prefix-6 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 95em) {
    .col.full-prefix-7 {
        margin-left: 58.33333%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-prefix-7,
    .row.break-right>.col.full-prefix-7 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 95em) {
    .col.full-prefix-8 {
        margin-left: 66.66667%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-prefix-8,
    .row.break-right>.col.full-prefix-8 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 95em) {
    .col.full-prefix-9 {
        margin-left: 75%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-prefix-9,
    .row.break-right>.col.full-prefix-9 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 95em) {
    .col.full-prefix-10 {
        margin-left: 83.33333%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-prefix-10,
    .row.break-right>.col.full-prefix-10 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 95em) {
    .col.full-prefix-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-prefix-11,
    .row.break-right>.col.full-prefix-11 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 95em) {
    .col.full-prefix-12 {
        margin-left: 100%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-prefix-12,
    .row.break-right>.col.full-prefix-12 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 95em) {
    .col.full-suffix-0 {
        margin-right: 0%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-suffix-0,
    .row.break-right>.col.full-suffix-0 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 95em) {
    .col.full-suffix-1 {
        margin-right: 8.33333%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-suffix-1,
    .row.break-right>.col.full-suffix-1 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 95em) {
    .col.full-suffix-2 {
        margin-right: 16.66667%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-suffix-2,
    .row.break-right>.col.full-suffix-2 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 95em) {
    .col.full-suffix-3 {
        margin-right: 25%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-suffix-3,
    .row.break-right>.col.full-suffix-3 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 95em) {
    .col.full-suffix-4 {
        margin-right: 33.33333%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-suffix-4,
    .row.break-right>.col.full-suffix-4 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 95em) {
    .col.full-suffix-5 {
        margin-right: 41.66667%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-suffix-5,
    .row.break-right>.col.full-suffix-5 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 95em) {
    .col.full-suffix-6 {
        margin-right: 50%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-suffix-6,
    .row.break-right>.col.full-suffix-6 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 95em) {
    .col.full-suffix-7 {
        margin-right: 58.33333%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-suffix-7,
    .row.break-right>.col.full-suffix-7 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 95em) {
    .col.full-suffix-8 {
        margin-right: 66.66667%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-suffix-8,
    .row.break-right>.col.full-suffix-8 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 95em) {
    .col.full-suffix-9 {
        margin-right: 75%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-suffix-9,
    .row.break-right>.col.full-suffix-9 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 95em) {
    .col.full-suffix-10 {
        margin-right: 83.33333%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-suffix-10,
    .row.break-right>.col.full-suffix-10 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 95em) {
    .col.full-suffix-11 {
        margin-right: 91.66667%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-suffix-11,
    .row.break-right>.col.full-suffix-11 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 95em) {
    .col.full-suffix-12 {
        margin-right: 100%
    }
}

@media (min-width: 95em) and (min-width: 101.25em) {

    .row.break-left>.col.full-suffix-12,
    .row.break-right>.col.full-suffix-12 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 95em) {
    .full-start {
        justify-content: flex-start
    }

    .full-center {
        justify-content: center
    }

    .full-end {
        justify-content: flex-end
    }

    .full-between {
        justify-content: space-between
    }

    .full-around {
        justify-content: space-around
    }

    .full-top {
        align-items: flex-start
    }

    .full-middle {
        align-items: center
    }

    .full-baseline {
        align-items: flex-baseline
    }

    .full-bottom {
        align-items: flex-end
    }

    .full-stretch {
        align-items: stretch
    }

    .full-reverse {
        flex-direction: row-reverse
    }

    .full-forward {
        flex-direction: row
    }

    .full-first {
        order: -1
    }

    .full-last {
        order: 1
    }

    .full-unset {
        order: 0
    }
}

@media (min-width: 101.25em) {
    .col.cut-1 {
        max-width: 8.33333%;
        flex-basis: 8.33333%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-1,
    .row.break-right>.col.cut-1 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 101.25em) {
    .col.cut-2 {
        max-width: 16.66667%;
        flex-basis: 16.66667%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-2,
    .row.break-right>.col.cut-2 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 101.25em) {
    .col.cut-3 {
        max-width: 25%;
        flex-basis: 25%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-3,
    .row.break-right>.col.cut-3 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 101.25em) {
    .col.cut-4 {
        max-width: 33.33333%;
        flex-basis: 33.33333%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-4,
    .row.break-right>.col.cut-4 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 101.25em) {
    .col.cut-5 {
        max-width: 41.66667%;
        flex-basis: 41.66667%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-5,
    .row.break-right>.col.cut-5 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 101.25em) {
    .col.cut-6 {
        max-width: 50%;
        flex-basis: 50%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-6,
    .row.break-right>.col.cut-6 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 101.25em) {
    .col.cut-7 {
        max-width: 58.33333%;
        flex-basis: 58.33333%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-7,
    .row.break-right>.col.cut-7 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 101.25em) {
    .col.cut-8 {
        max-width: 66.66667%;
        flex-basis: 66.66667%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-8,
    .row.break-right>.col.cut-8 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 101.25em) {
    .col.cut-9 {
        max-width: 75%;
        flex-basis: 75%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-9,
    .row.break-right>.col.cut-9 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 101.25em) {
    .col.cut-10 {
        max-width: 83.33333%;
        flex-basis: 83.33333%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-10,
    .row.break-right>.col.cut-10 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 101.25em) {
    .col.cut-11 {
        max-width: 91.66667%;
        flex-basis: 91.66667%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-11,
    .row.break-right>.col.cut-11 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 101.25em) {
    .col.cut-12 {
        max-width: 100%;
        flex-basis: 100%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-12,
    .row.break-right>.col.cut-12 {
        max-width: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 101.25em) {
    .col.cut-auto {
        max-width: 100%;
        flex-basis: 0
    }

    .row.break-left>.col.cut-auto,
    .row.break-right>.col.cut-auto {
        max-width: 100%
    }

    .col.cut-prefix-0 {
        margin-left: 0%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-prefix-0,
    .row.break-right>.col.cut-prefix-0 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 101.25em) {
    .col.cut-prefix-1 {
        margin-left: 8.33333%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-prefix-1,
    .row.break-right>.col.cut-prefix-1 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 101.25em) {
    .col.cut-prefix-2 {
        margin-left: 16.66667%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-prefix-2,
    .row.break-right>.col.cut-prefix-2 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 101.25em) {
    .col.cut-prefix-3 {
        margin-left: 25%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-prefix-3,
    .row.break-right>.col.cut-prefix-3 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 101.25em) {
    .col.cut-prefix-4 {
        margin-left: 33.33333%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-prefix-4,
    .row.break-right>.col.cut-prefix-4 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 101.25em) {
    .col.cut-prefix-5 {
        margin-left: 41.66667%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-prefix-5,
    .row.break-right>.col.cut-prefix-5 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 101.25em) {
    .col.cut-prefix-6 {
        margin-left: 50%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-prefix-6,
    .row.break-right>.col.cut-prefix-6 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 101.25em) {
    .col.cut-prefix-7 {
        margin-left: 58.33333%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-prefix-7,
    .row.break-right>.col.cut-prefix-7 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 101.25em) {
    .col.cut-prefix-8 {
        margin-left: 66.66667%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-prefix-8,
    .row.break-right>.col.cut-prefix-8 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 101.25em) {
    .col.cut-prefix-9 {
        margin-left: 75%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-prefix-9,
    .row.break-right>.col.cut-prefix-9 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 101.25em) {
    .col.cut-prefix-10 {
        margin-left: 83.33333%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-prefix-10,
    .row.break-right>.col.cut-prefix-10 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 101.25em) {
    .col.cut-prefix-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-prefix-11,
    .row.break-right>.col.cut-prefix-11 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 101.25em) {
    .col.cut-prefix-12 {
        margin-left: 100%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-prefix-12,
    .row.break-right>.col.cut-prefix-12 {
        margin-left: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 101.25em) {
    .col.cut-suffix-0 {
        margin-right: 0%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-suffix-0,
    .row.break-right>.col.cut-suffix-0 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 0)
    }
}

@media (min-width: 101.25em) {
    .col.cut-suffix-1 {
        margin-right: 8.33333%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-suffix-1,
    .row.break-right>.col.cut-suffix-1 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 1)
    }
}

@media (min-width: 101.25em) {
    .col.cut-suffix-2 {
        margin-right: 16.66667%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-suffix-2,
    .row.break-right>.col.cut-suffix-2 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 2)
    }
}

@media (min-width: 101.25em) {
    .col.cut-suffix-3 {
        margin-right: 25%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-suffix-3,
    .row.break-right>.col.cut-suffix-3 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 3)
    }
}

@media (min-width: 101.25em) {
    .col.cut-suffix-4 {
        margin-right: 33.33333%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-suffix-4,
    .row.break-right>.col.cut-suffix-4 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 4)
    }
}

@media (min-width: 101.25em) {
    .col.cut-suffix-5 {
        margin-right: 41.66667%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-suffix-5,
    .row.break-right>.col.cut-suffix-5 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 5)
    }
}

@media (min-width: 101.25em) {
    .col.cut-suffix-6 {
        margin-right: 50%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-suffix-6,
    .row.break-right>.col.cut-suffix-6 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 6)
    }
}

@media (min-width: 101.25em) {
    .col.cut-suffix-7 {
        margin-right: 58.33333%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-suffix-7,
    .row.break-right>.col.cut-suffix-7 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 7)
    }
}

@media (min-width: 101.25em) {
    .col.cut-suffix-8 {
        margin-right: 66.66667%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-suffix-8,
    .row.break-right>.col.cut-suffix-8 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 8)
    }
}

@media (min-width: 101.25em) {
    .col.cut-suffix-9 {
        margin-right: 75%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-suffix-9,
    .row.break-right>.col.cut-suffix-9 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 9)
    }
}

@media (min-width: 101.25em) {
    .col.cut-suffix-10 {
        margin-right: 83.33333%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-suffix-10,
    .row.break-right>.col.cut-suffix-10 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 10)
    }
}

@media (min-width: 101.25em) {
    .col.cut-suffix-11 {
        margin-right: 91.66667%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-suffix-11,
    .row.break-right>.col.cut-suffix-11 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 11)
    }
}

@media (min-width: 101.25em) {
    .col.cut-suffix-12 {
        margin-right: 100%
    }
}

@media (min-width: 101.25em) and (min-width: 101.25em) {

    .row.break-left>.col.cut-suffix-12,
    .row.break-right>.col.cut-suffix-12 {
        margin-right: calc(var(--row-max-width-dynamic) / 12 * 12)
    }
}

@media (min-width: 101.25em) {
    .cut-start {
        justify-content: flex-start
    }

    .cut-center {
        justify-content: center
    }

    .cut-end {
        justify-content: flex-end
    }

    .cut-between {
        justify-content: space-between
    }

    .cut-around {
        justify-content: space-around
    }

    .cut-top {
        align-items: flex-start
    }

    .cut-middle {
        align-items: center
    }

    .cut-baseline {
        align-items: flex-baseline
    }

    .cut-bottom {
        align-items: flex-end
    }

    .cut-stretch {
        align-items: stretch
    }

    .cut-reverse {
        flex-direction: row-reverse
    }

    .cut-forward {
        flex-direction: row
    }

    .cut-first {
        order: -1
    }

    .cut-last {
        order: 1
    }

    .cut-unset {
        order: 0
    }
}

:root body {
    --njs-bgcolor: #414141;
    --njs-bgcolor-success: rgb(62, 148, 54);
    --njs-color-success: #fff;
    --njs-bgcolor-error: #54A0D4;
    --njs-color-close: #fff;
    --njs-color: #fff;
    --njs-left: 40px;
    --njs-bottom: 18px;
    --njs-boxshadow: 0px 5px 10px 0px rgba(65, 65, 65, 0.2);
    --njs-border-radius: Min(0, 1rem);
    --njs-bgcolor: #414141
}

:root body {
    --pC-bgcolor: #fff;
    --pC-bgcolor-badge: var(--pC-bgcolor);
    --pC-bgcolor-hover-badge: #f2f2f2;
    --pC-bgcolor-fields: #f2f2f2;
    --pC-color: #333;
    --pC-color-link: #495057;
    --pC-bgcolor-btn: #b3b3b3;
    --pC-color-btn: var(--pC-color);
    --pC-bgcolor-backdrop: rgba(58, 58, 58, 0.85);
    --pc-badge-bottom: 18px;
    --pC-color-border: #ccc;
    --pC-safe-icon-fill: var(--pC-bgcolor-btn-confirm);
    --pC-border-radius: Min(0, 1rem)
}

html[data-privacy-control*=dark] body {
    --pC-bgcolor: #414141;
    --pC-bgcolor-badge: var(--pC-bgcolor);
    --pC-bgcolor-hover-badge: #5b5b5b;
    --pC-bgcolor-fields: #5b5b5b;
    --pC-color: #fff;
    --pC-color-link: #eee;
    --pC-bgcolor-btn: #8e8e8e;
    --pC-color-btn: var(--pC-color);
    --pC-bgcolor-backdrop: rgba(58, 58, 58, 0.85);
    --pC-color-border: #ccc;
    --pC-safe-icon-fill: var(--pC-bgcolor-btn-confirm);
    --pC-border-radius: Min(0, 1rem)
}

.icon:before,
#quickbar li a:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "icomoon", sans-serif
}

.icon-times:before {
    content: "×"
}

.icon-minus:before {
    content: "-"
}

.icon-angle-right:before {
    content: "❯"
}

.icon-plus:before {
    content: "+"
}

.icon-angle-up:before {
    content: "↑"
}

.icon-exclamation:before,
.informatizer:before {
    content: "!"
}

.icon-arrow-right:before {
    content: " "
}

.icon-arrow-down:before {
    content: " "
}

.icon-mail:before {
    content: " "
}

.icon-map:before {
    content: " "
}

.icon-phone:before,
#quickbar li a:before {
    content: " "
}

.icon-send:before {
    content: " "
}

.icon-check:before {
    content: " "
}

.icon-bgTeas1:before {
    content: " "
}

.icon-bgTeas2:before {
    content: " "
}

.icon-bgTeas3:before {
    content: " "
}

.icon-bgTeas4:before {
    content: " "
}

.icon-bgTeas5:before {
    content: " "
}

.icon-bgTeas6:before {
    content: " "
}

/*!
 * baguetteBox.js
 * @author  feimosi
 * @version 1.11.1
 * @url https://github.com/feimosi/baguetteBox.js
 */
#baguetteBox-overlay {
    display: none;
    opacity: 0;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    background-color: #222;
    background-color: rgba(0, 0, 0, 0.8);
    transition: opacity .5s ease
}

#baguetteBox-overlay.visible {
    opacity: 1
}

#baguetteBox-overlay .full-image {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center
}

#baguetteBox-overlay .full-image figure {
    display: inline;
    margin: 0;
    height: 100%
}

#baguetteBox-overlay .full-image img {
    display: inline-block;
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6)
}

#baguetteBox-overlay .full-image figcaption {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    line-height: 1.8;
    white-space: normal;
    color: #ccc;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.6);
    font-family: sans-serif
}

#baguetteBox-overlay .full-image:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px
}

#baguetteBox-slider {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    white-space: nowrap;
    transition: left .4s ease, transform .4s ease
}

#baguetteBox-slider.bounce-from-right {
    animation: bounceFromRight .4s ease-out
}

#baguetteBox-slider.bounce-from-left {
    animation: bounceFromLeft .4s ease-out
}

@keyframes bounceFromRight {
    0% {
        margin-left: 0
    }

    50% {
        margin-left: -30px
    }

    100% {
        margin-left: 0
    }
}

@keyframes bounceFromLeft {
    0% {
        margin-left: 0
    }

    50% {
        margin-left: 30px
    }

    100% {
        margin-left: 0
    }
}

.baguetteBox-button#next-button,
.baguetteBox-button#previous-button {
    top: 50%;
    top: calc(50% - 30px);
    width: 44px;
    height: 60px
}

.baguetteBox-button {
    position: absolute;
    cursor: pointer;
    outline: none;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 15%;
    background-color: #323232;
    background-color: rgba(50, 50, 50, 0.5);
    color: #ddd;
    font: 1.6em sans-serif;
    transition: background-color .4s ease
}

.baguetteBox-button:focus,
.baguetteBox-button:hover {
    background-color: rgba(50, 50, 50, 0.9)
}

.baguetteBox-button#next-button {
    right: 2%
}

.baguetteBox-button#previous-button {
    left: 2%
}

.baguetteBox-button#close-button {
    top: 20px;
    right: 2%;
    right: calc(2% + 6px);
    width: 30px;
    height: 30px
}

.baguetteBox-button svg {
    position: absolute;
    left: 0;
    top: 0
}

.baguetteBox-spinner {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px
}

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    animation: bounce 2s infinite ease-in-out
}

.baguetteBox-double-bounce2 {
    animation-delay: -1s
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(0)
    }

    50% {
        transform: scale(1)
    }
}

a.lightbox-zoom-image,
.lightbox-zoom-image a[href$=".jpeg" i],
.lightbox-zoom-image a[href$=".jpg" i],
.lightbox-zoom-image a[href$=".png" i],
.lightbox-zoom-image a[href$=".gif" i],
.modalGallery a[href$=".jpeg" i],
.modalGallery a[href$=".jpg" i],
.modalGallery a[href$=".png" i],
.modalGallery a[href$=".gif" i] {
    display: table;
    position: relative;
    text-decoration: none;
    width: 100%
}

a.lightbox-zoom-image[href*="qr"],
.lightbox-zoom-image a[href$=".jpeg" i][href*="qr"],
.lightbox-zoom-image a[href$=".jpg" i][href*="qr"],
.lightbox-zoom-image a[href$=".png" i][href*="qr"],
.lightbox-zoom-image a[href$=".gif" i][href*="qr"],
.modalGallery a[href$=".jpeg" i][href*="qr"],
.modalGallery a[href$=".jpg" i][href*="qr"],
.modalGallery a[href$=".png" i][href*="qr"],
.modalGallery a[href$=".gif" i][href*="qr"] {
    width: auto
}

a.lightbox-zoom-image[href*="qr"]:before,
a.lightbox-zoom-image[href*="qr"]:after,
.lightbox-zoom-image a[href$=".jpeg" i][href*="qr"]:before,
.lightbox-zoom-image a[href$=".jpeg" i][href*="qr"]:after,
.lightbox-zoom-image a[href$=".jpg" i][href*="qr"]:before,
.lightbox-zoom-image a[href$=".jpg" i][href*="qr"]:after,
.lightbox-zoom-image a[href$=".png" i][href*="qr"]:before,
.lightbox-zoom-image a[href$=".png" i][href*="qr"]:after,
.lightbox-zoom-image a[href$=".gif" i][href*="qr"]:before,
.lightbox-zoom-image a[href$=".gif" i][href*="qr"]:after,
.modalGallery a[href$=".jpeg" i][href*="qr"]:before,
.modalGallery a[href$=".jpeg" i][href*="qr"]:after,
.modalGallery a[href$=".jpg" i][href*="qr"]:before,
.modalGallery a[href$=".jpg" i][href*="qr"]:after,
.modalGallery a[href$=".png" i][href*="qr"]:before,
.modalGallery a[href$=".png" i][href*="qr"]:after,
.modalGallery a[href$=".gif" i][href*="qr"]:before,
.modalGallery a[href$=".gif" i][href*="qr"]:after {
    content: none
}

a.lightbox-zoom-image:before,
a.lightbox-zoom-image:after,
.lightbox-zoom-image a[href$=".jpeg" i]:before,
.lightbox-zoom-image a[href$=".jpeg" i]:after,
.lightbox-zoom-image a[href$=".jpg" i]:before,
.lightbox-zoom-image a[href$=".jpg" i]:after,
.lightbox-zoom-image a[href$=".png" i]:before,
.lightbox-zoom-image a[href$=".png" i]:after,
.lightbox-zoom-image a[href$=".gif" i]:before,
.lightbox-zoom-image a[href$=".gif" i]:after,
.modalGallery a[href$=".jpeg" i]:before,
.modalGallery a[href$=".jpeg" i]:after,
.modalGallery a[href$=".jpg" i]:before,
.modalGallery a[href$=".jpg" i]:after,
.modalGallery a[href$=".png" i]:before,
.modalGallery a[href$=".png" i]:after,
.modalGallery a[href$=".gif" i]:before,
.modalGallery a[href$=".gif" i]:after {
    pointer-events: none
}

a.lightbox-zoom-image:before,
.lightbox-zoom-image a[href$=".jpeg" i]:before,
.lightbox-zoom-image a[href$=".jpg" i]:before,
.lightbox-zoom-image a[href$=".png" i]:before,
.lightbox-zoom-image a[href$=".gif" i]:before,
.modalGallery a[href$=".jpeg" i]:before,
.modalGallery a[href$=".jpg" i]:before,
.modalGallery a[href$=".png" i]:before,
.modalGallery a[href$=".gif" i]:before {
    top: 0;
    color: rgba(255, 255, 255, 0.75);
    content: "+";
    display: block;
    font-family: sans-serif;
    font-size: 2rem;
    height: 2em;
    line-height: 1.8;
    position: absolute;
    right: 0;
    text-align: center;
    text-shadow: .05556rem .05556rem .05556rem rgba(65, 65, 65, 0.8);
    transform: translate3d(0, 0, 0);
    width: 2em;
    z-index: 1
}

a.lightbox-zoom-image:after,
.lightbox-zoom-image a[href$=".jpeg" i]:after,
.lightbox-zoom-image a[href$=".jpg" i]:after,
.lightbox-zoom-image a[href$=".png" i]:after,
.lightbox-zoom-image a[href$=".gif" i]:after,
.modalGallery a[href$=".jpeg" i]:after,
.modalGallery a[href$=".jpg" i]:after,
.modalGallery a[href$=".png" i]:after,
.modalGallery a[href$=".gif" i]:after {
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0
}

a.lightbox-zoom-image:hover:before,
a.lightbox-zoom-image:focus:before,
.lightbox-zoom-image a[href$=".jpeg" i]:hover:before,
.lightbox-zoom-image a[href$=".jpeg" i]:focus:before,
.lightbox-zoom-image a[href$=".jpg" i]:hover:before,
.lightbox-zoom-image a[href$=".jpg" i]:focus:before,
.lightbox-zoom-image a[href$=".png" i]:hover:before,
.lightbox-zoom-image a[href$=".png" i]:focus:before,
.lightbox-zoom-image a[href$=".gif" i]:hover:before,
.lightbox-zoom-image a[href$=".gif" i]:focus:before,
.modalGallery a[href$=".jpeg" i]:hover:before,
.modalGallery a[href$=".jpeg" i]:focus:before,
.modalGallery a[href$=".jpg" i]:hover:before,
.modalGallery a[href$=".jpg" i]:focus:before,
.modalGallery a[href$=".png" i]:hover:before,
.modalGallery a[href$=".png" i]:focus:before,
.modalGallery a[href$=".gif" i]:hover:before,
.modalGallery a[href$=".gif" i]:focus:before {
    top: 50%;
    font-size: 3rem;
    height: 1.5em;
    line-height: 1.5;
    right: 50%;
    transform: translate3d(50%, -50%, 0);
    width: 1.5em
}

a.lightbox-zoom-image:hover:after,
a.lightbox-zoom-image:focus:after,
.lightbox-zoom-image a[href$=".jpeg" i]:hover:after,
.lightbox-zoom-image a[href$=".jpeg" i]:focus:after,
.lightbox-zoom-image a[href$=".jpg" i]:hover:after,
.lightbox-zoom-image a[href$=".jpg" i]:focus:after,
.lightbox-zoom-image a[href$=".png" i]:hover:after,
.lightbox-zoom-image a[href$=".png" i]:focus:after,
.lightbox-zoom-image a[href$=".gif" i]:hover:after,
.lightbox-zoom-image a[href$=".gif" i]:focus:after,
.modalGallery a[href$=".jpeg" i]:hover:after,
.modalGallery a[href$=".jpeg" i]:focus:after,
.modalGallery a[href$=".jpg" i]:hover:after,
.modalGallery a[href$=".jpg" i]:focus:after,
.modalGallery a[href$=".png" i]:hover:after,
.modalGallery a[href$=".png" i]:focus:after,
.modalGallery a[href$=".gif" i]:hover:after,
.modalGallery a[href$=".gif" i]:focus:after {
    opacity: 0.5
}

noscript {
    margin-top: 3.33333rem;
    display: block
}

noscript input#noticebar {
    display: none
}

noscript input#noticebar:checked~div {
    opacity: 1;
    visibility: visible
}

noscript input#noticebar:checked~label {
    background: #fff;
    color: #54A0D4;
    content: "×";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "icomoon", sans-serif
}

noscript label {
    text-indent: 110%;
    white-space: nowrap;
    overflow: hidden;
    background: #54A0D4;
    bottom: .55556rem;
    color: #fff;
    font-size: 1.38889rem;
    height: 2.5rem;
    opacity: 0.9;
    position: fixed;
    right: .55556rem;
    text-decoration: none;
    width: 2.5rem;
    z-index: 99999999 !important
}

noscript label:before {
    content: "!";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "icomoon", sans-serif;
    font-family: "icomoon", sans-serif;
    display: inline-block;
    left: 50%;
    position: absolute;
    text-indent: 0;
    top: 50%;
    transform: translate(-50%, -50%)
}

noscript label:hover {
    cursor: pointer;
    background: #4095cf
}

noscript label+div {
    opacity: 0;
    visibility: hidden;
    height: 100vh
}

noscript label+div,
.notice-bar {
    background: #54A0D4;
    color: #fff;
    display: flex;
    justify-content: space-around;
    left: 0;
    padding: 1.11111rem;
    position: fixed;
    text-align: center;
    top: 0;
    transition: 0.3s;
    width: 100%;
    z-index: 9999999 !important
}

noscript label+div span,
.notice-bar span {
    align-self: center;
    font-size: 1.22222rem;
    line-height: 1.66667rem;
    margin: 0
}

noscript label+div a,
.notice-bar a {
    color: #fff
}

noscript label+div a:hover,
.notice-bar a:hover {
    color: #fff;
    text-decoration: none
}

noscript div:first-child {
    display: none
}

.breadcrumb li {
    list-style: none;
    float: left
}

.breadcrumb li:before {
    content: "❯";
    padding: 0 1rem;
    font-size: 60%
}

.breadcrumb li:first-child+li:before {
    content: " ";
    padding: 0 0.2rem
}

.breadcrumb li:first-child:before {
    content: "";
    padding: 0
}

#log_container pre,
#log_container .checkupXYZ {
    height: 100%;
    overflow-y: scroll;
    background: #fff;
    padding: 1%
}

#log_hider {
    cursor: pointer;
    z-index: 999999999
}

#show_console {
    display: none
}

#show_console:checked+#log_container {
    top: 0
}

#log_container {
    height: 100%;
    width: 100%;
    position: fixed;
    top: -100%;
    left: 0;
    color: #414141;
    background: #f2f2f2;
    padding: 2%;
    transition: all 0.5s ease-in-out;
    box-shadow: inset 0 0 .05556rem .05556rem rgba(84, 160, 212, 0.5);
    z-index: 99999999
}

#log_container:target {
    top: 0
}

#log_container.show {
    top: 0
}

#log_container ul {
    list-style: inside square
}

#log_container ul ul {
    margin-left: 2rem
}

#log_container ul h3 {
    display: inline-block
}

#log_container ul li {
    padding: 0.5rem 0;
    border-bottom: .05556rem solid #f2f2f2
}

#log_container ul li:last-child {
    border: none
}

#log_container h1 {
    text-align: center;
    padding-top: 2rem
}

#log_container h2 {
    padding-bottom: 0.5rem;
    border-bottom: .05556rem solid #F3F3F3;
    text-align: center;
    font-weight: normal;
    margin-top: 4rem
}

#log_container h3 {
    font-weight: normal
}

#log_container .checkup_pages li {
    padding: 1rem
}

#log_container .checkup_pages .sub {
    margin-left: 2rem
}

#log_container>p {
    margin-bottom: 4rem
}

.checkup_pages>li:nth-child(odd) {
    background: #f4f4f4
}

.checkupXYZ {
    width: 53.33333rem;
    margin: 0 auto;
    resize: horizontal
}

.informatizer {
    background: #8dd45c;
    padding: 1%;
    position: fixed;
    top: 2%;
    right: 2%;
    display: block;
    color: #fff;
    transition: all 0.5s ease-in-out;
    text-decoration: none
}

.informatizer:before {
    margin-right: 1rem;
    font-size: 1.33333em;
    line-height: 1rem
}

.informatizer a {
    color: #fff
}

.btn-focus {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    padding: 2.6em;
    background: rgba(84, 160, 212, 0.9);
    color: #fff !important;
    font-size: 1.33333rem;
    z-index: 2000;
    transition: all 300ms;
    text-decoration: none
}

.btn-focus:focus {
    transform: translate(-50%, -50%) scale(1)
}

body.sitemap {
    display: flex;
    padding: 2rem
}

body.sitemap nav {
    width: 100%;
    margin: 0 auto
}

body.sitemap nav .sitemap ul {
    padding-left: 20px
}

.back-to-top {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 800;
    font-size: 1rem;
    width: 3em;
    height: 3em;
    line-height: 3em;
    background-color: #414141;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transform: translateY(0)
}

body:not(.scrolling-up) .back-to-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(3em)
}

.back-to-top:hover,
.back-to-top:active,
.back-to-top:focus {
    color: #fff;
    background-color: #5b5b5b
}

.back-to-top span {
    display: none
}

.vplay-youtube .vplay-youtube-poster-wp[data-youtube-poster-wp] {
    top: 0px;
    left: 0px;
    cursor: default;
    z-index: 999 !important
}

.vplay-youtube [data-youtube-playbtn-wp] {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 999 !important
}

* {
    margin: 0;
    padding: 0
}

*,
*:before,
*:after {
    box-sizing: inherit
}

html {
    background: #fff;
    box-sizing: border-box;
    color: #414141;
    font-family: Roboto, sans-serif;
    font-size: 112.5%;
    hyphens: manual;
    line-height: 1.66667rem;
    scroll-behavior: smooth;
    text-size-adjust: none;
    -webkit-text-size-adjust: none
}

body {
    line-height: 1.66667rem;
    opacity: 1 !important
}

body:not(.javascript) * {
    transition: none !important
}

iframe,
[data-iframe] {
    display: block;
    border: none;
    width: 100%
}

address {
    font-style: normal
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
form.default span.legend,
.h3,
.h4,
.h5,
.h6 {
    display: block;
    text-rendering: optimizeLegibility;
    hyphens: auto;
    -webkit-hyphens: auto;
    color: #00385E
}

h1,
.h1 {
    font-family: "Roboto", sans-serif;
    font-size: 1.55556rem;
    line-height: 1.3em
}

@media (min-width: 75em) {

    h1,
    .h1 {
        font-size: 2.44444rem;
        line-height: 1.5em
    }
}

h1 span,
.h1 span {
    font-weight: 300;
    font-size: 0.7em;
    line-height: 1.6em;
    display: block
}

@media (min-width: 75em) {

    h1 span,
    .h1 span {
        font-size: 32px
    }
}

h1 span,
.h1 span {
    color: #2B77AB
}

h2,
.h2,
form.default span.legend {
    font-size: 1.44444rem;
    line-height: 1.3em
}

@media (min-width: 75em) {

    h2,
    .h2,
    form.default span.legend {
        font-size: 1.77778rem;
        line-height: 1.3em
    }
}

h3,
.h3 {
    font-size: 1.44444rem
}

h4,
.h4 {
    font-size: 1.33333rem
}

h5,
.h5 {
    font-size: 1.11111rem
}

h6,
.h6 {
    font-size: 1rem
}

a {
    color: #2B77AB;
    word-wrap: break-word;
    text-decoration: none;
    transition: 400ms all ease
}

a:hover {
    color: #54A0D4;
    text-decoration: none
}

a:focus {
    color: #54A0D4;
    text-decoration: none
}

a:active {
    color: #54A0D4;
    text-decoration: none
}

a img {
    border: none
}

a[href^="tel"] {
    color: inherit;
    text-decoration: none
}

a:not(.btn):focus,
[tabindex]:focus {
    outline: 1px dotted #54A0D4;
    outline-offset: .27778rem
}

hr,
.hr {
    display: flex;
    background: #E8E8E8;
    border: none;
    clear: both;
    height: .05556rem;
    margin: 3rem 0 4rem;
    flex-basis: 100%
}

ul,
ol {
    list-style: none
}

ul.styled-list li,
main ul:not(.unstyled-list) li,
ol.styled-list li,
main ol:not(.unstyled-list) li {
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative
}

ul.styled-list li:before,
main ul:not(.unstyled-list) li:before,
ol.styled-list li:before,
main ol:not(.unstyled-list) li:before {
    font-family: "icomoon", sans-serif;
    content: '\e908';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #2B77AB;
    font-size: 0.8em
}

ul.styled-list ul,
main ul:not(.unstyled-list) ul,
ol.styled-list ul,
main ol:not(.unstyled-list) ul {
    margin-left: 1rem;
    margin-bottom: 0
}

ul.noMargin,
ol.noMargin {
    margin-bottom: 0
}

@media (min-width: 62em) {

    ul.noMargin,
    ol.noMargin {
        margin-bottom: 2rem
    }
}

dl.styled-list,
main dl:not(.unstyled-list) {
    zoom: 1
}

dl.styled-list:after,
main dl:not(.unstyled-list):after {
    content: "";
    display: table;
    clear: both
}

dl.styled-list dt,
main dl:not(.unstyled-list) dt,
dl.styled-list dd,
main dl:not(.unstyled-list) dd {
    display: block;
    background: #F3F3F3;
    padding: 1.5rem
}

@media (min-width: 75em) {

    dl.styled-list dt,
    main dl:not(.unstyled-list) dt,
    dl.styled-list dd,
    main dl:not(.unstyled-list) dd {
        padding: 2rem
    }
}

dl.styled-list dt,
main dl:not(.unstyled-list) dt {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-bottom: 0;
    font-weight: bold
}

dl.styled-list dd,
main dl:not(.unstyled-list) dd {
    padding-top: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

dl.styled-list dd+dt,
main dl:not(.unstyled-list) dd+dt {
    margin-top: .55556rem
}

dl.styled-list dd+dd,
main dl:not(.unstyled-list) dd+dd {
    margin-top: -.83333rem
}

dl.float-list {
    zoom: 1
}

dl.float-list:after {
    content: "";
    display: table;
    clear: both
}

dl.float-list dt,
dl.float-list dd {
    display: block;
    vertical-align: top;
    float: left
}

dl.float-list dt {
    padding-right: 0.5rem;
    width: 40%;
    clear: left
}

dl.float-list dd {
    width: 60%
}

ol.styled-list,
main ol:not(.unstyled-list) {
    counter-reset: item
}

ol.styled-list li,
main ol:not(.unstyled-list) li {
    counter-increment: item
}

ol.styled-list li:before,
main ol:not(.unstyled-list) li:before {
    content: counters(item, ".") ". "
}

ol.styled-list ol,
main ol:not(.unstyled-list) ol {
    margin-bottom: 0
}

ol.styled-list ol li:before,
main ol:not(.unstyled-list) ol li:before {
    content: counters(item, ".") " ";
    margin-right: .27778rem
}

figure a,
figure picture {
    display: block
}

figure a img,
figure picture img {
    margin-bottom: 0
}

img {
    vertical-align: bottom;
    float: none;
    height: auto;
    max-width: 100%;
    width: 100%
}

[data-rel] img,
.lightbox-zoom-image img {
    margin-bottom: 0
}

main table {
    display: table;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    text-align: left;
    font-size: 1rem
}

@media (max-width: 39.9375em) {
    main table {
        overflow-x: auto;
        display: block
    }
}

main table caption {
    text-align: left;
    padding: 1rem 1rem 1.38889rem;
    display: table-caption;
    font-weight: bold;
    font-size: 1.2rem
}

main table thead {
    border-collapse: collapse;
    display: table-header-group
}

main table tbody {
    width: 100%;
    overflow-x: scroll;
    display: table-row-group
}

main table tbody tr {
    padding: 1rem 0
}

main table tbody tr:not(:last-child) {
    border-bottom: .05556rem solid #F3F3F3
}

main table tr {
    display: table-row
}

main table th,
main table td {
    padding: 1rem;
    display: table-cell;
    vertical-align: top
}

@media (max-width: 39.9375em) {
    main table td {
        min-width: 50vw
    }
}

.margin-bottom,
iframe[data-iframe="googlemaps"],
[data-iframe][data-iframe="googlemaps"],
h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
form.default span.legend,
.h3,
.h4,
.h5,
figure>a,
figure>picture,
.video-container,
.google-maps,
main p,
main ol,
main ul,
main dl,
main table,
main img,
form.default {
    margin-bottom: 1.66667rem
}

.margin-bottom.no-margin-bottom,
iframe.no-margin-bottom[data-iframe="googlemaps"],
.no-margin-bottom[data-iframe][data-iframe="googlemaps"],
h1.no-margin-bottom,
h2.no-margin-bottom,
h3.no-margin-bottom,
h4.no-margin-bottom,
h5.no-margin-bottom,
h6.no-margin-bottom,
.no-margin-bottom.h1,
.no-margin-bottom.h2,
form.default span.no-margin-bottom.legend,
.no-margin-bottom.h3,
.no-margin-bottom.h4,
.no-margin-bottom.h5,
.no-margin-bottom.h6,
figure>a.no-margin-bottom,
figure>picture.no-margin-bottom,
.no-margin-bottom.video-container,
.no-margin-bottom.google-maps,
main p.no-margin-bottom,
main ol.no-margin-bottom,
main ul.no-margin-bottom,
main dl.no-margin-bottom,
main table.no-margin-bottom,
main img.no-margin-bottom,
form.no-margin-bottom.default {
    margin-bottom: 0
}



.margin-bottom.no-margin-bottom,iframe.no-margin-bottom[data-iframe="googlemaps"],.no-margin-bottom[data-iframe][data-iframe="googlemaps"],h1.no-margin-bottom,h2.no-margin-bottom,h3.no-margin-bottom,h4.no-margin-bottom,h5.no-margin-bottom,h6.no-margin-bottom,.no-margin-bottom.h1,.no-margin-bottom.h2,form.default span.no-margin-bottom.legend,.no-margin-bottom.h3,.no-margin-bottom.h4,.no-margin-bottom.h5,.no-margin-bottom.h6,figure>a.no-margin-bottom,figure>picture.no-margin-bottom,.no-margin-bottom.video-container,.no-margin-bottom.google-maps,main p.no-margin-bottom,main ol.no-margin-bottom,main ul.no-margin-bottom,main dl.no-margin-bottom,main table.no-margin-bottom,main img.no-margin-bottom,form.no-margin-bottom.default {
    margin-bottom: 0
}

.highlight {
    color: #2B77AB
}

.btn,
form.default button,
form.default [type="submit"] {
    -moz-appearance: none;
    appearance: none;
    background: #2B77AB;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 1rem;
    line-height: 1.66667rem;
    padding: 1.25rem 2rem;
    text-align: center;
    align-items: center;
    text-decoration: none;
    font-family: Roboto, sans-serif;
    border-radius: 0
}

.btn.marginBottom,
form.default button.marginBottom,
form.default .marginBottom[type="submit"] {
    margin-bottom: 2rem
}

.btn:hover,
form.default button:hover,
form.default :hover[type="submit"] {
    background: #54A0D4;
    color: #fff
}

.btn:active,
form.default button:active,
form.default :active[type="submit"] {
    background: #54A0D4;
    color: #fff
}

.btn:focus,
form.default button:focus,
form.default :focus[type="submit"] {
    background: #54A0D4;
    color: #fff
}

.btn.btn-primary,
form.default button.btn-primary,
form.default .btn-primary[type="submit"] {
    background: #00385E;
    color: #fff
}

.btn.btn-primary.btn-outline,
form.default button.btn-primary.btn-outline,
form.default .btn-primary.btn-outline[type="submit"] {
    background-color: transparent;
    border: 1px solid #E8E8E8;
    border-color: #00385E;
    color: #00385E
}

.btn.btn-primary:hover,
form.default button.btn-primary:hover,
form.default .btn-primary:hover[type="submit"] {
    background: #005691;
    color: #fff
}

.btn.btn-primary:active,
form.default button.btn-primary:active,
form.default .btn-primary:active[type="submit"] {
    background: #0075c4;
    color: #fff
}

.btn.btn-primary:focus,
form.default button.btn-primary:focus,
form.default .btn-primary:focus[type="submit"] {
    background: #0093f7;
    color: #fff
}

.btn.btn-secondary,
form.default button.btn-secondary,
form.default .btn-secondary[type="submit"] {
    background: #2B77AB;
    color: #fff
}

.btn.btn-secondary.btn-outline,
form.default button.btn-secondary.btn-outline,
form.default .btn-secondary.btn-outline[type="submit"] {
    background-color: transparent;
    border: 1px solid #E8E8E8;
    border-color: #2B77AB;
    color: #2B77AB
}

.btn.btn-secondary:hover,
form.default button.btn-secondary:hover,
form.default .btn-secondary:hover[type="submit"] {
    background: #3b92ce;
    color: #fff
}

.btn.btn-secondary:active,
form.default button.btn-secondary:active,
form.default .btn-secondary:active[type="submit"] {
    background: #64a9d8;
    color: #fff
}

.btn.btn-secondary:focus,
form.default button.btn-secondary:focus,
form.default .btn-secondary:focus[type="submit"] {
    background: #8dc0e2;
    color: #fff
}

.btn.btn-light,
form.default button.btn-light,
form.default .btn-light[type="submit"] {
    background: #fff;
    color: #414141
}

.btn.btn-light.btn-outline,
form.default button.btn-light.btn-outline,
form.default .btn-light.btn-outline[type="submit"] {
    background-color: transparent;
    border: 1px solid #E8E8E8;
    border-color: #fff;
    color: #fff
}

.btn.btn-light:hover,
form.default button.btn-light:hover,
form.default .btn-light:hover[type="submit"] {
    background: #e6e6e6;
    color: #414141
}

.btn.btn-light:active,
form.default button.btn-light:active,
form.default .btn-light:active[type="submit"] {
    background: #ccc;
    color: #414141
}

.btn.btn-light:focus,
form.default button.btn-light:focus,
form.default .btn-light:focus[type="submit"] {
    background: #b3b3b3;
    color: #414141
}

.btn.btn-medium,
form.default button.btn-medium,
form.default .btn-medium[type="submit"] {
    background: #F3F3F3;
    color: #414141
}

.btn.btn-medium.btn-outline,
form.default button.btn-medium.btn-outline,
form.default .btn-medium.btn-outline[type="submit"] {
    background-color: transparent;
    border: 1px solid #E8E8E8;
    border-color: #F3F3F3;
    color: #F3F3F3
}

.btn.btn-medium:hover,
form.default button.btn-medium:hover,
form.default .btn-medium:hover[type="submit"] {
    background: #dadada;
    color: #414141
}

.btn.btn-medium:active,
form.default button.btn-medium:active,
form.default .btn-medium:active[type="submit"] {
    background: silver;
    color: #414141
}

.btn.btn-medium:focus,
form.default button.btn-medium:focus,
form.default .btn-medium:focus[type="submit"] {
    background: #a7a7a7;
    color: #414141
}

.btn.btn-dark,
form.default button.btn-dark,
form.default .btn-dark[type="submit"] {
    background: #414141;
    color: #fff
}

.btn.btn-dark.btn-outline,
form.default button.btn-dark.btn-outline,
form.default .btn-dark.btn-outline[type="submit"] {
    background-color: transparent;
    border: 1px solid #E8E8E8;
    border-color: #414141;
    color: #414141
}

.btn.btn-dark:hover,
form.default button.btn-dark:hover,
form.default .btn-dark:hover[type="submit"] {
    background: #5b5b5b;
    color: #fff
}

.btn.btn-dark:active,
form.default button.btn-dark:active,
form.default .btn-dark:active[type="submit"] {
    background: #747474;
    color: #fff
}

.btn.btn-dark:focus,
form.default button.btn-dark:focus,
form.default .btn-dark:focus[type="submit"] {
    background: #8e8e8e;
    color: #fff
}

.btn.btn-border,
form.default button.btn-border,
form.default .btn-border[type="submit"] {
    background: #E8E8E8;
    color: #414141
}

.btn.btn-border.btn-outline,
form.default button.btn-border.btn-outline,
form.default .btn-border.btn-outline[type="submit"] {
    background-color: transparent;
    border: 1px solid #E8E8E8;
    border-color: #E8E8E8;
    color: #E8E8E8
}

.btn.btn-border:hover,
form.default button.btn-border:hover,
form.default .btn-border:hover[type="submit"] {
    background: #cfcfcf;
    color: #414141
}

.btn.btn-border:active,
form.default button.btn-border:active,
form.default .btn-border:active[type="submit"] {
    background: #b5b5b5;
    color: #414141
}

.btn.btn-border:focus,
form.default button.btn-border:focus,
form.default .btn-border:focus[type="submit"] {
    background: #9c9c9c;
    color: #414141
}

.btn.btn-alert,
form.default button.btn-alert,
form.default .btn-alert[type="submit"] {
    background: #54A0D4;
    color: #414141
}

.btn.btn-alert.btn-outline,
form.default button.btn-alert.btn-outline,
form.default .btn-alert.btn-outline[type="submit"] {
    background-color: transparent;
    border: 1px solid #E8E8E8;
    border-color: #54A0D4;
    color: #54A0D4
}

.btn.btn-alert:hover,
form.default button.btn-alert:hover,
form.default .btn-alert:hover[type="submit"] {
    background: #3188c4;
    color: #414141
}

.btn.btn-alert:active,
form.default button.btn-alert:active,
form.default .btn-alert:active[type="submit"] {
    background: #276c9b;
    color: #414141
}

.btn.btn-alert:focus,
form.default button.btn-alert:focus,
form.default .btn-alert:focus[type="submit"] {
    background: #1d5072;
    color: #414141
}

.clear {
    clear: both;
    float: none
}

.clearfix {
    zoom: 1
}

.clearfix:after {
    content: "";
    display: table;
    clear: both
}

.hidden {
    display: none !important
}

.hideText {
    text-indent: 110%;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    overflow: hidden;
    width: 0
}

.float-left {
    float: left
}

img.float-left {
    margin-right: 1rem
}

.float-right {
    float: right
}

img.float-right {
    margin-left: 1rem
}

.fluid {
    height: auto;
    width: 100%
}

.non-fluid {
    width: auto !important
}

.align-left {
    text-align: left
}

.align-right {
    text-align: right
}

.align-center {
    text-align: center
}

.wide {
    width: 100%;
    display: block
}

.width-100 {
    width: 100%
}

.bold {
    font-weight: 700
}

.semi-bold {
    font-weight: 600
}

.video-container:not(.video-tag),
.google-maps:not(.video-tag) {
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative
}

.video-container:not(.video-tag) iframe,
.google-maps:not(.video-tag) iframe {
    border: none;
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0
}

.video-container.wide,
.wide.google-maps {
    padding-bottom: 42.85%
}

.video-container video,
.google-maps video {
    width: 100%;
    height: auto
}

@media (min-width: 47.5em) {
    .google-maps {
        height: 22.22222rem
    }
}

html[lang="de"] .opening-hours-suffix dl dd:after {
    content: " Uhr"
}

.border-radius,
.back-to-top,
[data-rel],
.lightbox-zoom-image,
.lightbox-zoom-image a,
.cms-gallery-image,
.cms-gallery-image a,
[data-rel]:not(.no-border-radius) img,
.lightbox-zoom-image:not(.no-border-radius) img,
.lightbox-zoom-image a:not(.no-border-radius) img,
.cms-gallery-image:not(.no-border-radius) img,
.cms-gallery-image a:not(.no-border-radius) img,
.video-container:not(.video-tag),
.google-maps:not(.video-tag),
.video-container:not(.video-tag):not(.no-border-radius) .video-js,
.google-maps:not(.video-tag):not(.no-border-radius) .video-js,
.video-container:not(.video-tag):not(.no-border-radius) video,
.google-maps:not(.video-tag):not(.no-border-radius) video,
.box,
main .formDiv .form [type="text"],
main .formDiv .form [type="tel"],
main .formDiv .form [type="email"],
main .formDiv .form [type="file"],
main .formDiv .form input,
main .formDiv .form textarea,
main .formDiv .form select,
main iframe,
form.default [type="text"],
form.default [type="tel"],
form.default [type="email"],
form.default [type="file"],
form.default input,
form.default textarea,
form.default select {
    border-radius: 0
}

.border-radius.no-border-radius,
.no-border-radius.back-to-top,
.no-border-radius[data-rel],
.no-border-radius.lightbox-zoom-image,
.lightbox-zoom-image a.no-border-radius,
.no-border-radius.cms-gallery-image,
.cms-gallery-image a.no-border-radius,
[data-rel]:not(.no-border-radius) img.no-border-radius,
.lightbox-zoom-image:not(.no-border-radius) img.no-border-radius,
.lightbox-zoom-image a:not(.no-border-radius) img.no-border-radius,
.cms-gallery-image:not(.no-border-radius) img.no-border-radius,
.cms-gallery-image a:not(.no-border-radius) img.no-border-radius,
.no-border-radius.video-container:not(.video-tag),
.no-border-radius.google-maps:not(.video-tag),
.video-container:not(.video-tag):not(.no-border-radius) .no-border-radius.video-js,
.google-maps:not(.video-tag):not(.no-border-radius) .no-border-radius.video-js,
.video-container:not(.video-tag):not(.no-border-radius) video.no-border-radius,
.google-maps:not(.video-tag):not(.no-border-radius) video.no-border-radius,
.no-border-radius.box,
main .formDiv .form .no-border-radius[type="text"],
main .formDiv .form .no-border-radius[type="tel"],
main .formDiv .form .no-border-radius[type="email"],
main .formDiv .form .no-border-radius[type="file"],
main .formDiv .form input.no-border-radius,
main .formDiv .form textarea.no-border-radius,
main .formDiv .form select.no-border-radius,
main iframe.no-border-radius,
form.default .no-border-radius[type="text"],
form.default .no-border-radius[type="tel"],
form.default .no-border-radius[type="email"],
form.default .no-border-radius[type="file"],
form.default input.no-border-radius,
form.default textarea.no-border-radius,
form.default select.no-border-radius {
    border-radius: 0
}

.box-shadow {
    box-shadow: 0px 5px 10px 0px rgba(65, 65, 65, 0.2)
}

.box-shadow.no-box-shadow {
    box-shadow: none
}

.data_protection_officer {
    margin-bottom: 1rem
}

body:before {
    width: 99pt;
    content: "default:16px....default:0....tiny:30em....small:40em....medium:47.5em....large:62em....giant:75em....huge:85.25em....full:95em....cut:101.25em";
    display: none !important
}

@media (min-width: 0) {
    body:before {
        width: 177pt
    }
}

@media (min-width: 30em) {
    body:before {
        width: 255pt
    }
}

@media (min-width: 40em) {
    body:before {
        width: 339pt
    }
}

@media (min-width: 47.5em) {
    body:before {
        width: 441pt
    }
}

@media (min-width: 62em) {
    body:before {
        width: 525pt
    }
}

@media (min-width: 75em) {
    body:before {
        width: 609pt
    }
}

@media (min-width: 85.25em) {
    body:before {
        width: 705pt
    }
}

@media (min-width: 95em) {
    body:before {
        width: 783pt
    }
}

@media (min-width: 101.25em) {
    body:before {
        width: 879pt
    }
}

body.dev-mode:before,
body.debug:before {
    background: #54A0D4;
    border-color: #54A0D4;
    border-style: solid;
    border-width: 0 1rem;
    color: #fff;
    display: block !important;
    font-family: Courier;
    font-size: 10pt;
    left: 0;
    line-height: 2.5;
    overflow: hidden;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    white-space: nowrap;
    z-index: 99999
}

body:hover:before {
    opacity: 0.5;
    pointer-events: none
}

a.lightbox-zoom-image:before,
a.lightbox-zoom-image:after,
.lightbox-zoom-image a[href$=".jpeg" i]:before,
.lightbox-zoom-image a[href$=".jpeg" i]:after,
.lightbox-zoom-image a[href$=".jpg" i]:before,
.lightbox-zoom-image a[href$=".jpg" i]:after,
.lightbox-zoom-image a[href$=".png" i]:before,
.lightbox-zoom-image a[href$=".png" i]:after,
.lightbox-zoom-image a[href$=".gif" i]:before,
.lightbox-zoom-image a[href$=".gif" i]:after,
.modalGallery a[href$=".jpeg" i]:before,
.modalGallery a[href$=".jpeg" i]:after,
.modalGallery a[href$=".jpg" i]:before,
.modalGallery a[href$=".jpg" i]:after,
.modalGallery a[href$=".png" i]:before,
.modalGallery a[href$=".png" i]:after,
.modalGallery a[href$=".gif" i]:before,
.modalGallery a[href$=".gif" i]:after,
.back-to-top,
.btn,
form.default button,
form.default [type="submit"],
main .formDiv .form [type="text"],
main .formDiv .form [type="tel"],
main .formDiv .form [type="email"],
main .formDiv .form [type="file"],
main .formDiv .form input,
main .formDiv .form textarea,
main .formDiv .form select,
form.default [type="text"],
form.default [type="tel"],
form.default [type="email"],
form.default [type="file"],
form.default input,
form.default textarea,
form.default select {
    transition: 0.3s
}

html.in-progress {
    pointer-events: none
}

html.in-progress:before {
    content: "";
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999998
}

html.in-progress:after {
    content: "";
    position: fixed;
    top: 0;
    height: 0;
    background: url("../images/layout/loading.svg") no-repeat center center;
    height: 100vh;
    width: 100vw;
    z-index: 99999999;
    filter: invert(100%)
}

.flex {
    display: flex
}

.gap {
    gap: 1rem
}

.row.wrap,
.flex.wrap {
    flex-wrap: wrap
}

.row.stretch,
.flex.stretch {
    align-items: stretch
}

.row.top,
.flex.top {
    align-items: flex-start
}

.row.middle,
.flex.middle {
    align-items: center
}

.row.bottom,
.flex.bottom {
    align-items: flex-end
}

.row.start,
.flex.start {
    justify-content: flex-start
}

.row.center,
.flex.center {
    justify-content: center
}

.row.end,
.flex.end {
    justify-content: flex-end
}

.row.around,
.flex.around {
    justify-content: space-around
}

.row.between,
.flex.between {
    justify-content: space-between
}

.color-primary {
    color: #00385E
}

.bg-color-primary {
    background-color: #00385E
}

.border-primary {
    border: 1px solid #E8E8E8;
    border-color: #00385E
}

.color-secondary {
    color: #2B77AB
}

.bg-color-secondary {
    background-color: #2B77AB
}

.border-secondary {
    border: 1px solid #E8E8E8;
    border-color: #2B77AB
}

.color-light {
    color: #fff
}

.bg-color-light {
    background-color: #fff
}

.border-light {
    border: 1px solid #E8E8E8;
    border-color: #fff
}

.color-medium {
    color: #F3F3F3
}

.bg-color-medium {
    background-color: #F3F3F3
}

.border-medium {
    border: 1px solid #E8E8E8;
    border-color: #F3F3F3
}

.color-dark {
    color: #414141
}

.bg-color-dark {
    background-color: #414141
}

.border-dark {
    border: 1px solid #E8E8E8;
    border-color: #414141
}

.color-border {
    color: #E8E8E8
}

.bg-color-border {
    background-color: #E8E8E8
}

.border-border {
    border: 1px solid #E8E8E8;
    border-color: #E8E8E8
}

.color-alert {
    color: #54A0D4
}

.bg-color-alert {
    background-color: #54A0D4
}

.border-alert {
    border: 1px solid #E8E8E8;
    border-color: #54A0D4
}

.box {
    padding: 1rem
}

.box.box-inline {
    display: inline-block
}

body:not(.cms-liveeditor-is-opened) .background-image-container {
    position: relative
}

body:not(.cms-liveeditor-is-opened) figure.cms-image.background-image>picture>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
    border-radius: 0
}

#navigation nav ul.navi li.nav-back:hover,
#navigation nav ul.navi li:hover>a,
#navigation nav ul.navi li:hover:not(.nav-back)>span {
    color: #fff;
    background-color: #2B77AB
}

@media (min-width: 62em) {

    #navigation nav ul.navi li.nav-back:hover,
    #navigation nav ul.navi li:hover>a,
    #navigation nav ul.navi li:hover:not(.nav-back)>span {
        background: transparent;
        color: #00385E
    }
}

#navigation nav ul.navi li a.active,
#navigation nav ul.navi li.has-sub>span.active,
#navigation nav ul.navi li.has-sub.active>a,
#navigation nav ul.navi li.has-sub.active>span {
    color: #414141;
    background-color: #E8E8E8
}

@media (min-width: 62em) {

    #navigation nav ul.navi li a.active,
    #navigation nav ul.navi li.has-sub>span.active,
    #navigation nav ul.navi li.has-sub.active>a,
    #navigation nav ul.navi li.has-sub.active>span {
        background: transparent;
        color: #00385E
    }
}

#navigation nav ul.navi li.nav-back:before {
    font-family: "icomoon", sans-serif;
    content: '\e908';
    opacity: 0.5;
    transform: rotateY(180deg)
}

#navigation nav ul.navi li.has-sub>span:after,
#navigation nav ul.navi li.has-sub>a:after {
    font-family: "icomoon", sans-serif;
    content: '\e908';
    opacity: 0.5
}

@media (min-width: 62em) {

    #navigation nav ul.navi li.has-sub>span:after,
    #navigation nav ul.navi li.has-sub>a:after {
        transform: rotate(90deg)
    }
}

:root {
    --ruffnav-nav-height: calc(100vh - 2.77778rem)
}

@supports (width: 100dvh) {
    :root {
        --ruffnav-nav-height: calc(100dvh - 2.77778rem)
    }
}

@media (max-width: 61.9375em) {
    #navigation {
        min-width: 50%;
        overflow: hidden;
        top: 2.77778rem;
        bottom: 0
    }

    #navigation.first-level nav {
        height: var(--ruffnav-nav-height);
        overflow: hidden;
        overflow-y: auto
    }

    #navigation nav ul.navi li.has-sub .sub {
        height: var(--ruffnav-nav-height)
    }

    #navigation nav ul.navi li.has-sub .sub.open {
        -webkit-overflow-scrolling: touch;
        overflow: hidden;
        overflow-y: auto
    }

    #navigation nav ul.navi li.has-sub .sub:before {
        content: attr(data-parent-name);
        display: block
    }

    html.hidden-scroll {
        overflow: hidden
    }
}

#quickbar {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0
}

@media (max-width: 61.9375em) {
    #quickbar {
        height: 2.77778rem
    }
}

#quickbar.hide {
    transform: translateY(-100%)
}

#quickbar label[for="navi-toggled"] {
    display: block;
    cursor: pointer;
    width: 1.11111rem;
    height: 1.11111rem;
    position: relative;
    overflow: hidden
}

#quickbar label[for="navi-toggled"]:after {
    content: "";
    position: fixed;
    left: 0;
    width: 200vw;
    height: 200vh;
    display: block;
    background-color: #414141;
    opacity: 0.9;
    z-index: -1;
    top: 2.77778rem
}

#quickbar label[for="navi-toggled"] span {
    transition: 0.4s linear;
    text-indent: -9999px;
    width: 0;
    top: 50%;
    transform: translate(-50%, -50%)
}

#quickbar label[for="navi-toggled"] span,
#quickbar label[for="navi-toggled"] span:before,
#quickbar label[for="navi-toggled"] span:after {
    content: "";
    position: absolute;
    display: block;
    background: #fff;
    height: 2px;
    left: 50%;
    transform-origin: center
}

#quickbar label[for="navi-toggled"] span:before,
#quickbar label[for="navi-toggled"] span:after {
    top: calc(50% + 0rem);
    width: 1.11111rem;
    transition: top 0.3s ease-in-out, transform 0.3s 0.2s linear
}

#quickbar label[for="navi-toggled"] span:before {
    transform: translate(-50%, -50%) rotate(45deg)
}

#quickbar label[for="navi-toggled"] span:after {
    transform: translate(-50%, -50%) rotate(-45deg)
}

#navi-toggled {
    display: none
}

@media (max-width: 61.9375em) {

    #navi-toggled:not(:checked)~* #navigation,
    #navi-toggled:not(:checked)~#navigation {
        transform: translateX(100%)
    }
}

#navi-toggled:not(:checked)~#quickbar label[for="navi-toggled"]:after {
    opacity: 0;
    visibility: hidden
}

#navi-toggled:not(:checked)~#quickbar label[for="navi-toggled"] span {
    width: 1.11111rem
}

#navi-toggled:not(:checked)~#quickbar label[for="navi-toggled"] span:before,
#navi-toggled:not(:checked)~#quickbar label[for="navi-toggled"] span:after {
    transform: translate(-50%, -50%);
    transition: top 0.3s 0.2s ease-in-out, transform 0.3s linear
}

#navi-toggled:not(:checked)~#quickbar label[for="navi-toggled"] span:before {
    top: calc(50% + -.27778rem)
}

#navi-toggled:not(:checked)~#quickbar label[for="navi-toggled"] span:after {
    top: calc(50% + .27778rem)
}

body.javascript #navigation,
body.javascript .sub {
    transition: transform .3s ease, opacity .3s ease
}

#navigation {
    position: fixed;
    max-width: 100%;
    right: 0;
    background-color: #fff;
    z-index: 1001
}

@media (max-width: 61.9375em) {
    #navigation .flexDiv {
        flex-direction: column-reverse;
        display: flex
    }
}

#navigation .topBar {
    padding: 1rem 0;
    font-size: .88889rem;
    line-height: 1.6em;
    background: #00385E;
    color: #fff
}

@media (max-width: 47.4375em) {
    #navigation .topBar {
        width: 22rem
    }
}

@media (min-width: 62em) {
    #navigation .topBar {
        padding: 1.35rem 0 1.1rem 0
    }
}

@media (min-width: 75em) {
    #navigation .topBar {
        font-size: 1rem
    }
}

@media (min-width: 62em) {
    #navigation .topBar .large-7 {
        text-align: right
    }

    #navigation .topBar .large-7 .cms-article {
        display: inline-block;
        margin-left: 1rem
    }

    #navigation .topBar .large-7 .cms-article.phono {
        margin-left: 0
    }
}

#navigation .topBar a {
    color: #fff
}

#navigation .topBar a:hover {
    text-decoration: underline
}

#navigation .topBar .mailo a {
    color: #54A0D4
}

#navigation .topBar .mailo a:hover {
    text-decoration: underline
}

@media (max-width: 61.9375em) {
    #navigation .topBar {
        padding-bottom: 13rem
    }
}

#navigation .topBar .language {
    margin-top: 1rem;
    color: #54A0D4;
    text-transform: uppercase
}

#navigation .topBar .language li {
    display: inline-block
}

#navigation .topBar .language li:first-child:after {
    content: '|';
    opacity: 0.5;
    margin: 0 1rem
}

#navigation .topBar .language li.active {
    opacity: 0.5
}

@media (min-width: 62em) {
    #navigation .topBar .language {
        display: inline-block;
        margin-left: 2rem;
        margin-top: 0
    }
}

#navigation .topBar .language em {
    font-style: normal;
    opacity: 0.5;
    margin: 0 0.5rem
}

#navigation .topBar .language a:hover {
    color: #54A0D4;
    text-decoration: none
}

@media (max-width: 61.9375em) {
    #navigation .large-9 {
        padding: 0
    }
}

@media (min-width: 62em) {
    #navigation .large-9 {
        padding-left: 2rem
    }
}

@media (min-width: 75em) {
    #navigation .large-9 {
        padding-left: 5rem
    }
}

@media (min-width: 85.25em) {
    #navigation .large-9 {
        padding-left: 8rem
    }
}

@media (min-width: 95em) {
    #navigation .large-9 {
        padding-left: 11rem
    }
}

#navigation nav ul {
    width: 100%
}

@media (max-width: 61.9375em) {
    #navigation nav ul.navi li {
        border-bottom: 1px solid #E8E8E8
    }
}

#navigation nav ul.navi li a,
#navigation nav ul.navi li:not(.nav-back)>span,
#navigation nav ul.navi li.nav-back,
#navigation nav ul.navi li.has-sub>span {
    display: block;
    cursor: pointer;
    padding: 1em 1rem;
    text-decoration: none;
    color: #414141;
    transition: background-color .3s, color .3s
}

@media (min-width: 62em) {

    #navigation nav ul.navi li a,
    #navigation nav ul.navi li:not(.nav-back)>span,
    #navigation nav ul.navi li.nav-back,
    #navigation nav ul.navi li.has-sub>span {
        padding: 0;
        font-size: .88889rem
    }
}

@media (min-width: 75em) {

    #navigation nav ul.navi li a,
    #navigation nav ul.navi li:not(.nav-back)>span,
    #navigation nav ul.navi li.nav-back,
    #navigation nav ul.navi li.has-sub>span {
        font-size: 1rem
    }
}

#navigation nav ul.navi li.has-sub>span,
#navigation nav ul.navi li.has-sub>a {
    display: flex;
    justify-content: space-between;
    align-items: center
}

#navigation nav ul.navi li.has-sub>span .sub,
#navigation nav ul.navi li.has-sub>a .sub {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 222;
    background: #fff
}

@media (max-width: 61.9375em) {

    #navigation nav ul.navi li.has-sub>span .sub,
    #navigation nav ul.navi li.has-sub>a .sub {
        padding-bottom: 14rem
    }
}

#navigation nav ul.navi li.has-sub>span .sub:before,
#navigation nav ul.navi li.has-sub>a .sub:before {
    content: none;
    background-color: #414141
}

@media (max-width: 61.9375em) {

    #navigation nav ul.navi li.has-sub>span .sub,
    #navigation nav ul.navi li.has-sub>a .sub {
        transform: translateX(100%)
    }
}

@media (min-width: 62em) {

    #navigation nav ul.navi li.has-sub>span .sub,
    #navigation nav ul.navi li.has-sub>a .sub {
        opacity: 0;
        visibility: hidden
    }
}

@media (max-width: 61.9375em) {

    #navigation nav ul.navi li.has-sub>span .sub.current,
    #navigation nav ul.navi li.has-sub>a .sub.current {
        transform: translateX(0%)
    }
}

@media (min-width: 62em) {

    #navigation nav ul.navi li.has-sub>span .sub.current,
    #navigation nav ul.navi li.has-sub>a .sub.current {
        opacity: 1;
        visibility: visible
    }
}

#navigation nav ul.navi li.has-sub>span:after,
#navigation nav ul.navi li.has-sub>a:after {
    margin-left: 0.5em;
    display: inline-block
}

#navigation nav ul.navi li.has-sub .sub {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 222;
    background: #fff
}

@media (max-width: 61.9375em) {
    #navigation nav ul.navi li.has-sub .sub {
        padding-bottom: 14rem
    }
}

#navigation nav ul.navi li.has-sub .sub:before {
    content: none;
    background-color: #414141
}

@media (max-width: 61.9375em) {
    #navigation nav ul.navi li.has-sub .sub {
        transform: translateX(100%)
    }
}

@media (min-width: 62em) {
    #navigation nav ul.navi li.has-sub .sub {
        opacity: 0;
        visibility: hidden
    }
}

@media (max-width: 61.9375em) {
    #navigation nav ul.navi li.has-sub .sub.current {
        transform: translateX(0%)
    }
}

@media (min-width: 62em) {
    #navigation nav ul.navi li.has-sub .sub.current {
        opacity: 1;
        visibility: visible
    }
}

#navigation nav ul.navi li.nav-back {
    position: relative
}

#navigation nav ul.navi li.nav-back:before {
    margin-right: 1em;
    display: inline-block
}

@media (min-width: 62em) {
    #navigation {
        transition: 400ms all ease !important;
        box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.15)
    }
}

@media (min-width: 62em) {
    #navigation {
        top: 0;
        width: 100%
    }

    #navigation nav ul.navi {
        display: flex;
        justify-content: space-between
    }

    #navigation nav ul.navi li a,
    #navigation nav ul.navi li:not(.nav-back)>span,
    #navigation nav ul.navi li .sub:before,
    #navigation nav ul.navi li .nav-back {
        white-space: nowrap
    }

    #navigation nav ul.navi li.has-sub {
        position: relative
    }

    body.cms-backend #navigation nav ul.navi li.has-sub:hover>.sub {
        opacity: 1;
        visibility: visible
    }

    #navigation nav ul.navi li.has-sub .sub {
        top: 100%;
        width: auto
    }

    #navigation nav ul.navi li.has-sub .sub .sub {
        left: 100%;
        top: 0
    }

    #navigation nav ul.navi li.nav-back:before {
        content: "×";
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        font-family: "icomoon", sans-serif;
        text-align: center;
        width: 100%
    }

    #navigation nav ul.navi li.nav-back span {
        display: none
    }

    #navigation.hover-navigation nav ul.navi li.nav-back {
        display: none
    }

    #navigation nav ul.navi {
        padding: 2.5rem 0;
        transition: 400ms all ease
    }
}

@media (min-width: 62em) and (min-width: 75em) {
    #navigation nav ul.navi {
        padding: 3.25rem 0
    }
}

@media (min-width: 62em) {
    #navigation nav ul.navi li:not(.nav-back) {
        position: relative
    }

    #navigation nav ul.navi li:not(.nav-back):before {
        content: '';
        height: 0;
        width: 100%;
        position: absolute;
        bottom: -0.5rem;
        background: #00385E;
        transition: 400ms all ease
    }

    #navigation nav ul.navi li:not(.nav-back):hover:before,
    #navigation nav ul.navi li:not(.nav-back).active:before {
        height: 3px
    }

    #navigation nav ul.navi li:not(.nav-back).has-sub:before {
        content: none
    }

    #navigation nav ul.navi li:not(.nav-back).has-sub .sub {
        box-shadow: 0px 5px 10px 0px rgba(65, 65, 65, 0.2)
    }

    #navigation nav ul.navi li:not(.nav-back).has-sub .sub li:not(.nav-back) {
        padding: 0.25rem 0.75rem;
        border-top: 1px solid #E8E8E8
    }
}

@media (min-width: 62em) and (min-width: 101.25em) {
    #navigation nav ul.navi li:not(.nav-back).has-sub .sub li:not(.nav-back) {
        padding: 0.5rem 1rem
    }
}

@media (min-width: 62em) {
    #navigation nav ul.navi li:not(.nav-back).has-sub .sub li:not(.nav-back):before {
        content: none
    }
}

#quickbar {
    background-color: #00385E;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    z-index: 1000
}

#quickbar li a:before {
    margin-right: 0.5rem
}

@media (min-width: 62em) {
    #quickbar {
        display: none
    }
}

#header {
    position: relative;
    width: 100%;
    margin-top: 50px
}

@media (min-width: 62em) {
    #header {
        margin-top: 194px
    }
}

@media (min-width: 75em) {
    #header {
        margin-top: 221px
    }
}

.bgBrand {
    padding: 1rem;
    background: #fff
}

@media (min-width: 62em) {
    .bgBrand {
        background: transparent;
        width: auto;
        z-index: 2222;
        position: fixed;
        top: 4rem;
        transition: 400ms all ease
    }
}

.branding {
    display: inline-block;
    margin-bottom: 0
}

@media (min-width: 62em) {
    .branding {
        width: 12rem;
        transition: 400ms all ease
    }
}

@media (min-width: 75em) {
    .branding {
        width: 305px
    }
}

.bgHeader {
    background-position: center;
    background-size: cover;
    height: 16rem;
}

@media (min-width: 30em) {
    .bgHeader {
        height: 20rem
    }
}

@media (min-width: 40em) {
    .bgHeader {
        height: 22rem;
        background-position: top
    }
}

@media (min-width: 47.5em) {
    .bgHeader {
        height: 30rem
    }
}

@media (min-width: 62em) {
    .bgHeader {
        margin-top: -30px
    }
}

@media (min-width: 85.25em) {
    .bgHeader {
        height: 590px
    }
}

.claim {
    padding: 2rem 0 4rem
}

@media (min-width: 47.5em) {
    .claim {
        padding: 0
    }
}

@media (min-width: 75em) {
    .claim {
        padding-right: 3rem
    }
}

@media (min-width: 101.25em) {
    .claim {
        padding-right: 4.8rem
    }
}

@media (min-width: 47.5em) {
    .claim h1 {
        font-size: 22px
    }
}

@media (min-width: 62em) {
    .claim h1 {
        font-size: 1.55556rem
    }
}

@media (min-width: 75em) {
    .claim h1 {
        font-size: 2rem
    }
}

@media (min-width: 85.25em) {
    .claim h1 {
        font-size: 2.22222rem
    }
}

@media (min-width: 95em) {
    .claim h1 {
        font-size: 2.44444rem;
        line-height: 1.3em
    }
}

.claim h1 span {
    font-size: 1rem
}

@media (min-width: 75em) {
    .claim h1 span {
        font-size: 1.33333rem
    }
}

@media (min-width: 85.25em) {
    .claim h1 span {
        font-size: 1.55556rem
    }
}

@media (min-width: 101.25em) {
    .claim h1 span {
        font-size: 1.77778rem
    }
}

main {
    display: block;
    padding: 4rem 0 0
}

@media (min-width: 40em) {
    main {
        padding: 5rem 0 0
    }
}

@media (min-width: 75em) {
    main {
        padding: 6rem 0 0
    }
}

main .teaserDiv {
    background: #F3F3F3;
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem
}

@media (min-width: 40em) {
    main .teaserDiv {
        padding: 5rem 0;
        margin-top: 5rem
    }
}

@media (min-width: 47.5em) {
    main .teaserDiv {
        padding: 6rem 0;
        margin-top: 6rem
    }
}

@media (min-width: 62em) {
    main .teaserDiv {
        padding: 7rem 0;
        margin-top: 7rem
    }
}

@media (min-width: 75em) {
    main .teaserDiv {
        padding: 8rem 0;
        margin-top: 8rem
    }
}

@media (min-width: 85.25em) {
    main .teaserDiv {
        padding: 9rem 0;
        margin-top: 9rem
    }
}

@media (min-width: 101.25em) {
    main .teaserDiv {
        max-width: 1920px;
        margin: 9rem auto 0
    }
}

main .teaserDiv .bgTeas {
    background: #fff;
    display: block;
    height: 11rem;
    position: relative;
    margin-bottom: 2rem;
    font-size: 1.11111rem;
    transition: 400ms all ease
}

@media (min-width: 30em) {
    main .teaserDiv .bgTeas {
        height: 13rem
    }
}

@media (min-width: 75em) {
    main .teaserDiv .bgTeas {
        height: 300px;
        font-size: 1.33333rem
    }
}

main .teaserDiv .bgTeas:hover,
main .teaserDiv .bgTeas:focus {
    background: #00385E
}

main .teaserDiv .bgTeas:hover span,
main .teaserDiv .bgTeas:focus span {
    color: #fff
}

main .teaserDiv .bgTeas:hover span:before,
main .teaserDiv .bgTeas:focus span:before {
    color: #54A0D4
}

main .teaserDiv .bgTeas span {
    font-weight: 700;
    color: #00385E;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

@media (min-width: 75em) {
    main .teaserDiv .bgTeas span {
        top: 55%
    }
}

main .teaserDiv .bgTeas span:before {
    height: 3rem;
    width: 200px;
    font-family: "icomoon", sans-serif;
    font-weight: 400;
    margin: 0 auto;
    font-size: 2.77778rem;
    display: block;
    color: #636361;
    transition: 400ms all ease
}

@media (min-width: 75em) {
    main .teaserDiv .bgTeas span:before {
        font-size: 1.44444rem;
        height: 4.25rem
    }
}

main .teaserDiv .bgTeas.bgTeas1 span:before {
    content: 'Placeholder'
}

main .teaserDiv .bgTeas.bgTeas2 span:before {
    content: 'Placeholder'
}

main .teaserDiv .bgTeas.bgTeas3 span:before {
    content: 'Placeholder';
    font-size: 40px
}

@media (min-width: 75em) {
    main .teaserDiv .bgTeas.bgTeas3 span:before {
        font-size: 1.44444rem
    }
}

@media (min-width: 62em) {
    main .teaserDiv .bgTeas.bgTeas4 {
        margin-bottom: 0
    }
}

main .teaserDiv .bgTeas.bgTeas4 span:before {
    content: 'Placeholder'
}

@media (min-width: 40em) {
    main .teaserDiv .bgTeas.bgTeas5 {
        margin-bottom: 0
    }
}

main .teaserDiv .bgTeas.bgTeas5 span:before {
    content: 'Placeholder'
}

main .teaserDiv .bgTeas.bgTeas6 {
    margin-bottom: 0
}

main .teaserDiv .bgTeas.bgTeas6 span:before {
    content: 'Placeholder';
    font-size: 1.44444rem
}

@media (min-width: 75em) {
    main .teaserDiv .bgTeas.bgTeas6 span:before {
        font-size: 1.44444rem
    }
}

@media (min-width: 47.5em) {
    main .textArea {
        padding: 6rem 0 2rem 0
    }
}

@media (min-width: 62em) {
    main .textArea {
        padding: 7rem 0 3rem 0
    }
}

@media (min-width: 75em) {
    main .textArea {
        padding: 8rem 0 0 0
    }
}

@media (min-width: 85.25em) {
    main .textArea {
        padding: 9rem 0 0 0
    }
}

main .textArea .text {
    padding: 4rem 0 2.25rem
}

@media (min-width: 40em) {
    main .textArea .text {
        padding: 5rem 0 3.25rem
    }
}

@media (min-width: 47.5em) {
    main .textArea .text {
        padding: 0
    }
}

@media (min-width: 75em) {
    main .textArea .text {
        padding-right: 3rem
    }
}

@media (min-width: 85.25em) {
    main .textArea .text {
        padding-right: 5rem
    }
}

@media (min-width: 95em) {
    main .textArea .text {
        padding-right: 6rem
    }
}

main .textArea .bgPic {
    background-size: cover;
    background-position: center;
    height: 16rem
}

@media (min-width: 40em) {
    main .textArea .bgPic {
        height: 20rem
    }
}

@media (min-width: 47.5em) {
    main .textArea .bgPic {
        height: 40rem
    }
}

@media (min-width: 62em) {
    main .textArea .bgPic {
        height: 32rem
    }
}

@media (min-width: 85.25em) {
    main .textArea .bgPic {
        height: 590px
    }
}

main .textDiv {
    padding: 4rem 0
}

@media (min-width: 75em) {
    main .textDiv {
        padding: 7rem 0
    }
}

main .textDiv .noWidth {
    margin-bottom: 2rem
}

main .textDiv .noWidth img {
    width: auto !important
}

main .formDiv .bgFooter {
    padding: 4rem 1rem;
    background-position: center;
    background-size: cover
}

@media (min-width: 30em) {
    main .formDiv .bgFooter {
        padding: 5rem 2.25rem
    }
}

@media (min-width: 40em) {
    main .formDiv .bgFooter {
        padding: 7rem 3rem
    }
}

@media (min-width: 62em) {
    main .formDiv .bgFooter {
        height: 920px;
        position: relative
    }
}

main .formDiv .bgFooter .h1 {
    color: #fff;
    margin-bottom: 0;
    font-weight: 700
}

@media (min-width: 62em) {
    main .formDiv .bgFooter .h1 {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        line-height: 1.2em
    }

    main .formDiv .bgFooter .h1 span {
        line-height: 1.6em
    }
}

@media (min-width: 75em) {
    main .formDiv .bgFooter .h1 {
        font-size: 2rem;
        line-height: 1.4em;
        left: 1rem
    }

    main .formDiv .bgFooter .h1 span {
        font-size: 32px;
        line-height: 1.5em
    }
}

@media (min-width: 85.25em) {
    main .formDiv .bgFooter .h1 {
        left: 2rem
    }
}

main .formDiv .bgFooter .h1 span {
    color: #54A0D4
}

main .formDiv .bgFooter .claim {
    padding: 0
}

@media (min-width: 62em) {
    main .formDiv .bgFooter .claim {
        position: sticky;
        top: 250px
    }
}

@media (min-width: 75em) {
    main .formDiv .bgFooter .claim {
        position: relative
    }
}

@media (min-width: 62em) {
    main .formDiv .left {
        padding-right: 0
    }
}

@media (min-width: 62em) {
    main .formDiv .right {
        padding-left: 0
    }
}

main .formDiv .form {
    background: #00385E;
    padding: 4rem 1rem
}

@media (min-width: 30em) {
    main .formDiv .form {
        padding: 5rem 2.25rem
    }
}

@media (min-width: 62em) {
    main .formDiv .form {
        height: 920px
    }
}

@media (min-width: 75em) {
    main .formDiv .form {
        padding: 5rem 4rem
    }
}

@media (min-width: 85.25em) {
    main .formDiv .form {
        padding: 5rem 6rem
    }
}

main .formDiv .form label {
    display: none
}

main .formDiv .form label.datenschutz {
    color: #fff
}

main .formDiv .form label.datenschutz small {
    display: none
}

main .formDiv .form input {
    padding-left: 0 !important
}

main .formDiv .form input.checkbox {
    width: 1rem;
    margin: 1.75rem 0;
    opacity: 1
}

main .formDiv .form textarea {
    min-height: 8rem !important;
    padding-left: 0 !important
}

main .formDiv .form [type="text"],
main .formDiv .form [type="tel"],
main .formDiv .form [type="email"],
main .formDiv .form [type="file"],
main .formDiv .form input,
main .formDiv .form textarea,
main .formDiv .form select {
    opacity: 0.4;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    display: block;
    font-family: Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.66667rem;
    margin: 0 0 0.5rem 0;
    padding: 0.8rem;
    position: relative;
    resize: none;
    width: 100%
}

main .formDiv .form [type="text"]:not([type="checkbox"]):not([type="radio"]):focus,
main .formDiv .form [type="tel"]:not([type="checkbox"]):not([type="radio"]):focus,
main .formDiv .form [type="email"]:not([type="checkbox"]):not([type="radio"]):focus,
main .formDiv .form [type="file"]:not([type="checkbox"]):not([type="radio"]):focus,
main .formDiv .form input:not([type="checkbox"]):not([type="radio"]):focus,
main .formDiv .form textarea:not([type="checkbox"]):not([type="radio"]):focus,
main .formDiv .form select:not([type="checkbox"]):not([type="radio"]):focus {
    background: #f2f2f2;
    outline: none
}

main .formDiv .form [type="text"]:hover,
main .formDiv .form [type="text"]:focus,
main .formDiv .form [type="text"]:active,
main .formDiv .form [type="tel"]:hover,
main .formDiv .form [type="tel"]:focus,
main .formDiv .form [type="tel"]:active,
main .formDiv .form [type="email"]:hover,
main .formDiv .form [type="email"]:focus,
main .formDiv .form [type="email"]:active,
main .formDiv .form [type="file"]:hover,
main .formDiv .form [type="file"]:focus,
main .formDiv .form [type="file"]:active,
main .formDiv .form input:hover,
main .formDiv .form input:focus,
main .formDiv .form input:active,
main .formDiv .form textarea:hover,
main .formDiv .form textarea:focus,
main .formDiv .form textarea:active,
main .formDiv .form select:hover,
main .formDiv .form select:focus,
main .formDiv .form select:active {
    opacity: 1;
    border: none;
    border-bottom: 1px solid #54A0D4;
    background: transparent !important
}

main .formDiv .form ::-webkit-input-placeholder {
    color: #fff
}

main .formDiv .form ::-moz-placeholder {
    color: #fff
}

main .formDiv .form :-ms-input-placeholder {
    color: #fff !important
}

main .formDiv .form :-moz-placeholder {
    color: #fff
}

main .formDiv .form input:-webkit-autofill,
main .formDiv .form input:-webkit-autofill:hover,
main .formDiv .form input:-webkit-autofill:focus,
main .formDiv .form textarea:-webkit-autofill,
main .formDiv .form textarea:-webkit-autofill:hover,
main .formDiv .form textarea:-webkit-autofill:focus,
main .formDiv .form select:-webkit-autofill,
main .formDiv .form select:-webkit-autofill:hover,
main .formDiv .form select:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s
}

#privacy-policy a {
    display: inline-block;
    word-break: break-all
}

main .teamimage {
    width: 200px
}

main .lineTeam {
    background: #003259;
    height: 50px;
    width: 1px;
    display: block;
    margin: 0 auto 18px auto
}

@media (min-width: 62em) {
    main .lineTeam {
        height:120px;
        margin: 45px auto 58px auto
    }
}

#privacyPolicy a {
    display: inline-block;
    word-break: break-all
}

main .amtstageContent {
    width: 100%;
    border: 1px solid #003259;
    margin: 18px;
    padding: 18px 0;
    text-align: center;
    font-size: 16px
}

@media (min-width: 30em) {
    main .amtstageContent {
        font-size:18px
    }
}

@media (min-width: 47.5em) {
    main .amtstageContent {
        text-align:left
    }
}

@media (min-width: 62em) {
    main .amtstageContent {
        padding:25px
    }
}

main .amtstageContent .h4,main .amtstageContent p {
    margin-bottom: 0
}

@media (min-width: 47.5em) {
    main .amtstageContent p {
        font-size:16px
    }
}

@media (min-width: 62em) {
    main .amtstageContent p {
        font-size:18px
    }
}

@media (min-width: 47.5em) {
    main .amtstageContent {
        display:flex;
        align-items: center
    }

    main .amtstageContent .line {
        width: 35px;
        background: #003259;
        height: 1px
    }
}

@media (min-width: 47.5em) and (min-width: 62em) {
    main .amtstageContent .line {
        width:75px
    }
}

main .amtstageh5 {
    background: #f8f8f8;
    padding: 20px
}

@media (min-width: 47.5em) {
    main .amtstageh5 {
        padding:35px
    }
}

@media (min-width: 62em) {
    main .amtstageh5 {
        padding:50px
    }
}

main .faqBox {
    border: 1px solid #003259;
    padding: 18px;
    margin-bottom: 25px
}

@media (min-width: 47.5em) {
    main .faqBox {
        padding:25px
    }
}

@media (min-width: 62em) {
    main .faqBox {
        padding:50px
    }
}

main .faqBox p {
    margin-bottom: 0
}

main .faqBox p.h5 {
    margin-bottom: .8rem
}

main .faqBox.downloader {
    text-align: center
}

@media (min-width: 47.5em) {
    main .faqBox.downloader {
        height:250px;
        display: flex;
        flex-direction: column;
        justify-content: center
    }
}

@media (min-width: 75em) {
    main .faqBox.downloader {
        height:300px;
        padding: 35px
    }
}

main .faqBox.downloader .fileBefore {
    margin-bottom: 0;
    margin-top: 20px
}

@media (min-width: 47.5em) {
    .footerZusatz {
        display:flex;
        align-items: center
    }
}

@media (min-width: 62em) {
    .footerZusatz {
        width:100%;
        display: flex;
        align-items: center
    }
}

.footerZusatz .googleMaps {
    margin-bottom: 53px
}

@media (min-width: 47.5em) {
    .footerZusatz .googleMaps {
        padding-bottom:22.22222rem
    }
}

@media (min-width: 62em) {
    .footerZusatz .googleMaps {
        padding-bottom:25rem
    }
}

@media (min-width: 62em) {
    .footerZusatz .righter {
        padding-left:50px
    }
}

@media (min-width: 85.25em) {
    .footerZusatz .righter {
        padding-left:100px
    }
}

.footerZusatz .righter .h6 {
    margin-bottom: 0
}

.footerZusatz .righter .contact {
    margin: 2rem 0
}

@media (min-width: 30em) {
    .footerZusatz .righter .contact {
        display:inline-flex
    }

    .footerZusatz .righter .contact .mailer {
        margin-left: 1.5rem
    }
}

@media (min-width: 40em) {
    .footerZusatz .righter br {
        display:none
    }
}

.footerZusatz .righter dl.floatList .and {
    display: none
}

@media (min-width: 30em) {
    .footerZusatz .righter dl.floatList dt {
        width:100px
    }

    .footerZusatz .righter dl.floatList dd {
        width: 300px
    }
}

@media (min-width: 40em) {
    .footerZusatz .righter dl.floatList .and {
        display:inline-block
    }
}

.footerZusatz .righter .opening {
    margin-bottom: 25px
}

#footer {
    background: #fff;
    overflow: hidden
}

#footer .footerAdd {
    padding: 4rem 0
}

@media (min-width: 47.5em) {
    #footer .footerAdd {
        padding: 6rem 0
    }
}

@media (min-width: 62em) {
    #footer .footerAdd {
        padding: 7rem 0
    }
}

@media (min-width: 85.25em) {
    #footer .footerAdd {
        padding: 8rem 0
    }
}

#footer .footerAdd iframe {
    height: 300px;
    margin-bottom: 0
}

@media (min-width: 40em) {
    #footer .footerAdd iframe {
        height: 400px
    }
}

@media (min-width: 47.5em) {
    #footer .footerAdd iframe {
        height: 450px
    }
}

@media (min-width: 85.25em) {
    #footer .footerAdd iframe {
        height: 500px
    }
}

@media (min-width: 47.5em) {
    #footer .footerAdd .huge-5 {
        padding: 0 0.5rem 0 0.5rem
    }
}

@media (min-width: 62em) {
    #footer .footerAdd .huge-5 {
        padding: 0 1rem
    }
}

#footer .footerAdd .text {
    padding: 4rem 0 0 0;
    font-size: .88889rem;
    line-height: 1.6em
}

@media (min-width: 40em) {
    #footer .footerAdd .text {
        font-size: 1rem
    }
}

@media (min-width: 47.5em) {
    #footer .footerAdd .text {
        padding: 1rem 0 0 0;
        font-size: .77778rem
    }
}

@media (min-width: 62em) {
    #footer .footerAdd .text {
        padding-left: 2rem;
        font-size: .88889rem
    }
}

@media (min-width: 75em) {
    #footer .footerAdd .text {
        padding-left: 3rem;
        font-size: 1rem
    }
}

@media (min-width: 95em) {
    #footer .footerAdd .text {
        padding-left: 5rem
    }
}

#footer .footerAdd .text p {
    margin-bottom: 1.5rem
}

@media (min-width: 62em) {
    #footer .footerAdd .text .large-5 {
        padding-right: 0
    }
}

#footer .footerAdd .contact {
    margin: 2rem 0 2rem 0
}

#footer .footerAdd .contact .large-7,
#footer .footerAdd .contact .large-5 {
    padding: 0
}

#footer .footerAdd .contact p {
    margin-bottom: 0;
    display: inline-block
}

#footer .footerAdd .time dl dt,
#footer .footerAdd .time dl dd {
    display: inline-block
}

#footer .footerAdd .time dl dt {
    width: 5rem
}

@media (max-width: 29.9375em) {
    #footer .footerAdd .time dl dt {
        display: block
    }
}

@media (min-width: 30em) {
    #footer .footerAdd .time dl dt {
        width: 6rem
    }
}

@media (min-width: 47.5em) {
    #footer .footerAdd .time dl dt {
        width: 5rem
    }
}

@media (min-width: 62em) {
    #footer .footerAdd .time dl dt {
        width: 6rem
    }
}

#footer .naviAdd {
    background: #00385E
}

@media (min-width: 47.5em) {
    #footer .naviAdd .navi-add {
        text-align: center;
        padding: 1.5rem 0
    }
}

#footer .naviAdd .navi-add li {
    border-top: 1px solid #54A0D4
}

@media (min-width: 47.5em) {
    #footer .naviAdd .navi-add li {
        border: none;
        margin: 0 1rem;
        display: inline-block
    }
}

#footer .naviAdd .navi-add li:first-child {
    border: none
}

#footer .naviAdd .navi-add li a {
    color: #fff;
    padding: 0.5rem 1.5rem;
    display: block
}

@media (min-width: 47.5em) {
    #footer .naviAdd .navi-add li a {
        display: inline-block;
        padding: 0
    }
}

#footer .naviAdd .navi-add li a:hover,
#footer .naviAdd .navi-add li a.active {
    color: #54A0D4
}

.fileBefore {
    font-weight: 500;
    font-size: 1.11111rem;
    margin-bottom: 20px;
    display: block
}

.fileBefore:before {
    font-family: "icomoon";
    font-size: 25px;
    transition: all 300ms;
    display: inline-block;
    margin-right: 5px;
    content: "î«Ÿ"
}


.whiteBox {
    background: #F3F3F3;
    padding: 2rem 1rem;
    margin-bottom: 2rem
}

@media (min-width: 62em) {
    .whiteBox {
        padding: 3rem
    }
}

@media (min-width: 62em) {
    .whiteBox p {
        margin-bottom: 0
    }
}

.whiteBox strong {
    font-size: 22px;
    line-height: 1.55em;
    margin-bottom: 1.5rem;
    display: block
}

.whiteBox.center {
    text-align: center;
    padding: 2rem
}

@media (min-width: 62em) {
    .whiteBox.center {
        padding: 3rem 2rem
    }
}

.whiteBox.center p {
    margin-bottom: 1.5rem
}

.whiteBox.center strong {
    font-size: 1rem
}

@media (min-width: 62em) {
    body.fixed #navigation {
        box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.15)
    }
}

@media (min-width: 62em) {
    body.fixed .navi.navi-main {
        padding: 1.5rem 0 !important
    }
}

@media (min-width: 62em) {
    body.fixed .branding {
        width: 9rem !important
    }
}

@media (min-width: 62em) {
    body.fixed .bgBrand {
        top: 3.75rem
    }
}

@media (min-width: 62em) {
    body.index #navigation {
        box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0)
    }
}

body.index main {
    padding: 0
}

body.anfahrt main label,
body.directions main label {
    display: none
}

body.anfahrt main small,
body.directions main small {
    margin-bottom: 1rem
}

body.cms-page-edit header,
body.cms-page-edit nav,
body.cms-page-edit footer {
    display: none
}

.worker {
    margin-bottom: 2rem;
    height: calc(100% - 36px);
    background: #F3F3F3
}

.worker img,
.worker a {
    margin-bottom: 0
}

.worker .text {
    padding: 2rem 2rem 1rem;
    font-size: .88889rem;
    line-height: 27px
}

.worker .text strong {
    font-size: 20px
}

.privacy-control-badge {
    z-index: 8 !important
}

form.default {
    overflow: hidden;
    width: 100%;
    --captcha-border-radius: 0;
    --captcha-color-icon: #fff;
    --captcha-color-secondary: #414141;
    --captcha-color-warning: #54A0D4
}

form.default.disabled input,
form.default.disabled textarea,
form.default.disabled select,
form.default.disabled button,
form.default.disabled label {
    pointer-events: none;
    opacity: 0.5
}

form.default.disabled input a,
form.default.disabled textarea a,
form.default.disabled select a,
form.default.disabled button a,
form.default.disabled label a {
    pointer-events: all
}

form.default ::-webkit-input-placeholder {
    color: #414141
}

form.default ::-moz-placeholder {
    color: #414141
}

form.default :-ms-input-placeholder {
    color: #414141 !important
}

form.default :-moz-placeholder {
    color: #414141
}

form.default.was-validated:invalid input:not([type="radio"]):not([type="checkbox"]):required:invalid,
form.default.was-validated:invalid textarea:required:invalid,
form.default.was-validated:invalid select:required:invalid {
    border-color: #54A0D4
}

form.default.was-validated:invalid label.invalid {
    color: #54A0D4
}

form.default input,
form.default textarea,
form.default select {
    accent-color: #414141
}

form.default input:-webkit-autofill,
form.default input:-webkit-autofill:hover,
form.default input:-webkit-autofill:focus,
form.default textarea:-webkit-autofill,
form.default textarea:-webkit-autofill:hover,
form.default textarea:-webkit-autofill:focus,
form.default select:-webkit-autofill,
form.default select:-webkit-autofill:hover,
form.default select:-webkit-autofill:focus {
    -webkit-text-fill-color: inherit;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s
}

form.default span.legend {
    margin-top: 2rem
}

form.default span.legend.required small {
    color: #54A0D4
}

form.default legend {
    margin: -2rem 0
}

form.default ever-captcha {
    padding: 1rem 0 0.6rem;
    clear: both
}

form.default label,
form.default fieldset,
form.default legend {
    color: inherit;
    padding: 1rem 0 0.6rem;
    position: relative;
    clear: both;
    display: inline-flex;
    align-items: baseline
}

form.default label small,
form.default fieldset small,
form.default legend small {
    color: #54A0D4;
    display: inline-block;
    line-height: 0.5rem
}

form.default label[for*="privacypolicy"],
form.default label[for*="datenschutz"],
form.default label[for*="rueckrufbitte-ja"],
form.default label[for*="callback-yes"],
form.default fieldset[for*="privacypolicy"],
form.default fieldset[for*="datenschutz"],
form.default fieldset[for*="rueckrufbitte-ja"],
form.default fieldset[for*="callback-yes"],
form.default legend[for*="privacypolicy"],
form.default legend[for*="datenschutz"],
form.default legend[for*="rueckrufbitte-ja"],
form.default legend[for*="callback-yes"] {
    display: block;
    float: right;
    width: calc(100% - 2rem)
}

form.default fieldset {
    border: none;
    display: block
}

form.default fieldset label {
    margin-right: 1rem
}

form.default div[data-field-error] {
    position: relative;
    display: inline-block;
    background: #54A0D4;
    padding: .5rem;
    line-height: 1;
    color: #fff;
    width: 100%
}

form.default small {
    line-height: 1rem;
    display: inline-block;
    font-size: 0
}

form.default small:before {
    font-size: .77778rem;
    padding-left: .33333rem
}

body.lang-en form.default small:before {
    content: '(Required)'
}

body.lang-de form.default small:before {
    content: '(Pflichtfeld)'
}

form.default.cms-map small {
    font-size: .66667rem
}

form.default.cms-map small:before {
    display: none
}

form.default [type="text"],
form.default [type="tel"],
form.default [type="email"],
form.default [type="file"],
form.default input,
form.default textarea,
form.default select {
    background: #fff;
    border: 2px solid #E8E8E8;
    color: #414141;
    display: block;
    font-family: Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.66667rem;
    margin: 0 0 0.5rem 0;
    padding: 1rem;
    position: relative;
    resize: none;
    width: 100%
}

form.default [type="text"]:hover,
form.default [type="text"]:focus,
form.default [type="tel"]:hover,
form.default [type="tel"]:focus,
form.default [type="email"]:hover,
form.default [type="email"]:focus,
form.default [type="file"]:hover,
form.default [type="file"]:focus,
form.default input:hover,
form.default input:focus,
form.default textarea:hover,
form.default textarea:focus,
form.default select:hover,
form.default select:focus {
    border: 2px solid #54A0D4
}

form.default [type="text"]:not([type="checkbox"]):not([type="radio"]):focus,
form.default [type="tel"]:not([type="checkbox"]):not([type="radio"]):focus,
form.default [type="email"]:not([type="checkbox"]):not([type="radio"]):focus,
form.default [type="file"]:not([type="checkbox"]):not([type="radio"]):focus,
form.default input:not([type="checkbox"]):not([type="radio"]):focus,
form.default textarea:not([type="checkbox"]):not([type="radio"]):focus,
form.default select:not([type="checkbox"]):not([type="radio"]):focus {
    background: #f2f2f2;
    outline: none
}

form.default textarea {
    min-height: 7.5rem;
    padding-top: 0.9rem
}

form.default textarea[name="Nachricht"],
form.default textarea[name="Message"] {
    min-height: 18.5rem
}

form.default textarea[name="Text"] {
    min-height: 18.5rem
}

form.default [type="checkbox"] {
    display: inline-block;
    margin: 0 .5rem 0 0;
    padding: 0;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    order: -1
}

form.default [type="checkbox"][id*="privacypolicy"],
form.default [type="checkbox"][id*="datenschutz"],
form.default [type="checkbox"][id*="rueckrufbitte-ja"],
form.default [type="checkbox"][id*="callback-yes"] {
    margin-top: calc((1.66667rem - 1rem) / 2 + 1rem)
}

body.iexplore form.default [type="checkbox"] {
    border: none
}

body.iexplore form.default [type="checkbox"]:focus {
    background: none
}

form.default [type="radio"] {
    margin: 0 .5rem 0 0;
    width: 1rem;
    min-height: auto;
    flex-shrink: 0
}

div.error {
    background: #54A0D4;
    color: #fff;
    padding: .5rem;
    max-width: calc(1620px - 18px * 2);
    margin: auto;
    width: calc(100% - 18px * 2)
}

.contact-text {
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    padding: 1.66667rem 0;
    margin: 1.66667rem 0 2.22222rem 0
}

.contact-text p {
    margin-bottom: 0
}

.specialfield {
    display: none !important;
    visibility: hidden !important
}

#newsletter-info {
    background: #54A0D4;
    color: #fff;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 18px
}

#newsletter-info *:last-of-type {
    margin-bottom: 0
}

img[name="vimg"]+input[name="imgverify"] {
    float: right
}

form[data-evercaptcha] [data-captcha] {
    margin-top: 1.25rem
}

form[data-evercaptcha] [data-captcha] evercaptcha-container#captcha {
    --evercaptcha-error-color: #54A0D4
}

@charset "UTF-8";

.cms-column-empty {
    height: 1px
}

.cms-video {
    width: 100%
}

.cms-container-el {
    display: block;
    min-height: 30px
}

body.cms-page-edit {
    position: static !important
}

input.gotcha_field {
    display: none !important
}

.full-width {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important
}

.full-width>.col:only-child {
    padding-left: 0 !important;
    padding-right: 0 !important;
    float: none !important
}

.full-width>.col:only-child>.row {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none;
    position: relative
}

@media only screen and (max-width:799px) {
    .hide-mobile {
        display: none
    }

    body.cms-page-edit .hide-mobile,
    body.cms-template-edit .hide-mobile {
        display: block
    }
}

@media only screen and (min-width:800px) and (max-width:1199px) {
    .hide-tablet {
        display: none
    }

    body.cms-page-edit .hide-tablet,
    body.cms-template-edit .hide-tablet {
        display: block
    }
}

@media only screen and (min-width:1200px) {
    .hide-desktop {
        display: none
    }

    body.cms-page-edit .hide-desktop,
    body.cms-template-edit .hide-desktop {
        display: block
    }
}

.gallery-pager {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0
}

.gallery-pager li {
    display: inline-block;
    padding: 0;
    margin: 0
}

.gallery-pager li:after,
.gallery-pager li:before {
    display: none
}

.gallery-pager li button {
    background: 0 0;
    border: none;
    padding: 5px 8px;
    transition: .3s linear opacity;
    opacity: .7;
    cursor: pointer
}

.gallery-pager li button.current {
    border: 1px solid;
    font-weight: 700;
    opacity: 1
}

.gallery-pager li button:active,
.gallery-pager li button:focus,
.gallery-pager li button:hover {
    opacity: 1
}

.gallery-pager .next-btn,
.gallery-pager .prev-btn {
    transition: .3s linear opacity
}

.gallery-pager .next-btn:active,
.gallery-pager .next-btn:focus,
.gallery-pager .next-btn:hover,
.gallery-pager .prev-btn:active,
.gallery-pager .prev-btn:focus,
.gallery-pager .prev-btn:hover {
    opacity: .5
}

.cms-el-row {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: stretch;
    align-items: stretch
}

.cms-el-col {
    float: left;
    padding-left: 1.125rem;
    padding-right: 1.125rem;
    max-width: 100%;
    width: 100%;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    box-sizing: border-box
}

.cms-el-col figure {
    margin: 0;
    padding: 0
}

.cms-el-col figure img {
    width: 100%;
    height: auto
}

.cms-el-col.cms-el-col-1 {
    max-width: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%
}

.cms-el-col.cms-el-col-2 {
    max-width: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%
}

.cms-el-col.cms-el-col-3 {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%
}

.cms-el-col.cms-el-col-4 {
    max-width: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%
}

.cms-el-col.cms-el-col-5 {
    max-width: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%
}

.cms-el-col.cms-el-col-6 {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
}

.cms-el-col.cms-el-col-7 {
    max-width: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%
}

.cms-el-col.cms-el-col-8 {
    max-width: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%
}

.cms-el-col.cms-el-col-9 {
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%
}

.cms-el-col.cms-el-col-10 {
    max-width: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%
}

.cms-el-col.cms-el-col-11 {
    max-width: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%
}

.cms-el-col.cms-el-col-12 {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
}

@media screen and (min-width:480px) {
    .cms-el-col.cms-el-tiny-1 {
        max-width: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%
    }

    .cms-el-col.cms-el-tiny-2 {
        max-width: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%
    }

    .cms-el-col.cms-el-tiny-3 {
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%
    }

    .cms-el-col.cms-el-tiny-4 {
        max-width: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%
    }

    .cms-el-col.cms-el-tiny-5 {
        max-width: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%
    }

    .cms-el-col.cms-el-tiny-6 {
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }

    .cms-el-col.cms-el-tiny-7 {
        max-width: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%
    }

    .cms-el-col.cms-el-tiny-8 {
        max-width: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%
    }

    .cms-el-col.cms-el-tiny-9 {
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%
    }

    .cms-el-col.cms-el-tiny-10 {
        max-width: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%
    }

    .cms-el-col.cms-el-tiny-11 {
        max-width: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%
    }

    .cms-el-col.cms-el-tiny-12 {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

@media screen and (min-width:640px) {
    .cms-el-col.cms-el-small-1 {
        max-width: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%
    }

    .cms-el-col.cms-el-small-2 {
        max-width: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%
    }

    .cms-el-col.cms-el-small-3 {
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%
    }

    .cms-el-col.cms-el-small-4 {
        max-width: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%
    }

    .cms-el-col.cms-el-small-5 {
        max-width: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%
    }

    .cms-el-col.cms-el-small-6 {
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }

    .cms-el-col.cms-el-small-7 {
        max-width: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%
    }

    .cms-el-col.cms-el-small-8 {
        max-width: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%
    }

    .cms-el-col.cms-el-small-9 {
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%
    }

    .cms-el-col.cms-el-small-10 {
        max-width: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%
    }

    .cms-el-col.cms-el-small-11 {
        max-width: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%
    }

    .cms-el-col.cms-el-small-12 {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

@media screen and (min-width:760px) {
    .cms-el-col.cms-el-medium-1 {
        max-width: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%
    }

    .cms-el-col.cms-el-medium-2 {
        max-width: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%
    }

    .cms-el-col.cms-el-medium-3 {
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%
    }

    .cms-el-col.cms-el-medium-4 {
        max-width: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%
    }

    .cms-el-col.cms-el-medium-5 {
        max-width: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%
    }

    .cms-el-col.cms-el-medium-6 {
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }

    .cms-el-col.cms-el-medium-7 {
        max-width: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%
    }

    .cms-el-col.cms-el-medium-8 {
        max-width: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%
    }

    .cms-el-col.cms-el-medium-9 {
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%
    }

    .cms-el-col.cms-el-medium-10 {
        max-width: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%
    }

    .cms-el-col.cms-el-medium-11 {
        max-width: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%
    }

    .cms-el-col.cms-el-medium-12 {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

@media screen and (min-width:992px) {
    .cms-el-col.cms-el-large-1 {
        max-width: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%
    }

    .cms-el-col.cms-el-large-2 {
        max-width: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%
    }

    .cms-el-col.cms-el-large-3 {
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%
    }

    .cms-el-col.cms-el-large-4 {
        max-width: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%
    }

    .cms-el-col.cms-el-large-5 {
        max-width: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%
    }

    .cms-el-col.cms-el-large-6 {
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }

    .cms-el-col.cms-el-large-7 {
        max-width: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%
    }

    .cms-el-col.cms-el-large-8 {
        max-width: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%
    }

    .cms-el-col.cms-el-large-9 {
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%
    }

    .cms-el-col.cms-el-large-10 {
        max-width: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%
    }

    .cms-el-col.cms-el-large-11 {
        max-width: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%
    }

    .cms-el-col.cms-el-large-12 {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

@media screen and (min-width:1200px) {
    .cms-el-col.cms-el-giant-1 {
        max-width: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%
    }

    .cms-el-col.cms-el-giant-2 {
        max-width: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%
    }

    .cms-el-col.cms-el-giant-3 {
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%
    }

    .cms-el-col.cms-el-giant-4 {
        max-width: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%
    }

    .cms-el-col.cms-el-giant-5 {
        max-width: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%
    }

    .cms-el-col.cms-el-giant-6 {
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }

    .cms-el-col.cms-el-giant-7 {
        max-width: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%
    }

    .cms-el-col.cms-el-giant-8 {
        max-width: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%
    }

    .cms-el-col.cms-el-giant-9 {
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%
    }

    .cms-el-col.cms-el-giant-10 {
        max-width: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%
    }

    .cms-el-col.cms-el-giant-11 {
        max-width: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%
    }

    .cms-el-col.cms-el-giant-12 {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

@media screen and (min-width:1364px) {
    .cms-el-col.cms-el-huge-1 {
        max-width: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%
    }

    .cms-el-col.cms-el-huge-2 {
        max-width: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%
    }

    .cms-el-col.cms-el-huge-3 {
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%
    }

    .cms-el-col.cms-el-huge-4 {
        max-width: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%
    }

    .cms-el-col.cms-el-huge-5 {
        max-width: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%
    }

    .cms-el-col.cms-el-huge-6 {
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }

    .cms-el-col.cms-el-huge-7 {
        max-width: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%
    }

    .cms-el-col.cms-el-huge-8 {
        max-width: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%
    }

    .cms-el-col.cms-el-huge-9 {
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%
    }

    .cms-el-col.cms-el-huge-10 {
        max-width: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%
    }

    .cms-el-col.cms-el-huge-11 {
        max-width: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%
    }

    .cms-el-col.cms-el-huge-12 {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

@media screen and (min-width:1520px) {
    .cms-el-col.cms-el-full-1 {
        max-width: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%
    }

    .cms-el-col.cms-el-full-2 {
        max-width: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%
    }

    .cms-el-col.cms-el-full-3 {
        max-width: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%
    }

    .cms-el-col.cms-el-full-4 {
        max-width: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%
    }

    .cms-el-col.cms-el-full-5 {
        max-width: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%
    }

    .cms-el-col.cms-el-full-6 {
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }

    .cms-el-col.cms-el-full-7 {
        max-width: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%
    }

    .cms-el-col.cms-el-full-8 {
        max-width: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%
    }

    .cms-el-col.cms-el-full-9 {
        max-width: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%
    }

    .cms-el-col.cms-el-full-10 {
        max-width: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%
    }

    .cms-el-col.cms-el-full-11 {
        max-width: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%
    }

    .cms-el-col.cms-el-full-12 {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-modal-dialog,
.vjs-button>.vjs-icon-placeholder:before,
.vjs-modal-dialog .vjs-modal-dialog-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.vjs-button>.vjs-icon-placeholder:before {
    text-align: center
}

@font-face {
    font-family: VideoJS;
    src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAAADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAAAAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAADngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZgQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quIEN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4MiJMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9Hd5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0iFLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2IW4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/irwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6KnGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrLh36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9MJ15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9OvMK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKTx3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7ySVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXHAkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qOs9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pqUyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPMo9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgkBnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+OHlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pVrsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenpW6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLfOgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdULVl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1lFYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNrhdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyKMvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweWubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAoFpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7zQ8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNtD72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZjwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJykMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJzrWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwHH6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5JE5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+bKfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxMJ3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5NwfDn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2BkYGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAejdm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmVFlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Yu6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxtkMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0EXKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndlr6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rFUQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPxAFP0BpLeJPA==) format("woff");
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-play-control .vjs-icon-placeholder,
.vjs-icon-play {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-play-control .vjs-icon-placeholder:before,
.vjs-icon-play:before {
    content: "\f101"
}

.vjs-icon-play-circle {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-play-circle:before {
    content: "\f102"
}

.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder,
.vjs-icon-pause {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,
.vjs-icon-pause:before {
    content: "\f103"
}

.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder,
.vjs-icon-volume-mute {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before,
.vjs-icon-volume-mute:before {
    content: "\f104"
}

.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder,
.vjs-icon-volume-low {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before,
.vjs-icon-volume-low:before {
    content: "\f105"
}

.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder,
.vjs-icon-volume-mid {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before,
.vjs-icon-volume-mid:before {
    content: "\f106"
}

.video-js .vjs-mute-control .vjs-icon-placeholder,
.vjs-icon-volume-high {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-mute-control .vjs-icon-placeholder:before,
.vjs-icon-volume-high:before {
    content: "\f107"
}

.video-js .vjs-fullscreen-control .vjs-icon-placeholder,
.vjs-icon-fullscreen-enter {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,
.vjs-icon-fullscreen-enter:before {
    content: "\f108"
}

.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder,
.vjs-icon-fullscreen-exit {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before,
.vjs-icon-fullscreen-exit:before {
    content: "\f109"
}

.vjs-icon-square {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-square:before {
    content: "\f10a"
}

.vjs-icon-spinner {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-spinner:before {
    content: "\f10b"
}

.video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js .vjs-subtitles-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder,
.vjs-icon-subtitles {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js .vjs-subtitles-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.vjs-icon-subtitles:before {
    content: "\f10c"
}

.video-js .vjs-captions-button .vjs-icon-placeholder,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder,
.vjs-icon-captions {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-captions-button .vjs-icon-placeholder:before,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.vjs-icon-captions:before {
    content: "\f10d"
}

.video-js .vjs-chapters-button .vjs-icon-placeholder,
.vjs-icon-chapters {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-chapters-button .vjs-icon-placeholder:before,
.vjs-icon-chapters:before {
    content: "\f10e"
}

.vjs-icon-share {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-share:before {
    content: "\f10f"
}

.vjs-icon-cog {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-cog:before {
    content: "\f110"
}

.video-js .vjs-play-progress,
.video-js .vjs-volume-level,
.vjs-icon-circle,
.vjs-seek-to-live-control .vjs-icon-placeholder {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-play-progress:before,
.video-js .vjs-volume-level:before,
.vjs-icon-circle:before,
.vjs-seek-to-live-control .vjs-icon-placeholder:before {
    content: "\f111"
}

.vjs-icon-circle-outline {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-circle-outline:before {
    content: "\f112"
}

.vjs-icon-circle-inner-circle {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-circle-inner-circle:before {
    content: "\f113"
}

.vjs-icon-hd {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-hd:before {
    content: "\f114"
}

.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder,
.vjs-icon-cancel {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before,
.vjs-icon-cancel:before {
    content: "\f115"
}

.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder,
.vjs-icon-replay {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,
.vjs-icon-replay:before {
    content: "\f116"
}

.vjs-icon-facebook {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-facebook:before {
    content: "\f117"
}

.vjs-icon-gplus {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-gplus:before {
    content: "\f118"
}

.vjs-icon-linkedin {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-linkedin:before {
    content: "\f119"
}

.vjs-icon-twitter {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-twitter:before {
    content: "\f11a"
}

.vjs-icon-tumblr {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-tumblr:before {
    content: "\f11b"
}

.vjs-icon-pinterest {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-pinterest:before {
    content: "\f11c"
}

.video-js .vjs-descriptions-button .vjs-icon-placeholder,
.vjs-icon-audio-description {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-descriptions-button .vjs-icon-placeholder:before,
.vjs-icon-audio-description:before {
    content: "\f11d"
}

.video-js .vjs-audio-button .vjs-icon-placeholder,
.vjs-icon-audio {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-audio-button .vjs-icon-placeholder:before,
.vjs-icon-audio:before {
    content: "\f11e"
}

.vjs-icon-next-item {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-next-item:before {
    content: "\f11f"
}

.vjs-icon-previous-item {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-previous-item:before {
    content: "\f120"
}

.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder,
.vjs-icon-picture-in-picture-enter {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before,
.vjs-icon-picture-in-picture-enter:before {
    content: "\f121"
}

.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder,
.vjs-icon-picture-in-picture-exit {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before,
.vjs-icon-picture-in-picture-exit:before {
    content: "\f122"
}

.video-js {
    display: block;
    vertical-align: top;
    box-sizing: border-box;
    color: #fff;
    background-color: #000;
    position: relative;
    padding: 0;
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    font-family: Arial, Helvetica, sans-serif;
    word-break: initial
}

.video-js:-moz-full-screen {
    position: absolute
}

.video-js:-webkit-full-screen {
    width: 100% !important;
    height: 100% !important
}

.video-js[tabindex="-1"] {
    outline: 0
}

.video-js *,
.video-js :after,
.video-js :before {
    box-sizing: inherit
}

.video-js ul {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    list-style-position: outside;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0
}

.video-js.vjs-16-9,
.video-js.vjs-4-3,
.video-js.vjs-fluid {
    width: 100%;
    max-width: 100%;
    height: 0
}

.video-js.vjs-16-9 {
    padding-top: 56.25%
}

.video-js.vjs-4-3 {
    padding-top: 75%
}

.video-js.vjs-fill {
    width: 100%;
    height: 100%
}

.video-js .vjs-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

body.vjs-full-window {
    padding: 0;
    margin: 0;
    height: 100%
}

.vjs-full-window .video-js.vjs-fullscreen {
    position: fixed;
    overflow: hidden;
    z-index: 1000;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0
}

.video-js.vjs-fullscreen {
    width: 100% !important;
    height: 100% !important;
    padding-top: 0 !important
}

.video-js.vjs-fullscreen.vjs-user-inactive {
    cursor: none
}

.vjs-hidden {
    display: none !important
}

.vjs-disabled {
    opacity: .5;
    cursor: default
}

.video-js .vjs-offscreen {
    height: 1px;
    left: -9999px;
    position: absolute;
    top: 0;
    width: 1px
}

.vjs-lock-showing {
    display: block !important;
    opacity: 1;
    visibility: visible
}

.vjs-no-js {
    padding: 20px;
    color: #fff;
    background-color: #000;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    width: 300px;
    height: 150px;
    margin: 0 auto
}

.vjs-no-js a,
.vjs-no-js a:visited {
    color: #66a8cc
}

.video-js .vjs-big-play-button {
    font-size: 3em;
    line-height: 1.5em;
    height: 1.63332em;
    width: 3em;
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0;
    cursor: pointer;
    opacity: 1;
    border: .06666em solid #fff;
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7);
    border-radius: .3em;
    transition: all .4s
}

.vjs-big-play-centered .vjs-big-play-button {
    top: 50%;
    left: 50%;
    margin-top: -.81666em;
    margin-left: -1.5em
}

.video-js .vjs-big-play-button:focus,
.video-js:hover .vjs-big-play-button {
    border-color: #fff;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, .5);
    transition: all 0s
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-error .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button {
    display: none
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
    display: block
}

.video-js button {
    background: 0 0;
    border: none;
    color: inherit;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-transform: none;
    text-decoration: none;
    transition: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.vjs-control .vjs-button {
    width: 100%;
    height: 100%
}

.video-js .vjs-control.vjs-close-button {
    cursor: pointer;
    height: 3em;
    position: absolute;
    right: 0;
    top: .5em;
    z-index: 2
}

.video-js .vjs-modal-dialog {
    background: rgba(0, 0, 0, .8);
    background: linear-gradient(180deg, rgba(0, 0, 0, .8), rgba(255, 255, 255, 0));
    overflow: auto
}

.video-js .vjs-modal-dialog>* {
    box-sizing: border-box
}

.vjs-modal-dialog .vjs-modal-dialog-content {
    font-size: 1.2em;
    line-height: 1.5;
    padding: 20px 24px;
    z-index: 1
}

.vjs-menu-button {
    cursor: pointer
}

.vjs-menu-button.vjs-disabled {
    cursor: default
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
    display: none
}

.vjs-menu .vjs-menu-content {
    display: block;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow: auto
}

.vjs-menu .vjs-menu-content>* {
    box-sizing: border-box
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
    display: none
}

.vjs-menu li {
    list-style: none;
    margin: 0;
    padding: .2em 0;
    line-height: 1.4em;
    font-size: 1.2em;
    text-align: center;
    text-transform: lowercase
}

.js-focus-visible .vjs-menu li.vjs-menu-item:hover,
.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover {
    background-color: #73859f;
    background-color: rgba(115, 133, 159, .5)
}

.js-focus-visible .vjs-menu li.vjs-selected:hover,
.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover {
    background-color: #fff;
    color: #2b333f
}

.vjs-menu li.vjs-menu-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 2em;
    padding: 0;
    margin: 0 0 .3em 0;
    font-weight: 700;
    cursor: default
}

.vjs-menu-button-popup .vjs-menu {
    display: none;
    position: absolute;
    bottom: 0;
    width: 10em;
    left: -3em;
    height: 0;
    margin-bottom: 1.5em;
    border-top-color: rgba(43, 51, 63, .7)
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7);
    position: absolute;
    width: 100%;
    bottom: 1.5em;
    max-height: 15em
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 5em
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 10em
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 14em
}

.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 25em
}

.vjs-menu-button-popup .vjs-menu.vjs-lock-showing,
.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu {
    display: block
}

.video-js .vjs-menu-button-inline {
    transition: all .4s;
    overflow: hidden
}

.video-js .vjs-menu-button-inline:before {
    width: 2.222222222em
}

.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline:hover,
.video-js.vjs-no-flex .vjs-menu-button-inline {
    width: 12em
}

.vjs-menu-button-inline .vjs-menu {
    opacity: 0;
    height: 100%;
    width: auto;
    position: absolute;
    left: 4em;
    top: 0;
    padding: 0;
    margin: 0;
    transition: all .4s
}

.vjs-menu-button-inline.vjs-slider-active .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline:hover .vjs-menu {
    display: block;
    opacity: 1
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
    display: block;
    opacity: 1;
    position: relative;
    width: auto
}

.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu {
    width: auto
}

.vjs-menu-button-inline .vjs-menu-content {
    width: auto;
    height: 100%;
    margin: 0;
    overflow: hidden
}

.video-js .vjs-control-bar {
    display: none;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3em;
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7)
}

.vjs-has-started .vjs-control-bar {
    display: flex;
    visibility: visible;
    opacity: 1;
    transition: visibility .1s, opacity .1s
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
    visibility: visible;
    opacity: 0;
    transition: visibility 1s, opacity 1s
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-error .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar {
    display: none !important
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
    opacity: 1;
    visibility: visible
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
    display: table
}

.video-js .vjs-control {
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 4em;
    flex: none
}

.vjs-button>.vjs-icon-placeholder:before {
    font-size: 1.8em;
    line-height: 1.67
}

.video-js .vjs-control:focus,
.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before {
    text-shadow: 0 0 1em #fff
}

.video-js .vjs-control-text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.vjs-no-flex .vjs-control {
    display: table-cell;
    vertical-align: middle
}

.video-js .vjs-custom-control-spacer {
    display: none
}

.video-js .vjs-progress-control {
    cursor: pointer;
    flex: auto;
    display: flex;
    align-items: center;
    min-width: 4em;
    touch-action: none
}

.video-js .vjs-progress-control.disabled {
    cursor: default
}

.vjs-live .vjs-progress-control {
    display: none
}

.vjs-liveui .vjs-progress-control {
    display: flex;
    align-items: center
}

.vjs-no-flex .vjs-progress-control {
    width: auto
}

.video-js .vjs-progress-holder {
    flex: auto;
    transition: all .2s;
    height: .3em
}

.video-js .vjs-progress-control .vjs-progress-holder {
    margin: 0 10px
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
    font-size: 1.6666666667em
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
    font-size: 1em
}

.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div,
.video-js .vjs-progress-holder .vjs-play-progress {
    position: absolute;
    display: block;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 0
}

.video-js .vjs-play-progress {
    background-color: #fff
}

.video-js .vjs-play-progress:before {
    font-size: .9em;
    position: absolute;
    right: -.5em;
    top: -.3333333333em;
    z-index: 1
}

.video-js .vjs-load-progress {
    background: rgba(115, 133, 159, .5)
}

.video-js .vjs-load-progress div {
    background: rgba(115, 133, 159, .75)
}

.video-js .vjs-time-tooltip {
    background-color: #fff;
    background-color: rgba(255, 255, 255, .8);
    border-radius: .3em;
    color: #000;
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    padding: 6px 8px 8px 8px;
    pointer-events: none;
    position: absolute;
    top: -3.4em;
    visibility: hidden;
    z-index: 1
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
    display: none
}

.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-time-tooltip {
    display: block;
    font-size: .6em;
    visibility: visible
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
    font-size: 1em
}

.video-js .vjs-progress-control .vjs-mouse-display {
    display: none;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #000;
    z-index: 1
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
    z-index: 0
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
    display: block
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
    visibility: hidden;
    opacity: 0;
    transition: visibility 1s, opacity 1s
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
    display: none
}

.vjs-mouse-display .vjs-time-tooltip {
    color: #fff;
    background-color: #000;
    background-color: rgba(0, 0, 0, .8)
}

.video-js .vjs-slider {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0 .45em 0 .45em;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, .5)
}

.video-js .vjs-slider.disabled {
    cursor: default
}

.video-js .vjs-slider:focus {
    text-shadow: 0 0 1em #fff;
    box-shadow: 0 0 1em #fff
}

.video-js .vjs-mute-control {
    cursor: pointer;
    flex: none
}

.video-js .vjs-volume-control {
    cursor: pointer;
    margin-right: 1em;
    display: flex
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
    width: 5em
}

.video-js .vjs-volume-panel .vjs-volume-control {
    visibility: visible;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin-left: -1px
}

.video-js .vjs-volume-panel {
    transition: width 1s
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active,
.video-js .vjs-volume-panel .vjs-volume-control:active,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control,
.video-js .vjs-volume-panel:active .vjs-volume-control,
.video-js .vjs-volume-panel:focus .vjs-volume-control {
    visibility: visible;
    opacity: 1;
    position: relative;
    transition: visibility .1s, opacity .1s, height .1s, width .1s, left 0s, top 0s
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal {
    width: 5em;
    height: 3em;
    margin-right: 0
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,
.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical {
    left: -3.5em;
    transition: left 0s
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active {
    width: 10em;
    transition: width .1s
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
    width: 4em
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
    height: 8em;
    width: 3em;
    left: -3000em;
    transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
    transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s
}

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
    width: 5em;
    height: 3em;
    visibility: visible;
    opacity: 1;
    position: relative;
    transition: none
}

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
    position: absolute;
    bottom: 3em;
    left: .5em
}

.video-js .vjs-volume-panel {
    display: flex
}

.video-js .vjs-volume-bar {
    margin: 1.35em .45em
}

.vjs-volume-bar.vjs-slider-horizontal {
    width: 5em;
    height: .3em
}

.vjs-volume-bar.vjs-slider-vertical {
    width: .3em;
    height: 5em;
    margin: 1.35em auto
}

.video-js .vjs-volume-level {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff
}

.video-js .vjs-volume-level:before {
    position: absolute;
    font-size: .9em
}

.vjs-slider-vertical .vjs-volume-level {
    width: .3em
}

.vjs-slider-vertical .vjs-volume-level:before {
    top: -.5em;
    left: -.3em
}

.vjs-slider-horizontal .vjs-volume-level {
    height: .3em
}

.vjs-slider-horizontal .vjs-volume-level:before {
    top: -.3em;
    right: -.5em
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
    width: 4em
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
    height: 100%
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
    width: 100%
}

.video-js .vjs-volume-vertical {
    width: 3em;
    height: 8em;
    bottom: 8em;
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7)
}

.video-js .vjs-volume-horizontal .vjs-menu {
    left: -2em
}

.vjs-poster {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    background-color: #000;
    cursor: pointer;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%
}

.vjs-has-started .vjs-poster {
    display: none
}

.vjs-audio.vjs-has-started .vjs-poster {
    display: block
}

.vjs-using-native-controls .vjs-poster {
    display: none
}

.video-js .vjs-live-control {
    display: flex;
    align-items: flex-start;
    flex: auto;
    font-size: 1em;
    line-height: 3em
}

.vjs-no-flex .vjs-live-control {
    display: table-cell;
    width: auto;
    text-align: left
}

.video-js.vjs-liveui .vjs-live-control,
.video-js:not(.vjs-live) .vjs-live-control {
    display: none
}

.video-js .vjs-seek-to-live-control {
    cursor: pointer;
    flex: none;
    display: inline-flex;
    height: 100%;
    padding-left: .5em;
    padding-right: .5em;
    font-size: 1em;
    line-height: 3em;
    width: auto;
    min-width: 4em
}

.vjs-no-flex .vjs-seek-to-live-control {
    display: table-cell;
    width: auto;
    text-align: left
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
    display: none
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
    cursor: auto
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
    margin-right: .5em;
    color: #888
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
    color: red
}

.video-js .vjs-time-control {
    flex: none;
    font-size: 1em;
    line-height: 3em;
    min-width: 2em;
    width: auto;
    padding-left: 1em;
    padding-right: 1em
}

.vjs-live .vjs-time-control {
    display: none
}

.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time {
    display: none
}

.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
    display: none
}

.vjs-time-divider {
    display: none;
    line-height: 3em
}

.vjs-live .vjs-time-divider {
    display: none
}

.video-js .vjs-play-control {
    cursor: pointer
}

.video-js .vjs-play-control .vjs-icon-placeholder {
    flex: none
}

.vjs-text-track-display {
    position: absolute;
    bottom: 3em;
    left: 0;
    right: 0;
    top: 0;
    pointer-events: none
}

.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
    bottom: 1em
}

.video-js .vjs-text-track {
    font-size: 1.4em;
    text-align: center;
    margin-bottom: .1em
}

.vjs-subtitles {
    color: #fff
}

.vjs-captions {
    color: #fc6
}

.vjs-tt-cue {
    display: block
}

video::-webkit-media-text-track-display {
    transform: translateY(-3em)
}

.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
    transform: translateY(-1.5em)
}

.video-js .vjs-picture-in-picture-control {
    cursor: pointer;
    flex: none
}

.video-js .vjs-fullscreen-control {
    cursor: pointer;
    flex: none
}

.vjs-playback-rate .vjs-playback-rate-value,
.vjs-playback-rate>.vjs-menu-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.vjs-playback-rate .vjs-playback-rate-value {
    pointer-events: none;
    font-size: 1.5em;
    line-height: 2;
    text-align: center
}

.vjs-playback-rate .vjs-menu {
    width: 4em;
    left: 0
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
    font-size: 1.4em;
    text-align: center
}

.vjs-error .vjs-error-display:before {
    color: #fff;
    content: "X";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4em;
    left: 0;
    line-height: 1;
    margin-top: -.5em;
    position: absolute;
    text-shadow: .05em .05em .1em #000;
    text-align: center;
    top: 50%;
    vertical-align: middle;
    width: 100%
}

.vjs-loading-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .85;
    text-align: left;
    border: 6px solid rgba(43, 51, 63, .7);
    box-sizing: border-box;
    background-clip: padding-box;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    visibility: hidden
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
    display: block;
    -webkit-animation: vjs-spinner-show 0s linear .3s forwards;
    animation: vjs-spinner-show 0s linear .3s forwards
}

.vjs-loading-spinner:after,
.vjs-loading-spinner:before {
    content: "";
    position: absolute;
    margin: -6px;
    box-sizing: inherit;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    opacity: 1;
    border: inherit;
    border-color: transparent;
    border-top-color: #fff
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before {
    -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(.6, .2, 0, .8) infinite, vjs-spinner-fade 1.1s linear infinite;
    animation: vjs-spinner-spin 1.1s cubic-bezier(.6, .2, 0, .8) infinite, vjs-spinner-fade 1.1s linear infinite
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
    border-top-color: #fff
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
    border-top-color: #fff;
    -webkit-animation-delay: .44s;
    animation-delay: .44s
}

@keyframes vjs-spinner-show {
    to {
        visibility: visible
    }
}

@-webkit-keyframes vjs-spinner-show {
    to {
        visibility: visible
    }
}

@keyframes vjs-spinner-spin {
    100% {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes vjs-spinner-spin {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes vjs-spinner-fade {
    0% {
        border-top-color: #73859f
    }

    20% {
        border-top-color: #73859f
    }

    35% {
        border-top-color: #fff
    }

    60% {
        border-top-color: #73859f
    }

    100% {
        border-top-color: #73859f
    }
}

@-webkit-keyframes vjs-spinner-fade {
    0% {
        border-top-color: #73859f
    }

    20% {
        border-top-color: #73859f
    }

    35% {
        border-top-color: #fff
    }

    60% {
        border-top-color: #73859f
    }

    100% {
        border-top-color: #73859f
    }
}

.vjs-chapters-button .vjs-menu ul {
    width: 24em
}

.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
    vertical-align: middle;
    display: inline-block;
    margin-bottom: -.1em
}

.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
    font-family: VideoJS;
    content: "";
    font-size: 1.5em;
    line-height: inherit
}

.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
    vertical-align: middle;
    display: inline-block;
    margin-bottom: -.1em
}

.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
    font-family: VideoJS;
    content: " ";
    font-size: 1.5em;
    line-height: inherit
}

.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-control,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-control,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-control {
    display: none
}

.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover {
    width: auto;
    width: initial
}

.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subs-caps-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-live) .vjs-subs-caps-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-liveui) .vjs-subs-caps-button {
    display: none
}

.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-custom-control-spacer,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-custom-control-spacer {
    flex: auto;
    display: block
}

.video-js:not(.vjs-fullscreen).vjs-layout-tiny.vjs-no-flex .vjs-custom-control-spacer,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui.vjs-no-flex .vjs-custom-control-spacer {
    width: auto
}

.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-progress-control,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-progress-control {
    display: none
}

.vjs-modal-dialog.vjs-text-track-settings {
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .75);
    color: #fff;
    height: 70%
}

.vjs-text-track-settings .vjs-modal-dialog-content {
    display: table
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-controls,
.vjs-text-track-settings .vjs-track-settings-font {
    display: table-cell
}

.vjs-text-track-settings .vjs-track-settings-controls {
    text-align: right;
    vertical-align: bottom
}

@supports (display:grid) {
    .vjs-text-track-settings .vjs-modal-dialog-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        padding: 20px 24px 0 24px
    }

    .vjs-track-settings-controls .vjs-default-button {
        margin-bottom: 20px
    }

    .vjs-text-track-settings .vjs-track-settings-controls {
        grid-column: 1/-1
    }

    .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
    .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content,
    .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content {
        grid-template-columns: 1fr
    }
}

.vjs-track-setting>select {
    margin-right: 1em;
    margin-bottom: .5em
}

.vjs-text-track-settings fieldset {
    margin: 5px;
    padding: 3px;
    border: none
}

.vjs-text-track-settings fieldset span {
    display: inline-block
}

.vjs-text-track-settings fieldset span>select {
    max-width: 7.3em
}

.vjs-text-track-settings legend {
    color: #fff;
    margin: 0 0 5px 0
}

.vjs-text-track-settings .vjs-label {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    display: block;
    margin: 0 0 5px 0;
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden
}

.vjs-track-settings-controls button:active,
.vjs-track-settings-controls button:focus {
    outline-style: solid;
    outline-width: medium;
    background-image: linear-gradient(0deg, #fff 88%, #73859f 100%)
}

.vjs-track-settings-controls button:hover {
    color: rgba(43, 51, 63, .75)
}

.vjs-track-settings-controls button {
    background-color: #fff;
    background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
    color: #2b333f;
    cursor: pointer;
    border-radius: 2px
}

.vjs-track-settings-controls .vjs-default-button {
    margin-right: 1em
}

@media print {
    .video-js>:not(.vjs-tech):not(.vjs-poster) {
        visibility: hidden
    }
}

.vjs-resize-manager {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: -1000
}

.js-focus-visible .video-js :focus:not(.focus-visible) {
    outline: 0;
    background: 0 0
}

.video-js .vjs-menu :focus:not(:focus-visible),
.video-js :focus:not(:focus-visible) {
    outline: 0;
    background: 0 0
}

.video-js.vjs-vjsdownload .vjs-button.vjs-vjsdownload {
    cursor: pointer;
    display: block;
    font-family: VideoJs
}

.video-js.vjs-vjsdownload .vjs-button.vjs-vjsdownload:before {
    display: block;
    position: relative;
    top: 4px;
    content: '\f101';
    transform: rotate(90deg);
    font-size: 1.5em
}

.video-js.vjs-vjsdownload .vjs-button.vjs-vjsdownload:after {
    display: block;
    content: ' ';
    width: 4px;
    height: 5px;
    background-color: #fff;
    position: relative;
    top: -11px;
    left: calc(50% - 2px)
}

.vplay-video-el {
    width: 100%
}

.vplay-youtube .video-wrapper-active {
    opacity: 0;
    -webkit-transition-delay: 0s, .8s;
    -moz-transition-delay: 0s, .8s;
    transition-delay: 0s, .8s;
    -webkit-transition: opacity 1.2s ease-in-out;
    -moz-transition: opacity 1.2s ease-in-out;
    -ms-transition: opacity 1.2s ease-in-out;
    -o-transition: opacity 1.2s ease-in-out;
    pointer-events: none
}

.vplay-youtube .vplay-youtube-poster-wp {
    cursor: pointer;
    position: absolute
}

.vplay-frame-wp.vpay-frame-youtube:hover .ytp-large-play-button-bg {
    -moz-transition: fill .1s cubic-bezier(0, 0, .2, 1), fill-opacity .1s cubic-bezier(0, 0, .2, 1);
    -webkit-transition: fill .1s cubic-bezier(0, 0, .2, 1), fill-opacity .1s cubic-bezier(0, 0, .2, 1);
    transition: fill .1s cubic-bezier(0, 0, .2, 1), fill-opacity .1s cubic-bezier(0, 0, .2, 1);
    fill: red;
    fill-opacity: 1
}

.vplay-frame-wp.vpay-frame-vimeo:hover .ytp-large-play-button-bg {
    -moz-transition: fill .1s cubic-bezier(0, 0, .2, 1), fill-opacity .1s cubic-bezier(0, 0, .2, 1);
    -webkit-transition: fill .1s cubic-bezier(0, 0, .2, 1), fill-opacity .1s cubic-bezier(0, 0, .2, 1);
    transition: fill .1s cubic-bezier(0, 0, .2, 1), fill-opacity .1s cubic-bezier(0, 0, .2, 1);
    fill: #00adef;
    fill-opacity: 1
}




/*# sourceMappingURL=styles.css.map */