/*
|--------------------------------------------------------------------------
| TOC
|--------------------------------------------------------------------------
|
| 1.  Fonts
| 2.  Basic HTML Elements / Pseudo Elements
| 3.  Structure
| 4.  Header
| 5.  Main
| 6.  Footer
| 7.  Pages
|   7.1  Frontpage / Car Selection
|   7.2  Form-Page
|   7.3  Status Pages
| 8.  Forms
| 9.  Checkables
| 10. Loader Icon
| 11. Ajax Submit Info Element
| 12. Selectivity / Dropdowns
| 13. Grid
| 14. Helpers
| 15. Cookie Disclaimer
| 16. Fold
| 17. Media Queries
|
*/


:root {
    --color-primary: #419468;
    --color-primary-dark: #0e3a2f;
    --color-accent: #78FAAE;
    --color-light: #f3f3f3;
    --color-white: #ffffff;
    --color-grey: #818181;
    --color-error: #b0003e;

    --font-skoda-bold: 'SKODANext-Bold', arial, sans-serif;
    --font-skoda-light: 'SKODANext-Light', arial, sans-serif;
    --font-skoda-black: 'SKODANext-Black', arial, sans-serif;
}





/*
|--------------------------------------------------------------------------
| FONTS
|--------------------------------------------------------------------------
*/

@font-face {
    font-family: 'SKODANext-Light';
    src: url('../fonts/SKODANext-Light.eot') format('eot');
    src: url('../fonts/SKODANext-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SKODANext-Light.woff2') format('woff2'),
        url('../fonts/SKODANext-Light.woff') format('woff'),
        url('../fonts/SKODANext-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'SKODANext-Bold';
    src: url('../fonts/SKODANext-Bold.eot') format('eot');
    src: url('../fonts/SKODANext-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SKODANext-Bold.woff2') format('woff2'),
        url('../fonts/SKODANext-Bold.woff') format('woff'),
        url('../fonts/SKODANext-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'SKODANext-Black';
    src: url('../fonts/SKODANext-Black.eot') format('eot');
    src: url('../fonts/SKODANext-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SKODANext-Black.woff2') format('woff2'),
        url('../fonts/SKODANext-Black.woff') format('woff'),
        url('../fonts/SKODANext-Black.ttf') format('truetype');
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto
}

.skip-to-content-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background-color: #161718;
  color: var(--color-white);
  padding: 0.5rem 1rem;
}



/*
|--------------------------------------------------------------------------
| Basic HTML Elements
|--------------------------------------------------------------------------
*/

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

a img{
    border: 0px;
}

strong {
    font-family: var(--font-skoda-bold);
}

body {
    margin: 0px;
    padding: 0px;
    font-family: var(--font-skoda-light);
    font-size: 16px;
    padding-bottom: 60px;
    color: #161718;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-family: var(--font-skoda-bold);
    margin: 60px 0 25px;
    font-size: 36px;
    font-weight: normal;
    line-height: 43px;
    text-align: center;
}

h2 {
    width: 100%;
    margin: 40px 0 20px;
    font-size: 23px;
    line-height: 36px;
    font-weight: normal;
    text-align: center;
}

h3 {
    font-family: var(--font-skoda-bold);
    width: 100%;
    margin: 40px 0 20px;
    font-size: 18px;
    font-weight: normal;
    text-align: center;
}

h4 {
    font-family: var(--font-skoda-bold);
    width: 100%;
    margin: 40px 0 20px;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
    text-align: center;
}

h5 {
    font-family: var(--font-skoda-bold);
    font-size: 15px;
    line-height: 18px;
    margin: 5px 0;
}

hgroup {
    text-align: center;
    margin-bottom: 10px;
}

hgroup h2 {
    margin: 20px 0 0 0;
}

b {
    font-family: var(--font-skoda-black);
    font-weight: normal;
}

img {
    max-width: 100%;
}

a,
a:hover,
a:visited,
a:active {
    color: var(--color-primary-dark);
    font-weight: bold;
}

p {
    margin: 0 0 10px 0;
}

hr {
    margin: 0 0 0 0;
    clear: left;
    width: 100%;
    border: none;
    border-top: 3px solid var(--color-light);
    height: 3px;
}

nav ul {
    margin: 0;
}

    nav li {
        display: inline-block;
        padding: 0 0 0 10px;
    }

    nav li:first-child {
        padding: 0;
    }

form.slim {
    max-width: 640px;
    margin: 0 auto;
}

.selectivity-placeholder {
    color: #111111;
    font-size: 14px;
}

::-webkit-input-placeholder {
    color: #111111;
    opacity: 1;
    font-size: 14px;
}

:-moz-placeholder {
    color: #111111;
    opacity: 1;
    font-size: 14px;
}

::-moz-placeholder {
    color: #111111;
    opacity: 1;
    font-size: 14px;
}

:-ms-input-placeholder {
    color: #111111;
    opacity: 1;
    font-size: 14px;
}

::-moz-selection {
    color: var(--color-white);
    background: var(--color-primary);
}

::selection {
    color: var(--color-white);
    background: var(--color-primary);
}



/*
|--------------------------------------------------------------------------
| STRUCTURE
|--------------------------------------------------------------------------
*/

.site {
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
    max-width: 1920px;
    background: var(--color-light);
}

.wrapper {
    margin: 0 auto;
    padding: 0 20px 60px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}



/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

.masthead {
    overflow: hidden;
    height: 70px;
    line-height: 70px;
    padding: 0 30px 0 20px;
    display: flex;
    align-items: center;
}

    .claim {
        float: right;
        font-size: 14px;
    }

    .navigation {
        float: right;
        font-size: 14px;
    }

    .navigation ul {
        margin: 0;
    }

    .navigation li {
        display: inline-block;
        padding-left: 30px;
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: left center;
    }

    .navigation a {
        text-decoration: none;
        color: inherit;
    }

    .testdrive {
        background-image: url('../img/icons/testdrive.png');
        padding-right: 30px;
    }

    .brochures {
        background-image: url('../img/icons/brochure.png');
    }

    .logo {
        padding-top: 10px;
        float: left;
    }

.banner {
    text-align: center;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
}

    .banner h1 {
        text-align: left;
        color: var(--color-white);
        margin: 0;
        position: absolute;
        bottom: 40px;
        left: 40px;
    }

    .banner h1 .slim {
        font-family: var(--font-skoda-light);
    }



@media(max-width: 800px) {
    .banner {
        height: 80vw;
    }
}



/*
|--------------------------------------------------------------------------
| MAIN
|--------------------------------------------------------------------------
*/

.intro-wrapper,
.form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.intro-wrapper > p {
    text-align: center;
    line-height: 1.6;
}

.ok-wrapper {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.actions {
    background: #ececec;
}

    .action {
        padding: 20px 20px;
    }

        .action--subscribe h3 {
            background: url('../img/icons/letter.png');
        }

        .action--subscribe h3 {
            background-position: left top;
            background-repeat: no-repeat;
            background-size: 60px;
        }

        .action h3 {
            font-size: 28px;
            font-family: var(--font-skoda-bold);
            padding-left: 80px;
        }

#submit-bday {
    width: 18%;
    min-width: 15%;
    padding: 0;
    line-height: 60px;
    height: 60px;
    border: none;
}

#submit-sub {
    height: 60px;
    border: none;
    min-width: 200px;
}


/*
|--------------------------------------------------------------------------
| PAGES: Frontpage
|--------------------------------------------------------------------------
*/

.car-selection-wrapper {
    margin: 40px 0 0 0;
}

.car-selection {
    max-width: 980px;
    display: flex;
    align-items: start;
    justify-content: flex-start;
    width: 100%;
    gap: 5%;
    flex-wrap: wrap;
}

    .car-selection label {
        font-family: var(--font-skoda-bold);
        width: 100%;
        display: inline-block;
        text-align: center;
        margin: 10px 0 0 0 !important;
    }

    @media screen and (max-width: 500px) {
        .car-selection--row {
            margin-bottom: 0;
            padding-bottom: 0;
        }
    }

    .car-selection .tile {
        width: 30%;
    }

    @media screen and (max-width: 600px) {
        .car-selection .tile {
            width: 47%;
        }

        .car-selection {
            justify-content: space-between
        }
    }

    @media screen and (max-width: 400px) {
        .car-selection .tile {
            width: 100%;
        }
    }

    .car-selection .tile label {
        padding: 20px 10px 10px;
        min-height: 160px;
        cursor: pointer;
        transition:all 200ms ease-in-out;
        border-bottom: 3px solid var(--color-light);
    }

    .car-selection .tile label:hover {
        background-color: var(--color-white);
        box-shadow:  0 0 5px 0 rgb(0 0 0 / 5%), 0 5px 20px 0 rgb(0 0 0 / 5%);
        border-bottom: 3px solid var(--color-white);
    }

    .car-selection .tile .label-text {
        margin-top: 20px;
        display: inline-block;
    }

    .car-selection .tile input {
        display: none;
    }

    .car-selection .tile input:checked + label {
        background-color: var(--color-white);
        box-shadow:  0 0 5px 0 rgb(0 0 0 / 5%), 0 5px 20px 0 rgb(0 0 0 / 5%);
        border-bottom: 3px solid #78faae;
      }



/*
|--------------------------------------------------------------------------
| PAGES: Formpage
|--------------------------------------------------------------------------
*/

.selection h1 {
    font-size: 60px;
    line-height: 60px;
    font-weight: bold;
    margin: 10px 0 40px;
    font-family: var(--font-skoda-black);
}

.selection h2 {
    font-size: 24px;
    line-height: 30px;
    font-style: italic;
    text-transform: none;
    margin: 10px 0;
}

.selection-wrapper {
    display: none;
    width: 100%;
}

    .selection-wrapper.root {
        display: inline-block;
    }

    .selection-wrapper .label {
        margin-top: 20px;
    }

    .root .label {
        margin-bottom: 5px;
    }

#subscribe-wrapper {
    background: url('../img/bg-subscribe.png') no-repeat right;
    background-size: cover;
    margin-top: 30px;
    margin-bottom: 20px;
}

    #subscribe-wrapper .cb {
        padding-left: 20px;
        margin-right: 20px;
    }

    #subscribe-wrapper p {
        color: var(--color-white);
        font-size: 14px;
    }

.checkboxes {
    width: 100%;
    margin-top: 19px;
}

    .checkboxes .row {
        font-size: 12px;
    }

    /* TODO this needs to be removed later */
    .cb {
        float: left;
        width: 35px;
        padding-top: 18px;
        vertical-align: top;
    }

    .cb-desc {
        margin-left: 35px;
        width: auto;
        padding-top: 18px;
        font-size: 12px;
        color: #333333;
    }
    /* // this needs to be removed later */

.submit {
    width: auto;
    margin: 20px auto;
    display: block;
    text-align: center;
}

.added-disclaimer {
    display: none;
}

.ok-disclaimer {
    margin: 10px 0 20px;
}


/*
|--------------------------------------------------------------------------
| PAGES: Statuspages
|--------------------------------------------------------------------------
*/

.teaser {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

    .teaser h2 {
        margin: 10px 0px;
        text-align: left;
    }

    .teaser img {
        width: 100%;
    }

    .teaser p {
        margin: 0 auto 20px;
    }

    .teaser button {
        margin-bottom: 30px;
        width: 100%;
        min-width: unset;
    }

/*
|--------------------------------------------------------------------------
| NOTES
|--------------------------------------------------------------------------
*/

.note {
    width: 100%;
    max-width: 640px;
    text-align: center;
    background: #eee;
    padding: 30px;
    margin: 50px auto;
}

.note p {
    color: #000;
    margin-bottom: 30px;
}

/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

.footer {
    width: 100%;
    background-color: #0e3a2f;
    color: var(--color-white);
    font-size: 12px;
    padding: 20px 100px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .prefooter {
        margin-top: 20px;
    }

    .prefooter .smallprint {
        color: var(--color-white);
        margin-top: 0;
    }

    .legalities {
        /* margin-top: 30px; */
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-links {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .social-icons li {
        margin-right: 10px;
    }

    .social-icons li:last-of-type {
        margin-right: 0;
    }

    .legal {
        padding-right: 30px;
    }

    .legal a {
        color: inherit;
        text-decoration: none;
        margin-right: 10px;
    }

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


@media(max-width: 1160px) {
    .footer {
        flex-direction: column;
        gap: 20px;
    }

    .legalities {
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

        .footer-links {
            flex-direction: column-reverse;
            justify-content: flex-start;
            align-items: center;
            gap: 20px;
        }

            .legal {
                padding-right: 0;
            }

            .legal ul,
            .social-icons ul {
                padding-left: 0;
            }
}

@media(max-width: 770px) {

    .footer {
        padding: 20px;
    }

    .legalities {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        
    }

    .footer-links {
        align-items: center;
        justify-content: center;
    }


}


/*
|--------------------------------------------------------------------------
| FORMS
|--------------------------------------------------------------------------
*/

textarea,
input[type="text"],
input[type="tel"],
input[type="number"],
input[type="email"] {
    width: 100%;
    min-height: 42px;
    padding: 0 15px 0 15px;
    font-family: var(--font-skoda-light);
    font-size: 16px;
    border: 1px solid var(--color-grey);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    outline: var(--color-primary);
}
textarea { padding: 8px 15px; resize: none; }

textarea:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="text"]:focus {
    border: 2px solid var(--color-primary);
}

label.error-msg {
    color: var(--error-color);
}

/* input[type="checkbox"] {
    clip: rect(0px, 0px, 0px, 0px);
    position: absolute;
}

input[type="checkbox"] + label {
    background: transparent url("../img/icons/checkbox-sprite.png") no-repeat scroll 0 0;
    float: left;
    height: 25px;
    line-height: 25px;
    padding: 0 0 0 25px;
    cursor: pointer;
}

input.checkbox[type="checkbox"] + label {
    background-position: 0 0;
}

input.checkbox[type="checkbox"]:checked + label {
    background-position: 0 -25px;
} */

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.button,
button {
    min-height: 45px;
    line-height: 45px;
    padding: 0 25px;
    text-align: center;
    vertical-align: middle;
    font-family: var(--font-skoda-bold);
    font-size: 16px;
    color: #0e3a2f;
    background-color: #78faae;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 100px;
    border: none;
    border-color: transparent;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    outline: none;
}

.button.black,
button.black {
    color: #161718;
    background-color: transparent;
    border: 1.5px solid #161718;
    min-height: 41px;
}

.button.black:hover,
button.black:hover {
    background: var(--color-light);
    border: 3px solid #111111;
    border: 1.5px solid #161718;
}

.button:hover,
button:hover {
    color: #0e3a2f;
    background-color: #A8FFCC;
    border-color: #A8FFCC;
}

a.button {
    color: #0e3a2f;
    display: inline-block;
}

.button.disabled,
.button.disabled:hover,
button.disabled,
button.disabled:hover {
    cursor: default;
    color: var(--color-white);
    background-color: rgba(110, 110, 110, 0.3);
    border: none;
}

textarea.disabled,
input[type="text"].disabled {
    opacity: 0.5;
    background: #ccc;
    pointer-events: none;
    cursor: not-allowed;
}



/*
|--------------------------------------------------------------------------
| CHECKABLES
|--------------------------------------------------------------------------
*/



/* TODO this needs to be removed later */
.styled-checkbox {
    position: absolute;
    opacity: 0;
}

.styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
    background-image: none !important;
    margin-left: 30px;
}

.styled-checkbox + label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 18px;
    height: 18px;
    border: 1px solid #3e3e3e;
    background: var(--color-white);
}

.styled-checkbox:checked + label:before {
    background: var(--color-white);
}

.styled-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
}

.styled-checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
}

.styled-checkbox:checked + label:before {
    content: '';
    position: relative;
    background: url('data:image/png;base64,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');
    background-size: cover;
    width: 16px;
    height: 16px;
    padding: 1px;
}
/* // this needs to be removed later */






.radio,
.checkbox {
  position: absolute;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.radio + label,
.checkbox + label {
    cursor: pointer;
    line-height: 1.4;
    display: inline-flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
}

.radio + label:last-of-type,
.checkbox + label:last-of-type {
    margin-bottom: 0;
}

.radio + label p,
.checkbox + label p {
    margin: 0 0 8px 0;
}

.radio + label::before,
.checkbox + label::before {
    flex-shrink: 0;
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: var(--color-white);
    border: 1px solid var(--color-grey);
    margin-right: 10px;
    box-sizing: border-box;
    border-radius: 2px;
    position: relative;
}

.radio + label::before {
    border-radius: 50px;
}

.radio:checked + label::before,
.checkbox:checked + label::before {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAUZJREFUeNrc1qFyg0AQgOH/oAYZFY+IxKSyEhQ26fAE9BHaR6itpLI1TBuLAlvXGGym+CgegRrI3JAr3HUIM+3Ku4NvdnZvQTRNwxxh8ZcjTD0/TL3tRTMKU+8eyIG3MPWSbt2eGImBJ2lpvdosncPuWIiJkeSH7QcxAwJQ2xMgW+Bl5Nir6D20ANwsKve63dUWfiiKLCoDS3rIBb6AzzD18imRU3u3SA4s2gO+3JoKZK2B7DsEwJIQt3cwVmG6CBD0L2ysQJSYhCzGkCwqa3nxqt0YijhMvQp410AqFQIgpLHxOALWmkil2rQBDrvjx2qzdICbgRc5v0VOGUk1SNqamUQNXA8hZ9M7i8o74NkQCcaQs4wMM+sQrSkiBi5lDvhTIIPQCBZkUVmYFFJozLQ+ZozofspvgUJqYWMEQPy7363ZoO8BAKuVhzlH51TlAAAAAElFTkSuQmCC');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
}

.radio:checked + label::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg class='nc-icon-wrapper' fill='%23419468'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23419468'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
}

.radio.sm + label::before,
.checkbox.sm + label::before {
    width: 20px;
    height: 20px;
}

.radio.sm:checked + label::before,
.checkbox.sm:checked + label::before {
    background-size: 12px;
}

.radio:focus + label::before,
.checkbox:focus + label::before {
    border: 2px solid var(--color-primary);
    outline: var(--color-primary);
}

.radio.error + label::before,
.checkbox.error + label::before {
    border: 2px solid var(--color-error);
    outline: var(--color-error);
}

.radio + label > .inner-label-container,
.checkbox + label > .inner-label-container {
    width: 100%;
}





/*
|--------------------------------------------------------------------------
| LOADER ICON
|--------------------------------------------------------------------------
*/

.loader,
.loader:after {
    border-radius: 50%;
    width: 3em;
    height: 3em;
    display: none;
    margin: 14px 0;
}

.loader {
    margin-right: 13px;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 0.4em solid rgba(255, 255, 255, 0.2);
    border-right: 0.4em solid rgba(255, 255, 255, 0.2);
    border-bottom: 0.4em solid rgba(255, 255, 255, 0.2);
    border-left: 0.4em solid var(--color-white);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



/*
|--------------------------------------------------------------------------
| AJAX SUBMIT INFO
|--------------------------------------------------------------------------
*/

.submit-info {
    display: none;
    width: 100%;
    text-align: center;
    margin: 50px auto;
    padding: .75rem 1.25rem;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: .25rem;
}

.submit-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.submit-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}



/*
|--------------------------------------------------------------------------
| SELECTIVITY
|--------------------------------------------------------------------------
*/

.selectivity-single-select {
    float: left;
    clear: left;
    border: 1px solid var(--color-grey);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    width: 100%;
    min-height: 42px;
}

.selectivity-caret {
    display: block;
    background-image: url('../img/icons/arrow.png');
    background-repeat: no-repeat;
    width: 11px;
    height: 5px;
    top: 18px;
    right: 11px;
}

.selectivity-single-selected-item {
    color: #000000;
}

.selectivity-placeholder,
.selectivity-single-result-container {
    padding-left: 5px;
    font-family: var(--font-skoda-light);
    font-size: 14px;
    line-height: 36px !important;
}

.selectivity-placeholder {
    padding-left: 0px;
}

.selectivity-dropdown {
    position: absolute;
    box-sizing: border-box;
    top: 50px !important;
    width: 100% !important;
    border: 1px solid var(--color-grey);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: none;
}

.selectivity-results-container {
    max-height: 290px;
}

.selectivity-result-item {
    padding-left: 15px;
    font-family: var(--font-skoda-light);
    font-size: 16px;
    color: #000000;
}

.selectivity-result-item:first-child,
.selectivity-result-item:last-child{
    border-radius: 0px;
}

.selectivity-load-more.highlight,
.selectivity-result-item.highlight {
    font-size: 16px;
    color: #000000;
    background-color: #F0F0F0;
}




/*
|--------------------------------------------------------------------------
| GRID
|--------------------------------------------------------------------------
*/

.container {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.column,
.columns {
    width: 100%;
    float: left;
    box-sizing: border-box;
    margin-bottom: 20px;
    position: relative;
}

.container:after,
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* For devices larger than 550px */
@media(min-width: 550px) {

    .column,
    .columns {
        margin-left: 4%;
    }

    .column:first-child,
    .columns:first-child {
        margin-left: 0;
    }

    .one.column,
    .one.columns                    { width: 4.66666666667%; }
    .two.columns                    { width: 13.3333333333%; }
    .three.columns                  { width: 22%;            }
    .four.columns                   { width: 30.6666666667%; }
    .five.columns                   { width: 39.3333333333%; }
    .six.columns                    { width: 48%;            }
    .seven.columns                  { width: 56.6666666667%; }
    .eight.columns                  { width: 65.3333333333%; }
    .nine.columns                   { width: 74.0%;          }
    .ten.columns                    { width: 82.6666666667%; }
    .eleven.columns                 { width: 91.3333333333%; }
    .twelve.columns                 { width: 100%; margin-left: 0; }
    .one-third.column               { width: 30.6666666667%; }
    .two-thirds.column              { width: 65.3333333333%; }
    .one-half.column                { width: 48%; }

    .offset-by-one.column,
    .offset-by-one.columns          { margin-left: 8.66667%; }
    .offset-by-two.column,
    .offset-by-two.columns          { margin-left: 17.33333%; }
    .offset-by-three.column,
    .offset-by-three.columns        { margin-left: 26%; }
    .offset-by-four.column,
    .offset-by-four.columns         { margin-left: 34.66667%; }
    .offset-by-five.column,
    .offset-by-five.columns         { margin-left: 43.33333%; }
    .offset-by-six.column,
    .offset-by-six.columns          { margin-left: 52%; }
    .offset-by-seven.column,
    .offset-by-seven.columns        { margin-left: 60.66667%; }
    .offset-by-eight.column,
    .offset-by-eight.columns        { margin-left: 69.33333%; }
    .offset-by-nine.column,
    .offset-by-nine.columns         { margin-left: 78%; }
    .offset-by-ten.column,
    .offset-by-ten.columns          { margin-left: 86.66667%; }
    .offset-by-eleven.column,
    .offset-by-eleven.columns       { margin-left: 95.33333%; }

}




/*************************\
  Form Errors
\*************************/

.error-message {
    display: none;
    opacity: 0;
    font-size: 11px;
    color: var(--color-error);
    text-align: right;
    overflow: hidden;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 2px;
    right: 5px;
    pointer-events: none;
}

.error-message.show {
    opacity: 1;
    display: block;
}

.error-message.centered {
    position: relative;
    margin-bottom: 20px;
}

.error-message.left {
    position: relative;
    display: block;
    text-align: left;
    margin-left: 5px;
}

.error-message.show.left {
    margin-bottom: 20px;
}

.error-message.larger {
    font-size: 12px;
}

input[type="text"].error,
input[type="email"].error,
input[type="select"].error,
textarea.error,
select.error,
.checkbox.error + label::before,
.radio.error + label::before,
div.error {
    border: 2px solid var(--color-error);
    outline: var(--color-error);
}


/*************************\
  Modals
\*************************/

.modal {
    background: var(--color-white);
    padding: 40px;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    width: 90%;
    margin-left: -45%;
    left: 50%;
}

.modal--close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}

.modal-overlay {
    background: rgba(0,0,0,0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 9;
}




#ot-sdk-btn {
    min-height: auto !important;
    min-width: auto !important;
    opacity: 1 !important;
}





/*
|--------------------------------------------------------------------------
| HELPERS
|--------------------------------------------------------------------------
*/

.required {
    width: 100%;
    font-size: 12px;
    margin-top: -10px;
    text-align: right;
}

.nondescript,
.nondescript:hover,
.nondescript:active,
.nondescript:visited {
    text-decoration: none;
    color: inherit;
}

.highlight-color {
    color:  #0e3a2f !important;
}

.highlight-color-error {
    color:  #BD1823 !important;
}

.smallprint {
    font-size: 11px;
    color: #111111;
    clear: both;
    margin-top: 30px;
}

.centered {
    width: 100%;
    text-align: center;
}

.justified {
    width: 100%;
    text-align: justify;
}

.left-padding {
    padding-left: 40px;
    margin: 0;
}

.top-margin-small {
    margin-top: 5px;
}

.top-margin-medium {
    margin-top: 10px;
}

.top-margin-large {
    margin-top: 20px;
}

.inner {
    width: 100%;
    position: relative;
}

.full-width {
    margin-left: 0 !important;
    width: 100%;
}

.pull-right {
    float: right !important;
}

.mobile {
    display: none;
}

.boxed {
    background: var(--color-white);
    padding: 15px;
}

.boxed.padded {
    padding: 40px 40px 20px;
}

.boxed h3 {
    margin: 0;
}

.bg-grey {
    background-color: #f0f0f0;
}

.no-margin {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.uppercase {
    text-transform: uppercase;
}

.pb-2 {
    padding-bottom: 20px;
}

.pt-2 {
    padding-top: 20px !important;
}

.pt-3 {
    padding-top: 30px !important;
}

.pr-2 {
    padding-right: 20px;
}

.mr-1 {
    margin-right: 10px;
}

.contain-content {
    overflow: hidden;
    position: relative;
}

.super {
    text-transform: initial;
    font-size: 30px;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    vertical-align: super;
}

@media(max-width: 670px) {
    .super {
        font-size: 20px;
    }
}

@media(max-width: 500px) {
    .super {
        font-size: 14px;
    }
}






.permission-checkbox.checkbox {
    display: flex;
}

.permission-checkbox.checkbox input + span::after {
    background: #fff url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAXCAIAAABvSEP3AAAACXBIWXMAAAsTAAALEwEAmpwYAAAA6UlEQVQ4jWP8//8/A8WAiXIjhqUpLGTombBk/v4zJxgYGAqjkxxMzckxJb+recHGtXAuxBTSfIRmhIKUDITBSHx6QTPCQF1r48QZArx8JLgFjxEM8HCBB1iiX0iAkytJRiB8xG9tABeaWFab4B9MvBEIH8HDCaLtwOmTxBuBcMuFm9f88zM+fP4EERXg5ds4ccb8jWuJMYIBOY7QDEIDeIxgQI4jPOrwG8GAFtNYVRM0goGBgeE/Bjh/46qcuy2flT6flb5dYuT7Tx8x1aAB7Gn3w+dPF25cZ4BlE4KAhByABwymUoo6pgAA57mw7lI77ucAAAAASUVORK5CYII=')
    no-repeat center;
    background-size: contain;
    width: 16px;
    height: 16px;
}

.permission-checkbox.checkbox input + span, .radio input + span {
    padding: 1px;
    background: var(--color-white);
}

.permission-checkbox .checkable__text {
    font-size: 11px;
}



/*
|--------------------------------------------------------------------------
| COOKIE DISCLAIMER
|--------------------------------------------------------------------------
*/

.cookies {
    position: fixed;
    bottom: 0;
    z-index: 100;
    background: #F0F0F0;
    padding: 20px;
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    color: #000;
    border-top: 2px solid #9A9A9A;
    width: 100%;
    display: none;
}

.cookies p,
.cookies .columns {
    margin: 0;
}

.cookies-button {
    min-width: 100%;
}



/*
|--------------------------------------------------------------------------
| FOLD
|--------------------------------------------------------------------------
*/

.fold {
    position: relative;
    padding-bottom: 20px;
}

.fold--toggle-switch {
    position: absolute;
    left: 14px;
    top: 5px;
    color: #4ba82e;
    cursor: pointer;
}

.fold--toggle-switch i {
    font-size: 30px;
    color: #0e3a2f;
}

.fold h2 {
    font-family: var(--font-skoda-bold);
    font-size: 16px;
    background: var(--color-white);
    line-height: 1.6;
    cursor: pointer;
    margin-top: 10px;
    padding: 7px 25px;
}

.fold--group {
    display: none;
}

.fold--group h3 {
    font-size: 16px;
}

@media(max-width: 450px) {
    .fold--toggle-switch {
        top: 7px;
    }

    .fold h2 {
        font-size: 12px;
        padding: 10px 25px;
        line-height: 1.4;
    }
}



/*
|--------------------------------------------------------------------------
| LEGAL PAGES
|--------------------------------------------------------------------------
*/

.legal-wrapper {
    background-color: var(--color-white);
    margin: 100px 80px;
    text-align: left;
}

.legal-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px;
    line-height: 1.5;
}

.legal-inner h1 {
    margin: 20px 0 60px 0;
    font-family: var(--font-skoda-bold);
}

.legal-inner h2,
.legal-inner h3 {
    text-align: left;
    margin: 30px 0 0 0;
    font-family: var(--font-skoda-bold);
}


/*
|--------------------------------------------------------------------------
| MEDIA QUERIES
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 960px) {

    h1,
    .banner h1 {
        font-size: 40px;
        line-height: 48px;
    }

}

@media screen and (max-width: 770px) {

    .wrapper,
    .ok-wrapper {
        padding: 0 20px 120px;
    }

    h1,
    .banner h1 {
        font-size: 32px;
        line-height: 38px;
    }

    .banner h1 {
        left: 30px;
        bottom: 30px;
    }

    .legal-wrapper {
        margin: 20px 0;
    }

}

@media screen and (max-width: 500px) {

    #subscribe-wrapper {
        background: url('../img/bg-subscribe__mobile.png') no-repeat right;
        height: 135px;
        background-size: cover;
    }

    #subscribe-wrapper .cb,
    #subscribe-wrapper .cb-desc {
        padding-top: 24px;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: initial;
    }

    h1,
    .banner h1 {
        font-size: 22px;
        line-height: 24px;
    }

    .banner h1 {
        left: 20px;
        bottom: 20px;
    }

    .action h3 {
        font-size: 28px;
        font-family: var(--font-skoda-bold);
        padding: 80px 0 0 0;
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 60px;
        text-align: center;
    }


    .selectivity-single-result-container,
    .selectivity-result-item,
    .selectivity-result-item.highlight,
    input[type="text"] {
        font-size: 14px;
    }


}

@media screen and (min-width: 750px) {

    .teaser,
    .teaser h2 {
        text-align: left;
    }

}
