@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600);

.omModal-open {
    overflow: hidden
}

.omModal-open .omModal {
    overflow-x: hidden;
    overflow-y: auto
}

.omModal {
    display: none;
    height: 100%;
    left: 0;
    opacity: 0;
    outline: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050
}

.omModal.omFade {
    transition: opacity .15s ease
}

.omModal.omModal-show {
    opacity: 1
}

.omModal-content {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #0003;
    border-radius: .3rem;
    display: flex;
    flex-direction: column;
    outline: 0;
    pointer-events: auto;
    position: relative;
    width: 100%
}

.omModal-content ul {
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    padding: 0
}

.omModal-content ul li {
    list-style: disc;
    list-style-position: inside;
    margin: 2px 0
}

.omModal-content ul li ul {
    padding-left: 20px
}

.omModal-content ul li li {
    font-size: 12px
}

#omForm button.omModal-close {
    cursor: pointer;
    display: block;
    height: 2rem;
    margin: 0;
    padding: 0;
    position: absolute;
    right: .5rem;
    top: .5rem;
    width: 2rem;
    z-index: 1
}

#omForm button.omModal-close, #omForm button.omModal-close:focus, #omForm button.omModal-close:hover {
    background: #0000 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E") 50%/1em auto no-repeat;
    border: none;
    border-radius: 0
}

#omForm button.omModal-close:focus {
    outline: none
}

#omForm button.omModal-close:hover {
    opacity: .75;
}

#omForm button.omModal-close:after, #omForm button.omModal-close:before {
    display: none;
}

.omModal-body {
    flex: 1 1 auto;
    padding: 1rem 3rem 1rem 1.5rem;
    position: relative;
    font-size: calc(.5em + 1vw);
}


.omModal-dialog {
    margin: .5rem;
    pointer-events: none;
    position: relative;
    width: auto;
}

.omModal.omFade .omModal-dialog {
    transform: translateY(-50px);
    transition: transform .3s ease-out
}

.omModal.omModal-show .omModal-dialog {
    transform: none
}

.omModal.omModal-static .omModal-dialog {
    transform: scale(1.02)
}

@media (prefers-reduced-motion: reduce) {
    .omModal.omFade .omModal-dialog {
        transition: none
    }
}

.omModal-dialog-scrollable {
    display: flex;
    max-height: calc(100% - 1rem)
}

.omModal-dialog-scrollable .omModal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden
}

.omModal-dialog-scrollable .omModal-body {
    overflow-y: auto
}

.omModal-dialog-centered {
    align-items: center;
    display: flex;
    min-height: calc(100% - 1rem)
}

.omModal-dialog-centered:before {
    content: "";
    display: block;
    height: calc(100vh - 1rem);
    height: min-content
}

.omModal-dialog-centered.omModal-dialog-scrollable {
    flex-direction: column;
    height: 100%;
    justify-content: center
}

.omModal-dialog-centered.omModal-dialog-scrollable:before {
    content: none
}

.omModal-dialog-centered.omModal-dialog-scrollable .omModal-content {
    max-height: none
}

.omModal-backdrop {
    background-color: #000;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1040
}

.omModal-backdrop.omFade {
    opacity: 0
}

.omModal-backdrop.omModal-show {
    opacity: .5
}

.omModal-scrollbar-measure {
    height: 50px;
    overflow: scroll;
    position: absolute;
    top: -9999px;
    width: 50px
}

@media (min-width: 576px)and (max-width: 990px) {
    .container {
        zoom: 1.5;

    }
    .omModal-dialog {
        margin: 1.75rem auto;
        max-width: 500px
    }

    .omModal-small .omModal-dialog {
        max-width: 300px
    }

    .omModal-dialog-scrollable {
        max-height: calc(100% - 3.5rem)
    }

    .omModal-dialog-scrollable .omModal-content {
        max-height: calc(100vh - 3.5rem)
    }

    .omModal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .omModal-dialog-centered:before {
        height: calc(100vh - 3.5rem)
    }
}

@media (min-width: 992px)and (max-width: 1023px) {
    /*.container {*/
    /*    zoom: 1.5;*/
    /*}*/
    .omModal-large .omModal-dialog {
        max-width: 800px
    }

}

.omTooltip {
    display: inline-block;
    line-height: 1;
    vertical-align: 1px;
    z-index: 1
}

.omTooltip-icon {
    background-color: #ddd;
    border-radius: 50%;
    color: #fff;
    cursor: help;
    display: block;
    font-size: 11px;
    height: 16px;
    line-height: 16px;
    position: relative;
    text-align: center;
    width: 16px
}

.omTooltip-icon:before {
    content: "?";
    display: inline;
    font: inherit;
    font-weight: 700
}

.omTooltip-icon:after {
    border: 8px solid #0000;
    border-top-color: #000;
    content: "";
    margin-left: -8px
}

.omTooltip-icon:after, .omTooltip-text {
    bottom: 100%;
    display: none;
    left: 50%;
    position: absolute
}

.omTooltip-text {
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 12px;
    padding: 10px;
    text-align: center;
    -webkit-text-decoration: none;
    text-decoration: none;
    text-transform: none;
    transform: translateX(-50%);
    white-space: normal;
    width: 220px
}

.omTooltip-icon:hover + .omTooltip-text, .omTooltip-icon:hover:after {
    display: block
}

@media (hover: hover) {
    .omTooltip:hover .omTooltip-icon:after, .omTooltip:hover .omTooltip-text {
        display: block
    }
}

@media (min-width: 480px)  {
    .omTooltip {
        position: relative
    }

    .omTooltip-text {
        margin-bottom: 15px
    }
}

@media (min-width: 480px)and (max-width: 1023px) {
    .omTooltip-text {
        left: -15px;
        transform: none
    }
}

#omForm .graphic-checkbox {
    display: none
}

#omForm .graphic-checkbox-label {
    display: inline-block;
    float: none;
    line-height: 20px;
    position: relative
}

#omForm .graphic-checkbox-label:before {
    background: url(https://cdn101.t.uk/resource/form/prod/products/4/paydayuk_form_simple/assets/icon-checkbox.png) 0 0 no-repeat;
    content: "";
    cursor: pointer;
    display: block;
    float: left;
    height: 20px;
    margin-right: 10px;
    width: 20px
}

#omForm .graphic-checkbox-label.is-checked:before {
    background-position: 0 100%
}

#omForm .omFlagInputBox.is-error {
    background-color: #fbe4e4
}

.qs-datepicker-container {
    background: #fff;
    border: 1px solid gray;
    border-radius: .263921875em;
    box-shadow: 0 1.25em 1.25em -.9375em #0000004d;
    color: #000;
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    font-size: 1rem;
    overflow: hidden;
    position: absolute;
    -webkit-user-select: none;
    user-select: none;
    width: 15.625em;
    z-index: 9001
}

.qs-datepicker-container * {
    box-sizing: border-box
}

.qs-centered {
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%)
}

.qs-hidden {
    display: none
}

.qs-overlay {
    background: #000000bf;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    left: 0;
    opacity: 1;
    padding: .5em;
    position: absolute;
    top: 0;
    transition: opacity .3s;
    width: 100%;
    z-index: 1
}

.qs-overlay.qs-hidden {
    opacity: 0;
    z-index: -1
}

.qs-overlay .qs-overlay-year {
    background: #0000;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    display: block;
    font-size: .875em;
    margin: 0 auto;
    padding: .25em 0;
    text-align: center;
    width: 80%
}

.qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
    -webkit-appearance: none
}

.qs-overlay .qs-close {
    cursor: pointer;
    padding: .5em;
    position: absolute;
    right: 0;
    top: 0
}

.qs-overlay .qs-submit {
    background: #80808066;
    border: 1px solid #fff;
    border-radius: .263921875em;
    cursor: pointer;
    margin: 0 auto auto;
    padding: .5em
}

.qs-overlay .qs-submit.qs-disabled {
    border-color: gray;
    color: gray;
    cursor: not-allowed
}

.qs-overlay .qs-overlay-month-container {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap
}

.qs-overlay .qs-overlay-month {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    opacity: .5;
    transition: opacity .15s;
    width: 33.33333%
}

.qs-overlay .qs-overlay-month.active, .qs-overlay .qs-overlay-month:hover {
    opacity: 1
}

.qs-controls {
    align-items: center;
    background: #d3d3d3;
    display: flex;
    filter: blur(0);
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: space-between;
    transition: filter .3s;
    width: 100%
}

.qs-controls.qs-blur {
    filter: blur(5px)
}

.qs-arrow {
    border-radius: .263921875em;
    cursor: pointer;
    height: 1.5625em;
    position: relative;
    transition: background .15s;
    width: 1.5625em
}

.qs-arrow:hover {
    background: #0000001a
}

.qs-arrow:hover.qs-left:after {
    border-right-color: #000
}

.qs-arrow:hover.qs-right:after {
    border-left-color: #000
}

.qs-arrow:after {
    border: .390625em solid #0000;
    content: "";
    position: absolute;
    top: 50%;
    transition: border .2s
}

.qs-arrow.qs-left:after {
    border-right-color: gray;
    right: 50%;
    transform: translate(25%, -50%)
}

.qs-arrow.qs-right:after {
    border-left-color: gray;
    left: 50%;
    transform: translate(-25%, -50%)
}

.qs-month-year {
    border-bottom: 1px solid #0000;
    font-weight: 700;
    transition: border .2s
}

.qs-month-year:not(.qs-disabled-year-overlay) {
    cursor: pointer
}

.qs-month-year:not(.qs-disabled-year-overlay):hover {
    border-bottom: 1px solid gray
}

.qs-month-year:active:focus, .qs-month-year:focus {
    outline: none
}

.qs-month {
    padding-right: .5ex
}

.qs-year {
    padding-left: .5ex
}

.qs-squares {
    display: flex;
    filter: blur(0);
    flex-wrap: wrap;
    padding: .3125em;
    transition: filter .3s
}

.qs-squares.qs-blur {
    filter: blur(5px)
}

.qs-square {
    align-items: center;
    border-radius: .263921875em;
    cursor: pointer;
    display: flex;
    height: 1.5625em;
    justify-content: center;
    transition: background .1s;
    width: 14.28571%
}

.qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
    background: orange
}

.qs-current {
    font-weight: 700;
    -webkit-text-decoration: underline;
    text-decoration: underline
}

.qs-active, .qs-range-end, .qs-range-start {
    background: #add8e6
}

.qs-range-start:not(.qs-range-6) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.qs-range-middle {
    background: #d4ebf2
}

.qs-range-middle:not(.qs-range-0):not(.qs-range-6) {
    border-radius: 0
}

.qs-range-middle.qs-range-0 {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.qs-range-end:not(.qs-range-0), .qs-range-middle.qs-range-6 {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.qs-disabled, .qs-outside-current-month {
    opacity: .2
}

.qs-disabled {
    cursor: not-allowed
}

.qs-day, .qs-empty {
    cursor: default
}

.qs-day {
    color: gray;
    font-weight: 700
}

.qs-event {
    position: relative
}

.qs-event:after {
    background: #07f;
    border-radius: 50%;
    bottom: 0;
    content: "";
    height: .46875em;
    position: absolute;
    right: 0;
    width: .46875em
}

.qs-datepicker {
    box-sizing: border-box;
    padding: 2px
}

.qs-datepicker-container {
    border: 0;
    border-radius: 4px;
    box-shadow: 0 2px 3px #0a0a0a1a, 0 0 0 1px #0a0a0a1a;
    font-family: inherit;
    width: 16rem
}

.qs-datepicker .qs-controls {
    background: none
}

.qs-datepicker .qs-arrow {
    border-radius: 3px;
    height: 2.5rem;
    transition: all .3s;
    width: 2.5rem
}

.qs-datepicker .qs-arrow:hover {
    background: #0000000d
}

.qs-datepicker .qs-month-year {
    align-items: center;
    border: 0;
    border-radius: 3px;
    display: flex;
    flex-grow: 1;
    height: 2.5rem;
    justify-content: center;
    padding-left: .5rem;
    padding-right: .5rem;
    transition: all .3s
}

.qs-datepicker .qs-month-year:hover {
    background: #0000000d;
    border: 0
}

.qs-datepicker .qs-squares {
    padding: 0
}

.qs-datepicker .qs-square {
    border-radius: 3px;
    height: 2.25rem;
    width: 2.25rem
}

.qs-datepicker .qs-square.qs-day {
    color: unset;
    font-size: .875em;
    height: 1.5rem
}

.qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
    background: #0000000d
}

.qs-datepicker .qs-active, .qs-datepicker .qs-range-end, .qs-datepicker .qs-range-start {
    background: #675284;
    color: #fff;
    font-weight: 700
}

.qs-datepicker .qs-overlay {
    background: #ffffff80;
    color: inherit
}

.qs-datepicker .qs-overlay .qs-overlay-year {
    border-color: inherit;
    color: inherit;
    font-size: inherit;
    height: 2.25rem
}

.qs-datepicker .qs-overlay .qs-overlay-year:focus {
    outline: none
}

.qs-datepicker .qs-overlay .qs-close {
    top: .25rem
}

.qs-datepicker .qs-overlay .qs-overlay-month-container {
    margin-bottom: .5rem;
    margin-top: .5rem
}

.qs-datepicker .qs-overlay .qs-submit {
    border: 0;
    border-radius: 3px;
    font-weight: 700;
    padding-left: .75rem;
    padding-right: .75rem
}

.qs-datepicker .qs-overlay .qs-submit:not(.qs-disabled) {
    background: #ab8dc0;
    background: linear-gradient(180deg, #ab8dc0, #7f6a9c);
    color: #fff
}

.qs-datepicker .qs-overlay .qs-submit.qs-disabled {
    color: inherit;
    opacity: .3
}

.omForm-dropdown-placeholder {
    position: relative
}

#omForm .omForm-dropdown {
    background-color: #fff;
    border: 1px solid #c3c3c3;
    border-radius: 3px;
    opacity: 0;
    position: absolute;
    transition: all .3s ease;
    visibility: hidden;
    width: 100%;
    z-index: 1000
}

#omForm .omForm-dropdown.is-opened {
    opacity: 1;
    visibility: visible
}

#omForm .omForm-dropdown__list {
    max-height: 300px;
    overflow-y: auto;
    padding: 5px 0
}

#omForm .omForm-dropdown__list-item {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 2px;
    padding: 2px 5px 2px 10px;
    -webkit-text-decoration: none;
    text-decoration: none;
    text-transform: uppercase
}

#omForm .omForm-dropdown__list-item:hover {
    background: #f0f0f0;
    -webkit-text-decoration: none;
    text-decoration: none
}

.omForm {
    color: #000;
    display: block;
    font-family: Open Sans, Helvetica, Arial, sans-serif
}

.omForm a, .omForm b, .omForm blockquote, .omForm fieldset, .omForm form, .omForm h1, .omForm h2, .omForm h3, .omForm h4, .omForm h5, .omForm h6, .omForm i, .omForm img, .omForm label, .omForm legend, .omForm li, .omForm ol, .omForm p, .omForm q, .omForm strong, .omForm sub, .omForm sup, .omForm table, .omForm tbody, .omForm td, .omForm tfoot, .omForm th, .omForm thead, .omForm tr, .omForm tt, .omForm ul {
    border: 0;
    font-size: 100%;
    font-style: normal;
    font-weight: 400;
    line-height: 1em;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: initial
}

.omForm h1, .omForm h2, .omForm h3, .omForm h4, .omForm h5, .omForm h6 {
    font-size: 100%;
    font-weight: 400
}

.omForm b, .omForm strong {
    font-weight: 600
}

.omForm table {
    border-collapse: collapse;
    border-spacing: 0
}

.omForm th {
    text-align: left
}

.omForm input, .omForm textarea {
    margin: 0;
    padding: 0
}

.omForm fieldset, .omForm img {
    border: 0
}

.omForm ol, .omForm ul {
    list-style: none
}

.omForm a {
    color: #69488b;
    -webkit-text-decoration: underline;
    text-decoration: underline
}

.omForm a:hover {
    -webkit-text-decoration: none;
    text-decoration: none
}

.omForm button {
    cursor: pointer;
    line-height: normal;
    overflow: visible;
    padding: 0;
    width: auto
}

.omForm button::-moz-focus-inner {
    border: 0;
    margin: -1px 0 0;
    padding: 0
}

.omForm button:active {
    box-shadow: inset 1px 1px 2px #0000004d
}

.omForm button, .omForm input, .omForm select, .omForm textarea {
    font-family: inherit
}

.omForm input[type=number] {
    -moz-appearance: textfield
}

.omForm input[type=number]::-webkit-inner-spin-button, .omForm input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.omForm [type=submit]::-moz-focus-inner, .omForm button::-moz-focus-inner {
    border: 0
}

.omForm .omFlagInputBox {
    padding: 5px
}

.omForm span.omHelp-block {
    display: block;
    font-size: 12px;
    line-height: 14px
}

.omForm span.omHelp-block.omError-span {
    color: #b94a48;
    margin-top: 5px
}

.omForm .clear {
    clear: both
}

.omForm .clearfix:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
    overflow: hidden
}

.omForm .container {
    margin: 0 auto;
    max-width: 868px;
    padding: 20px 0;
    width: 100%
}

.omForm {
    background: #fff;
    border-radius: 5px;
    color: #1f1f1f;
    display: none;
    font-size: 14px;
    padding: 30px;
    text-align: left
}

.omForm h1 {
    font-size: 36px;
    letter-spacing: -1px;
    line-height: 1.2em;
    margin: 0 0 20px;
    text-align: center
}

.omForm h1 a {
    font-weight: 700
}

.omForm .omLabel {
    display: block;
    font-weight: 600;
    line-height: 24px;
    padding-bottom: 5px;
    position: relative
}

.omForm .form-progress {
    margin-bottom: 40px;
    padding: 0 20px
}

.omForm .form-progress div {
    box-sizing: border-box;
    color: #cac0d1;
    float: left;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3em;
    min-height: 64px;
    padding: 13px 0 0 73px;
    position: relative;
    width: 33.33%
}

.omForm .form-progress div span {
    background: #fff;
    border: 5px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 3px #e9ddef;
    float: left;
    font-size: 24px;
    font-weight: 700;
    height: 54px;
    left: 0;
    line-height: 54px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 54px
}

.omForm .form-progress div.active {
    color: #69488b
}

.omForm .form-progress div.active span {
    background: #997cad;
    background: linear-gradient(180deg, #997cad 0, #665384);
    color: #fff;
    text-shadow: -1px -1px #00000080
}

.omForm .form-page {
    background: #fff;
    border: 1px solid #f6ebfd;
    border-radius: 3px;
    margin-bottom: 20px;
    padding: 0 15px 10px
}

.omForm .form-page-header {
    border-bottom: 1px solid #f6ebfd;
    color: #69488b;
    font-size: 13px;
    margin: 0 -15px 15px;
    padding: 10px 30px
}

.omForm .form-page-header strong {
    display: block;
    font-size: 20px;
    margin-bottom: 0
}

.omForm .form-page-header p {
    line-height: 1.3em
}

.omForm .form-page-item {
    box-sizing: border-box;
    float: left;
    padding: 0 10px 15px;
    width: 50%
}

.omForm .form-page-items-col3 .form-page-item {
    width: 33.33%
}

.omForm .form-page-item label {
    padding-left: 5px;
    padding-right: 5px
}

.omForm .form-input {
    box-sizing: border-box;
    padding: 0 5px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
}

.omForm .form-input.three-input {
    width: 33%;
    display: inline-block;
    float: left;
}

.omForm input[type=email].omInputText, .omForm input[type=number].omInputText, .omForm input[type=tel].omInputText, .omForm input[type=text].omInputText, .omForm select.birth_part, .omForm select.omInputText, .omForm select.part_select {
    border: 1px solid #dbe0e2;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 12px;
    height: 38px;
    padding: 8px 6px;
    width: 100%
}

.omForm input[type=email].omInputText:hover, .omForm input[type=number].omInputText:hover, .omForm input[type=tel].omInputText:hover, .omForm input[type=text].omInputText:hover, .omForm select.birth_part:hover, .omForm select.omInputText:hover, .omForm select.part_select:hover {
    border-color: #b4c2c8
}

.omForm input[type=email].omInputText:focus, .omForm input[type=number].omInputText:focus, .omForm input[type=tel].omInputText:focus, .omForm input[type=text].omInputText:focus, .omForm select.birth_part:focus, .omForm select.omInputText:focus, .omForm select.part_select:focus {
    border-color: #20b2ec;
    flex-wrap: wrap;
}

.omForm input[type=email].omInputText.is-success, .omForm input[type=number].omInputText.is-success, .omForm input[type=tel].omInputText.is-success, .omForm input[type=text].omInputText.is-success, .omForm select.birth_part.is-success, .omForm select.omInputText.is-success, .omForm select.part_select.is-success {
    border-color: #3cb581
}

.omForm input[type=email].omInputText.is-error, .omForm input[type=number].omInputText.is-error, .omForm input[type=tel].omInputText.is-error, .omForm input[type=text].omInputText.is-error, .omForm select.birth_part.is-error, .omForm select.omInputText.is-error, .omForm select.part_select.is-error {
    background-color: #ffdada;
    border-color: #e2c1c2
}

.omForm .form-page-items-col3:after {
    clear: both;
    content: "";
    display: block
}

.omForm .form-button {
    clear: both;
    padding-top: 30px;
    text-align: center
}

.omForm .btn {
    background: #987cad;
    background: linear-gradient(180deg, #987cad 0, #675284);
    border: 1px solid #675284;
    border-radius: 5px;
    box-shadow: 0 1px 4px #0003;
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    height: 70px;
    line-height: 40px;
    padding: 15px 40px;
    -webkit-text-decoration: none;
    text-decoration: none;
    text-shadow: -1px -1px 1px #0006;
    vertical-align: top
}

.omForm .btn:hover {
    background: #ab8dc0;
    background: linear-gradient(180deg, #ab8dc0 0, #7f6a9c);
    color: #fff
}

.omForm .btn:active {
    box-shadow: inset 2px 2px 4px #0000004d
}

.omForm .btn:disabled {
    background: #dbe0e2;
    border-color: #b4c2c8
}

.omForm .infoup {
    color: #69488b;
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-text-decoration: underline;
    text-decoration: underline
}

.omForm #omForm-postCode-control {
    font-size: 16px;
    height: 38px;
    line-height: normal;
    margin-top: 29px;
    padding: 0 20px
}

.omForm .searching_address {
    height: 38px;
    margin-left: 15px;
    vertical-align: top
}

#InputAddressWrapper {
    display: none;
    width: 100%
}

.omForm .form-footer {
    background: #fff;
    clear: both;
    padding: 10px
}

.omForm .form-footer div, .omForm .form-footer label, .omForm .form-footer span {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3em
}

#omForm .form-footer .omDataOD {
    line-height: 20px;
    padding: 0 5px
}

.omForm .form-footer a {
    display: inline-block
}

.omForm .footer-links {
    padding: 0 20px
}

.omForm .footer-links .footer-links-col {
    float: left;
    width: 33.33%
}

.omForm .footer-links a {
    box-sizing: border-box;
    display: block;
    font-weight: 700;
    line-height: 1.3em;
    padding-left: 45px;
    position: relative;
    -webkit-text-decoration: none;
    text-decoration: none
}

.omForm .footer-links a img {
    left: 0;
    position: absolute;
    top: 0
}

.omForm .footer-links a:hover {
    -webkit-text-decoration: underline;
    text-decoration: underline
}

.omForm .wide-col.form-page-item {
    width: 65% !important
}

.omForm .form_info {
    margin: 5px 0 10px 15px
}

.omForm label.radio_label {
    display: block;
    float: left;
    line-height: 28px;
    margin-right: 15px;
    padding: 0
}

.omForm label.radio_label input {
    margin-right: 5px
}

#vestigium label {
    padding: 5px 5px 5px 28px !important;
    width: auto
}

#vestigium label.vst-partner-form-label:after {
    height: 12px;
    margin: 0 7px 0 -8px;
    width: 7px
}

#vestigium label.vst-partner-form-label:before {
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 5px;
    height: 22px;
    left: 0;
    top: 10px;
    width: 22px
}

@media (max-width: 1023px) {
    .omForm .container {
        padding: 0;
        width: 100%
    }

    .omForm {
        border-radius: 0;
        padding: 10px
    }

    .omForm h1 {
        font-size: 30px
    }

    .omForm .form-field-3col .form-input, .omForm .form-page-item, .omForm .form-page-items-col3 .form-page-item, .omForm .omInputText-medium {
        width: 100%
    }

    .omForm .form-field-3col .form-input {
        padding-bottom: 10px
    }

    .omForm .form-page-item {
        padding-left: 0;
        padding-right: 0
    }

    .omForm .form-page-header {
        padding: 10px 20px
    }

    .omForm .form-page-header strong {
        font-size: 16px
    }

    .omForm .form-footer {
        padding: 0 0 20px
    }

    .omForm .form-progress {
        margin-bottom: 20px;
        padding: 0
    }

    .omForm .form-progress div {
        margin-bottom: 10px;
        width: 100%
    }

    .omForm .footer-links .footer-links-col {
        margin-bottom: 20px;
        padding-top: 10px;
        width: 100%
    }

    .omForm .footer-links .footer-links-col img {
        top: -10px
    }

    .omForm .footer-links .footer-links-col br {
        display: none
    }

    .omForm .wide-col.form-page-item {
        width: 100% !important
    }

    #omForm .form_info {
        margin-left: 5px !important
    }

    .omForm #omForm-postCode-control {
        margin-top: 0
    }
}

@media (max-width: 750px) {
    .half_fields .form-field {
        float: left;
        margin-bottom: 8px;
        width: 100%
    }
}

@media (max-width: 600px) {
    #vestigium.vst-partner-form-container .vst-partner-form-badge {
        bottom: 0;
        left: 0;
        margin-top: 5px;
        position: relative;
        top: 0
    }

    #vestigium label.vst-partner-form-label:after {
        left: 19px;
        top: 18px
    }
}

@import url(https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&display=swap);
.om-custom-loader {
    background: #fff;
    display: none;
    overflow: hidden;
    width: 100%
}

.om-custom-loader__container {
    align-items: center;
    display: flex;
    min-height: 400px
}

.om-custom-loader__frame {
    border: 0;
    display: block;
    margin: 0;
    min-height: 0;
    opacity: 0;
    padding: 0;
    width: 100vw
}

.omErrorPage {
    display: none;
    font-family: sans-serif;
    text-align: center
}

.omErrorPage, .omErrorPage *, .omErrorPage :after, .omErrorPage :before, .omErrorPage__inner {
    box-sizing: border-box
}

.omErrorPage__inner {
    align-items: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    min-height: 100vh;
    padding: 40px 20px;
    width: 100%
}

.omErrorPage__header {
    font-size: 16px;
    text-align: center
}

.omErrorPage__header:not(:empty) {
    margin-bottom: 20px
}

@media (min-width: 768px) {
    .omErrorPage__header {
        font-size: 24px
    }

}

.omErrorPage__main {
    font-size: 24px;
    text-align: center
}

@media (min-width: 768px) {
    .omErrorPage__main {
        font-size: 36px
    }
}

.omErrorPage__footer {
    text-align: center
}

.omErrorPage__footer:not(:empty) {
    margin-top: 15px
}

.omThankYouPage {
    display: none;
    font-family: sans-serif;
    text-align: center
}

.omThankYouPage, .omThankYouPage *, .omThankYouPage :after, .omThankYouPage :before {
    box-sizing: border-box
}

.omThankYouPage__inner {
    align-items: center;
    background: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    min-height: 100vh;
    padding: 40px 20px;
    width: 100%
}

.omThankYouPage__header {
    font-size: 16px;
    text-align: center
}

.omThankYouPage__header:not(:empty) {
    margin-bottom: 20px
}

@media (min-width: 768px) {
    .omThankYouPage__header {
        font-size: 24px
    }
}

.omThankYouPage__main {
    font-size: 24px;
    text-align: center
}

@media (min-width: 768px) {
    .omThankYouPage__main {
        font-size: 36px
    }
}

.omThankYouPage__footer {
    text-align: center
}

.omThankYouPage__footer:not(:empty) {
    margin-top: 15px
}

.omThankYouPage__button {
    display: none;
    margin: 15px auto 0;
    position: relative
}

.omThankYouPage__button, .omThankYouPage__button:hover {
    -webkit-text-decoration: none;
    text-decoration: none
}

.om-post-animation {
    display: none;
    font-family: sans-serif;
    text-align: center
}

.om-post-animation, .om-post-animation *, .om-post-animation :after, .om-post-animation :before {
    box-sizing: border-box
}

.om-post-animation__progress {
    align-items: center;
    background-color: #fff;
    border-radius: 4px;
    color: #4c4c4c;
    display: flex;
    font-weight: 700;
    height: 3rem;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative
}

.om-post-animation__progress:before {
    background-color: #0dcd85;
    border-radius: 4px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0
}

@media (min-width: 768px) {
    .om-post-animation__progress {
        height: 4rem
    }

    .om-post-animation__progress--large {
        border-radius: 6px;
        font-size: 2.7rem;
        height: 5rem
    }

    .om-post-animation__progress--large:before {
        border-radius: 6px
    }
}

.om-post-animation__progress-text {
    position: relative
}

.om-post-animation__progress--blue:before {
    background-color: #0d90cd
}

.om-post-animation.is-active .om-post-animation__progress:before {
    animation: omProgressWidth 180s infinite
}

.om-post-animation__loader {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 700;
    height: 220px;
    justify-content: center;
    margin: 2rem auto 0;
    position: relative;
    width: 220px
}

@media (min-width: 768px) {
    .om-post-animation__loader {
        height: 260px;
        width: 260px
    }
}

.om-post-animation__loader-holder {
    border: 20px solid;
    border-radius: 50%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.om-post-animation__loader-holder:before {
    background-color: #fff;
    border-radius: 100%;
    content: "";
    height: 0;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateX(50%);
    transition: all .3s;
    width: 0
}

.om-post-animation.is-active .om-post-animation__loader-holder {
    animation: omRotate 1.3s linear infinite
}

.om-post-animation.is-active .om-post-animation__loader-holder:before {
    height: 64px;
    width: 64px
}

@media (min-width: 768px) {
    .om-post-animation.is-active .om-post-animation__loader-holder:before {
        height: 94px;
        width: 94px
    }
}

.om-post-animation__frame {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%
}

.om-post-animation--default {
    background-color: #e1f7f7;
    color: #000
}

.om-post-animation--default .om-post-animation__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    padding: 2rem 1rem;
    text-transform: uppercase
}

@media (min-width: 768px) {
    .om-post-animation--default .om-post-animation__content {
        padding-bottom: 4rem;
        padding-top: 4rem
    }
}

.om-post-animation--default .om-post-animation__content-title {
    color: #366664;
    font-family: Ultra, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: none
}

@media (min-width: 768px) {
    .om-post-animation--default .om-post-animation__content-title {
        font-size: 3rem;
        margin-bottom: 2rem
    }
}

.om-post-animation--default .om-post-animation__content-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1
}

@media (min-width: 768px) {
    .om-post-animation--default .om-post-animation__content-subtitle {
        font-size: 2rem
    }
}

.om-post-animation--default .om-post-animation__content-image {
    margin: 1.5rem 0;
    max-height: 25vh
}

@media (min-width: 768px) {
    .om-post-animation--default .om-post-animation__content-image {
        margin: 3rem 0;
        max-height: none
    }
}

.om-post-animation--default .om-post-animation__content-note {
    font-weight: 700
}

@media (min-width: 768px) {
    .om-post-animation--default .om-post-animation__content-note {
        font-size: 1.5rem
    }
}

.om-post-animation--default .om-post-animation__footer {
    background-color: #d4e8e8;
    color: #366664;
    padding: 2rem 1rem;
    text-transform: uppercase
}

.om-post-animation--default .om-post-animation__footer-title {
    font-family: Ultra, serif
}

@media (min-width: 768px) {
    .om-post-animation--default .om-post-animation__footer {
        font-size: 1.4rem;
        padding: 2rem
    }
}

.om-post-animation--1 {
    background-color: #fff;
    color: #403f3f
}

.om-post-animation--1 .om-post-animation__header {
    background-color: #e25151;
    color: #fff;
    font-size: 1.5rem;
    padding: 1.25rem 1.5rem
}

@media (min-width: 768px) {
    .om-post-animation--1 .om-post-animation__header {
        font-size: 2rem
    }
}

.om-post-animation--1 .om-post-animation__content {
    align-items: center;
    border: 10px solid #22bbe9;
    border-top: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-around;
    padding: 3rem 1rem
}

.om-post-animation--1 .om-post-animation__content-title {
    color: #2aa75c;
    font-size: 2rem;
    font-weight: 700
}

@media (min-width: 768px) {
    .om-post-animation--1 .om-post-animation__content-title {
        font-size: 3rem
    }
}

.om-post-animation--1 .om-post-animation__content-image {
    margin: 2rem 0;
    max-height: 25vh
}

@media (min-width: 768px) {
    .om-post-animation--1 .om-post-animation__content-image {
        margin: 3rem 0;
        max-height: none
    }
}

.om-post-animation--1 .om-post-animation__content-text {
    font-size: 1.5rem
}

@media (min-width: 768px) {
    .om-post-animation--1 .om-post-animation__content-text {
        font-size: 2rem
    }
}

.om-post-animation--2 {
    background-color: #4c4c4c;
    color: #fff;
    font-size: 1.5rem;
    font-style: italic
}

@media (min-width: 768px) {
    .om-post-animation--2 {
        font-size: 2rem
    }
}

.om-post-animation--2 .om-post-animation__frame {
    justify-content: space-around;
    margin: 0 auto;
    max-width: 1200px;
    padding: 2rem 1rem
}

@media (min-width: 768px) {
    .om-post-animation--2 .om-post-animation__frame {
        padding: 4rem 2rem
    }
}

.om-post-animation--2 .om-post-animation__header {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem
}

@media (min-width: 768px) {
    .om-post-animation--2 .om-post-animation__header {
        font-size: 3.25rem
    }
}

.om-post-animation--2 .om-post-animation__note {
    background-color: #e25151;
    font-weight: 700;
    margin-bottom: 2rem;
    padding: 1rem
}

@media (min-width: 768px) {
    .om-post-animation--2 .om-post-animation__note {
        padding: 2rem 2.5rem
    }
}

.om-post-animation--2 .om-post-animation__content {
    margin-bottom: 2rem
}

.om-post-animation--2 .om-post-animation__footer {
    font-weight: 700
}

.om-post-animation--3 {
    background-color: #fff;
    box-shadow: inset 0 0 0 10px #82ca9c;
    color: #000;
    font-size: 1.5rem
}

@media (min-width: 768px) {
    .om-post-animation--3 {
        box-shadow: inset 0 0 0 20px #82ca9c;
        font-size: 2rem
    }
}

.om-post-animation--3 .om-post-animation__frame {
    justify-content: space-around;
    margin: 0 auto;
    max-width: 1200px;
    padding: 2.5rem 1.5rem
}

@media (min-width: 768px) {
    .om-post-animation--3 .om-post-animation__frame {
        padding: 4rem 2rem
    }
}

.om-post-animation--3 .om-post-animation__header {
    font-size: 2rem;
    font-style: italic;
    font-weight: 700;
    margin: 0 auto 2rem;
    max-width: 900px
}

@media (min-width: 768px) {
    .om-post-animation--3 .om-post-animation__header {
        font-size: 3rem
    }
}

.om-post-animation--3 .om-post-animation__note {
    border: 2px solid;
    color: #e25151;
    font-weight: 700;
    margin-bottom: 2rem;
    padding: 1rem
}

@media (min-width: 768px) {
    .om-post-animation--3 .om-post-animation__note {
        padding: 2rem
    }
}

.om-post-animation--3 .om-post-animation__timer {
    align-items: center;
    color: #2a2a2a;
    display: flex;
    font-size: 4rem;
    font-weight: 700;
    justify-content: center;
    margin-bottom: 2rem
}

@media (min-width: 768px) {
    .om-post-animation--3 .om-post-animation__timer {
        font-size: 6.25rem
    }
}

.om-post-animation--3 .om-post-animation__timer-group {
    display: flex
}

.om-post-animation--3 .om-post-animation__timer-item {
    align-items: center;
    background: #9d9d9d;
    background: linear-gradient(180deg, #fff, #9d9d9d);
    border: 1px solid #bababa;
    border-radius: .5rem;
    display: flex;
    height: 5rem;
    justify-content: center;
    margin-right: .5rem;
    width: 3.25rem
}

.om-post-animation--3 .om-post-animation__timer-item:last-child {
    margin-right: 0
}

@media (min-width: 768px) {
    .om-post-animation--3 .om-post-animation__timer-item {
        height: 8.75rem;
        margin-right: 1rem;
        width: 7rem
    }
}

.om-post-animation--3 .om-post-animation__timer-separator {
    margin: 0 .5rem
}

@media (min-width: 768px) {
    .om-post-animation--3 .om-post-animation__timer-separator {
        margin: 0 1rem
    }
}

.om-post-animation--3 .om-post-animation__footer {
    margin-top: 2rem
}

.om-post-animation--3 .om-post-animation__footer-title {
    color: #fd5353;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 1rem
}

@media (min-width: 768px) {
    .om-post-animation--3 .om-post-animation__footer-title {
        margin-bottom: 2rem
    }
}

.om-post-animation--4 {
    background-color: #77c8b0;
    color: #000;
    font-size: 1.5rem
}

@media (min-width: 768px) {
    .om-post-animation--4 {
        font-size: 2rem
    }
}

.om-post-animation--4 .om-post-animation__frame {
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 2rem 1rem
}

@media (min-width: 768px) {
    .om-post-animation--4 .om-post-animation__frame {
        padding: 2.5rem
    }
}

.om-post-animation--4 .om-post-animation__note {
    background-color: #e25151;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2rem;
    padding: 1rem
}

@media (min-width: 768px) {
    .om-post-animation--4 .om-post-animation__note {
        padding: 2rem
    }
}

.om-post-animation--4 .om-post-animation__content {
    font-style: italic;
    font-weight: 700;
    margin-bottom: 2rem
}

.om-post-animation--4 .om-post-animation__content-title {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase
}

@media (min-width: 768px) {
    .om-post-animation--4 .om-post-animation__content-title {
        font-size: 2.5rem
    }
}

.om-post-animation--5 {
    background-color: #dcdcdc;
    color: #000;
    font-size: 1.5rem;
    font-weight: 700
}

@media (min-width: 768px) {
    .om-post-animation--5 {
        font-size: 2rem
    }
}

.om-post-animation--5 .om-post-animation__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    padding: 2rem 1rem
}

@media (min-width: 768px) {
    .om-post-animation--5 .om-post-animation__content {
        padding: 3rem 2rem
    }
}

.om-post-animation--5 .om-post-animation__content-title {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 1.5em
}

@media (min-width: 768px) {
    .om-post-animation--5 .om-post-animation__content-title {
        font-size: 2.5rem
    }
}

.om-post-animation--5 .om-post-animation__content-note {
    color: #e25151;
    font-style: italic
}

.om-post-animation--5 .om-post-animation__progress {
    margin: 2rem auto;
    max-width: 1200px;
    width: 100%
}

@media (min-width: 768px) {
    .om-post-animation--5 .om-post-animation__progress {
        margin: 4rem auto
    }
}

.om-post-animation--5 .om-post-animation__footer {
    background-color: #e25151;
    color: #fff;
    margin-top: auto;
    padding: 1rem
}

@media (min-width: 768px) {
    .om-post-animation--5 .om-post-animation__footer {
        font-size: 2.5rem;
        padding: 2rem 1rem
    }
}

.om-post-animation--6 .om-post-animation__frame {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    min-height: 100vh;
    width: 100%
}

.om-post-animation--6 .om-post-animation__content {
    padding: 48px 24px
}

.om-post-animation--6 .om-post-animation__content-image {
    margin: 0 auto 37px
}

.om-post-animation--6 .om-post-animation__content-title {
    color: #26262d;
    font-family: Nunito Sans, sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 30px;
    margin-bottom: 10px
}

.om-post-animation--6 .om-post-animation__content-title_2, .om-post-animation--6 .om-post-animation__content-title_3 {
    display: none
}

.om-post-animation--6 .om-post-animation__content-note {
    color: #26262d;
    font-family: Nunito Sans, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px
}

.om-post-animation--6 .om-waiting-page__loader {
    height: 98px;
    margin: 0 auto;
    position: relative;
    width: 98px
}

.om-post-animation--6 .om-waiting-page__loader .om-waiting-page__loader-item {
    animation: omColorAnimation1 10s 2s infinite;
    background-color: #fff0d6;
    border-radius: 50%;
    height: 22px;
    left: 0;
    position: absolute;
    top: 0;
    transform: translate(36px, 36px);
    transition: all 1s;
    width: 22px
}

.om-post-animation--6 .om-waiting-page__loader .om-waiting-page__loader-item_1 {
    animation: omAnimation1 10s 1s infinite, omColorAnimation1 10s 2s infinite
}

.om-post-animation--6 .om-waiting-page__loader .om-waiting-page__loader-item_2 {
    animation: omAnimation1 10s 2s infinite, omColorAnimation1 10s 2s infinite
}

.om-post-animation--6 .om-waiting-page__loader .om-waiting-page__loader-item_3 {
    animation: omAnimation1 10s 3s infinite, omColorAnimation1 10s 2s infinite
}

.om-post-animation--6 .om-waiting-page__loader .om-waiting-page__loader-item_4 {
    animation: omAnimation1 10s 4s infinite, omColorAnimation1 10s 2s infinite
}

.om-post-animation--6 .om-waiting-page__sold-loader {
    display: none;
    height: 243px;
    margin: 0 auto;
    position: relative;
    width: 244px
}

.om-post-animation--6 .om-waiting-page__sold-loader .om-waiting-page__sold-loader-item {
    left: 0;
    position: absolute;
    top: 0;
    transition: all
}

.om-post-animation--6 .om-waiting-page__sold-loader .om-waiting-page__sold-loader-item_1 {
    animation: omSoldLoaderAnimationScale .3s, omSoldLoaderAnimationMove2 .15s .6s forwards, omOpacityHide .5s .75s forwards, omSoldLoaderAnimationScale .5s .75s reverse forwards
}

.om-post-animation--6 .om-waiting-page__sold-loader .om-waiting-page__sold-loader-item_2 {
    animation: omSoldLoaderAnimationScale .3s, omSoldLoaderAnimationMove .4s .3s forwards, omOpacityHide .3s .75s forwards, omSoldLoaderAnimationScale .5s .75s reverse forwards
}

.om-post-animation--6 .om-waiting-page__sold-loader .om-waiting-page__sold-loader-item_3 {
    animation: omOpacityHide .4s .7s reverse forwards;
    left: 40px;
    opacity: 0;
    top: 20px
}

@keyframes omProgressWidth {
    0% {
        width: 0
    }
    to {
        width: 100%
    }
}

@keyframes omRotate {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

@keyframes omAnimation1 {
    10% {
        transform: translate(76px)
    }
    20% {
        transform: translate(76px, 76px)
    }
    30% {
        transform: translateY(76px)
    }
    40% {
        transform: translate(0)
    }
    50% {
        transform: translate(38px, 38px)
    }
}

@keyframes omColorAnimation1 {
    20% {
        background-color: #ffda9b
    }
    40% {
        background-color: #ffc700
    }
    50% {
        background-color: #ffda9b
    }
    70% {
        background-color: #fff0d6
    }
}

@keyframes omSoldLoaderAnimationScale {
    0% {
        transform: scale(.2)
    }
    to {
        transform: scale(1)
    }
}

@keyframes omSoldLoaderAnimationMove {
    0% {
        transform: translate(-9px, -4px)
    }
    to {
        transform: translate(-9px, -4px) rotate(-77deg)
    }
}

@keyframes omSoldLoaderAnimationMove2 {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(35deg)
    }
}

@keyframes omOpacityHide {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

#omInterstitial {
    color: #000;
    display: none;
    font-family: Oxygen, sans-serif;
    font-size: 16px;
    padding: 15px;
    text-align: center
}

#omInterstitial, #omInterstitial *, #omInterstitial :after, #omInterstitial :before, #omInterstitial:after, #omInterstitial:before {
    box-sizing: border-box
}

#omInterstitial .omInterstitial-content {
    margin: 0 auto;
    max-width: 550px;
    width: 100%
}

#omInterstitial .omInterstitial-top {
    font-size: 14px;
    font-weight: 700
}

#omInterstitial .omInterstitial-header {
    color: #366664;
    font-family: Patua One, serif;
    margin-bottom: 20px
}

#omInterstitial .omInterstitial-header__title {
    font-size: 32px;
    font-weight: 400
}

#omInterstitial .omInterstitial-header__description {
    font-size: 21px;
    font-weight: 400
}

#omInterstitial .omInterstitial-item {
    margin-bottom: 20px
}

#omInterstitial .omInterstitial-field {
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    font-family: Oxygen, sans-serif;
    font-size: 21px;
    padding: 12px
}

#omInterstitial .omInterstitial-field:focus {
    outline: none
}

#omInterstitial .omInterstitial-field_select {
    -webkit-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31' height='21' fill-rule='evenodd'%3E%3Cpath d='M10.5 0C16.3 0 21 4.7 21 10.5S16.3 21 10.5 21 0 16.3 0 10.5 4.7 0 10.5 0zm0 16-6-8h12l-6 8z'/%3E%3C/svg%3E") no-repeat 100% #fff;
    padding-right: 40px
}

#omInterstitial .omInterstitial-field_select:hover {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31' height='21' fill-rule='evenodd'%3E%3Cpath fill='%23888' d='M10.5 0C16.3 0 21 4.7 21 10.5S16.3 21 10.5 21 0 16.3 0 10.5 4.7 0 10.5 0zm0 16-6-8h12l-6 8z'/%3E%3C/svg%3E") no-repeat 100% #fff
}

#omInterstitial .omInterstitial-button {
    background-color: #366664;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Oxygen, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    padding: 15px 40px;
    text-transform: uppercase;
    -webkit-user-select: none;
    user-select: none;
    vertical-align: top
}

#omInterstitial .omInterstitial-button:focus, #omInterstitial .omInterstitial-button:hover {
    background-color: #000;
    outline: none
}

#omInterstitial .omInterstitial-bottom {
    font-size: 12px;
    line-height: 14px;
    margin: 20px auto 0;
    max-width: 500px;
    text-align: justify;
    width: 100%
}

#omInterstitial .omError-span {
    color: red;
    display: block;
    font-size: 12px;
    margin-top: 5px
}

@media (min-width: 768px) {
    #omInterstitial {
        padding-bottom: 40px;
        padding-top: 40px
    }

    #omInterstitial .omInterstitial-bottom {
        margin-top: 40px
    }
}

