/*======================================
  #General
======================================*/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

/*======================================
  #Typography
======================================*/
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@media only screen and (max-width: 992px) {
    html {
        font-size: 0.95em;
    }
}

@media only screen and (max-width: 768px) {
    html {
        font-size: 0.9em;
    }
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.1rem;
}

p,
ul,
ol {
    margin-bottom: 1.5em;
}

.text-big {
    font-weight: 300;
    font-size: 1.25rem;
}

.text-small {
    font-size: 0.75rem;
    line-height: 1.8 !important;
    display: block;
}

.features-tick {
    font-size: 13px;
    margin: 0 0 0.7em;
}

    .features-tick:before {
        font-family: "FontAwesome";
        font-weight: 900;
        content: '\f00c';
        color: #1da0b9;
        margin: 0 5px 0 -18px;
    }

.blue-bullets {
    font-size: 1.1rem;
    margin: 0 0 0.7em;
}

    .blue-bullets:before {
        font-family: "FontAwesome";
        font-weight: 900;
        content: '\f111';
        color: #1da0b9;
        font-size: 6px;
        margin: 9px 10px 3px -15px;
        position: absolute;
    }

.pink-bullets {
    font-size: 1.1rem;
    margin: 0 0 0.7em;
}

    .pink-bullets:before {
        font-family: "FontAwesome";
        font-weight: 900;
        content: '\f111';
        color: #E11D8D;
        font-size: 6px;
        margin: 9px 10px 3px -15px;
        position: absolute;
    }

.circle-tick {
    font-size: 1.1rem;
    margin: 0 0 0.7em;
}

    .circle-tick:before {
        font-family: "FontAwesome";
        font-weight: 900;
        content: '\f058';
        color: #1da0b9;
        margin: 0 5px 0 -20px;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
    }

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.act-heading {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

    h1.pre-head,
    h2.pre-head,
    h3.pre-head,
    h4.pre-head,
    h5.pre-head,
    h6.pre-head,
    .h1.pre-head,
    .h2.pre-head,
    .h3.pre-head,
    .h4.pre-head,
    .h5.pre-head,
    .h6.pre-head,
    .act-heading.pre-head {
        text-transform: uppercase;
        font-weight: 300;
        font-size: 0.8rem;
        letter-spacing: 0.4em;
        line-height: 1;
        margin-bottom: 0.9em;
        opacity: 0.8;
    }

    h1.section-head,
    h2.section-head,
    h3.section-head,
    h4.section-head,
    h5.section-head,
    h6.section-head,
    .h1.section-head,
    .h2.section-head,
    .h3.section-head,
    .h4.section-head,
    .h5.section-head,
    .h6.section-head,
    .act-heading.section-head {
        text-transform: uppercase;
        font-weight: bold;
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        line-height: 1;
        margin-bottom: 1em;
    }

h1,
.h1 {
    font-size: 2.5rem;
}

h2,
.h2 {
    font-size: 2.25rem;
}

h3,
.h3 {
    font-size: 1.75rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.2rem;
}

h6,
.h6 {
    font-size: 1rem;
}

small {
    font-size: 80%;
}

mark {
    background: #fcf8e3;
    padding: 0 0.3em;
}

abbr {
    border-bottom: 2px dotted #555;
    text-decoration: none;
    cursor: help;
}

kbd {
    background: #111;
    color: white;
    border-radius: 3px;
    padding: 2px 4px;
    font-size: 80%;
}

a {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

    a:hover {
        text-decoration: none;
    }

em,
i {
    font-style: italic;
}

strong,
b {
    font-weight: bold;
}

hr {
    border: none;
    height: 1px;
    background: #e6e6e6;
    margin: 2em 0;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

blockquote {
    font-style: normal;
    font-size: 1.25rem;
    position: relative;
    font-weight: 300;
    max-width: 32.5em;
    margin: 4.4em auto 4em;
    text-align: center;
}

    blockquote::before {
        position: absolute;
        font-family: "FontAwesome";
        content: "\f10d";
        top: -1.5em;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        font-size: 1.5rem;
        line-height: 1;
    }

    blockquote cite {
        display: block;
        font-size: 80%;
    }

.split__text-inner blockquote {
    font-style: normal;
    font-size: 2.5rem;
    position: relative;
    font-weight: 300;
    max-width: 32.5em;
    margin: 1.4em auto 0.5em;
    text-align: left;
    line-height: 1.3;
}

    .split__text-inner blockquote::before {
        position: absolute;
        font-family: "FontAwesome";
        content: "\f10e";
        top: 100%;
        left: 55%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        font-size: 6.5rem;
        line-height: 1;
        color: #e6e6e6;
    }

/*.split__text-inner a, blockquote::before {
    color: #e6e6e6 !important;
}*/
.split__text-inner h6 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 0.9em;
    color: #1da0b9;
}

.grid.theme2-bg a, blockquote::before {
    color: #fff;
}

ul, ol {
    padding-left: 20px;
}

    ul ul,
    ol ul,
    ul ol,
    ol ol {
        margin-bottom: 0;
    }

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}
/*======================================
  #Format image classes
======================================*/
.image-left {
    float: left;
    margin: 0 0.6em 0.6em 0;
}

.image-right {
    float: right;
    margin: 0 0 0.6em 0.6em;
}

.image-left,
.image-right {
    display: block;
}

@media only screen and (max-width: 768px) {
    .image-left,
    .image-right {
        float: none;
    }
}

figcaption {
    color: #666;
    text-align: center;
    font-style: italic;
    font-size: 0.875rem;
    padding-top: 5px;
}

img[data-sizes="auto"] {
    display: block;
    width: 100%;
}

.lazyload,
.lazyloading {
    opacity: 0;
    width: 100%;
}

.lazyloaded {
    opacity: 1;
    -webkit-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    transition: opacity 300ms;
}
/*======================================
  #Tables
======================================*/
.table-wrap {
    min-height: 0.01%;
    overflow-x: auto;
}

table {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
}

    table th,
    table td {
        padding: 0.75em;
    }

    table th {
        font-weight: bold;
        text-align: left;
    }

    table thead tr {
        border-bottom: 2px solid #e6e6e6;
    }

    table tbody tr {
        border-top: 1px solid #e6e6e6;
    }

        table tbody tr:first-child {
            border-top: 0;
        }

        table tbody tr:hover {
            background: rgba(0, 0, 0, 0.04);
        }

div.post__body > table tbody tr:hover {
    background: none;
}
/*======================================
  #Loader
======================================*/
.loading {
    position: relative;
    z-index: 1;
}

    .loading::before {
        content: "";
        position: absolute;
        background-color: white;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99998;
    }

    .loading::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -10px 0 0 -10px;
        z-index: 99999;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        border: 0.2rem solid rgba(0, 0, 0, 0.15);
        border-top-color: rgba(0, 0, 0, 0.5);
        -webkit-animation: spin 0.5s infinite linear;
        animation: spin 0.5s infinite linear;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*======================================
  #Success animation
======================================*/
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #2ecc71;
    fill: none;
    -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-svg {
    width: 4.3rem;
    height: 4.3rem;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 1.5em auto;
    -webkit-box-shadow: inset 0px 0px 0px #2ecc71;
    box-shadow: inset 0px 0px 0px #2ecc71;
    -webkit-animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark__check {
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@-webkit-keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@-webkit-keyframes scale {
    0%, 100% {
        -webkit-transform: none;
        transform: none;
    }

    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes scale {
    0%, 100% {
        -webkit-transform: none;
        transform: none;
    }

    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1);
    }
}

@-webkit-keyframes fill {
    100% {
        -webkit-box-shadow: inset 0px 0px 0px 50px #2ecc71;
        box-shadow: inset 0px 0px 0px 50px #2ecc71;
    }
}

@keyframes fill {
    100% {
        -webkit-box-shadow: inset 0px 0px 0px 50px #2ecc71;
        box-shadow: inset 0px 0px 0px 50px #2ecc71;
    }
}
/*======================================
  #Skip link
======================================*/
.skip-link {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1rem;
    padding: 0.8em 1.5em;
    font-weight: bold;
    z-index: 999999999;
    border-radius: 4px;
    color: white;
}

    .skip-link:hover {
        color: white;
    }

    .skip-link:not(:focus) {
        white-space: nowrap;
        width: 1px;
        height: 1px;
        overflow: hidden;
        border: 0;
        padding: 0;
        clip: rect(0 0 0 0);
        -webkit-clip-path: inset(50%);
        clip-path: inset(50%);
        margin: -1px;
    }
/*======================================
  #Helpers
======================================*/
.fr {
    float: right;
}

.fl {
    float: left;
}

.cb {
    clear: both;
}

.nm {
    margin: 0 !important;
}

.np {
    padding: 0 !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.thin {
    font-weight: 300;
}

.bold {
    font-weight: 700;
}

.bolder {
    font-weight: 900;
}

.responsive-img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

.hidden {
    visibility: hidden;
    opacity: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hide {
    display: none;
}

.hide--important {
    display: none !important;
}

.show--s {
    display: none !important;
}

.show--m {
    display: none !important;
}

.show--xs {
    display: none !important;
}

.hide--l {
    display: none !important;
}

@media only screen and (max-width: 992px) {
    .hide--m {
        display: none !important;
    }

    .show--m {
        display: block !important;
    }

    .hide--l {
        display: block !important;
    }
}

@media only screen and (max-width: 768px) {
    .hide--s {
        display: none !important;
    }

    .show--s {
        display: block !important;
    }
}

@media only screen and (max-width: 480px) {
    .hide--xs {
        display: none !important;
    }

    .show--xs {
        display: block !important;
    }
}
/*======================================
  #General
======================================*/
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

input {
    line-height: normal;
    font-size: small;
    padding-bottom: 0.6em;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea {
    -webkit-appearance: none;
}

input[type="search"] {
    -webkit-appearance: textfield;
}

    input[type="search"]::-webkit-search-cancel-button,
    input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

textarea {
    overflow: auto;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    line-height: inherit;
    cursor: pointer;
}
/*======================================
  #Forms
======================================*/
form label,
.form-label {
    margin-bottom: 0.8em;
    line-height: 1;
    font-weight: 400;
    font-size: 1rem;
    /*letter-spacing: 0.05em;*/
    display: block;
}

.umbraco-forms-label {
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="date"],
textarea,
select {
    display: block;
    padding: 0.5em;
    color: #333637;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    border: 0;
    background-color: white;
    border: 2px solid #eee;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    margin-bottom: 1em;
    font-weight: normal;
}

select {
    padding-right: 58px;
    box-shadow: none;
    -webkit-appearance: none;
    text-indent: 0.01px;
    text-overflow: "";
    -moz-appearance: none;
    background-image: url("../ig-assets/css/select-dropdown-arrow.svg");
    background-size: contain;
    background-position: 100% 50%;
    background-repeat: no-repeat;
}

.datepickerfield {
    cursor: pointer;
    background: #fff url("../ig-assets/css/calendar-icon.svg") 99% 50% no-repeat;
    background-size: 24px auto;
    box-shadow: none;
    -webkit-appearance: none;
    text-indent: 0.01px;
    text-overflow: "";
    -moz-appearance: none;
}

@media only screen and (max-width: 768px) {
    input[type="text"].datepickerfield,
    select {
        width: 100%;
    }
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border: 2px solid rgba(29,160,185,0.7) !important;
}

input[type="text"]:required:valid,
input[type="email"]:required:valid,
input[type="url"]:required:valid,
input[type="tel"]:required:valid,
input[type="password"]:required:valid,
input[type="search"]:required:valid,
input[type="number"]:required:valid,
input[type="date"]:required:valid,
textarea:required:valid,
select:required:valid {
    position: relative;
    border-color: rgba(46, 204, 113, 0.05);
    -webkit-box-shadow: 0 0 1px 1px #2ecc71 !important;
    box-shadow: 0 0 1px 1px #2ecc71 !important;
    background-color: white;
}

    input[type="text"]:required:valid + i,
    input[type="email"]:required:valid + i,
    input[type="url"]:required:valid + i,
    input[type="tel"]:required:valid + i,
    input[type="password"]:required:valid + i,
    input[type="search"]:required:valid + i,
    input[type="number"]:required:valid + i,
    input[type="date"]:required:valid + i,
    textarea:required:valid + i,
    select:required:valid + i {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1) translateY(-50%);
        -ms-transform: scale(1) translateY(-50%);
        transform: scale(1) translateY(-50%);
    }

input[type="text"][disabled],
input[type="email"][disabled],
input[type="url"][disabled],
input[type="tel"][disabled],
input[type="password"][disabled],
input[type="search"][disabled],
input[type="number"][disabled],
input[type="date"][disabled],
textarea[disabled],
select[disabled] {
    cursor: not-allowed;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    /*font-style: italic;*/
    font-weight: 300;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
    /*font-style: italic;*/
    font-weight: 300;
}

input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="url"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="date"]::-ms-input-placeholder,
textarea::-ms-input-placeholder,
select::-ms-input-placeholder {
    /*font-style: italic;*/
    font-weight: 300;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="tel"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="number"]::placeholder,
input[type="date"]::placeholder,
textarea::placeholder,
select::placeholder {
    /*font-style: italic;*/
    font-weight: 300;
}

@media only screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="url"],
    input[type="tel"],
    input[type="password"],
    input[type="search"],
    input[type="number"],
    input[type="date"],
    textarea,
    select {
        margin-bottom: 1.25em;
    }
}

.form-validate-wrap {
    position: relative;
}

    .form-validate-wrap > i {
        position: absolute;
        top: 50%;
        right: 10px;
        color: #2ecc71;
        font-size: 1.2em;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scale(0) translateY(-50%);
        -ms-transform: scale(0) translateY(-50%);
        transform: scale(0) translateY(-50%);
        -webkit-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }

select {
    line-height: 1;
    height: 2.5em;
    padding: 5px;
}

textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}
/*======================================
  #Umbraco forms
======================================*/
.success-color {
    color: #2ecc71 !important;
}

legend {
    padding: 0.85em 1em;
    line-height: 1;
    background: rgba(0, 0, 0, 0.025);
    font-weight: bold;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 2em;
}

    legend.legend-dark {
        background: rgba(0, 0, 0, 0.05);
        color: #444;
    }

.radiobuttonlist,
.multiplechoice,
.fileupload {
    margin-bottom: 2em;
    display: block;
    padding-top: 10px;
}

.contourPage .checkbox {
    position: relative;
    padding-left: 26px;
    margin-bottom: 2em;
}

    .contourPage .checkbox .checkbox-single {
        position: absolute;
        top: -6px;
        left: 6px;
    }

#recaptcha_area {
    margin-bottom: 2em;
}

    #recaptcha_area table {
        border: 0 !important;
    }

.radio-list-item,
.checkbox-list-item {
    position: relative;
    padding: 10px 10px 10px 30px !important;
    margin-bottom: 2px;
}

    .radio-list-item label,
    .checkbox-list-item label {
        text-transform: none;
    }

    .radio-list-item input,
    .checkbox-list-item input {
        position: absolute;
        left: 7px;
        top: 8px;
    }

    .radio-list-item label,
    .checkbox-list-item label {
        margin: 0;
        font-size: 0.8rem;
        padding: 0;
        text-transform: none;
    }

.umbraco-forms-field.checkbox {
    position: relative;
    padding: 15px 0 2px 21px;
}

    .umbraco-forms-field.checkbox label {
        font-size: 1rem;
        font-weight: 400;
        text-transform: none;
        letter-spacing: 0;
        padding: 0 0 0.6em 0.6em;
    }

    .umbraco-forms-field.checkbox .umbraco-forms-field-wrapper {
        position: absolute;
        top: 0;
        left: 0;
    }

.help-block {
    font-size: 1rem;
    display: block;
    color: #666;
    padding: 0 0 10px 0;
    margin-bottom: 15px;
    font-weight: 300;
}

.field-validation-error {
    display: block;
    color: #e74c3c;
    font-weight: 400;
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 1em;
}

.input-validation-error {
    border: 2px solid #e74c3c !important;
}

input[type="file"].input-validation-error {
    border: none !important;
}

.fileupload {
    padding-top: 40px !important;
}

@media only screen and (max-width: 768px) {
    .field-validation-error {
        margin-top: 0;
        margin-bottom: 1em;
    }
}

.umbraco-forms-indicator,
.validation-summary-errors,
.error-color {
    color: #e74c3c;
    font-weight: 400;
    font-size: 0.75rem;
}
/*======================================
  #Buttons
======================================*/
.button,
input[type="submit"],
input[type="button"] {
    display: inline-block;
    -webkit-appearance: none;
    line-height: 1;
    padding: 1em 2em;
    letter-spacing: 0.04em;
    font-size: 0.9rem;
    font-weight: bold;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    text-decoration: none !important;
    /*border-color: #fff!important;*/
}

.form.theme-bg.light-color .button {
    border: 2px solid #fff !important;
}
/*.button:hover, input[type="submit"]:hover, input[type="button"]:hover {
        border-color: #fff !important;
    }*/
.button.button--block, input[type="submit"].button--block, input[type="button"].button--block {
    min-width: 20%;
    /*padding-left: 0;
  padding-right: 0;*/
}

@media only screen and (max-width: 480px) {
    .button.button--block,
    input[type="submit"].button--block,
    input[type="button"].button--block {
        width: 100%;
    }
}

.button.button--small,
input[type="submit"].button--small,
input[type="button"].button--small {
    padding: 0.8em 1em;
    font-size: 0.8rem;
}

.button.button--big,
input[type="submit"].button--big,
input[type="button"].button--big {
    padding: 1.2em 2em;
    font-size: 1.2rem;
}

.button.button--dark,
input[type="submit"].button--dark,
input[type="button"].button--dark {
    color: white !important;
}

    .button.button--dark:hover,
    input[type="submit"].button--dark:hover,
    input[type="button"].button--dark:hover {
        color: white !important;
    }

.button.button--light,
input[type="submit"].button--light,
input[type="button"].button--light {
    background: #f5f8fa;
    border-color: #f5f8fa;
    color: #111 !important;
}

    .button.button--light:hover,
    input[type="submit"].button--light:hover,
    input[type="button"].button--light:hover {
        background: #f9f9f9;
        border-color: #f9f9f9;
        color: #111 !important;
    }

.button.button--custom2,
input[type="submit"].button--custom2,
input[type="button"].button--custom2 {
    background: #ffc42f !important;
    border-color: #ffc42f !important;
    color: #333637 !important;
}

.button.button--clear1,
input[type="submit"].button--custom3,
input[type="button"].button--custom3 {
    background: #fff !important;
    border-color: #1da0b9 !important;
    color: #1da0b9 !important;
    font-size: 10px;
}

.button.button--clear1:hover,
input[type="submit"].button--clear1:hover,
input[type="button"].button--clear1:hover {
    background: rgb(45 167 183 / 0.30);
    border-color: rgb(45 167 183 / 0.30) !important;
    color: #1da0b9 !important;
    font-size: 10px;
}

.button.button--custom3,
input[type="submit"].button--custom3,
input[type="button"].button--custom3 {
    background: #fff !important;
    border-color: #1da0b9 !important;
    color: #1da0b9 !important;
}

.button.button--custom2:hover,
input[type="submit"].button--custom2:hover,
input[type="button"].button--custom2:hover {
    background: rgba(255, 196, 47, 0.75) !important;
    border-color: rgba(255, 196, 47, 0.75) !important;
    color: #333637 !important;
}

.button.button--custom3:hover,
input[type="submit"].button--custom3:hover,
input[type="button"].button--custom3:hover {
    background: rgb(45 167 183 / 0.30);
    border-color: rgb(45 167 183 / 0.30) !important;
    color: #1da0b9 !important;
}

.button.button--border,
input[type="submit"].button--border,
input[type="button"].button--border {
    background: transparent !important;
}

    .button.button--border:hover,
    input[type="submit"].button--border:hover,
    input[type="button"].button--border:hover {
        color: #fff !important;
    }

    .button.button--border.button--dark:hover,
    input[type="submit"].button--border.button--dark:hover,
    input[type="button"].button--border.button--dark:hover {
        color: #f5f8fa !important;
    }

    .button.button--border.button--light,
    input[type="submit"].button--border.button--light,
    input[type="button"].button--border.button--light {
        color: #f5f8fa !important;
    }

        .button.button--border.button--light:hover,
        input[type="submit"].button--border.button--light:hover,
        input[type="button"].button--border.button--light:hover {
            color: #333637 !important;
            background: #f5f8fa !important;
            border-color: #f5f8fa;
        }

    .button.button--border.button--theme:hover,
    input[type="submit"].button--border.button--theme:hover,
    input[type="button"].button--border.button--theme:hover {
        color: #333637 !important;
        background: #1da0b9 !important;
        border-color: #1da0b9;
    }

    .button.button--border.button--custom2,
    input[type="submit"].button--border.button--custom2,
    input[type="button"].button--border.button--custom2 {
        color: #ffc42f !important;
    }

    .button.button--border.button--custom3,
    input[type="submit"].button--border.button--custom3,
    input[type="button"].button--border.button--custom3 {
        color: #1da0b9 !important;
    }

    .button.button--border.button--custom2:hover,
    input[type="submit"].button--border.button--custom2:hover,
    input[type="button"].button--border.button--custom2:hover {
        color: #333637 !important;
        background: rgba(255, 196, 47, 0.75) !important;
        border-color: rgba(255, 196, 47, 0.75) !important;
    }

    .button.button--border.button--custom3:hover,
    input[type="submit"].button--border.button--custom3:hover,
    input[type="button"].button--border.button--custom3:hover {
        color: #1da0b9 !important;
        background: rgba(255, 196, 47, 0.75) !important;
        border-color: rgba(255, 196, 47, 0.75) !important;
    }
    .button.button--border.button--custom3:active,
    input[type="submit"].button--border.button--custom3:active,
    input[type="button"].button--border.button--custom3:active {
        color: #2ecc71 !important;
        background: rgba(255, 196, 47, 0.75) !important;
        border-color: rgba(255, 196, 47, 0.75) !important;
    }

.button[disabled],
input[type="submit"][disabled],
input[type="button"][disabled],
.button.button--disabled,
input[type="submit"].button--disabled,
input[type="button"].button--disabled {
    cursor: not-allowed;
    background: #e6e6e6 !important;
    border-color: #e6e6e6 !important;
    color: #666 !important;
}

    .button[disabled]:hover,
    input[type="submit"][disabled]:hover,
    input[type="button"][disabled]:hover,
    .button.button--disabled:hover,
    input[type="submit"].button--disabled:hover,
    input[type="button"].button--disabled:hover {
        background: #e6e6e6 !important;
        border-color: #e6e6e6 !important;
        color: #666 !important;
    }
    
    .close
{
    display: block;
    border-top: 4px solid #FFF;
    background-color: #fFF;
    height: 2rem;
    line-height: 22px;
    padding: 4px 85%;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 13px;
    clear:both;
}

/*======================================
  #Checkbox
======================================*/
/* Customize the label (the container) */
.cb-wrap,
.rb-wrap {
    display: block;
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 20px;
    text-transform: none;
    /*letter-spacing: 0.08em;*/
    margin-bottom: 0.8em;
}

    .cb-wrap p,
    .rb-wrap p {
        margin-bottom: 0px;
    }
    /* Hide the browser's default checkbox */
    .cb-wrap input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }
    /* Create a custom checkbox */
    .cb-wrap .checkmark {
        position: absolute;
        border-radius: 2px;
        top: -2px;
        left: 0;
        padding: 11px;
        height: 1rem;
        width: 1rem;
        background-color: rgba(0, 0, 0, 0.15);
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    /* cb-wrap mouse-over, add a grey background color */
    .cb-wrap:hover input ~ .checkmark {
        background-color: #ccc;
    }
    /* When the checkbox is checked, add a blue background */
    /* Create the checkmark/indicator (hidden when not checked) */
    .cb-wrap .checkmark:after {
        content: "";
        position: absolute;
    }
    /* Show the checkmark when checked */
    .cb-wrap input:checked ~ .checkmark:after {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1) translateZ(0);
        transform: translate(-50%, -50%) scale(1) translateZ(0);
    }
    /* Style the checkmark/indicator */
    .cb-wrap .checkmark:after {
        content: "\f00c";
        font-family: "FontAwesome";
        color: white;
        line-height: 1;
        font-size: 1.25rem;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) scale(0) translateZ(0);
        transform: translate(-50%, -50%) scale(0) translateZ(0);
        opacity: 0;
    }
    /*======================================
  #Radio Button
======================================*/
    /* Hide the browser's default radio button */
    .rb-wrap input {
        position: absolute;
        opacity: 0;
    }
    /* Create a custom radio button */
    .rb-wrap .radiobtn {
        position: absolute;
        top: -2px;
        left: 0;
        height: 1rem;
        width: 1rem;
        padding: 11px;
        background-color: rgba(0, 0, 0, 0.15);
        border-radius: 50%;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    /* On mouse-over, add a grey background color */
    .rb-wrap:hover input ~ .radiobtn {
        background-color: #ccc;
    }
    /* When the radio button is checked, add a blue background */
    /* Create the indicator (the dot/circle - hidden when not checked) */
    .rb-wrap .radiobtn:after {
        content: "";
        position: absolute;
        opacity: 0;
        -webkit-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease;
        -webkit-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
    }
    /* Show the indicator (dot/circle) when checked */
    .rb-wrap input:checked ~ .radiobtn:after {
        display: block;
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
    /* Style the indicator (dot/circle) */
    .rb-wrap .radiobtn:after {
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: white;
    }
/*======================================
  #Container
======================================*/
.container-fluid,
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
}

@media only screen and (max-width: 992px) {
    .container-fluid,
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .container-fluid,
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (max-width: 480px) {
    .container-fluid,
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.container {
    max-width: 1300px;
}

.container--small {
    max-width: 1100px;
}

.container--big {
    max-width: 1700px;
}

.container--fluid {
    max-width: 100%;
}
/*======================================
  #Row
======================================*/
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-left: -15px;
    margin-right: -15px;
}

@media only screen and (max-width: 992px) {
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media only screen and (max-width: 768px) {
    .row {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
}

@media only screen and (max-width: 480px) {
    .row {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
}

.row.row--center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.row.row--left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.row.row--right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.row.row--space-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.row.row--space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.row.row--space-evenly {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.row.row--v-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.row.row--v-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.row.row--v-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.row.row--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.row.row--flat {
    margin-left: 0;
    margin-right: 0;
}

    .row.row--flat > [class*='col-'],
    .row.row--flat > .col {
        padding-left: 0;
        padding-right: 0;
    }

@media only screen and (max-width: 768px) {
    .row.row--flat-s {
        margin-left: 0;
        margin-right: 0;
    }

        .row.row--flat-s > [class*='col-'],
        .row.row--flat-s > .col {
            padding-left: 0;
            padding-right: 0;
        }
}

.row.row--grow > [class*='col-'],
.row.row--grow > .col {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.row.row--no-wrap {
    -ms-flex-flow: nowrap;
    flex-flow: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .row.row--no-wrap > [class*='col-'] {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

@media only screen and (max-width: 992px) {
    .row.row--no-wrap-m {
        -ms-flex-flow: nowrap;
        flex-flow: nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

        .row.row--no-wrap-m > [class*='col-'] {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
        }
}

@media only screen and (max-width: 768px) {
    .row.row--no-wrap-s {
        -ms-flex-flow: nowrap;
        flex-flow: nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

        .row.row--no-wrap-s > [class*='col-'] {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
            flex: 0 0 auto;
        }
}
/*======================================
  #Cols
======================================*/
[class*='col-'],
.col {
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (max-width: 992px) {
    [class*='col-'],
    .col {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media only screen and (max-width: 768px) {
    [class*='col-'],
    .col {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
}

@media only screen and (max-width: 480px) {
    [class*='col-'],
    .col {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
}

[class*='col-'].col--v-center,
.col.col--v-center {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

[class*='col-'].col--grow,
.col.col--grow {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.col {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
}

.col-10 {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    max-width: 10%;
}

.col-16 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
}

.col-20 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
}

.col-25 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.col-30 {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    max-width: 30%;
}

.col-33 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
}

.col-40 {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
}

.col-50 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.col-60 {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
}

.col-66 {
    -ms-flex-preferred-size: 66.66666666%;
    flex-basis: 66.66666666%;
    max-width: 66.66666666%;
}

.col-70 {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    max-width: 70%;
}

.col-75 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
}

.col-80 {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
}

.col-90 {
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%;
    max-width: 90%;
}

.col-100 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

@media only screen and (max-width: 1200px) {
    .col-l-10 {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
        max-width: 10%;
    }

    .col-l-16 {
        -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-l-20 {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        max-width: 20%;
    }

    .col-l-25 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-l-30 {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
        max-width: 30%;
    }

    .col-l-33 {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-l-40 {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
        max-width: 40%;
    }

    .col-l-50 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-l-60 {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
        max-width: 60%;
    }

    .col-l-66 {
        -ms-flex-preferred-size: 66.66666666%;
        flex-basis: 66.66666666%;
        max-width: 66.66666666%;
    }

    .col-l-70 {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
        max-width: 70%;
    }

    .col-l-75 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-l-80 {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
        max-width: 80%;
    }

    .col-l-90 {
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
        max-width: 90%;
    }

    .col-l-100 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    .col-m-10 {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
        max-width: 10%;
    }

    .col-m-16 {
        -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-m-20 {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        max-width: 20%;
    }

    .col-m-25 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-m-30 {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
        max-width: 30%;
    }

    .col-m-33 {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-m-40 {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
        max-width: 40%;
    }

    .col-m-50 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-m-60 {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
        max-width: 60%;
    }

    .col-m-66 {
        -ms-flex-preferred-size: 66.66666666%;
        flex-basis: 66.66666666%;
        max-width: 66.66666666%;
    }

    .col-m-70 {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
        max-width: 70%;
    }

    .col-m-75 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-m-80 {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
        max-width: 80%;
    }

    .col-m-90 {
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
        max-width: 90%;
    }

    .col-m-100 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .col-s-10 {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
        max-width: 10%;
    }

    .col-s-16 {
        -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-s-20 {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        max-width: 20%;
    }

    .col-s-25 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-s-30 {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
        max-width: 30%;
    }

    .col-s-33 {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-s-40 {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
        max-width: 40%;
    }

    .col-s-50 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-s-60 {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
        max-width: 60%;
    }

    .col-s-66 {
        -ms-flex-preferred-size: 66.66666666%;
        flex-basis: 66.66666666%;
        max-width: 66.66666666%;
    }

    .col-s-70 {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
        max-width: 70%;
    }

    .col-s-75 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-s-80 {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
        max-width: 80%;
    }

    .col-s-90 {
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
        max-width: 90%;
    }

    .col-s-100 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .col-xs-10 {
        -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
        max-width: 10%;
    }

    .col-xs-16 {
        -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-xs-20 {
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        max-width: 20%;
    }

    .col-xs-25 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-xs-30 {
        -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
        max-width: 30%;
    }

    .col-xs-33 {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-xs-40 {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
        max-width: 40%;
    }

    .col-xs-50 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-xs-60 {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
        max-width: 60%;
    }

    .col-xs-66 {
        -ms-flex-preferred-size: 66.66666666%;
        flex-basis: 66.66666666%;
        max-width: 66.66666666%;
    }

    .col-xs-70 {
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
        max-width: 70%;
    }

    .col-xs-75 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-xs-80 {
        -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
        max-width: 80%;
    }

    .col-xs-90 {
        -ms-flex-preferred-size: 90%;
        flex-basis: 90%;
        max-width: 90%;
    }

    .col-xs-100 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}
/*======================================
  #Fallback
======================================*/
.browser-explorer.browser-version-9 .row:before,
.browser-explorer.browser-version-8 .row:before,
.browser-explorer.browser-version-9 .row:after,
.browser-explorer.browser-version-8 .row:after {
    content: " ";
    display: table;
}

.browser-explorer.browser-version-9 .row:after,
.browser-explorer.browser-version-8 .row:after {
    clear: both;
}

.browser-explorer.browser-version-9 [class*='col-'],
.browser-explorer.browser-version-8 [class*='col-'],
.browser-explorer.browser-version-9 .col,
.browser-explorer.browser-version-8 .col {
    float: left;
}

.theme2-bg-lock {
    background-color: #333637;
}

.theme3-bg-lock {
    background-color: #f5f8fa;
}
/*======================================
  #General
======================================*/
.bulletfade {
    display: flex;
    flex-flow: column;
    padding: 0 0 30px;
    overflow: hidden;
    width: 100%;
}
/*======================================
  #Custom form styling
======================================*/
.ctaform2 form .button:hover {
    border-color: #fff;
    color: #1da0b9 !important;
}

.ctaform2 form .umbraco-forms-indicator,
.ctaform2 form .validation-summary-errors,
.ctaform2 form .error-color {
    color: #fff;
}

.ctaform2 form .button {
    border-color: #fff;
    color: #fff !important;
    margin: 0 20px 20px;
}


.ctaform2 form div.umbraco-forms-navigation.row div.col-100 {
    margin: auto;
}

.ctaform form form {
    padding-bottom: 30px;
    margin-bottom: 30px;
    background-color: #F2F2F2;
    border-radius: 50px;
}


.ctaform form h2 {
    font-weight: normal;
    color: #ffc42f;
    margin: 0px;
    padding-top: 20px;
}


.contourMessageOnSubmit {
    color: #551A8B;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 70px 25px;
    background-color: #F2F2F2;
    border-radius: 50px;
}

    .contourMessageOnSubmit:before {
        position: relative;
        top: 12px;
        right: -0px;
        padding-right: 20px;
    }

.ctaform form .button:hover {
    background-color: #fff;
    border-color: #fff;
    color: #1da0b9 !important;
}

.ctaform form .button {
    border-color: #fff;
    color: #fff !important;
    margin: 0 20px 20px;
}

.ctaform form div.umbraco-forms-navigation.row div.col-100 {
    margin: auto;
}

.ctaform form input[type=text] {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    padding: 15px 0px 15px 15px;
    margin: 5px 1px 30px 0px;
}

    .ctaform form input[type=text]:focus {
        box-shadow: 0 0 12px rgba(81, 203, 238, 1);
        padding: 15px 0px 15px 15px;
        margin: 5px 1px 30px 0px;
        border: 2px solid rgba(81, 203, 238, 1);
    }



.ctaform form label {
    display: block;
    font-weight: normal;
}

    .ctaform form label + span:first-of-type {
        font-size: 90%;
    }


.ctaform form fieldset {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
    /*margin-bottom: 2em;*/
    padding-top: 0.35em;
    padding-bottom: 1em;
    padding-left: 2em;
    padding-right: 2em;
    border: 0px;
    border-radius: 50px;
}

.ctaform form input {
    min-width: 150px;
    border-radius: 50px;
}

.ctaform form .umbraco-forms-caption {
    padding: 0 0 0 20px;
}


.ctaform form textarea {
    min-width: 100%;
    border-radius: 25px;
    min-height: 100px;
}

.ctaform form .field-validation-error {
    display: block;
    color: #ffc42f;
    font-size: 12px !important;
    margin-top: -5px;
    margin-bottom: 2em;
}

.ctaform form select {
    min-width: 150px;
    border-radius: 6px 0px 0px 6px;
}


.ctaform form .umbraco-forms-indicator {
    color: #ffc42f;
}

.ctaform form #recaptcha_response_field {
    min-width: 50px;
}

div.umbraco-forms-field.recaptcha2.mandatory label {
    display: none;
}

div.umbraco-forms-field-wrapper {
    padding: 2px 0 7px 0;
}

.rounded {
    border-radius: 10px;
}

.menu-divider {
    font-size: 0.75rem;
    line-height: 2;
    padding: 0 1.5em;
    text-transform: uppercase;
    color: #939598;
    font-weight: 800;
}

.vans-menu-container {
    width: 100%;
    margin: -42px 0 auto;
    padding: 0;
    min-width: 222px !important;
}

.vans-menu {
    width: 100%;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
    float: left;
    line-height: 15px;
    position: relative;
    padding: 0 0 0 4px;
    margin: 0 0 0px 0;
    background-color: #fff;
    box-shadow: 0 0 40px #00000021;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.divide {
    margin: 0px 0 10px 0;
    height: 10px !important;
}

.vans-divider {
    width: 100%;
    height: 15px;
    margin: 7px 0 7px 0px;
    background-color: #1da0b9;
    position: absolute;
    left: 0;
}

.vans-menu a, .vans-menu a:link, .vans-menu a:visited, .vans-menu a:focus, span {
    text-decoration: none;
}

    .vans-menu a:hover {
        color: #227087;
        text-decoration: none;
    }

.vans-menu li {
    display: block;
    text-align: left;
    margin-left: -4px;
    border-left: 1px solid rgba(255, 255, 255, 0.11);
    /* box-shadow: -1px 0 0 rgba(0, 0, 0, 0.1);*/
    height: 50px;
}

.van-select {
    padding: 20px;
}

.vans-menu li a {
    padding: 20px 18px;
    display: block;
    color: #333637 !important;
}

.vans-menu li:hover a {
    color: #1da0b9;
}

.vans-menu li:hover {
    background-color: #fff;
}

.pricechoice {
    padding: 10px 5px !important;
    font-size: 11px !important;
    border-radius: 0px !important;
    min-width: 29%;
}

.paymentoption-container {
    margin: 0 auto;
    padding: 13px 0 13px 0;
    display: block;
    text-align: center;
}

.vans-menu li .megadrop {
    opacity: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    background-color: white;
    visibility: hidden;
    position: relative;
    list-style: none;
    top: -60px;
    left: 100%;
    width: 100%;
    min-height: 250px;
    max-width: 70%;
    text-align: left;
    padding: 0;
    z-index: 99999;
    border-bottom: solid 1px #f2f5ff;
    overflow: hidden;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.vans-menu li .megadropmob {
    opacity: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    background-color: white;
    visibility: hidden;
    position: relative;
    list-style: none;
    top: -60px;
    left: 20%;
    width: 100%;
    min-height: 250px;
    max-width: 60%;
    text-align: left;
    padding-right: 15px;
    z-index: 99999;
    border-bottom: solid 1px #f2f5ff;
    overflow: hidden;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

    .vans-menu li .megadrop > * {
        flex: 1 1 80px;
    }

.van-option {
    padding: 0 0 0 20px;
}

.page-countermob {
    display: none;
}

@media only screen and (max-width: 768px) {
    .vans-menu li a:hover, .vans-menu li a:active{
        height: auto !important;
    }

    .page-counter {
        display: none;
    }

    .page-countermob {
        display: block;
    }

    .vans-menu li .megadrop {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        z-index: 999999 !important;
        max-height: 100vh !important;
        position: fixed !important;
    }

    .top-padding {
        margin-top: 50px !important;
    }
}

input#brand, input#model, input#colour, input#transmission, input#mileage, input#quoteprice, input#wheelbase, input#fueltype, input#stocktype, input#keyfeatures, input#age, input#enginesize {
    color: #333637 !important;
    text-decoration: underline !important;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
   /* float: left;*/
    line-height: 15px;
    padding: 0 0 0 4px;
    margin: 0;
    background-color: #fff;
    border: none !important;
    cursor: pointer;
}

input#page-left, input#page-right {
    background-color: #fff;
    border: none !important;
    cursor: pointer;
    border-radius: 5px !important;
    padding: 13px 7px;
    box-shadow: 0 0 15px #00000021;
}

.counter-input-left {
    color: #333637 !important;
    text-decoration: underline !important;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    padding: 0 0 0 4px;
    margin: 0;
    background-color: #fff !important;
    border: none !important;
    cursor: pointer;
}

.counter-input-right {
    color: #333637 !important;
    text-decoration: underline !important;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    padding: 0 0 0 4px;
    margin: 0;
    background-color: #fff !important;
    border: none !important;
    cursor: pointer;
}

.van-option-link {
    /*text-decoration:underline;
*/
    padding: 0px 0 0 20px;
}

.megadrop-ul {
    display: contents;
}

.vans-menu li:hover .megadrop {
    opacity: 1;
    visibility: visible;
    margin-top: 0px;
}

.vans-menu li:hover .megadropmob {
    opacity: 0.9
    visibility: visible;
    margin-top: 0px;
}

.vans-menu ul li:hover:after {
    color: #227087;
}

.vans-menu .col {
    width: 14.1%;
    float: left;
    color: white;
    margin: 0 0 0 2.2%;
}

    .vans-menu .col ul {
        padding: 0;
        margin: 0;
    }

        .vans-menu .col ul li {
            padding: 0;
            list-style: none;
            font-size: 14px;
            text-decoration: underline;
        }

    .vans-menu .col h3 {
        font-size: 16px;
        padding: 10px 0;
        font-weight: bold;
        margin: 5px 0 5px 0;
        color: #227087;
        background: #eee;
    }

    .vans-menu .col ul li a {
        display: block;
        padding: 0 0 15px 0;
        color: #227087;
    }

        .vans-menu .col ul li a:hover {
            color: #111;
            text-decoration: underline;
        }

.vans-menu > li > ul li ul, .vans-menu li > ul li, .vans-menu > li > .megadrop, .vans-menu > li > ul, .vans-menu > li {
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-outs;
}

.chevron::before {
    border-style: solid;
    border-width: 0.25em 0.25em 0 0;
    content: '';
    display: inline-block;
    height: 0.45em;
    left: 0.15em;
    position: relative;
    top: 0.15em;
    transform: rotate(-45deg);
    vertical-align: top;
    width: 0.45em;
    color: #1da0b9;
    float: right;
}

.chevron.right:before {
    left: -10px;
    top: -33px;
    transform: rotate(45deg);
}

.chevronmob::before {
    border-style: solid;
    border-width: 0.25em 0.25em 0 0;
    content: '';
    display: inline-block;
    height: 0.45em;
    left: 0.15em;
    position: relative;
    top: 0.15em;
    transform: rotate(-45deg);
    vertical-align: top;
    width: 0.45em;
    color: #1da0b9;
    float: right;
}

.chevronmob.right:before {
    left: -10px;
    top: -33px;
    transform: rotate(45deg);
}

@media only screen and (max-width: 768px) {
    .chevronmob.right:before {
        left: -29px !important;
        top: 12px !important;
        transform: rotate(45deg);
        pointer-events: none;
    }

    .chevronmob.left:before {
        top: 12px !important;
        left: 28px !important;
        float: left !important;
        transform: rotate(-135deg);
        pointer-events: none;
    }
}

.chevron.right.page-counter:before {
    top: 14px;
    transform: rotate( 45deg );
    float: left;
    left: 178px;
    pointer-events: none;
}

.chevron.left:before {
    top: -33px;
    left: 0.25em;
    transform: rotate(-135deg);
}

.chevron.left.page-counter:before {
    top: 14px;
    transform: rotate( -135deg );
    left: 45px;
    float: left;
    pointer-events: none;
}

.chevronmob.right.page-counter:before {
    top: 14px;
    transform: rotate( 45deg );
    float: left;
    left: 178px;
    pointer-events: none;
}

.chevronmob.left:before {
    top: -33px;
    left: 0.25em;
    transform: rotate(-135deg);
}

.chevronmob.left.page-counter:before {
    top: 14px;
    transform: rotate( -135deg );
    left: 45px;
    float: left;
    pointer-events: none;
}

.van-page {
    background-color: white;
    padding: 12px;
    margin: 0px 0px 0 0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 0 15px #00000021;
}

#vftext-make, #vftext-model, #vftext-colour, #vftext-transmission, #vftext-year, #vftext-mileage, #vftext-features, #vftext-quoteprice, #vftext-fueltype, #vftext-wheelbase, #vftext-stocktype, #vftext-enginesize {
    font-weight: 600;
    float: right;
    margin-right: 10px;
}

.van-total {
    font-weight: 600;
    font-size: 22px;
}

.van-totaltext {
    font-size: 14px;
    padding-right: 2%;
}

.vans-menu-header {
    background-color: #fff;
    margin: auto;
    padding-top: 16px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-align: center;
}


.van-option-header {
    font-size: 16px;
    font-weight: 600;
}

.flex1 {
    flex: 1;
}

@media only screen and (max-width: 768px) {
    .flex1 {
        flex: 0;
    }
}

.van-option-header:before {
    font-size: 16px;
    font-weight: 600;
    margin: 25px 0 0 25px;
    content: '';
    display: inline-block;
    height: 0.45em;
    left: 0.15em;
    position: relative;
    top: 0.15em;
}

.refreshing {
    content: url(/ig-assets/css/refreshing.png);
    float: right;
}
@media only screen and (min-width: 992px) {
    .refreshing {
       width:20px;
    }
    .van-totaltext {
        font-size: 12px;
    }
    .van-total {
        font-size:16px;
    }
}
.refreshing-url {
    display: inline !important;
    padding: 0 !important;
}

.top-padding {
    margin-top: 106px;
}

.comingsoon {
    height: 400px;
}

.pt-10 {
    padding-top: 10px;
}

.carousel {
    background: #FFFFFF;
}

.carousel-cell {
    width: 66%;
    height: 400px;
    margin-right: 10px;
    background: #FFFFFF;
    border-radius: 5px;
}

.carousel-cell-image {
    display: block;
    max-height: 100%;
    margin: 0 auto;
    max-width: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

    /* fade in lazy loaded image */
    .carousel-cell-image.flickity-lazyloaded,
    .carousel-cell-image.flickity-lazyerror {
        opacity: 1;
    }

#vfs-footer {
    bottom: 0;
    width: 100%;
    position: fixed;
    height: 60px;
    background-color: #E11D8D;
    text-align: center;
}

.vfsfooter-block {
    margin: 15px 0 20px;
    color: white;
}

@media only screen and (max-width: 768px) {
    #vfs-footer {
        font-size: 12px;
        padding: 0 60px;
    }

    .vfsfooter-block {
        margin: 5px 0 20px;
    }
}
.payment-container {
    height:100%!important;
}
.tabs.tabs--vf .tabs__nav .active {
    background-color: white;
    color: #333637 !important;
    border-radius: 4px 4px 0 0;
    font-size: 12px;
    margin: 3px 4px 0 0px !important;
}
.tabs.tabs--vf .tabs__nav {
    background-color: #1da0b9;
    color: white !important;
    margin: 0 0 -6px -1px;
    font-size: 12px;
}

.tabs.tabs--vf.tabs__container {
    background-color:#1da0b9;

}
.tabs.tabs--vf .tabs__nav ul li a {
    display: block;
    padding: 0.8em 1.5em !important;
    line-height: 2 !important;
    color: white !important;
    font-weight: bold;
    margin-top: 3px !important;
    font-size: 12px !important;
    border-radius: 5px 5px 0 0 !important;
    white-space: nowrap;
}
.vans-menu li:hover {
    background-color: #ffffff00;
    border-radius: 5px 5px 0 0 !important;
}
.vfblock {
    padding: 20px 0;
    position: relative;
}
#van-payment-option > div .purchasebtn, #van-payment-option > div .leasebtn, #van-payment-option > div .rentalbtn {
    background: white;
    color: #1da0b9 !important;
}
#van-payment-option > div .purchasebtn--active, #van-payment-option > div .leasebtn--active, #van-payment-option > div .rentalbtn--active {
    background: #1da0b9 !important;
    color: white !important;
}
.text-bigvf {
    font-weight: 300;
    font-size: 16px;
}


/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #ffffff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 18px;
  min-width: 100%;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 0 15px #00000021;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-color: white;
    padding: 18px;
     width: 20%;
    margin: 0px 0px 0 0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 0 15px #00000021;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 1px;
  background-color: white;
  display: none;
  overflow: hidden;
}


@media all and (min-width: 768px) {
    .deskContent {display:block; width: 100%;}
    .phoneContent {display:none; width: 100%;}
}

@media all and (max-width: 767px) {
    .deskContent {display:none; width: 100%;}
    .phoneContent {display:block; width: 100%;}
}

}