/* ========================================================================
   Component: Base
 ========================================================================== */
@font-face{
    font-family:"SangBleuSunrise-Light-WebXL";
    font-display: auto;
    src: url("fonts/SangBleuSunrise-Light-WebXL.woff") format("woff");
    font-style: normal;
    font-weight: normal;
}
@font-face{
    font-family:"SangBleuSunrise-Regular-WebXL";
    font-display: auto;
    src: url("fonts/SangBleuSunrise-Regular-WebXL.woff") format("woff");
    font-style: normal;
    font-weight: normal;
}
:root {
    /* -- fonts -- */
    --sb-light: "SangBleuSunrise-Light-WebXL", serif;
    --sb-reg: "SangBleuSunrise-Regular-WebXL", serif;

    /* -- letter-spacing -- */
    --ls-small: -0.01em;
    --ls-large: 0.03em;

    /* -- weights -- */
    --text-normal: 400;
    --text-bold: 600;

    /* -- colours -- */
    --main-color: #0F0F0F;
    --primary-color: #E31E24;
    --hover-color: #C80B11;
    --active-color: #A60005;
    --muted-color:#757575;
    --light-color: #F4F4F4;
    --border-color: #E1E1E1;
    --contrast-color: white;
    --danger-color: #f0506e;
    --warning-color: #faa05a;
    --success-color: #32d296;

    /* -- breakpoints -- */
    --uk-breakpoint-s: 640px;
    --uk-breakpoint-m: 960px;
    --uk-breakpoint-l: 1200px;
    --uk-breakpoint-xl: 1600px;

    /* -- transitions -- */
    --transition-small: 0.15s ease-in;
    --transition-large: 0.35s ease-in;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

    font-size: 14px;
    font-weight: var(--text-normal);
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background: var(--contrast-color);
    color: var(--main-color);
    letter-spacing:  var(--ls-small);
}
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
}
@media (max-width: 1200px){
    body {
        padding-bottom:3.5rem;
    }
}
.uk-container iframe {
    width: 100%;
    max-width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}
#crossdomain-frame1, #crossdomain-frame2 {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
}
::selection {
    background: var(--primary-color);
    color: var(--contrast-color);
    text-shadow: none;
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0,0,0,0.1);
}
::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background: rgba(0,0,0,0.2);
}
::-webkit-scrollbar-thumb:hover{
    background: rgba(0,0,0,0.4);
}
::-webkit-scrollbar-thumb:active{
    background: rgba(0,0,0,.9);
}
.uk-overflow-scroll {
    width: 100%;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}
.uk-overflow-scroll::-webkit-scrollbar {
    display: none;
}

/* Text
 ========================================================================== */
a:active,
a:hover,
button:focus,
button:active{
    outline: none;
}
a:not([class]) {
    color: inherit;
    font-weight: var(--text-bold);
    text-decoration: underline;
    cursor: pointer;
    transition: var(--transition-small);
    transition-property: color;
    letter-spacing: var(--ls-large);
}
a:not([class]):hover {
    color: var(--hover-color);
}
a:not([class]):focus {
    color: var(--primary-color);
}
.uk-link-reset, .uk-link-reset:hover, .uk-link-reset:active {
    color: inherit !important;
    text-decoration: none !important;
}
.uk-hover {
    transition: var(--transition-small);
}
.uk-hover:hover {
    color: var(--hover-color) !important;
}
.uk-hover:focus {
    color: var(--primary-color);
}
b,
strong {
    font-weight: var(--text-bold);
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
pre {
    font: 0.875rem / 1.5 Consolas, monaco, monospace;
    color: #666;
    -moz-tab-size: 4;
    tab-size: 4;
    overflow: auto;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    background: #fff;
}
pre code {
    font-family: Consolas, monaco, monospace;
}
.uk-text-smaller {
    font-size: 0.875rem;
}
.uk-text-small {
    font-size: 0.75rem;
    line-height: 1.33;
    letter-spacing: -0.01em;
}
.uk-text-large {
    font-size: 1.5rem;
}
.uk-text-default {
    font-size: 1rem;
    line-height: 1.5;
}
.uk-text-normal {
    font-weight: var(--text-normal);
}
.uk-text-bold {
    font-weight: var(--text-bold);
}
.uk-text-capitalize {
    text-transform: capitalize !important;
}
.uk-text-uppercase {
    text-transform: uppercase !important;
}
.uk-text-lowercase {
    text-transform: lowercase !important;
}
.uk-text-decoration-none {
    text-decoration: none !important;
}
.uk-text-muted {
    color: var(--muted-color) !important;
}
.uk-text-primary {
    color: var(--primary-color) !important;
}
.uk-text-secondary {
    color: var(--main-color) !important;
}
.uk-text-nowrap {
    white-space: nowrap;
}
.uk-text-reset {
    font-family: "Inter",-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: var(--text-normal);
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    letter-spacing: var(--ls-small);
}
.uk-text-truncate {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.uk-text-left {
    text-align: left !important;
}
.uk-text-right {
    text-align: right !important;
}
.uk-text-center {
    text-align: center !important;
}
.uk-text-justify {
    text-align: justify !important;
}
.uk-label {
    display: inline-block;
    line-height: 1.5;
    font-size: 0.875rem;
    vertical-align: middle;
    white-space: nowrap;
    text-transform: uppercase;
    background: var(--primary-color);
    color: var(--contrast-color);
    font-weight: 600;
    border-radius: 6px;
    padding: 2px 8px;
}
.uk-quote-sign {
    font-size: 5rem;
    line-height: 1.25rem;
    position: absolute;
    top: 1.125rem;
    height: 1.25rem;
    font-family: 'SangBleuSunrise-Light-WebXL', sans-serif;
}
.uk-quote-sign + div {
    text-indent: 8rem;
}
.uk-text-quote {
    position: relative;
}
@media (min-width: 1200px) {
    .uk-text-quote::before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;
        width: 32px;
        border-top: 1px solid #757575;
        margin-left: -48px;
        margin-top: 10px;
    }
}

@media (min-width: 640px) {
    .uk-text-left\@s {
        text-align: left !important;
    }
    .uk-text-right\@s {
        text-align: right !important;
    }
    .uk-text-center\@s {
        text-align: center !important;
    }
}
@media (min-width: 960px) {
    .uk-text-left\@m {
        text-align: left !important;
    }
    .uk-text-right\@m {
        text-align: right !important;
    }
    .uk-text-center\@m {
        text-align: center !important;
    }
}
@media (min-width: 1200px) {
    .uk-text-left\@l {
        text-align: left !important;
    }
    .uk-text-right\@l {
        text-align: right !important;
    }
    .uk-text-center\@l {
        text-align: center !important;
    }
}
@media (min-width: 1600px) {
    .uk-text-left\@xl {
        text-align: left !important;
    }
    .uk-text-right\@xl {
        text-align: right !important;
    }
    .uk-text-center\@xl {
        text-align: center !important;
    }
}
@media (max-width: 1220px) {
    .br\@m {
        display: none;
    }
}
.uk-blockquote {
    border-left: 2px solid #E31E24;
    padding-left: 1.5rem;
}
/* Embedded content
 ========================================================================== */
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}
canvas,
img,
video {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}
@supports (display: block) {
    svg {
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }
}
svg:not(:root) {
    overflow: hidden;
}
img:not([src]) {
    min-width: 1px;
    visibility: hidden;
}
iframe {
    border: 0;
}
.uk-detail-text img {
    border-radius: 1rem;
}
/* HTML 5 content
 ========================================================================== */
address {
    font-style: normal;
}
details,
main {
    display: block;
}
summary {
    display: list-item;
}
template {
    display: none;
}

/* Block elements
 ========================================================================== */
p,
ul,
ol,
dl,
pre,
address,
fieldset {
    margin: 0 0 1.5rem 0;
}
figure, img {
    margin: 0 0 2rem 0;
}
* + p,
* + ul,
* + ol,
* + dl,
* + pre,
* + address,
* + fieldset,
* + figure {
    margin-top: 1.5rem;
}
* + figure,
* + img,
hr {
    overflow: visible;
    text-align: inherit;
    margin: 0 0 2rem 0;
    border: 0;
    border-top: 1px solid var(--border-color);
}
* + hr {
    margin-top: 2rem;
}
/* Headings
 ========================================================================== */
h1,
.uk-h1,
h2,
.uk-h2,
h3,
.uk-h3,
h4,
.uk-h4,
h5,
.uk-h5,
h6,
.uk-h6,
.uk-heading-small,
.uk-heading-medium,
.uk-heading-large,
.uk-heading-xlarge {
    line-height: 1.2;
    margin: 0 0 2rem 0;
    font-weight: var(--text-normal);
    color: var(--main-color);
    text-transform: none;
    letter-spacing: normal;
}
h5,
.uk-h5,
h6,
.uk-h6,
.uk-heading-small,
.uk-heading-medium,
.uk-heading-large {
    font-family: var(--sb-reg);
    letter-spacing: normal;
}

* + h1,
* + .uk-h1,
* + h2,
* + .uk-h2,
* + h3,
* + .uk-h3,
* + h4,
* + .uk-h4,
* + h5,
* + .uk-h5,
* + h6,
* + .uk-h6,
* + .uk-heading-small,
* + .uk-heading-medium,
* + .uk-heading-large,
* + .uk-heading-xlarge,
* + .uk-heading-2xlarge {
    margin-top: 2.5rem;
}

@media (min-width: 1200px) {
    * + h1,
    * + .uk-h1,
    * + h2,
    * + .uk-h2,
    * + h3,
    * + .uk-h3,
    * + h4,
    * + .uk-h4,
    * + h5,
    * + .uk-h5,
    * + h6,
    * + .uk-h6,
    * + .uk-heading-small,
    * + .uk-heading-medium,
    * + .uk-heading-large,
    * + .uk-heading-xlarge,
    * + .uk-heading-2xlarge {
        margin-top: 5rem;
    }
}
h1,
.uk-h1,
h2,
.uk-h2,
h3,
.uk-h3,
h4,
.uk-h4,
.uk-heading-xlarge {
    font-family: var(--sb-light);
}

h1,
.uk-h1,
h2,
.uk-h2,
h3,
.uk-h3 {
    font-size: 2rem;
}
h4,
.uk-h4,
h5,
.uk-h5,
h6,
.uk-h6 {
    font-size: 1.25rem;
}


.uk-heading-xlarge,
.uk-heading-large,
.uk-heading-medium,
.uk-heading-small {
    line-height: 1.2;
}
.uk-heading-xlarge {
    font-size: 1.5rem;
}
.uk-heading-large, .uk-heading-medium {
    font-size: 1.12rem;
}
.uk-heading-small {
    font-size: 0.875rem;
}
@media (min-width: 1200px) {
    h1,
    .uk-h1 {
        font-size: 6rem;
        line-height: 6.5rem;
    }
    h2,
    .uk-h2 {
        font-size: 4rem;
        line-height: 4.25rem;
    }
    h2.uk-text-uppercase,
    .uk-h2.uk-text-uppercase {
        line-height: 1;
    }
    h3,
    .uk-h3 {
        font-size: 3.5rem;
        line-height: 3.25rem;
    }
    h4,
    .uk-h4 {
        font-size: 3.2rem;
        line-height: 3.8rem;
    }
    h5,
    .uk-h5 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
    h6,
    .uk-h6 {
        font-size: 1.5rem;
        line-height: 1.75rem;
    }
    .uk-heading-xlarge {
        font-size: 2.5rem;
    }
    .uk-heading-large {
        font-size: 1.5rem;
    }
    .uk-heading-medium {
        font-size: 1.25rem;
    }
    .uk-heading-small {
        font-size: 0.875rem;
    }
}

.uk-heading-divider {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

/* List
 ========================================================================== */
ul:not([class]),
ol:not([class]) {
    padding-left: 1.8rem;
}
@media (min-width: 1200px) {
    ul:not([class]),
    ol:not([class]) {
        padding-left: 3.125rem;
    }
    ol:not([class]) li::marker {
        width: 1.5rem;
    }
}
ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
    margin: 0;
}
ul:not([class]) li + li,
ol:not([class]) li + li {
    margin-top: 1rem;
}
.uk-list {
    padding: 0;
    list-style: none;
}
.uk-list > * > :last-child {
    margin-bottom: 0;
}
.uk-list > :nth-child(n+2),
.uk-list > * > ul {
    margin-top: 0.75rem;
}
.uk-list-bullet > * {
    padding-left: 2rem;
}
.uk-list-bullet > ::before {
    content: "";
    position: relative;
    left: -2rem;
    width: 2rem;
    height: 1.5em;
    margin-bottom: -1.5em;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.uk-list-dotted > * {
    padding-left: 2rem;
}
.uk-list-dotted > ::before {
    content: "";
    position: absolute;
    left: -0.5rem;
    width: 2rem;
    height: 1.5em;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
}


.uk-list-divider > :nth-child(n+2) {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}
.uk-light .uk-list-divider > :nth-child(n+2) {
    border-color: rgba(255, 255, 255, 0.3);
}
.uk-list-large > :nth-child(n+2),
.uk-list-large > * > ul {
    margin-top: 2rem;
}
.uk-list-collapse > :nth-child(n+2),
.uk-list-collapse > * > ul {
    margin-top: 0;
}
.uk-list-large.uk-list-divider > :nth-child(n+2) {
    margin-top: 2.25rem;
    padding-top: 2.25rem;
}
.uk-list-large.uk-list-divider >li:last-child {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2.25rem;
}
.uk-list-large.uk-list-divider.uk-list-last-child >li:last-child {
    border-bottom: none;
}
.uk-list-divider  .uk-list-divider > li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.uk-list-red {
    padding-left: 3rem;
}
.uk-list-red li {
    list-style: none;
    position: relative;
}
.uk-list-red li::before {
    content: '';
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 100%;
    background-color: var(--primary-color);
    margin-left: -3rem;
    position: absolute;
    top: 0.7rem;
}
@media (max-width: 1199px) {
    .uk-list-red {
        padding-left: 2rem;
    }
    .uk-list-red li::before {
        width: 0.6rem;
        height: 0.6rem;
        margin-left: -2rem;
        top: 0.45rem;
    }
}
.uk-accordion {
    padding: 0;
    list-style: none;
}

.uk-accordion > :nth-child(n+2) {
    margin-top: 1.25rem;
}

.uk-accordion-title {
    display: block;
    overflow: hidden;
    transition: 0.15s height ease-in;
}
.uk-accordion-title::before {
    content: "";
    width: 1.5em;
    height: 1.5em;
    background-size: contain;
    margin-left: 10px;
    float: right;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 15V17L0 17L8.74228e-08 15L32 15Z' fill='%23E31E24'/%3E%3Cpath d='M15 0H17V32H15V0Z' fill='%23E31E24'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.uk-open > .uk-accordion-title::before {
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='2' viewBox='0 0 32 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 1.39876e-06V2L0 2L8.74228e-08 0L32 1.39876e-06Z' fill='%23E31E24'/%3E%3C/svg%3E%0A");
}
.uk-accordion-content {
    display: flow-root;
    margin-top: 1.25rem;
}
.uk-accordion-content > :last-child {
    margin-bottom: 0;
}
#baseComp ul {
    padding-left: 3rem;
}
#baseComp ul li {
    list-style: none;
    position: relative;
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-family: var(--sb-reg);
    color: var(--main-color) !important;
}
#baseComp ul li::before {
    content: '';
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 100%;
    background-color: var(--primary-color);
    margin-left: -3rem;
    margin-right: 1rem
}
ol.uk-ol-reset >li > a,
ol.uk-ol-reset >li > a:hover,
ol.uk-ol-reset >li > a:focus,
ol.uk-ol-reset >li > a:active,
ol.uk-ol-reset >li.uk-active > a,
ol.uk-ol-reset >li > a.uk-active {
    text-decoration: none;
}

ol.uk-ol-reset > li > a {
    margin-left: 7px;
}

ol.uk-ol-reset > li + li {
    margin-top: 10px
}

ol.uk-ol-reset li > .uk-list-hyphen {
    margin-top: 10px;
    margin-left: 10px;
}

.uk-list-hyphen>::before, .uk-list-square>::before {
    content: "–  ";
    position: relative;
    left: -38px;
    width: 30px;
    height: 1.5em;
    margin-bottom: -1.5em;
    display: list-item;
    list-style-position: inside;
    text-align: right;
}

ol.uk-ol-reset li > .uk-list-hyphen > li > a,
ol.uk-ol-reset li > .uk-list-hyphen > li > a:hover,
ol.uk-ol-reset li > .uk-list-hyphen > li > a:active {
    color: inherit !important;
    text-decoration: none !important;
}
/* ========================================================================
   Component: Section
 ========================================================================== */
.uk-section {
    display: flow-root;
    box-sizing: border-box;
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
}
@media (min-width: 960px) {
    .uk-section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}
.uk-section > :last-child {
    margin-bottom: 0;
}
.uk-section-xsmall {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.uk-section-small {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.uk-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
@media (min-width: 960px) {
    .uk-section-large {
        padding-top: 7.5rem;
        padding-bottom: 7.5rem;
    }
}
.uk-section-xlarge {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
@media (min-width: 960px) {
    .uk-section-xlarge {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
}
.uk-section-default {
    background: var(--contrast-color);
}
.uk-section-muted {
    background: var(--light-color);
}
.uk-section-primary {
    background: var(--primary-color);
    color: var(--contrast-color);
}
.uk-section-secondary {
    background: var(--main-color);
    color: var(--contrast-color);
}
.uk-section-xlarge.uk-section-default + .uk-section-xlarge.uk-section-default {
    padding-top: 0;
}
.uk-bc-container + .uk-section-xlarge.uk-section-default,
#card.uk-section-xlarge.uk-section-default {
    padding-top: 2rem;
}

@media(max-width: 1200px) {
    header + .uk-section-default,
    .uk-sticky-placeholder + .uk-section-default{
        padding-top: 1.5rem;
    }
    #mainSlider.uk-section-default{
        padding-top: 0;
    }
}
/* ========================================================================
   Component: Container
 ========================================================================== */
.uk-container {
    display: flow-root;
    box-sizing: content-box;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 960px) {
    .uk-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
.uk-container > :last-child {
    margin-bottom: 0;
}
.uk-container-xsmall {
    max-width: 750px;
}
.uk-container-small {
    max-width: 900px;
}
.uk-container-large {
    max-width: 1400px;
}
.uk-container-xlarge {
    max-width: 1500px;
}
.uk-container-expand {
    max-width: none;
}
.uk-container-expand-left {
    margin-left: 0;
}
.uk-container-expand-right {
    margin-right: 0;
}
@media (min-width: 960px) {
    .uk-container-expand-left,
    .uk-container-expand-right {
        max-width: calc(50% + (1200px / 2) - 24px);
    }
    .uk-container-expand-left.uk-container-xsmall,
    .uk-container-expand-right.uk-container-xsmall {
        max-width: calc(50% + (750px / 2) - 24px);
    }
    .uk-container-expand-left.uk-container-small,
    .uk-container-expand-right.uk-container-small {
        max-width: calc(50% + (900px / 2) - 24px);
    }
    .uk-container-expand-left.uk-container-large,
    .uk-container-expand-right.uk-container-large {
        max-width: calc(50% + (1400px / 2) - 24px);
    }
    .uk-container-expand-left.uk-container-xlarge,
    .uk-container-expand-right.uk-container-xlarge {
        max-width: calc(50% + (1600px / 2) - 24px);
    }
}
.uk-container-item-padding-remove-left,
.uk-container-item-padding-remove-right {
    width: calc(100% + 1rem);
}
.uk-container-item-padding-remove-left {
    margin-left: -1rem;
}
.uk-container-item-padding-remove-right {
    margin-right: -1rem;
}
@media (min-width: 960px) {
    .uk-container-item-padding-remove-left,
    .uk-container-item-padding-remove-right {
        width: calc(100% + 24px);
    }
    .uk-container-item-padding-remove-left {
        margin-left: -24px;
    }
    .uk-container-item-padding-remove-right {
        margin-right: -24px;
    }
}
@media (min-width: 1200px) {
    .uk-container-negative > * {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
}
/* ========================================================================
  Component: nav
========================================================================== */
.uk-nav,
.uk-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.uk-nav li > a {
    display: flex;
    align-items: center;
    column-gap: 0.25em;
    text-decoration: none;
    font-weight: var(--text-normal);
}
.uk-nav li > a > * {
    flex: none;
}
.uk-nav li > a:focus {
    outline: none;
}
.uk-nav.uk-nav-default {
    font-size: 1rem;
}
.uk-nav.uk-nav-default > li + li {
    margin-top: 1.5rem;
}
@media (max-width: 1200px) {
    .uk-nav.uk-nav-default > li > a {
        color: var(--muted-color);
    }
    .uk-nav.uk-nav-default > li + li {
        margin-top: 1rem;
    }
}
.uk-nav-divider li {
    box-sizing: border-box;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}
.uk-nav.uk-nav-divider > li + li {
    margin-top: 1rem;
}
.uk-nav.uk-nav-divider > li > a {
    font-size: 1.5rem;
    font-family: var(--sb-reg);
}
.uk-nav.uk-nav-primary {
    font-size: 2rem;
    line-height: 1.125rem;
    font-family: var(--sb-reg);
}
.uk-nav.uk-nav-primary > li + li {
    margin-top: 2.5rem;
}
@media (max-width: 1200px) {
    .uk-nav.uk-nav-primary {
        font-size: 1.125rem;
        line-height: 1.375rem;
    }
    .uk-nav.uk-nav-primary > li + li {
        margin-top: 1rem;
    }
    .uk-nav-primary + .uk-nav-default {
        margin-top: 1rem;
    }
}
.uk-nav.uk-nav-primary > li > a > sup,
.uk-nav.uk-nav-primary > li > a > span > sup{
    font-size: 0.875rem;
}
.uk-nav.uk-nav-primary > li > a > span.uk-text-xsmall {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted-color);
    display: block;
    width: 100%;
    margin-bottom: 7px;
}
.uk-nav-primary > li.uk-active > a {
    color: var(--primary-color);
}
.uk-nav-primary.uk-nav-block > li > a {
    display: block;
}
.uk-subnav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: -1.5rem;
    padding: 0;
    list-style: none;
    text-decoration: none;
    margin-bottom: 2.5rem;
}
.uk-subnav > li {
    flex: none;
    padding-left: 1.5rem;
    position: relative;
}
.uk-subnav > li > a,
.uk-subnav > li > button,
.uk-subnav > li > span {
    display: flex;
    align-items: center;
    column-gap: 0.25em;
    color: var(--main-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: var(--ls-large);
    transition: var(--transition-small);
    transition-property: color;
}
@media (min-width: 1220px) {
    .uk-subnav > li > a,
    .uk-subnav > li > button,
    .uk-subnav > li > span {
        font-size: 0.875rem;
    }
}
.uk-subnav > li > a.uk-subnav-small,
.uk-subnav > li > button.uk-subnav-small,
.uk-subnav > li > span.uk-subnav-small {
    text-transform: none;
    line-height: 1.7;
    font-size: 0.85rem;
}
a.uk-subnav-small {
    position: relative;
}
a.uk-subnav-small::after {
    content: '';
    display: inline-block;
    position: absolute;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    margin: 0 -5px;
    border-radius: 5px;
}
li.uk-active > a.uk-subnav-small::after {
    background: var(--light-color);
}
a.uk-subnav-small > span {
    position: relative;
    z-index: 10;
}
.uk-subnav > * > a:hover,
.uk-subnav > * > a:focus {
    color: var(--hover-color);
    text-decoration: none;
    outline: none;
}
.uk-subnav:not(.uk-slider-items):not(.uk-subnav-ghost) > * > a:active,
.uk-subnav:not(.uk-slider-items):not(.uk-subnav-ghost) > .uk-active > a {
    text-decoration: none;
    color: var(--active-color);
}
* + .uk-subnav {
    margin-top: 1rem;
}
.uk-subnav.uk-subnav-pill, .uk-subnav.uk-subnav-ghost {
    margin-left: -4px;
}
.uk-subnav.uk-subnav-pill li, .uk-subnav.uk-subnav-ghost li {
    padding-left: 4px;
}
.uk-subnav-pill > * > :first-child {
    padding: 0.625rem 1rem;
    background: var(--light-color);
    color: var(--muted-color);
    text-transform: none;
    letter-spacing: var(--ls-small);
    border-radius: 0.75rem;
    transition-property: color, background-color;
}
.uk-subnav-pill > * > a:hover,
.uk-subnav-pill > * > a:focus {
    background-color: var(--border-color);
    color: var(--muted-color);
}
.uk-subnav-pill > * > a:active,
.uk-subnav-pill > .uk-active > a{
    color: var(--muted-color);
    border-color: var(--border-color);
}
.uk-subnav-toggle.uk-subnav-pill > * > a{
    padding: 0.425rem 1rem;
    margin: 0.2rem 0;
}
.uk-subnav-toggle.uk-subnav-pill li:last-child{
    margin-right: 4px;
}
.uk-subnav-toggle.uk-subnav-pill > * > a:hover,
.uk-subnav-toggle.uk-subnav-pill > * > a:focus,
.uk-subnav-toggle.uk-subnav-pill > * > a:active {
    background: var(--light-color);
    color: var(--muted-color);
}
.uk-subnav-toggle.uk-subnav-pill> .uk-active > a {
    background-color: var(--contrast-color);
    color: var(--muted-color);
}
@media (min-width: 1200px) {
    .uk-subnav-pill > * > :first-child {
        font-size: 1rem;
    }
}
.uk-subnav-ghost > * > :first-child {
    color: var(--main-color);
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition-property: color, border-color;
}
.uk-subnav-ghost > * > a:hover,
.uk-subnav-ghost > * > a:focus {
    color: var(--hover-color);
    border-color: var(--hover-color);
}
.uk-subnav.uk-subnav-ghost > * > a[aria-expanded=true],
.uk-subnav-ghost > * > a:active,
.uk-subnav-ghost > .uk-active > a {
    color: var(--main-color);
    border-color: var(--main-color);
}
.uk-subnav-small > * > :first-child {
    text-transform: none;
    font-size: 1rem;
    font-weight: var(--text-normal);
    letter-spacing: var(--ls-small);
    color: var(--muted-color);
}

.uk-navbar {
    display: flex;
    position: relative;
    background-color: white;
}
.uk-navbar-container > ::before,
.uk-navbar-container > ::after {
    display: none !important;
}
.uk-navbar-nav {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    max-width: 100%;
    border-top: 1px solid var(--border-color);
    box-sizing: border-box;
}
.uk-navbar-nav > li > a,
.uk-navbar-item,
.uk-navbar-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.25em;
    box-sizing: border-box;
    min-height: 3.125rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    line-height: 1.7;
    text-decoration: none;
    letter-spacing: var(--ls-large);
    text-transform: uppercase;
}
.uk-navbar-nav > li:first-child > a {
    padding-left: 0;
}
.uk-navbar-nav > li:last-child > a {
    padding-right: 0;
}
.uk-navbar-nav > li > a[aria-expanded="true"], .uk-navbar-nav > li.uk-active > a{
    color: var(--primary-color);
}
.uk-navbar-sticky .uk-navbar-nav{
    border-top: 1px solid transparent;
}
.uk-breadcrumb {
    padding: 0;
    list-style: none;
}
.uk-breadcrumb > * {
    display: contents;
}
.uk-breadcrumb > li > a,
.uk-breadcrumb > li > span {
    font-size: 0.875rem;
    color: #757575;
    font-weight: 500;
    text-decoration: none;
}
.uk-breadcrumb > :nth-child(n+2):not(.uk-first-column)::before {
    content: "";
    display: inline-block;
    margin: 0;
    font-size: 0.875rem;
    width: 1.25rem;
    height: 1.25rem;
    background-size: 5px;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 8 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.57421 0.70752L2.93319 1.64087C3.60124 3.3778 4.65556 4.19463 5.50415 4.59578C5.93861 4.80117 6.33212 4.90297 6.61144 4.95306C6.75053 4.978 6.85926 4.98975 6.92785 4.99524C6.96207 4.99797 6.98605 4.99913 6.99853 4.99961L7.00838 4.99991C7.00851 4.99992 7.00789 4.9999 7.00647 4.99989L7.00376 4.99987L7.00196 4.99987L7.00094 4.99987C7.0004 4.99987 6.99985 4.99986 6.99984 5.99986C6.99984 6.99986 7.00039 6.99986 7.00093 6.99986L7.00194 6.99986L7.00375 6.99986L7.00646 6.99984C7.00788 6.99983 7.0085 6.99981 7.00836 6.99982L6.99852 7.00012C6.98604 7.0006 6.96206 7.00175 6.92784 7.00449C6.85925 7.00998 6.75052 7.02173 6.61143 7.04666C6.33211 7.09675 5.9386 7.19855 5.50414 7.40393C4.65555 7.80508 3.60124 8.62189 2.93319 10.3588L2.57421 11.2922L0.70752 10.5742L1.0665 9.64087C1.7729 7.80422 2.85821 6.67885 3.91929 5.99985C2.85821 5.32085 1.7729 4.19547 1.0665 2.35882L0.70752 1.42548L2.57421 0.70752Z' fill='%23B5B4B4'/%3E%3C/svg%3E%0A");
    background-position: center center;
    background-repeat: no-repeat;
    vertical-align: middle;
    text-align: center;
}
@media(max-width: 1200px) {
    .uk-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 5rem;
        box-shadow: 0 0 5px rgb(0 0 0 / 5%), 0 0 50px rgb(0 0 0 / 15%);
        border-top: 1px solid rgb(0 0 0 / 10%);
    }
    .uk-nav-item {
        font-size: 12px;
        line-height: 12px;
        margin-top: 5px;
        letter-spacing: 0.2px;
    }
    .uk-bottom-nav div.uk-background-primary {
        height: 5rem;
    }
}
.uk-background-primary {
    background: var(--primary-color);
    color: white;
}
.uk-sticky.uk-active {
    z-index: 999;
}
#cardNav {
    opacity: 0;
    position: absolute;
}
#cardNav.uk-active {
    opacity: 1;
}
.uk-sticky .uk-sticky-visible{
    display: none;
}
.uk-sticky.uk-active .uk-sticky-visible {
    display: block;
    width: 100%;
}
.uk-sticky.uk-active .uk-sticky-visible .uk-navbar-nav {
    border: none;
}
.uk-sticky-bottom {
    top:auto !important;
    bottom: 0 !important;
}
.uk-sticky-bottom > div {
    box-shadow: 0 0 12px rgb(0 0 0 / 10%);
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    display: none;
}
.uk-sticky-bottom.uk-active > div {
    display: block;
}
/* ========================================================================
   Component: Slider
 ========================================================================== */

.uk-slider {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.uk-slider-container {
    overflow: hidden;
}

.uk-slider-items {
    will-change: transform;
    position: relative;
}
.uk-slider-items:not(.uk-grid) {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-touch-callout: none;
}
.uk-slider-items.uk-grid {
    flex-wrap: nowrap;
}

.uk-slider-items > * {
    flex: none;
    max-width: 100%;
    position: relative;
    touch-action: pan-y;
}
.uk-cover, img.uk-cover {
    max-width: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/* ========================================================================
    Component: Utility
========================================================================== */

/* Panel
 ========================================================================== */
.uk-panel {
    display: flow-root;
    position: relative;
    box-sizing: border-box;
}
.uk-panel > :last-child {
    margin-bottom: 0;
}
.uk-panel-scrollable {
    height: 10rem;
    padding: 0.75rem;
    border: var(--border-color);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    resize: both;
}

/* Overflow
 ========================================================================== */
.uk-overflow-hidden {
    overflow: hidden;
}
.uk-overflow-auto {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.uk-overflow-auto > :last-child {
    margin-bottom: 0;
}

/* Display
 ========================================================================== */
.uk-display-block {
    display: block !important;
}
.uk-display-inline {
    display: inline !important;
}
.uk-display-inline-block {
    display: inline-block !important;
}
[class*='uk-inline'] {
    display: inline-block;
    position: relative;
    max-width: 100%;
    vertical-align: middle;
    -webkit-backface-visibility: hidden;
}
.uk-inline-clip {
    overflow: hidden;
}

/* Border
 ========================================================================== */
.uk-border-circle {
    border-radius: 50%;
}
.uk-border-rounded-large {
    border-radius: 1rem;
}
.uk-border-rounded-medium {
    border-radius: 0.75rem;
}
.uk-border-rounded-small {
    border-radius: 0.5rem;
}
.uk-inline-clip[class*='uk-border-'] {
    -webkit-transform: translateZ(0);
}
.uk-border-light {
    border: 1px solid var(--border-color);
    transition: var(--transition-small) border-color;
}
.uk-border-light-primary {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-sizing: border-box;
}
a:hover > .uk-border-light,
a:focus > .uk-border-light,
a:active > .uk-border-light {
    border-color: var(--muted-color);
}

/* Visibility
 ========================================================================== */
[hidden],
.uk-hidden {
    display: none !important;
}
@media (min-width: 640px) {
    .uk-hidden\@s {
        display: none !important;
    }
}
@media (min-width: 960px) {
    .uk-hidden\@m {
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .uk-hidden\@l {
        display: none !important;
    }
}
@media (min-width: 1600px) {
    .uk-hidden\@xl {
        display: none !important;
    }
}
@media (max-width: 639px) {
    .uk-visible\@s {
        display: none !important;
    }
}
@media (max-width: 959px) {
    .uk-visible\@m {
        display: none !important;
    }
}
@media (max-width: 1199px) {
    .uk-visible\@l {
        display: none !important;
    }
}
@media (max-width: 1599px) {
    .uk-visible\@xl {
        display: none !important;
    }
}
.uk-invisible {
    visibility: hidden !important;
}
/* Toggle (Hover + Focus)
 ========================================================================== */
.uk-visible-toggle:not(:hover):not(:focus) .uk-hidden-hover:not(:focus-within) {
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}
.uk-visible-toggle:not(:hover):not(:focus) .uk-invisible-hover:not(:focus-within) {
    opacity: 0 !important;
}
.uk-visible-toggle {
    -webkit-tap-highlight-color: transparent;
}
.uk-visible-toggle:focus {
    outline: none;
}
@media (pointer: coarse) {
    .uk-hidden-touch {
        display: none !important;
    }
}
.uk-hidden-notouch {
    display: none !important;
}
@media (pointer: coarse) {
    .uk-hidden-notouch {
        display: block !important;
    }
}
/* ========================================================================
   Component: Grid
 ========================================================================== */
.uk-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.uk-grid > * {
    margin: 0;
}
.uk-grid > * > :last-child {
    margin-bottom: 0;
}
/* Grit gutter
 ========================================================================== */
/*
 * Default
 */

.uk-grid,
.uk-slider-items.uk-grid,
.uk-subnav.uk-grid {
    margin-left: -1.5rem;
}
.uk-grid > * {
    padding-left: 1.5rem;
}
.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
    margin-top: 1.5rem;
}

/*
 * Small
 */
.uk-grid-small,
.uk-grid-column-small,
.uk-slider-items.uk-grid-small,
.uk-subnav.uk-grid-small{
    margin-left: -0.75rem;
}
.uk-grid-small > *,
.uk-grid-column-small > * {
    padding-left: 0.75rem;
}
.uk-grid + .uk-grid-small,
.uk-grid + .uk-grid-row-small,
.uk-grid-small > .uk-grid-margin,
.uk-grid-row-small > .uk-grid-margin,
* + .uk-grid-margin-small {
    margin-top: 0.75rem !important;
}

/*
 * XSmall
 */
.uk-grid-xsmall,
.uk-grid-column-xsmall,
.uk-slider-items.uk-grid-xsmall,
.uk-subnav.uk-grid-xsmall{
    margin-left: -4px;
}
.uk-grid-xsmall > *,
.uk-grid-column-xsmall > * {
    padding-left: 4px;
}
.uk-grid + .uk-grid-xsmall,
.uk-grid + .uk-grid-row-xsmall,
.uk-grid-xsmall > .uk-grid-margin,
.uk-grid-row-xsmall > .uk-grid-margin,
* + .uk-grid-margin-xsmall {
    margin-top: 4px;
}

/*
 * 2XSmall
 */
.uk-grid-2xsmall,
.uk-grid-column-2xsmall,
.uk-slider-items.uk-grid-2xsmall,
.uk-subnav.uk-grid-2xsmall {
    margin-left: -2px;
}
.uk-grid-2xsmall > *,
.uk-grid-column-small > * {
    padding-left: 2px;
}
.uk-grid + .uk-grid-2xsmall,
.uk-grid + .uk-grid-row-2xsmall,
.uk-grid-2xsmall > .uk-grid-margin,
.uk-grid-row-2xsmall > .uk-grid-margin,
* + .uk-grid-margin-2xsmall {
    margin-top: 2px;
}

/*
 * Medium
 */
.uk-grid-medium,
.uk-grid-column-medium,
.uk-slider-items.uk-grid-medium,
.uk-subnav.uk-grid-medium{
    margin-left: -2rem;
}
.uk-grid-medium > *,
.uk-grid-column-medium > * {
    padding-left: 2rem;
}
.uk-grid + .uk-grid-medium,
.uk-grid + .uk-grid-row-medium,
.uk-grid-medium > .uk-grid-margin,
.uk-grid-row-medium > .uk-grid-margin,
* + .uk-grid-margin-medium {
    margin-top: 2rem;
}

/*
 * Large
 */
.uk-grid-large,
.uk-grid-column-large,
.uk-slider-items.uk-grid-large,
.uk-subnav.uk-grid-large {
    margin-left: -2.5rem;
}
.uk-grid-large > *,
.uk-grid-column-large > * {
    padding-left: 2.5rem;
}
.uk-grid + .uk-grid-large,
.uk-grid + .uk-grid-row-large,
.uk-grid-large > .uk-grid-margin,
.uk-grid-row-large > .uk-grid-margin,
* + .uk-grid-margin-large {
    margin-top: 2.5rem;
}

@media (min-width: 1200px) {
    .uk-grid-large,
    .uk-grid-column-large,
    .uk-slider-items.uk-grid-large,
    .uk-subnav.uk-grid-large {
        margin-left: -4.5rem;
    }
    .uk-grid-large > *,
    .uk-grid-column-large > * {
        padding-left: 4.5rem;
    }
    .uk-grid + .uk-grid-large,
    .uk-grid + .uk-grid-row-large,
    .uk-grid-large > .uk-grid-margin,
    .uk-grid-row-large > .uk-grid-margin,
    * + .uk-grid-margin-large {
        margin-top: 4.5rem;
    }
}

/*
 * XLarge
 */
.uk-grid-xlarge,
.uk-grid-column-xlarge,
.uk-slider-items.uk-grid-xlarge,
.uk-subnav.uk-grid-xlarge {
    margin-left: -5rem;
}
.uk-grid-xlarge > *,
.uk-grid-column-xlarge > * {
    padding-left: 5rem;
}
.uk-grid + .uk-grid-xlarge,
.uk-grid + .uk-grid-row-xlarge,
.uk-grid-xlarge > .uk-grid-margin,
.uk-grid-row-xlarge > .uk-grid-margin,
* + .uk-grid-margin-xlarge {
    margin-top: 5rem;
}

@media (min-width: 1200px) {
    .uk-grid-xlarge,
    .uk-grid-column-xlarge,
    .uk-slider-items.uk-grid-xlarge,
    .uk-subnav.uk-grid-xlarge {
        margin-left: -10rem;
    }
    .uk-grid-xlarge > *,
    .uk-grid-column-xlarge > * {
        padding-left: 10rem;
    }
    .uk-grid + .uk-grid-xlarge,
    .uk-grid + .uk-grid-row-xlarge,
    .uk-grid-xlarge > .uk-grid-margin,
    .uk-grid-row-xlarge > .uk-grid-margin,
    * + .uk-grid-margin-xlarge {
        margin-top: 10rem;
    }
}
/*
 * 2XLarge
 */
.uk-grid-2xlarge,
.uk-grid-column-2xlarge,
.uk-slider-items.uk-grid-2xlarge,
.uk-subnav.uk-grid-2xlarge {
    margin-left: -6.25rem;
}
.uk-grid-2xlarge > *,
.uk-grid-column-2xlarge > * {
    padding-left: 6.25rem;
}
.uk-grid + .uk-grid-2xlarge,
.uk-grid + .uk-grid-row-2xlarge,
.uk-grid-2xlarge > .uk-grid-margin,
.uk-grid-row-2xlarge > .uk-grid-margin,
* + .uk-grid-margin-2xlarge {
    margin-top: 6.25rem;
}

@media (min-width: 1200px) {
    .uk-grid-2xlarge,
    .uk-grid-column-2xlarge,
    .uk-slider-items.uk-grid-2xlarge,
    .uk-subnav.uk-grid-row-2xlarge {
        margin-left: -12.5rem;
    }
    .uk-grid-2xlarge > *,
    .uk-grid-column-2xlarge > * {
        padding-left: 12.5rem;
    }
    .uk-grid + .uk-grid-2xlarge,
    .uk-grid + .uk-grid-row-2xlarge,
    .uk-grid-2xlarge > .uk-grid-margin,
    .uk-grid-row-2xlarge > .uk-grid-margin,
    * + .uk-grid-margin-2xlarge {
        margin-top: 12.5rem;
    }
}
/*
 * Collapse
 */
.uk-grid-collapse,
.uk-grid-column-collapse {
    margin-left: 0;
}
.uk-grid-collapse > *,
.uk-grid-column-collapse > * {
    padding-left: 0;
}
.uk-grid + .uk-grid-collapse,
.uk-grid + .uk-grid-row-collapse,
.uk-grid-collapse > .uk-grid-margin,
.uk-grid-row-collapse > .uk-grid-margin {
    margin-top: 0;
}

/* Divider
 ========================================================================== */
.uk-grid-divider > * {
    position: relative;
}
.uk-grid-divider > :not(.uk-first-column)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    border-left: 1px solid var(--border-color);
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px solid var(--border-color);
}
/*
 * Default
 */
.uk-grid-divider {
    margin-left: -3.8rem;
}
.uk-grid-divider > * {
    padding-left: 3.8rem;
}
.uk-grid-divider > :not(.uk-first-column)::before {
    left: 1.9rem;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
    margin-top: 1.9rem;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
    top: -1.9rem;
    left: 3.8rem;
}
@media (min-width: 1200px) {
    .uk-grid-divider {
        margin-left: -5rem;
    }
    .uk-grid-divider > * {
        padding-left: 5rem;
    }
    .uk-grid-divider > :not(.uk-first-column)::before {
        left: 2.5rem;
    }

    .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
        margin-top: 5rem;
    }
    .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
        top: -2.5rem;
        left: 5rem;
    }
}
/*
 * Small
 */
.uk-grid-divider.uk-grid-small,
.uk-grid-divider.uk-grid-column-small {
    margin-left: -2rem;
}
.uk-grid-divider.uk-grid-small > *,
.uk-grid-divider.uk-grid-column-small > * {
    padding-left: 2rem;
}
.uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-small > :not(.uk-first-column)::before {
    left: 1rem;
}
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin {
    margin-top: 1rem;
}
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
    top: -1rem;
    left: 2rem;
}
.uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin::before {
    top: -15px;
}
.uk-grid-divider.uk-grid-column-small.uk-grid-stack > .uk-grid-margin::before {
    left: 2rem;
}
/*
 * Medium
 */
.uk-grid-divider.uk-grid-medium,
.uk-grid-divider.uk-grid-column-medium {
    margin-left: -4rem;
}
.uk-grid-divider.uk-grid-medium > *,
.uk-grid-divider.uk-grid-column-medium > * {
    padding-left: 4rem;
}
.uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-medium > :not(.uk-first-column)::before {
    left: 2rem;
}

.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin {
    margin-top: 4rem;
}
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
    top: -2rem;
    left: 24rem;
}
.uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin::before {
    top: -2rem;
}
.uk-grid-divider.uk-grid-column-medium.uk-grid-stack > .uk-grid-margin::before {
    left: 4rem;
}
/*
 * Large
 */
.uk-grid-divider.uk-grid-large,
.uk-grid-divider.uk-grid-column-large {
    margin-left: -5rem;
}
.uk-grid-divider.uk-grid-large > *,
.uk-grid-divider.uk-grid-column-large > * {
    padding-left: 5rem;
}
.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
    left: 2.5rem;
}
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
    margin-top: 5rem;
}
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
    top: -2.5rem;
    left: 5rem;
}
.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
    top: -2.5rem;
}
.uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
    left: 5rem;
}
@media (min-width: 1200px) {
    .uk-grid-divider.uk-grid-large,
    .uk-grid-divider.uk-grid-column-large {
        margin-left: -8.8rem;
    }
    .uk-grid-divider.uk-grid-large > *,
    .uk-grid-divider.uk-grid-column-large > * {
        padding-left: 8.8rem;
    }
    .uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
    .uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
        left: 4.4rem;
    }
    .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
    .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
        margin-top: 8.8rem;
    }
    .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
        top: -4.4rem;
        left: 8.8rem;
    }
    .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
        top: -4.4rem;
    }
    .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
        left: 8.8rem;
    }
}

/*
 * Horizontal
 */
.uk-grid-divider-horizontal > * > div {
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border-color);
}
/* Match child of a grid cell
 ========================================================================== */
.uk-grid-match > *,
.uk-grid-item-match {
    display: flex;
    flex-wrap: wrap;
}
.uk-grid-match > * > :not([class*='uk-width']),
.uk-grid-item-match > :not([class*='uk-width']) {
    box-sizing: border-box;
    width: 100%;
    flex: auto;
}
.uk-grid-plus > div:not(:last-child) > div.uk-panel::after,
.uk-grid-plus > li:not(:last-child) > div.uk-panel::after{
    content: '';
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='16' y='7' width='2' height='16' transform='rotate(90 16 7)' fill='%230F0F0F'/%3E%3Crect x='7' width='2' height='16' fill='%230F0F0F'/%3E%3C/svg%3E");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: 16px;
    right: 0;
    margin-right: -8px;
}

/* ========================================================================
   Component: Flex
 ========================================================================== */
.uk-flex {
    display: flex;
}
.uk-flex-inline {
    display: inline-flex;
}
.uk-flex::before,
.uk-flex::after,
.uk-flex-inline::before,
.uk-flex-inline::after {
    display: none;
}
/* Alignment
 ========================================================================== */
.uk-flex-left {
    justify-content: flex-start;
}
.uk-flex-center {
    justify-content: center;
}
.uk-flex-right {
    justify-content: flex-end;
}
.uk-flex-between {
    justify-content: space-between;
}
.uk-flex-around {
    justify-content: space-around;
}
@media (min-width: 640px) {
    .uk-flex-left\@s {
        justify-content: flex-start;
    }
    .uk-flex-center\@s {
        justify-content: center;
    }
    .uk-flex-right\@s {
        justify-content: flex-end;
    }
    .uk-flex-between\@s {
        justify-content: space-between;
    }
    .uk-flex-around\@s {
        justify-content: space-around;
    }
}
@media (min-width: 960px) {
    .uk-flex-left\@m {
        justify-content: flex-start;
    }
    .uk-flex-center\@m {
        justify-content: center;
    }
    .uk-flex-right\@m {
        justify-content: flex-end;
    }
    .uk-flex-between\@m {
        justify-content: space-between;
    }
    .uk-flex-around\@m {
        justify-content: space-around;
    }
}
@media (min-width: 1200px) {
    .uk-flex-left\@l {
        justify-content: flex-start;
    }
    .uk-flex-center\@l {
        justify-content: center;
    }
    .uk-flex-right\@l {
        justify-content: flex-end;
    }
    .uk-flex-between\@l {
        justify-content: space-between;
    }
    .uk-flex-around\@l {
        justify-content: space-around;
    }
}
@media (min-width: 1600px) {
    .uk-flex-left\@xl {
        justify-content: flex-start;
    }
    .uk-flex-center\@xl {
        justify-content: center;
    }
    .uk-flex-right\@xl {
        justify-content: flex-end;
    }
    .uk-flex-between\@xl {
        justify-content: space-between;
    }
    .uk-flex-around\@xl {
        justify-content: space-around;
    }
}
.uk-flex-stretch {
    align-items: stretch;
}
.uk-flex-top {
    align-items: flex-start;
}
.uk-flex-middle {
    align-items: center;
}
.uk-flex-bottom {
    align-items: flex-end;
}
/* Direction
 ========================================================================== */
.uk-flex-row {
    flex-direction: row;
}
.uk-flex-row-reverse {
    flex-direction: row-reverse;
}
.uk-flex-column {
    flex-direction: column;
}
.uk-flex-column-reverse {
    flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.uk-flex-nowrap {
    flex-wrap: nowrap;
}
.uk-flex-wrap {
    flex-wrap: wrap;
}
.uk-flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

/* Item ordering
 ========================================================================== */
.uk-flex-first {
    order: -1;
}
.uk-flex-last {
    order: 99;
}
@media (min-width: 640px) {
    .uk-flex-first\@s {
        order: -1;
    }
    .uk-flex-last\@s {
        order: 99;
    }
}
@media (min-width: 960px) {
    .uk-flex-first\@m {
        order: -1;
    }
    .uk-flex-last\@m {
        order: 99;
    }
}
@media (min-width: 1200px) {
    .uk-flex-first\@l {
        order: -1;
    }
    .uk-flex-last\@l {
        order: 99;
    }
}
@media (min-width: 1600px) {
    .uk-flex-first\@xl {
        order: -1;
    }
    .uk-flex-last\@xl {
        order: 99;
    }
}
.uk-flex-none {
    flex: none;
}
.uk-flex-auto {
    flex: auto;
}
.uk-flex-1 {
    flex: 1;
}
/* ========================================================================
   Component: Width
 ========================================================================== */
[class*='uk-child-width'] > * {
    box-sizing: border-box;
    width: 100%;
}
.uk-child-width-1-2 > * {
    width: 50%;
}
.uk-child-width-1-3 > * {
    width: calc(100% * 1 / 3.001);
}
.uk-child-width-1-4 > * {
    width: 25%;
}
.uk-child-width-1-5 > * {
    width: 20%;
}
.uk-child-width-1-6 > * {
    width: calc(100% * 1 / 6.001);
}
.uk-child-width-auto > * {
    width: auto;
}
.uk-child-width-expand > :not([class*='uk-width']) {
    flex: 1;
    min-width: 1px;
}
@media (min-width: 640px) {
    .uk-child-width-1-1\@s > * {
        width: 100%;
    }
    .uk-child-width-1-2\@s > * {
        width: 50%;
    }
    .uk-child-width-1-3\@s > * {
        width: calc(100% * 1 / 3.001);
    }
    .uk-child-width-1-4\@s > * {
        width: 25%;
    }
    .uk-child-width-1-5\@s > * {
        width: 20%;
    }
    .uk-child-width-1-6\@s > * {
        width: calc(100% * 1 / 6.001);
    }
    .uk-child-width-auto\@s > * {
        width: auto;
    }
    .uk-child-width-expand\@s > :not([class*='uk-width']) {
        flex: 1;
        min-width: 1px;
    }
}
@media (min-width: 960px) {
    .uk-child-width-1-1\@m > * {
        width: 100%;
    }
    .uk-child-width-1-2\@m > * {
        width: 50%;
    }
    .uk-child-width-1-3\@m > * {
        width: calc(100% * 1 / 3.001);
    }
    .uk-child-width-1-4\@m > * {
        width: 25%;
    }
    .uk-child-width-1-5\@m > * {
        width: 20%;
    }
    .uk-child-width-1-6\@m > * {
        width: calc(100% * 1 / 6.001);
    }
    .uk-child-width-auto\@m > * {
        width: auto;
    }
    .uk-child-width-expand\@m > :not([class*='uk-width']) {
        flex: 1;
        min-width: 1px;
    }
}
@media (min-width: 1200px) {
    .uk-child-width-1-1\@l > * {
        width: 100%;
    }
    .uk-child-width-1-2\@l > * {
        width: 50%;
    }
    .uk-child-width-1-3\@l > * {
        width: calc(100% * 1 / 3.001);
    }
    .uk-child-width-1-4\@l > * {
        width: 25%;
    }
    .uk-child-width-1-5\@l > * {
        width: 20%;
    }
    .uk-child-width-1-6\@l > * {
        width: calc(100% * 1 / 6.001);
    }
    .uk-child-width-1-8\@l > * {
        width: calc(100% * 1 / 8.001);
    }
    .uk-child-width-1-10\@l > * {
        width: calc(100% * 1 / 10.001);
    }
    .uk-child-width-auto\@l > * {
        width: auto;
    }
    .uk-child-width-expand\@l > :not([class*='uk-width']) {
        flex: 1;
        min-width: 1px;
    }
}
@media (min-width: 1600px) {
    .uk-child-width-1-1\@xl > * {
        width: 100%;
    }
    .uk-child-width-1-2\@xl > * {
        width: 50%;
    }
    .uk-child-width-1-3\@xl > * {
        width: calc(100% * 1 / 3.001);
    }
    .uk-child-width-1-4\@xl > * {
        width: 25%;
    }
    .uk-child-width-1-5\@xl > * {
        width: 20%;
    }
    .uk-child-width-1-6\@xl > * {
        width: calc(100% * 1 / 6.001);
    }
    .uk-child-width-auto\@xl > * {
        width: auto;
    }
    .uk-child-width-expand\@xl > :not([class*='uk-width']) {
        flex: 1;
        min-width: 1px;
    }
}
/* Single Widths
 ========================================================================== */
[class*='uk-width'] {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}
.uk-width-1-2 {
    width: 50%;
}
.uk-width-1-3 {
    width: calc(100% * 1 / 3.001);
}
.uk-width-2-3 {
    width: calc(100% * 2 / 3.001);
}
.uk-width-1-4 {
    width: 25%;
}
.uk-width-3-4 {
    width: 75%;
}
.uk-width-1-5 {
    width: 20%;
}
.uk-width-2-5 {
    width: 40%;
}
.uk-width-3-5 {
    width: 60%;
}
.uk-width-4-5 {
    width: 80%;
}
.uk-width-1-6 {
    width: calc(100% * 1 / 6.001);
}
.uk-width-5-6 {
    width: calc(100% * 5 / 6.001);
}
.uk-width-3xsmall {
    width: 3rem;
}
.uk-width-2xsmall {
    width: 5rem;
}
.uk-width-xsmall {
    width: 6.25rem;
}
.uk-width-small {
    width: 8.75rem;
}
.uk-width-medium {
    width: 15rem;
}
.uk-width-large {
    width: 28rem;
}
.uk-width-xlarge {
    width: 37.5rem;
}
.uk-width-2xlarge {
    width: 46rem;
}
.uk-width-auto {
    width: auto;
}
.uk-width-expand {
    flex: 1;
    min-width: 1px;
}
@media (min-width: 640px) {
    .uk-width-1-1\@s {
        width: 100%;
    }
    .uk-width-1-2\@s {
        width: 50%;
    }
    .uk-width-1-3\@s {
        width: calc(100% * 1 / 3.001);
    }
    .uk-width-2-3\@s {
        width: calc(100% * 2 / 3.001);
    }
    .uk-width-1-4\@s {
        width: 25%;
    }
    .uk-width-3-4\@s {
        width: 75%;
    }
    .uk-width-1-5\@s {
        width: 20%;
    }
    .uk-width-2-5\@s {
        width: 40%;
    }
    .uk-width-3-5\@s {
        width: 60%;
    }
    .uk-width-4-5\@s {
        width: 80%;
    }
    .uk-width-1-6\@s {
        width: calc(100% * 1 / 6.001);
    }
    .uk-width-5-6\@s {
        width: calc(100% * 5 / 6.001);
    }
    .uk-width-2xsmall\@s {
        width: 5rem;
    }
    .uk-width-xsmall\@s {
        width: 6.25rem;
    }
    .uk-width-small\@s {
        width: 8.75rem;
    }
    .uk-width-medium\@s {
        width: 15rem;
    }
    .uk-width-large\@s {
        width: 28rem;
    }
    .uk-width-xlarge\@s {
        width: 37.5rem;
    }
    .uk-width-2xlarge\@s {
        width: 46rem;
    }
    .uk-width-auto\@s {
        width: auto;
    }
    .uk-width-expand\@s {
        flex: 1;
        min-width: 1px;
    }
}
@media (min-width: 960px) {
    .uk-width-1-1\@m {
        width: 100%;
    }
    .uk-width-1-2\@m {
        width: 50%;
    }
    .uk-width-1-3\@m {
        width: calc(100% * 1 / 3.001);
    }
    .uk-width-2-3\@m {
        width: calc(100% * 2 / 3.001);
    }
    .uk-width-1-4\@m {
        width: 25%;
    }
    .uk-width-3-4\@m {
        width: 75%;
    }
    .uk-width-1-5\@m {
        width: 20%;
    }
    .uk-width-2-5\@m {
        width: 40%;
    }
    .uk-width-3-5\@m {
        width: 60%;
    }
    .uk-width-4-5\@m {
        width: 80%;
    }
    .uk-width-1-6\@m {
        width: calc(100% * 1 / 6.001);
    }
    .uk-width-5-6\@m {
        width: calc(100% * 5 / 6.001);
    }
    .uk-width-2xsmall\@m {
        width: 5rem;
    }
    .uk-width-xsmall\@m {
        width: 6.25rem;
    }
    .uk-width-small\@m {
        width: 8.75rem;
    }
    .uk-width-medium\@m {
        width: 15rem;
    }
    .uk-width-large\@m {
        width: 28rem;
    }
    .uk-width-xlarge\@m {
        width: 37.5rem;
    }
    .uk-width-2xlarge\@m {
        width: 46rem;
    }
    .uk-width-auto\@m {
        width: auto;
    }
    .uk-width-expand\@m {
        flex: 1;
        min-width: 1px;
    }
}
@media (min-width: 1200px) {
    .uk-max-width-1-2 {
        max-width: 50%;
    }
    .uk-width-1-1\@l {
        width: 100%;
    }
    .uk-width-1-2\@l {
        width: 50%;
    }
    .uk-width-1-3\@l {
        width: calc(100% * 1 / 3.001);
    }
    .uk-width-2-3\@l {
        width: calc(100% * 2 / 3.001);
    }
    .uk-width-1-4\@l {
        width: 25%;
    }
    .uk-width-3-4\@l {
        width: 75%;
    }
    .uk-width-1-5\@l {
        width: 20%;
    }
    .uk-width-2-5\@l {
        width: 40%;
    }
    .uk-width-3-5\@l {
        width: 60%;
    }
    .uk-width-4-5\@l {
        width: 80%;
    }
    .uk-width-1-6\@l {
        width: calc(100% * 1 / 6.001);
    }
    .uk-width-5-6\@l {
        width: calc(100% * 5 / 6.001);
    }
    .uk-width-2xsmall\@l {
        width: 5rem;
    }
    .uk-width-xsmall\@l {
        width: 6.25rem;
    }
    .uk-width-small\@l {
        width: 8.75rem;
    }
    .uk-width-medium\@l {
        width: 15rem;
    }
    .uk-width-large\@l {
        width: 28rem;
    }
    .uk-width-xlarge\@l {
        width: 37.5rem;
    }
    .uk-width-2xlarge\@l {
        width: 46rem;
    }
    .uk-width-auto\@l {
        width: auto;
    }
    .uk-width-expand\@l {
        flex: 1;
        min-width: 1px;
    }
}
@media (min-width: 1600px) {
    .uk-width-1-1\@xl {
        width: 100%;
    }
    .uk-width-1-2\@xl {
        width: 50%;
    }
    .uk-width-1-3\@xl {
        width: calc(100% * 1 / 3.001);
    }
    .uk-width-2-3\@xl {
        width: calc(100% * 2 / 3.001);
    }
    .uk-width-1-4\@xl {
        width: 25%;
    }
    .uk-width-3-4\@xl {
        width: 75%;
    }
    .uk-width-1-5\@xl {
        width: 20%;
    }
    .uk-width-2-5\@xl {
        width: 40%;
    }
    .uk-width-3-5\@xl {
        width: 60%;
    }
    .uk-width-4-5\@xl {
        width: 80%;
    }
    .uk-width-1-6\@xl {
        width: calc(100% * 1 / 6.001);
    }
    .uk-width-5-6\@xl {
        width: calc(100% * 5 / 6.001);
    }
    .uk-width-2xsmall\@xl {
        width: 5rem;
    }
    .uk-width-xsmall\@xl {
        width: 6.25rem;
    }
    .uk-width-small\@xl {
        width: 8.75rem;
    }
    .uk-width-medium\@xl {
        width: 15rem;
    }
    .uk-width-large\@xl {
        width: 28rem;
    }
    .uk-width-xlarge\@xl {
        width: 37.5rem;
    }
    .uk-width-2xlarge\@xl {
        width: 46rem;
    }
    .uk-width-auto\@xl {
        width: auto;
    }
    .uk-width-expand\@xl {
        flex: 1;
        min-width: 1px;
    }
}

/* ========================================================================
   Component: Height
 ========================================================================== */
[class*='uk-height'] {
    box-sizing: border-box;
}
.uk-height-1-1 {
    height: 100%;
}
.uk-height-1-2 {
    height: 50%;
}
.uk-height-viewport {
    min-height: 100vh;
}
.uk-height-viewport-hidden {
    height: 100vh;
    overflow: hidden;
}
.uk-height-viewport-section {
    height: calc(100vh - 9.5rem);
    overflow-y: auto;
}
.uk-min-height-medium {
    min-height: 27.8rem;
}
.uk-height-3xsmall {
    height: 3rem;
}
.uk-height-2xsmall {
    height: 5rem;
}
.uk-height-xsmall {
    height: 6.25rem;
}
.uk-height-small {
    height: 8.75rem;
}
.uk-height-medium {
    height: 15rem;
}
.uk-height-larger {
    height: 23.12rem;
}
.uk-height-large {
    height: 31.25rem;
}
.uk-height-xlarge {
    height: 42.5rem;
}
.uk-height-2xlarge {
    height: 47.5rem;
}
@media (max-width: 1220px) {
    .uk-height-xlarge, .uk-height-large {
        height: 15rem;
    }
    .uk-height-2xlarge {
        height: 23rem;
    }
}
/* ========================================================================
   Component: Margin
 ========================================================================== */
.uk-margin {
    margin-bottom: 24px;
}
* + .uk-margin {
    margin-top: 24px !important;
}
.uk-margin-top {
    margin-top: 24px !important;
}
.uk-margin-bottom {
    margin-bottom: 24px !important;
}
.uk-margin-left {
    margin-left: 24px !important;
}
.uk-margin-right {
    margin-right: 24px !important;
}
/* XSmall
 ========================================================================== */
.uk-margin-xsmall {
    margin-bottom: 8px;
}
* + .uk-margin-xsmall {
    margin-top: 8px !important;
}
.uk-margin-xsmall-top {
    margin-top: 8px !important;
}
.uk-margin-xsmall-bottom {
    margin-bottom: 8px !important;
}
.uk-margin-xsmall-left {
    margin-left: 8px !important;
}
.uk-margin-xsmall-right {
    margin-right: 8px !important;
}
/* Small
 ========================================================================== */
.uk-margin-small {
    margin-bottom: 12px;
}
* + .uk-margin-small {
    margin-top: 12px !important;
}
.uk-margin-small-top {
    margin-top: 12px !important;
}
.uk-margin-small-bottom {
    margin-bottom: 12px !important;
}
.uk-margin-small-left {
    margin-left: 12px !important;
}
.uk-margin-small-right {
    margin-right: 12px !important;
}
/* Medium
 ========================================================================== */
.uk-margin-medium {
    margin-bottom: 2rem;
}
* + .uk-margin-medium {
    margin-top: 2rem !important;
}
.uk-margin-medium-top {
    margin-top: 2rem !important;
}
.uk-margin-medium-bottom {
    margin-bottom: 2rem !important;
}
.uk-margin-medium-left {
    margin-left: 2rem !important;
}
.uk-margin-medium-right {
    margin-right: 2rem !important;
}
/* Large
 ========================================================================== */
.uk-margin-large {
    margin-bottom: 2.5rem;
}
* + .uk-margin-large {
    margin-top: 2.5rem !important;
}
.uk-margin-large-top {
    margin-top: 2.5rem !important;
}
.uk-margin-large-bottom {
    margin-bottom: 2.5rem !important;
}
.uk-margin-large-left {
    margin-left: 2.5rem !important;
}
.uk-margin-large-right {
    margin-right: 2.5rem !important;
}

@media (min-width: 1200px) {
    .uk-margin-large {
        margin-bottom: 3.75rem;
    }
    * + .uk-margin-large {
        margin-top: 3.75rem !important;
    }
    .uk-margin-large-top {
        margin-top: 3.75rem !important;
    }
    .uk-margin-large-bottom {
        margin-bottom: 3.75rem !important;
    }
    .uk-margin-large-left {
        margin-left: 3.75rem !important;
    }
    .uk-margin-large-right {
        margin-right: 3.75rem !important;
    }
}
/* XLarge
 ========================================================================== */
.uk-margin-xlarge {
    margin-bottom: 4rem;
}
* + .uk-margin-xlarge {
    margin-top: 4rem !important;
}
.uk-margin-xlarge-top {
    margin-top: 4rem !important;
}
.uk-margin-xlarge-bottom {
    margin-bottom: 4rem !important;
}
.uk-margin-xlarge-left {
    margin-left: 4rem !important;
}
.uk-margin-xlarge-right {
    margin-right: 4rem !important;
}
@media (min-width: 1200px) {
    .uk-margin-xlarge {
        margin-bottom: 7.5rem;
    }
    * + .uk-margin-xlarge {
        margin-top: 7rem !important;
    }
    .uk-margin-xlarge-top {
        margin-top: 7rem !important;
    }
    .uk-margin-xlarge-bottom {
        margin-bottom: 7rem !important;
    }
    .uk-margin-xlarge-left {
        margin-left: 7rem !important;
    }
    .uk-margin-xlarge-right {
        margin-right: 7rem !important;
    }
}
/* 2XLarge
 ========================================================================== */
.uk-margin-2xlarge {
    margin-bottom: 5rem;
}
* + .uk-margin-2xlarge {
    margin-top: 5rem !important;
}
.uk-margin-2xlarge-top {
    margin-top: 5rem !important;
}
.uk-margin-2xlarge-bottom {
    margin-bottom: 5rem !important;
}
.uk-margin-2xlarge-left {
    margin-left: 5rem !important;
}
.uk-margin-2xlarge-right {
    margin-right: 5rem !important;
}
@media (min-width: 1200px) {
    .uk-margin-2xlarge {
        margin-bottom: 10rem;
    }
    * + .uk-margin-2xlarge {
        margin-top: 10rem !important;
    }
    .uk-margin-2xlarge-top {
        margin-top: 10rem !important;
    }
    .uk-margin-2xlarge-bottom {
        margin-bottom: 10rem !important;
    }
    .uk-margin-2xlarge-left {
        margin-left: 10rem !important;
    }
    .uk-margin-2xlarge-right {
        margin-right: 10rem !important;
    }
}
/* Auto
 ========================================================================== */
.uk-margin-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}
.uk-margin-auto-top {
    margin-top: auto !important;
}
.uk-margin-auto-bottom {
    margin-bottom: auto !important;
}
.uk-margin-auto-left {
    margin-left: auto !important;
}
.uk-margin-auto-right {
    margin-right: auto !important;
}
.uk-margin-auto-vertical {
    margin-top: auto !important;
    margin-bottom: auto !important;
}
.uk-margin-remove {
    margin: 0 !important;
}
.uk-margin-remove-top {
    margin-top: 0 !important;
}
.uk-margin-remove-bottom {
    margin-bottom: 0 !important;
}
.uk-margin-remove-left {
    margin-left: 0 !important;
}
.uk-margin-remove-right {
    margin-right: 0 !important;
}
.uk-margin-remove-vertical {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
/* ========================================================================
   Component: Padding
 ========================================================================== */
.uk-padding {
    padding: 1.5rem;
}
.uk-padding-small {
    padding: 1rem;
}

.uk-padding-large {
    padding: 2rem;
}
@media (min-width: 1200px) {
    .uk-padding-large {
        padding: 3.25rem;
    }
}
.uk-padding-remove {
    padding: 0 !important;
}
.uk-padding-remove-top {
    padding-top: 0 !important;
}
.uk-padding-remove-bottom {
    padding-bottom: 0 !important;
}
.uk-padding-remove-left {
    padding-left: 0 !important;
}
.uk-padding-remove-right {
    padding-right: 0 !important;
}
.uk-padding-remove-vertical {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.uk-padding-remove-horizontal {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ========================================================================
   Component: Button
 ========================================================================== */
.uk-button {
    margin: 0;
    border: none;
    overflow: visible;
    font: inherit;
    color: inherit;
    -webkit-appearance: none;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 1rem;
    vertical-align: middle;
    font-size: 0.875rem;
    line-height: 3rem;
    letter-spacing: var(--ls-large);
    font-weight: var(--text-bold);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0.75rem;
    transition: var(--transition-large);
    transition-property: color, background-color, border-color;
}
@media (min-width: 1200px) {
    .uk-button {
        padding: 0 2.5rem;
        line-height: 3.5rem;
    }
}
.uk-button:not(:disabled) {
    cursor: pointer;
}

.uk-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}
.uk-button:hover {
    text-decoration: none;
}
.uk-button:focus {
    outline: none;
}
/*
 * Default
 */
.uk-button-default {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.uk-button-default:hover,
.uk-light .uk-button-default:hover,
.uk-button-default:focus,
.uk-light .uk-button-default:focus {
    background-color: transparent;
    color: var(--hover-color);
    border-color: var(--hover-color);
}
.uk-button-default:active,
.uk-light .uk-button-default:active,
.uk-button-default.uk-active,
.uk-light .uk-button-default.uk-active {
    background-color: transparent;
    color: var(--active-color);
    border-color: var(--active-color);
}
/*
 * Primary
 */
.uk-button-primary {
    background-color: var(--primary-color);
    color: var(--contrast-color);
    border: 1px solid transparent;
}
.uk-button-primary:hover,
.uk-button-primary:focus {
    background-color: var(--hover-color);
    color: var(--contrast-color);
}
.uk-button-primary:active,
.uk-button-primary.uk-active {
    background-color: var(--active-color);
    color: var(--contrast-color);
}
@media(max-width: 1199px) {
    .uk-button-primary {
        width: 100%;
    }
}

/*
 * Secondary
 */
.uk-button-secondary {
    font-size: 0.75rem;
    padding: 0 0.6rem;
    line-height: 2.5rem;
    border-radius: 0.5rem;
    background-color: transparent;
    color: var(--main-color);
    border: 1px solid var(--border-color);
}
@media (min-width: 1200px) {
    .uk-button-secondary {
        font-size: 0.875rem;
        padding: 0 0.625rem;
    }
}
.uk-button-secondary:hover,
.uk-button-secondary:focus {
    background-color: transparent;
    color: var(--hover-color);
    border-color: var(--border-color);
}
.uk-button-secondary:active,
.uk-button-secondary.uk-active {
    background-color: transparent;
    color: var(--active-color);
    border-color: var(--border-color);
}

/*
 * Tertiary
 */
.uk-button-tertiary {
    font-size: 1rem;
    padding: 0 0.6rem;
    line-height: 2.5rem;
    border-radius: 0.5rem;
    letter-spacing: var(--ls-small);
    background: var(--light-color);
    color: var(--muted-color);
    text-transform: none;
    border: 1px solid transparent;
    position: relative;
}
.uk-button-tertiary:hover,
.uk-button-tertiary:focus {
    background-color: var(--border-color);
    color: var(--muted-color);
}
.uk-button-tertiary:active,
.uk-button-tertiary.uk-active,
.uk-button-tertiary[aria-expanded="true"]{
    background-color: transparent;
    color: var(--muted-color);
    border-color: var(--border-color);
}

/*
 * Filter
 */
.uk-button-filter::after {
    content:'';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='dimgray' points='5 7 15 7 10 12'%3E%3C/polygon%3E%3C/svg%3E");    background-position:  center center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 0.45rem;
    margin-bottom: -0.2rem;
    transition: var(--transition-small);
    transition-property: transform;
    transform-origin: center center;
}
.uk-button-filter:active::after,
.uk-button-filter.uk-active::after,
.uk-button-filter[aria-expanded="true"]::after{
    transform: rotate(180deg);
}

/*
 * Map
 */
.uk-button-map::before {
    content:'';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='19' viewBox='0 0 16 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 6.5C7.17157 6.5 6.5 7.17157 6.5 8C6.5 8.82843 7.17157 9.5 8 9.5C8.82843 9.5 9.5 8.82843 9.5 8C9.5 7.17157 8.82843 6.5 8 6.5Z' fill='%23757575'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 7.64706C16 13 8 19 8 19C8 19 0 13 0 7.64706C0 3.35873 3.58172 0 8 0C12.4183 0 16 3.35873 16 7.64706ZM14 7.64706C14 8.50481 13.6713 9.53346 13.0126 10.6885C12.3632 11.8273 11.4696 12.9557 10.5296 13.9752C9.61969 14.962 8.70334 15.8071 8 16.4158C7.29666 15.8071 6.38031 14.962 5.47037 13.9752C4.53045 12.9557 3.63677 11.8273 2.98738 10.6885C2.32873 9.53346 2 8.50481 2 7.64706C2 4.5582 4.58894 2 8 2C11.4111 2 14 4.5582 14 7.64706Z' fill='%23757575'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0.45rem;
    margin-bottom: -0.2rem;
    transition: var(--transition-small);
    transition-property: transform;
    transform-origin: center center;
}
/*
 * Disabled
 */
.uk-button-default:disabled,
.uk-button-primary:disabled,
.uk-button-secondary:disabled,
.uk-button-tertiary:disabled {
    background-color: transparent;
    color: var(--light-color);
    border-color: var(--border-color);
}
/*
 * like
 */

.uk-button.uk-button-like {
    padding: 0 0.5rem 0 2rem;
    line-height: 2.23rem;
    border-radius: 0.25rem;
    background-color: white;
    border: 1px solid white;
    box-sizing: border-box;
    position: relative;
    font-size: 1rem;
}
.uk-button.uk-button-like::before{
    content: '';
    display: inline-block;
    width: 1.2rem;
    position: absolute;
    top: 0.15rem;
    left: 0.5rem;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='19' viewBox='0 0 22 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 3.201L12.5505 1.63621C14.7122 -0.545403 18.217 -0.545403 20.3787 1.63621C22.5404 3.81782 22.5404 7.35492 20.3787 9.53653L11.0016 19L11 18.9984L10.9984 19L1.62128 9.53653C-0.540425 7.35492 -0.540425 3.81782 1.62128 1.63621C3.78298 -0.545403 7.28779 -0.545403 9.44949 1.63621L11 3.201ZM11.0013 16.1588L18.958 8.12881C20.3473 6.72674 20.3473 4.446 18.958 3.04392C17.5788 1.65202 15.3504 1.65202 13.9712 3.04392L11 6.04249L8.02881 3.04392C6.64961 1.65203 4.42115 1.65202 3.04196 3.04393C1.65268 4.446 1.65268 6.72674 3.04196 8.12881L10.9987 16.1588L11 16.1575L11.0013 16.1588Z' fill='%230F0F0F'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: var(--transition-large);
    transition-property: background-image;
}
.uk-button.uk-button-like:hover,
.uk-button.uk-button-like:focus,
.uk-button.uk-button-like:active,
.liked .uk-button.uk-button-like {
    color: var(--primary-color);
}
.uk-button.uk-button-like:hover::before,
.uk-button.uk-button-like:focus::before,
.uk-button.uk-button-like:active::before,
.liked .uk-button.uk-button-like::before {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='19' viewBox='0 0 22 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 3.201L12.5505 1.63621C14.7122 -0.545403 18.217 -0.545403 20.3787 1.63621C22.5404 3.81782 22.5404 7.35492 20.3787 9.53653L11.0016 19L11 18.9984L10.9984 19L1.62128 9.53653C-0.540425 7.35492 -0.540425 3.81782 1.62128 1.63621C3.78298 -0.545403 7.28779 -0.545403 9.44949 1.63621L11 3.201ZM11.0013 16.1588L18.958 8.12881C20.3473 6.72674 20.3473 4.446 18.958 3.04392C17.5788 1.65202 15.3504 1.65202 13.9712 3.04392L11 6.04249L8.02881 3.04392C6.64961 1.65203 4.42115 1.65202 3.04196 3.04393C1.65268 4.446 1.65268 6.72674 3.04196 8.12881L10.9987 16.1588L11 16.1575L11.0013 16.1588Z' fill='%23E31E24'/%3E%3C/svg%3E%0A");
}
.uk-button.uk-button-like.uk-button-like-border {
    border-color: var(--border-color);
}
.uk-light .uk-button.uk-button-like {
    background: transparent;
    color: white;
}
/* Size modifiers
 ========================================================================== */
.uk-button-small {
    font-size: 0.75rem;
    padding: 0 0.75rem;
    line-height: 2.5rem;
}
@media (min-width: 1200px) {
    .uk-button-small {
        font-size: 0.875rem;
        padding: 0 1rem;
        line-height: 3rem;
    }
    .uk-button-large {
        width: 28rem;
        max-width: 100%;
    }
}
@media (max-width: 1199px) {
    .uk-button-large {
        width: 100%;
    }
}

/* Text modifiers
 ========================================================================== */
.uk-button-text {
    padding: 0;
    line-height: 1.5;
    letter-spacing: var(--ls-large);
    font-weight: var(--text-bold);
    background: none;
    color: var(--primary-color);
}

.uk-button-text:hover,
.uk-button-text:focus {
    color: var(--hover-color);
}
.uk-button-text:active {
    color: var(--active-color);
}

/* Icon btn modifiers
 ========================================================================== */
.uk-icon {
    margin: 0;
    border: none;
    border-radius: 0;
    overflow: visible;
    font: inherit;
    color: inherit;
    text-transform: none;
    padding: 0;
    background-color: transparent;
    display: inline-block;
    fill: currentcolor;
    line-height: 0;
    cursor: pointer;
}
.uk-icon.uk-icon-btn {
    width: 5rem;
    height: 5rem;
    position: relative;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    border-radius: 1000px;
    background: white;
    transition: var(--transition-small);
}
.uk-icon.uk-icon-btn-reset {
    width: 5rem;
    height: 5rem;
    position: relative;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    border-radius: 1000px;
    cursor: auto;
}
.uk-icon.uk-icon-btn-reset svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: 100%;
    box-sizing: border-box;
}
@media (max-width:1199px) {
    .uk-icon.uk-icon-btn-reset {
        width: 2.5rem;
        height: 2.5rem;
    }
    .uk-icon.uk-icon-btn-reset svg{
        transform: scale(0.6) translate(-80%, -80%);
    }
}
.uk-light .uk-icon.uk-icon-btn-reset {
    border-color: rgba(255, 255, 255, 0.3);
}
.uk-icon.uk-icon-btn:hover, .uk-icon-btn:focus {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}
.uk-icon.uk-icon-btn:active {
    background-color: var(--active-color);
}
.uk-icon.uk-icon-btn svg > * {
    fill: var(--hover-color);
    transition: var(--transition-small);
}
.uk-icon.uk-icon-btn-reset svg > * {
    fill: var(--border-color);
}
.uk-icon.uk-icon-btn:hover svg > *,
.uk-animation-toggle:hover .uk-icon.uk-icon-btn svg > *,
.uk-icon.uk-icon-btn:focus svg > *,
.uk-animation-toggle:focus .uk-icon.uk-icon-btn svg > *,
.uk-icon.uk-icon-btn:active svg > *,
.uk-animation-toggle:active .uk-icon.uk-icon-btn svg > *{
    fill: var(--contrast-color);
}
.uk-icon-button {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--light-color);
    outline: none;
    border-radius: 500px;
    vertical-align: middle;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1199px)  {
    .uk-icon-button {
        width: 3rem;
        height: 3rem;
    }
}
.uk-icon-button.uk-icon-button-blank {
    background: white;
}
/* ========================================================================
   Component: Cover
 ========================================================================== */
.uk-cover {
    max-width: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
iframe.uk-cover {
    pointer-events: none;
}
.uk-cover-container {
    overflow: hidden;
    position: relative;
}
/* ========================================================================
   Component: Background
 ========================================================================== */
.uk-background-cover,
.uk-background-contain {
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.uk-background-cover {
    background-size: cover;
}
.uk-background-cover-2 {
    background-size: 200%;
}
.uk-background-contain {
    background-size: contain;
}
.uk-background-top-left {
    background-position: 0 0;
}
.uk-background-top-center {
    background-position: 50% 0;
}
.uk-background-top-right {
    background-position: 100% 0;
}
.uk-background-center-left {
    background-position: 0 50%;
}
.uk-background-center-center {
    background-position: 50% 50%;
}
.uk-background-center-right {
    background-position: 100% 50%;
}
.uk-background-bottom-left {
    background-position: 0 100%;
}
.uk-background-bottom-center {
    background-position: 50% 100%;
}
.uk-background-bottom-right {
    background-position: 100% 100%;
}
.uk-background-norepeat {
    background-repeat: no-repeat;
}
.uk-bw {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

/* ========================================================================
   Component: SVG
 ========================================================================== */
.uk-svg,
.uk-svg:not(.uk-preserve) [fill*='#']:not(.uk-preserve) {
    fill: currentcolor;
}
.uk-svg:not(.uk-preserve) [stroke*='#']:not(.uk-preserve) {
    stroke: currentcolor;
}
.uk-svg {
    transform: translate(0, 0);
}
svg > .stroke,
svg > .fill {
    transition: var(--transition-small);
}
a:not([class]) svg > .stroke, a.uk-link-reset svg > .stroke  {
    stroke: var(--main-color);
}
a:not([class]) svg > .fill, a.uk-link-reset svg > .fill   {
    fill: var(--main-color);
}
a:not([class]):hover svg > .stroke, a.uk-link-reset:hover svg > .stroke  {
    stroke: var(--hover-color);
}
a:not([class]):hover svg > .fill, a.uk-link-reset:hover svg > .fill  {
    fill: var(--hover-color);
}
/* ========================================================================
   Component: Dotnav
 ========================================================================== */
.uk-dotnav {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: -12px;
}
.uk-dotnav > * {
    flex: none;
    padding-left: 12px;
}

.uk-dotnav > * > * {
    display: block;
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid rgba(102, 102, 102, 0.4);
    transition: 0.2s ease-in-out;
    transition-property: background-color, border-color;
}

.uk-dotnav > * > :hover,
.uk-dotnav > * > :focus {
    background-color: rgba(102, 102, 102, 0.6);
    outline: none;
    border-color: transparent;
}

.uk-dotnav > * > :active {
    background-color: rgba(102, 102, 102, 0.2);
    border-color: transparent;
}

.uk-dotnav > .uk-active > * {
    background-color: rgba(102, 102, 102, 0.6);
    border-color: transparent;
}
.uk-light .uk-dotnav > li > a {
    width: 100%;
    background: transparent !important;
    position: relative;
    border-radius: 0;
    border: none;
}
.uk-light .uk-dotnav > .uk-active > * {
    background: transparent !important;
    border: none;
}
.uk-light .uk-dotnav > li > a::before {
    content: '';
    display: inline-block;
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.51);
}
.uk-light .uk-dotnav > li.uk-active > a::after {
    content: '';
    display: inline-block;
    position: absolute;
    top:0;
    right: 100%;
    left: 0;
    border-top: 2px solid white;
    animation-duration: 7s;
    animation-name: slidein;
    animation-iteration-count: infinite;
    transition: 7s linear;
}
@keyframes slidein {
    from {
        right: 100%;
    }

    to {
        right: 0;
    }
}
.uk-dotnav-position {
    position: absolute;
    top: 13rem;
    left:0;
    right:0;
}
.uk-dotnav.uk-dotnav-line > * > * {
    width: 3.5rem;
    height: 2px;
    border-radius: 2px;
}
.uk-dotnav.uk-dotnav-line > li.uk-active > *{
    background-color: var(--primary-color);
}
.uk-dotnav.uk-dotnav-line  {
    margin-left: -0.5rem;
}
.uk-dotnav.uk-dotnav-line > li {
    padding-left: 0.5rem;
}
.uk-dotnav-light .uk-dotnav > * > * {
    display: block;
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.65);
    transition: 0.2s ease-in-out;
    transition-property: background-color, border-color;
}

.uk-dotnav-light .uk-dotnav > * > :hover,
.uk-dotnav-light .uk-dotnav > * > :focus {
    background-color: rgba(255, 255, 255, 0.85);
    outline: none;
    border-color: rgba(255, 255, 255, 0.85);
}

.uk-dotnav-light .uk-dotnav > * > :active,
.uk-dotnav-light .uk-dotnav > li.uk-active > * {
    background-color: white;
    border-color: white;
}

.uk-dotnav-light .uk-dotnav > .uk-active > * {
    background-color: rgba(102, 102, 102, 0.6);
    border-color: transparent;
}
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
.uk-slidenav {
    padding: 5px 10px;
    color: rgba(102, 102, 102, 0.5);
    transition: color 0.1s ease-in-out;
}
.uk-slidenav:hover,
.uk-slidenav:focus {
    color: rgba(102, 102, 102, 0.9);
    outline: none;
}
.uk-slidenav:active {
    color: rgba(102, 102, 102, 0.5);
}
.uk-slidenav-large {
    padding: 10px 10px;
}
.uk-slidenav-container {
    display: flex;
}
/* ========================================================================
   Component: Close
 ========================================================================== */
.uk-close {
    color: #999;
    transition: 0.1s ease-in-out;
    transition-property: color, opacity;
}
.uk-close:hover,
.uk-close:focus {
    color: #666;
    outline: none;
}
/* ========================================================================
   Component: Spinner
 ========================================================================== */
.uk-spinner > * {
    animation: uk-spinner-rotate 1.4s linear infinite;
}
@keyframes uk-spinner-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(270deg);
    }
}
.uk-spinner > * > * {
    stroke-dasharray: 88px;
    stroke-dashoffset: 0;
    transform-origin: center;
    animation: uk-spinner-dash 1.4s ease-in-out infinite;
    stroke-width: 1;
    stroke-linecap: round;
}
@keyframes uk-spinner-dash {
    0% {
        stroke-dashoffset: 88px;
    }
    50% {
        stroke-dashoffset: 22px;
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 88px;
        transform: rotate(450deg);
    }
}
/* ========================================================================
   Component: Lightbox
 ========================================================================== */
.uk-lightbox {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999999;
    background: rgb(0 0 0 / 70%);
    opacity: 0;
    transition: opacity 0.15s linear;
    touch-action: pinch-zoom;
}

.uk-lightbox.uk-open {
    display: block;
    opacity: 1;
}

.uk-lightbox-page {
    overflow: hidden;
}

.uk-lightbox-items > * {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    will-change: transform, opacity;
}
.uk-lightbox-items > * > * {
    max-width: 100vw;
    max-height: 100vh;
}
.uk-lightbox-items > :focus {
    outline: none;
}
.uk-lightbox-items > * > :not(iframe) {
    width: auto;
    height: auto;
}
.uk-lightbox-items > .uk-active {
    display: flex;
}
.uk-lightbox-toolbar {
    padding: 10px 10px;
    background: rgba(0, 0, 0, 0.45);
    font-size: 1.2rem;
    letter-spacing: var(--ls-large);
    color: white;
}
.uk-lightbox-toolbar > * {
    color: white;
}
.uk-lightbox-toolbar-icon {
    padding: 5px;
    color: rgba(255, 255, 255, 0.7);
}
.uk-lightbox-toolbar-icon:hover {
    color: #fff;
}
.uk-lightbox-button {
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.uk-lightbox-button:hover,
.uk-lightbox-button:focus {
    color: #fff;
}
.uk-lightbox-caption:empty {
    display: none;
}
.uk-lightbox-iframe {
    width: 80%;
    height: 80%;
}
.uk-lightbox-items img, .uk-lightbox-items video, .uk-lightbox-items iframe {
    border-radius: 16px;
}

.uk-lightbox-button svg > *,
.uk-lightbox-toolbar-icon svg > * {
    stroke: currentColor;
}
.uk-lightbox-caption:empty {
    display: none;
}
.uk-lightbox-iframe {
    width: 80%;
    height: 80%;
}
/* ========================================================================
   Component: Transition
 ========================================================================== */
.uk-transition-toggle {
    -webkit-tap-highlight-color: transparent;
}
.uk-transition-toggle:focus {
    outline: none;
}
.uk-transition-fade,
[class*='uk-transition-scale'],
[class*='uk-transition-slide'] {
    transition: 0.3s ease-out;
    transition-property: opacity, transform, filter;
    opacity: 0;
}
.uk-transition-toggle:hover .uk-transition-fade,
.uk-transition-toggle:focus .uk-transition-fade,
.uk-transition-active.uk-active .uk-transition-fade {
    opacity: 1;
}
.uk-transition-toggle:hover .uk-transition-scale-up,
.uk-transition-toggle:focus .uk-transition-scale-up,
.uk-transition-active.uk-active .uk-transition-scale-up {
    opacity: 1;
    transform: scale(1.03, 1.03);
}
.uk-transition-toggle:hover .uk-transition-scale-down,
.uk-transition-toggle:focus .uk-transition-scale-down,
.uk-transition-active.uk-active .uk-transition-scale-down {
    opacity: 1;
    transform: scale(1, 1);
}
.uk-transition-slide-top {
    transform: translateY(-100%);
}
.uk-transition-slide-bottom {
    transform: translateY(100%);
}
.uk-transition-slide-left {
    transform: translateX(-100%);
}
.uk-transition-slide-right {
    transform: translateX(100%);
}
.uk-transition-slide-top-small {
    transform: translateY(-10px);
}
.uk-transition-slide-bottom-small {
    transform: translateY(10px);
}
.uk-transition-slide-left-small {
    transform: translateX(-10px);
}
.uk-transition-slide-right-small {
    transform: translateX(10px);
}
.uk-transition-slide-top-medium {
    transform: translateY(-50px);
}
.uk-transition-slide-bottom-medium {
    transform: translateY(50px);
}
.uk-transition-slide-left-medium {
    transform: translateX(-50px);
}
.uk-transition-slide-right-medium {
    transform: translateX(50px);
}
/* Show */
.uk-transition-toggle:hover [class*='uk-transition-slide'],
.uk-transition-toggle:focus [class*='uk-transition-slide'],
.uk-transition-active.uk-active [class*='uk-transition-slide'] {
    opacity: 1;
    transform: translate(0, 0);
}
.uk-transition-opaque {
    opacity: 1;
}
.uk-transition-slow {
    transition-duration: 0.7s;
}
/* ========================================================================
   Component: Position
 ========================================================================== */
[class*='uk-position-top'],
[class*='uk-position-bottom'],
[class*='uk-position-left'],
[class*='uk-position-right'],
[class*='uk-position-center'] {
    position: absolute !important;
    max-width: 100%;
}
.uk-position-top {
    top: 0;
    left: 0;
    right: 0;
}
.uk-position-bottom {
    bottom: 0;
    left: 0;
    right: 0;
}
.uk-position-left {
    top: 0;
    bottom: 0;
    left: 0;
}
.uk-position-right {
    top: 0;
    bottom: 0;
    right: 0;
}
.uk-position-top-left {
    top: 0;
    left: 0;
}
.uk-position-top-right {
    top: 0;
    right: 0;
}
.uk-position-bottom-left {
    bottom: 0;
    left: 0;
}
.uk-position-bottom-right {
    bottom: 0;
    right: 0;
}
.uk-position-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: 100%;
    box-sizing: border-box;
}
[class*='uk-position-center-left'],
[class*='uk-position-center-right'] {
    top: 50%;
    transform: translateY(-50%);
}
.uk-position-center-left {
    left: 0;
}
.uk-position-center-right {
    right: 0;
}
.uk-position-center-left-out {
    right: 100%;
    width: max-content;
}
.uk-position-center-right-out {
    left: 100%;
    width: max-content;
}
.uk-position-top-center,
.uk-position-bottom-center {
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 100%;
    box-sizing: border-box;
}
.uk-position-top-center {
    top: 0;
}
.uk-position-bottom-center {
    bottom: 0;
}
.uk-position-cover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.uk-position-relative {
    position: relative !important;
}
.uk-position-absolute {
    position: absolute !important;
}
.uk-position-fixed {
    position: fixed !important;
}
.uk-position-z-index {
    z-index: 1;
}
.uk-position-primary {
    position: relative;
    z-index: 999;
}
/* Margin modifier
 ========================================================================== */
.uk-position-small {
    max-width: calc(100% - (1rem * 2));
    margin: 15px;
}
.uk-position-small.uk-position-center {
    transform: translate(-50%, -50%) translate(-1rem, -1rem);
}
.uk-position-small[class*='uk-position-center-left'],
.uk-position-small[class*='uk-position-center-right'] {
    transform: translateY(-50%) translateY(-1rem);
}
.uk-position-small.uk-position-top-center,
.uk-position-small.uk-position-bottom-center {
    transform: translateX(-50%) translateX(-1rem);
}
.uk-position-medium {
    max-width: calc(100% - (2rem * 2));
    margin: 2rem;
}
.uk-position-medium.uk-position-center {
    transform: translate(-50%, -50%) translate(-2rem, -2rem);
}
.uk-position-medium[class*='uk-position-center-left'],
.uk-position-medium[class*='uk-position-center-right'] {
    transform: translateY(-50%) translateY(-2rem);
}
.uk-position-medium.uk-position-top-center,
.uk-position-medium.uk-position-bottom-center {
    transform: translateX(-50%) translateX(-2rem);
}
.uk-position-large {
    max-width: calc(100% - (2rem * 2));
    margin: 30px;
}
.uk-position-large.uk-position-center {
    transform: translate(-50%, -50%) translate(-2rem, -2rem);
}
.uk-position-large[class*='uk-position-center-left'],
.uk-position-large[class*='uk-position-center-right'] {
    transform: translateY(-50%) translateY(-2rem);
}
.uk-position-large.uk-position-top-center,
.uk-position-large.uk-position-bottom-center {
    transform: translateX(-50%) translateX(-2rem);
}
@media (min-width: 1200px) {
    .uk-position-large {
        max-width: calc(100% - (3rem * 2));
        margin: 50px;
    }
    .uk-position-large.uk-position-center {
        transform: translate(-50%, -50%) translate(-3rem, -3rem);
    }
    .uk-position-large[class*='uk-position-center-left'],
    .uk-position-large[class*='uk-position-center-right'] {
        transform: translateY(-50%) translateY(-3rem);
    }
    .uk-position-large.uk-position-top-center,
    .uk-position-large.uk-position-bottom-center {
        transform: translateX(-50%) translateX(-3rem);
    }
}
/* ========================================================================
   Component: Switcher
 ========================================================================== */
.uk-switcher {
    margin: 0;
    padding: 0;
    list-style: none;
}
.uk-switcher > :not(.uk-active) {
    display: none;
}
.uk-switcher > * > :last-child {
    margin-bottom: 0;
}
/* ========================================================================
   Component: Drop
 ========================================================================== */
.uk-drop {
    display: none;
    position: absolute;
    z-index: 1020;
    box-sizing: border-box;
    width: 300px;
}
.uk-drop.uk-open {
    display: block;
}
[class*='uk-drop-top'] {
    margin-top: -20px;
}
[class*='uk-drop-bottom'] {
    margin-top: 20px;
}
[class*='uk-drop-left'] {
    margin-left: -20px;
}
[class*='uk-drop-right'] {
    margin-left: 20px;
}
.uk-drop-stack .uk-drop-grid > * {
    width: 100% !important;
}
.uk-dropdown {
    display: none;
    position: absolute;
    z-index: 1020;
    box-sizing: border-box;
    min-width: 200px;
    padding: 25px;
    background: #fff;
    color: #666;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
.uk-dropdown.uk-open {
    display: block;
}
[class*='uk-dropdown-top'] {
    margin-top: -10px;
}
[class*='uk-dropdown-bottom'] {
    margin-top: 10px;
}
[class*='uk-dropdown-left'] {
    margin-left: -10px;
}
[class*='uk-dropdown-right'] {
    margin-left: 10px;
}
.uk-dropdown-stack .uk-dropdown-grid > * {
    width: 100% !important;
}
.info .uk-dropdown {
    width: 20rem;
    padding: 1.5rem 1.25rem;
    box-shadow: 0px 8px 20px rgb(0 0 0 / 4%), 0px 12px 40px rgb(0 0 0 / 8%);
    border-radius: 0.75rem;
}
.info .uk-heading-medium {
    line-height: 26px;
    vertical-align: middle;
}
@media(max-width:1199px) {
    .info .uk-dropdown {
        width: 20rem;
        padding: 1rem 0.75rem;
    }
}
.span-toggle {
    cursor: pointer;
    outline: none !important;
    min-width: 24px;
}
.span-toggle path {
    fill: var(--muted-color);
}
.span-toggle:hover path,
.span-toggle:active path,
.span-toggle:focus path,
.span-toggle[aria-expanded=true] path {
    fill: var(--hover-color);
}
#showAll,
div[id^='showAll'],
li[id^='showAll']{
    opacity: 0;
    transition: 0.15s ease-in;
}
div[id^='showAll'],
li[id^='showAll']{
    height: 0;
    width:0;
    display: none;
}
#showAll.showMe,
div[id^='showAll'].showMe,
li[id^='showAll'].showMe{
    opacity: 1;
}
div[id^='showAll'].showMe,
li[id^='showAll'].showMe{
    height: auto;
    width: auto;
    display: block;
}

.uk-navbar-dropdown {
    display: none;
    position: absolute;
    z-index: 1020;
    box-sizing: border-box;
    padding: 3rem 0 5rem 0;
    background: #fff;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
.uk-navbar-dropdown.uk-open {
    display: block;
}

.uk-navbar-dropdown-dropbar {
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: 0 25px 25px rgb(0 0 0 / 35%);
    position: absolute;
    z-index: 980;
    left: 0;
    right: 0;
}

.uk-navbar-dropbar {
    background: #fff;
    position: absolute;
}

.uk-navbar-hidden {
    display: none;
}
.uk-navbar-sticky .uk-navbar-hidden,
.uk-sticky-fixed  .uk-navbar-hidden {
    display: block;
}
.uk-navbar-sticky .uk-navbar-nav {
    justify-content: flex-start;
}

/* ========================================================================
   Component: Contrast
 ========================================================================== */
.uk-light h1,
.uk-light .uk-h1,
.uk-light h2,
.uk-light .uk-h2,
.uk-light h3,
.uk-light .uk-h3,
.uk-light h4,
.uk-light .uk-h4,
.uk-light h5,
.uk-light .uk-h5,
.uk-light h6,
.uk-light .uk-h6,
.uk-light .uk-heading-small,
.uk-light .uk-heading-medium,
.uk-light .uk-heading-large,
.uk-light .uk-heading-xlarge {
    color: var(--contrast-color);
}
.uk-light .uk-heading-divider, .uk-light hr {
    border-color: rgba(255, 255, 255, 0.3);
}
.uk-light .uk-button-default {
    color: var(--contrast-color);
    border: 1px solid var(--contrast-color);
}
.uk-light .uk-subnav-pill > li > a {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}
.uk-light .uk-subnav-pill > li > a:hover,
.uk-light .uk-subnav-pill > li > a:focus {
    background: rgba(255, 255, 255, 0.23);
    color: var(--contrast-color);
}
.uk-light .uk-subnav-pill > li > a:active {
    background: var(--border-color);
    color: var(--main-color);
}
/* ========================================================================
   Component: Form
 ========================================================================== */
.uk-input,
.uk-select,
.uk-textarea,
.uk-radio,
.uk-checkbox {
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    font: inherit;
}
.uk-input {
    overflow: visible;
}
.uk-select {
    text-transform: none;
}

.uk-select optgroup {
    font: inherit;
    font-weight: bold;
}

.uk-textarea {
    overflow: auto;
}

.uk-input[type="search"]::-webkit-search-cancel-button,
.uk-input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

.uk-input[type="number"]::-webkit-inner-spin-button,
.uk-input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

.uk-input::-moz-placeholder,
.uk-textarea::-moz-placeholder {
    opacity: 1;
}

.uk-radio:not(:disabled),
.uk-checkbox:not(:disabled) {
    cursor: pointer;
}

.uk-fieldset {
    border: none;
    margin: 0;
    padding: 0;
}
/* Input, select and textarea
 * Allowed: `text`, `password`, `datetime`, `datetime-local`, `date`,  `month`,
            `time`, `week`, `number`, `email`, `url`, `search`, `tel`, `color`
 * Disallowed: `range`, `radio`, `checkbox`, `file`, `submit`, `reset` and `image`
 ========================================================================== */
.uk-input,
.uk-textarea {
    -webkit-appearance: none;
}
.uk-input,
.uk-select,
.uk-textarea {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--border-color);
    transition: 0.2s ease-in-out;
    transition-property: color, background-color, border;
}
.uk-input,
.uk-select:not([multiple]):not([size]) {
    height: 2.5rem;
    vertical-align: middle;
    display: inline-block;
}

.uk-input:not(input),
.uk-select:not(select) {
    line-height: 2.5rem;
}

.uk-select[multiple],
.uk-select[size],
.uk-textarea {
    padding-top: 6px;
    padding-bottom: 6px;
    vertical-align: top;
}
.uk-select[multiple],
.uk-select[size] {
    resize: vertical;
}
.uk-input:focus,
.uk-select:focus,
.uk-textarea:focus {
    outline: none;
    background-color: #fff;
    color: var(--main-color);
    border-color: var(--muted-color);
}

.uk-input::-ms-input-placeholder {
    color: var(--muted-color) !important;
}
.uk-input::placeholder {
    color:  var(--muted-color);
}
.uk-textarea::-ms-input-placeholder {
    color:  var(--muted-color) !important;
}
.uk-textarea::placeholder {
    color:  var(--muted-color);
}
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */
/*
 * Small
 */
.uk-form-small {
    font-size: 0.875rem;
}

.uk-form-small:not(textarea):not([multiple]):not([size]) {
    height: 30px;
    padding-left: 8px;
    padding-right: 8px;
}

textarea.uk-form-small,
[multiple].uk-form-small,
[size].uk-form-small {
    padding: 5px 8px;
}
.uk-form-small:not(select):not(input):not(textarea) {
    line-height: 28px;
}
/*
 * Large
 */
.uk-form-large {
    font-size: 1.25rem;
    line-height: 1.5rem;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--sb-reg);
}
@media (min-width: 1200px) {
    .uk-form-large {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
}
.uk-input.uk-form-large::placeholder {
    color: var(--main-color);
}
.uk-input.uk-form-large:focus::placeholder {
    opacity: 0;
}

.uk-form-large:not(textarea):not([multiple]):not([size]) {
    height: 2.5rem;
    padding-left: 0;
}

textarea.uk-form-large,
[multiple].uk-form-large,
[size].uk-form-large {
    padding: 7px 12px;
}
/* Style modifier (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */

.uk-form-blank {
    background: none;
    border-color: transparent;
}
.uk-form-blank:focus {
    border-color: var(--border-color);
    border-style: dashed;
}
/* Width modifiers (`uk-input`, `uk-select` and `uk-textarea`)
 ========================================================================== */

input.uk-form-width-xsmall {
    width: 50px;
}
select.uk-form-width-xsmall {
    width: 75px;
}
.uk-form-width-small {
    width: 130px;
}
.uk-form-width-medium {
    width: 200px;
}
.uk-form-width-large {
    width: 500px;
}
/* Select
 ========================================================================== */
.uk-select:not([multiple]):not([size]) {
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 20px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
    background-repeat: no-repeat;
    background-position: 100% 50%;
}

.uk-select:not([multiple]):not([size])::-ms-expand {
    display: none;
}

.uk-select:not([multiple]):not([size]) option {
    color: var(--muted-color);
    font-size: 0.9rem;
}

/* Datalist
 ========================================================================== */
.uk-input[list] {
    padding-right: 20px;
    background-repeat: no-repeat;
    background-position: 100% 50%;
}
.uk-input[list]:hover,
.uk-input[list]:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2012%208%206%2016%206%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}

.uk-input[list]::-webkit-calendar-picker-indicator {
    display: none !important;
}
/* Radio and checkbox
 * Note: Does not work in IE11
 ========================================================================== */
.uk-radio,
.uk-checkbox {
    display: inline-block;
    height: 1.5rem;
    width: 1.5rem;
    overflow: hidden;
    margin-top: -4px;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: 1px solid var(--border-color);
    transition: 0.2s ease-in-out;
    transition-property: background-color, border;
}
.uk-checkbox {
    border-radius: 4px;
}
.uk-radio {
    border-radius: 50%;
}
.uk-radio:focus,
.uk-checkbox:focus {
    background-color: rgba(0, 0, 0, 0);
    outline: none;
    border-color: var(--muted-color);
}

.uk-radio:checked,
.uk-checkbox:checked,
.uk-checkbox:indeterminate {
    background-color: var(--primary-color);
    border-color: transparent;
}

.uk-radio:checked:focus,
.uk-checkbox:checked:focus,
.uk-checkbox:indeterminate:focus {
    background-color: var(--primary-color);
}

.uk-radio:checked {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-checkbox:checked {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-checkbox:indeterminate {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-radio:disabled,
.uk-checkbox:disabled {
    background-color: #f8f8f8;
    border-color: #e5e5e5;
}
.uk-radio:disabled:checked {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23999%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
.uk-checkbox:disabled:checked {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-checkbox:disabled:indeterminate {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23999%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
/* Legend
 ========================================================================== */
.uk-legend {
    width: 100%;
    color: inherit;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1.4;
}
/* Custom controls
 ========================================================================== */

.uk-form-custom {
    display: inline-block;
    position: relative;
    max-width: 100%;
    vertical-align: middle;
}

.uk-form-custom select,
.uk-form-custom input[type="file"] {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    -webkit-appearance: none;
    opacity: 0;
    cursor: pointer;
}
.uk-form-custom input[type="file"] {
    font-size: 500px;
    overflow: hidden;
}
/* Label
 ========================================================================== */
.uk-form-label {
    color: #333;
    font-size: 0.875rem;
}
/* Layout
 ========================================================================== */
.uk-form-stacked .uk-form-label {
    display: block;
    margin-bottom: 5px;
}

@media (max-width: 959px) {
    .uk-form-horizontal .uk-form-label {
        display: block;
        margin-bottom: 5px;
    }
}

@media (min-width: 960px) {
    .uk-form-horizontal .uk-form-label {
        width: 200px;
        margin-top: 7px;
        float: left;
    }
    .uk-form-horizontal .uk-form-controls {
        margin-left: 215px;
    }
    /* Better vertical alignment if controls are checkboxes and radio buttons with text */
    .uk-form-horizontal .uk-form-controls-text {
        padding-top: 7px;
    }
}
/* filter modifier
 ========================================================================== */
#filters legend {
    cursor: pointer;
}
#filters .uk-dropdown {
    width: 15rem;
    padding: 1.5rem 1.25rem;
    box-shadow: 0px 8px 20px rgb(0 0 0 / 4%), 0px 12px 40px rgb(0 0 0 / 8%);
    border-radius: 0.75rem;
    max-height: 25rem;
    overflow-y: auto;
    z-index: 9999;
}
#filters .uk-filter-list {
    padding: 0;
    list-style: none;
    margin: 0;
}
#filters .uk-filter-list li.uk-position-relative.filter-search-container {
    -webkit-position: sticky !important;
    position: sticky !important;
    top: 0;
    left: 0;
    right: 0;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding: 0 1.25rem 1.25rem 1.25rem;
    background: white;
    z-index: 999;
}
#filters .uk-filter-list li.uk-position-relative.filter-search-container::before {
    content:'';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1.5rem;
    background: white;
    margin-top: -1.5rem;
}
#filters .uk-filter-list li.uk-position-relative.filter-search-container input{
    height: 2rem;
    padding-left: 2rem;
    padding-right: 10px;
    background: 0 0;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    font: inherit;
    overflow: visible;
    -webkit-appearance: none;
    outline: none;
    vertical-align: middle;
    width: 100%;
    color: #666;
}
#filters .uk-filter-list li.uk-position-relative.filter-search-container input:focus {
    outline: none;
}
#filters .uk-filter-list li.uk-position-relative.filter-search-container::after {
    content: '';
    display: inline-block;
    width: 1.3rem;
    height: 2rem;
    position: absolute;
    top: 0;
    left: 1.5rem;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle fill='none' stroke='%23666' stroke-width='1.1' cx='9' cy='9' r='7'%3E%3C/circle%3E%3Cpath fill='none' stroke='%23666' stroke-width='1.1' d='M14,14 L18,18 L14,14 Z'%3E%3C/path%3E%3C/svg%3E");
}
#filters .uk-filter-list > :nth-child(n+2) {
    margin-top: 1.5rem;
}
#filters .uk-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    border: none;
    overflow: visible;
}
#filters .uk-checkbox::before {
    content: '';
    display: inline-block;
    position: relative;
    top: calc(50% - 0.75rem);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 4px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    margin-left: -0.5rem;
    transition: 0.2s ease-in-out;
    transition-property: background-color, border;
}
#filters .uk-checkbox + span {
    line-height: 1.2;
    display: inline-block;
    max-width: 8rem;
    margin-left: 1.4rem;
    color: var(--main-color);
}
#filters .uk-checkbox:checked {
    background-image: none;
    background-color: transparent;
}
#filters .uk-checkbox:checked::before {
    background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A);
    background-color: var(--primary-color);
}
#projects-loading{
    width: 100%;
    margin-top: -5rem;
    background: var(--light-color);
    position: relative;
    border-radius: 1rem;
    z-index: 99;
    margin-left: 1.5rem;
    text-align: center;
}
#colors-loading{
    width: 100%;
    margin-top: -2rem;
    background: var(--light-color);
    position: relative;
    border-radius: 1rem;
    z-index: 99;
    margin-left: 1.5rem;
    text-align: center;
    margin: 0;
}
#colorsLoading {
    padding: 0 !important;
}
#filters  div.color-switcher div.uk-panel div[data-selected_filter] div {
    border: 1px red solid;
}

#filters div[data-selected_filter] fieldset#IS_RECOMMENDED legend
{
    border: 1px solid red;
    /*background-color: var(--border-color)*/
}

/* #main form footer
 ========================================================================== */
#main-form  ul.uk-grid-xsmall li a .uk-border-light {
    line-height: 1.3;
    color: #999;
    font-weight: normal;
}

#main-form  ul.uk-grid-xsmall li.uk-active a .uk-border-light {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

#main-form  ul.uk-grid-xsmall li.uk-active a .uk-border-light .uk-checkbox {
    background-color: var(--primary-color);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.uk-form-additional {
    min-height: 24vh;
}
.uk-textarea {
    border-radius: 0.75rem;
}
.uk-file {
    cursor: pointer;
}
.uk-file input {
    opacity: 0;
}

@media (max-width: 1199px) {
    #main-form .uk-modal-dialog,
    #reviewForm .uk-modal-dialog,
    #whereBuyForm .uk-modal-dialog,
    #formFran .uk-modal-dialog,
    #formDesigner .uk-modal-dialog,
    #formDeveloper .uk-modal-dialog,
    #formHr .uk-modal-dialog,
    #citiesFull .uk-modal-dialog {
        max-height: 90vh;
    }
    .uk-form-additional {
        min-height: auto;
    }
}
/* ========================================================================
   Component: Pagination
 ========================================================================== */

#pagination,
div[id*="Pagination"]{
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 1200px) {
    #pagination,
    [id*="Pagination"]{
        margin-top: 3.75rem !important;
    }
}

#pagination span,
[id*="Pagination"]  span {
    vertical-align: middle;
    text-align: center;
    border-radius: 100%;
    background-color: white;
    color: var(--muted-color);
    display: inline-block;
    margin: 0 0.25rem;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    font-weight: var(--text-bold);
}

#pagination a,
[id*="Pagination"] a {
    text-decoration: none;
}

#pagination span.uk-active,
[id*="Pagination"]  span.uk-active {
    background: var(--light-color);
    color: var(--active-color)
}

#pagination a.uk-pagination-next,
[id*="Pagination"] a.uk-pagination-next,
#pagination a.uk-pagination-previous,
[id*="Pagination"]  a.uk-pagination-previous {
    display: inline-block;
    width: 3rem;
    height: 1rem;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.uk-pagination-next {
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='16' viewBox='0 0 48 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M41.9487 1.68355L41.6325 0.734863L39.7351 1.36732L40.0513 2.316C40.7821 4.50831 41.8395 5.99651 42.9427 6.99977H0V8.99977H42.9427C41.8395 10.003 40.7821 11.4912 40.0513 13.6835L39.7351 14.6322L41.6325 15.2647L41.9487 14.316C42.8696 11.5534 44.3282 10.2553 45.4788 9.62769C46.0657 9.30758 46.5946 9.1501 46.9682 9.07281C47.1548 9.03422 47.3012 9.01592 47.3946 9.00729C47.4413 9.00298 47.4746 9.00111 47.4927 9.00031L47.5073 8.99977L47.5044 8.99979L47.5024 8.9998L47.5012 8.9998C47.5012 8.9998 47.5 8.99981 47.5 7.99981C47.5 6.99981 47.5013 6.99981 47.5013 6.99981L47.5024 6.99981L47.5044 6.99982L47.5073 6.99984L47.5084 6.99985M47.5073 6.99984L47.4927 6.9993C47.4746 6.9985 47.4413 6.99663 47.3947 6.99232C47.3012 6.98369 47.1548 6.96538 46.9682 6.92679C46.5947 6.8495 46.0657 6.69201 45.4789 6.3719C44.3282 5.74425 42.8696 4.44619 41.9487 1.68355' fill='%23E31E24'/%3E%3C/svg%3E%0A");
}
.uk-pagination-previous {
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='16' viewBox='0 0 48 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.56001 1.68355L5.87624 0.734863L7.7736 1.36732L7.45738 2.316C6.72661 4.50831 5.6692 5.99651 4.566 6.99977H47.5087V8.99977H4.56598C5.66919 10.003 6.7266 11.4912 7.45738 13.6835L7.7736 14.6322L5.87624 15.2647L5.56001 14.316C4.63913 11.5534 3.18051 10.2553 2.02984 9.62769C1.44298 9.30758 0.914049 9.1501 0.540468 9.07281C0.353937 9.03422 0.207533 9.01592 0.114046 9.00729C0.0673735 9.00298 0.0341399 9.00111 0.0159705 9.00031L0.00142504 8.99977L0.00427843 8.99979L0.00629259 8.9998L0.00744463 8.9998C0.00806261 8.99981 0.00869966 8.99981 0.00869203 7.99981C0.00868441 6.99981 0.00805117 6.99981 0.00743318 6.99981L0.00627733 6.99981L0.00426699 6.99982L0.00140978 6.99984C2.50422e-05 6.99985 -0.000333539 6.99986 0.00030733 6.99985M0.00140978 6.99984L0.0159552 6.9993C0.0341284 6.9985 0.0673621 6.99663 0.114035 6.99232C0.207522 6.98369 0.353926 6.96538 0.540457 6.92679C0.914042 6.8495 1.44296 6.69201 2.02984 6.3719C3.18051 5.74425 4.63913 4.44619 5.56001 1.68355' fill='%23E31E24'/%3E%3C/svg%3E%0A");
}
@media (max-width: 1199px) {
    #pagination span, [id*="Pagination"] span {
        width: 2rem;
        height: 2rem;
        line-height: 2rem;
    }
    #pagination a.uk-pagination-next, [id*="Pagination"] a.uk-pagination-next, #pagination a.uk-pagination-previous, [id*="Pagination"] a.uk-pagination-previous {
        width: 2rem;
    }
}
/* ========================================================================
   Component: Spinner
 ========================================================================== */
.uk-spinner > * {
    animation: uk-spinner-rotate 1.4s linear infinite;
}
@keyframes uk-spinner-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(270deg);
    }
}
.uk-spinner > * > * {
    stroke-dasharray: 88px;
    stroke-dashoffset: 0;
    transform-origin: center;
    animation: uk-spinner-dash 1.4s ease-in-out infinite;
    stroke-width: 1;
    stroke-linecap: round;
}
@keyframes uk-spinner-dash {
    0% {
        stroke-dashoffset: 88px;
    }
    50% {
        stroke-dashoffset: 22px;
        transform: rotate(135deg);
    }
    100% {
        stroke-dashoffset: 88px;
        transform: rotate(450deg);
    }
}
/* ========================================================================
   Component: Overlay
 ========================================================================== */
.uk-overlay {
    padding: 2rem 2rem;
}
.uk-overlay > :last-child {
    margin-bottom: 0;
}
.uk-overlay-default {
    background: rgba(255, 255, 255, 0.8);
}
.uk-overlay-primary {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.3) 9.16%, rgba(0, 0, 0, 0) 73.81%), linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 41.28%), rgba(0, 0, 0, 0.3);
}
/* ========================================================================
   Component: Offcanvas
 ========================================================================== */
.uk-offcanvas {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
}
.uk-offcanvas-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    box-sizing: border-box;
    width: 100vw;
    padding: 1rem 1rem;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.uk-offcanvas-bar .uk-offcanvas-nav {
    margin-top: calc(0.75rem + 0.75rem + 27px + 12px + 1.5rem + 8px + 24px + 3rem);
}
.uk-open>.uk-offcanvas-bar {
    left: 0;
}
.uk-offcanvas-bar-animation {
    transition: left .3s ease-out;
}
.uk-offcanvas-child {
    position: absolute;
    top:0;
    left: 0;
    right:0;
    background: white;
    height: calc(100vh - (0.75rem + 0.75rem + 27px + 12px + 1.5rem + 8px + 24px + 3rem));
}
/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*='uk-animation-'] {
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
}
/* Animations
 ========================================================================== */
/*
 * Fade
 */
.uk-animation-fade {
    animation-name: uk-fade;
    animation-duration: 0.8s;
    animation-timing-function: linear;
}
/*
 * Slide
 */
.uk-animation-slide-top {
    animation-name: uk-fade-top;
}

/* Toggle (Hover + Focus)
========================================================================== */
/*
 * The toggle is triggered on touch devices using `:focus` and tabindex
 */
.uk-animation-toggle:not(:hover):not(:focus) [class*='uk-animation-'] {
    animation-name: none;
}
/*
 * 1. Prevent tab highlighting on iOS.
 */
.uk-animation-toggle {
    /* 1 */
    -webkit-tap-highlight-color: transparent;
}
/*
 * Remove outline for `tabindex`
 */
.uk-animation-toggle:focus {
    outline: none;
}
/* Keyframes used by animation classes
 ========================================================================== */
/*
 * Fade
 */
@keyframes uk-fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*
 * Slide Top
 */
@keyframes uk-fade-top {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ========================================================================
   Component: Modal
 ========================================================================== */
.uk-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.15s linear;
}
.z-index-super {
    z-index: 9999;
}
.uk-modal.uk-open {
    opacity: 1;
}
.uk-modal-page {
    overflow: hidden;
}
.uk-modal-dialog {
    position: relative;
    box-sizing: border-box;
    margin: 0 0 0 auto;
    width: 42.5rem;
    max-width: calc(100% - 0.01px) !important;
    min-height: 100vh;
    background: #fff;
    opacity: 0;
    border-radius: 1rem;
    transform: translateY(-10px);
    transition: 0.3s linear;
    transition-property: opacity, transform;
}
#colorsModal .uk-modal-dialog {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100rem;
    max-width: calc(100% - 0.01px) !important;
    min-height: 100vh;
    background: #fff;
    /*opacity: 0;*/
    border-radius: 1rem;
    transform: translateY(-10px);
    transition: 0.3s linear;
    transition-property: opacity, transform;
}

.uk-open > .uk-modal-dialog {
    opacity: 1;
    transform: translateY(0);
}

.uk-modal-body {
    display: flow-root;
    padding: 3.25rem 1.5rem;
}

.uk-modal-body > :last-child,
.uk-modal-header > :last-child,
.uk-modal-footer > :last-child {
    margin-bottom: 0;
}

.uk-modal-body .uk-close {
    color: var(--main-color);
    transition: 0.1s ease-in-out;
    transition-property: color, opacity;
}
.uk-modal-body .uk-close:hover,
.uk-modal-body .uk-close:focus {
    color: var(--hover-color);
    outline: none;
}
.uk-modal-body [class*='uk-modal-close'] {
    position: absolute;
    z-index: 1010;
    top: 1.5rem;
    right: 1.5rem;
    padding: 1.25rem;
    border-radius: 100%;
    border: 1px solid var(--border-color);
}

[class*='uk-modal-close-']:first-child + * {
    margin-top: 0;
}

@media (max-width: 1199px) {
    .uk-modal-dialog {
        min-height: auto;
        width: 100%;
        margin: 0;
        position: absolute;
        bottom: 0;
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .uk-modal-body [class*='uk-modal-close'] {
        position: absolute;
        z-index: 1010;
        top: 0;
        right: 0;
        padding: 1rem;
        border-radius: 100%;
        border: none;
    }
    .uk-modal-body {
        padding: 1.5rem 1rem 3rem 1rem;
    }
}


/* ========================================================================
   Component: Modal
 ========================================================================== */

audio::-webkit-media-controls-enclosure {
    background: white;
}
input[title="дополнительные параметры"] {
    display: none !important;
}
.uk-player-panel {
    border:1px solid var(--border-color);
    padding: 3rem 1.25rem;
    background: white;
    position: relative;
}
audio::-webkit-media-controls-panel {
    background: white;
}
audio::-webkit-media-controls-volume-control-container {
    display: none;
}
audio::-internal-media-controls-overflow-button{
    display: none;
    background: white;
}
audio::-webkit-media-controls-current-time-display {
    color: var(--muted-color);
}
audio::-webkit-media-controls-time-remaining-display  {
    color: var(--muted-color);
}
audio::-webkit-media-controls input[pseudo="-internal-media-controls-overflow-button" i]::-internal-media-controls-button-hover-background {
    display: none !important;
}
input[pseudo="-webkit-media-controls-timeline" i]::-internal-track-segment-highlight-after {
    background: gray;
}
.uk-overlay-gradient {
    background: linear-gradient(121.14deg, rgba(0, 0, 0, 0.2) 25.58%, rgba(0, 0, 0, 0.146884) 44.73%, rgba(0, 0, 0, 0) 68.83%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.0616371) 37.5%, rgba(0, 0, 0, 0) 58.85%, rgba(0, 0, 0, 0) 100%);

}
/* ========================================================================
   Component: Alert
 ========================================================================== */
.uk-alert {
    position: relative;
    margin-bottom: 20px;
    padding: 15px 29px 15px 15px;
    background: #f8f8f8;
    color: #666;
}
/* Add margin if adjacent element */
* + .uk-alert {
    margin-top: 20px;
}
/*
 * Remove margin from the last-child
 */
.uk-alert > :last-child {
    margin-bottom: 0;
}
/* Close
 * Adopts `uk-close`
 ========================================================================== */
.uk-alert-close {
    position: absolute;
    top: 20px;
    right: 15px;
    color: inherit;
    opacity: 0.4;
}
.uk-alert-close:first-child + * {
    margin-top: 0;
}

.uk-alert-close:hover,
.uk-alert-close:focus {
    color: inherit;
    opacity: 0.8;
}
.uk-alert-primary {
    background: var(--primary-color);
    color: var(--contrast-color);
}
.uk-alert-success {
    background: var(--light-color);
    color: var(--success-color);
}
.uk-alert-warning {
    background: var(--light-color);
    color: var(--warning-color);
}

.uk-alert-danger {
    background: var(--light-color);
    color: var(--danger-color);
}
.uk-alert h1,
.uk-alert h2,
.uk-alert h3,
.uk-alert h4,
.uk-alert h5,
.uk-alert h6 {
    color: inherit;
}
.uk-alert a:not([class]) {
    color: inherit;
    text-decoration: underline;
}
.uk-alert a:not([class]):hover {
    color: inherit;
    text-decoration: underline;
}
/* ========================================================================
   Component: Form Range
 ========================================================================== */
.uk-range {
    box-sizing: border-box;
    margin: 0;
    vertical-align: middle;
    max-width: 100%;
    width: 100%;
    background: transparent;
    padding: 0;
}
.uk-range:focus {
    outline: none;
}
.uk-range::-moz-focus-outer {
    border: none;
}
.uk-range::-ms-track {
    height: 15px;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
.uk-range:not(:disabled)::-webkit-slider-thumb {
    cursor: pointer;
}
.uk-range:not(:disabled)::-moz-range-thumb {
    cursor: pointer;
}
.uk-range:not(:disabled)::-ms-thumb {
    cursor: pointer;
}
/* Thumb
 ========================================================================== */

.uk-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    margin-top: -7px;
    height: 15px;
    width: 15px;
    border-radius: 500px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.uk-range::-moz-range-thumb {
    height: 15px;
    width: 15px;
    border-radius: 500px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.uk-range::-ms-thumb {
    margin-top: 0;
}

.uk-range::-ms-thumb {
    height: 15px;
    width: 15px;
    border-radius: 500px;
    background: #fff;
    border: 1px solid #cccccc;
}
.uk-range::-ms-tooltip {
    display: none;
}
.uk-range::-webkit-slider-runnable-track {
    height: 3px;
    border-radius: 500px;
    border-color: var(--border-color);
}
.uk-range::-moz-range-track {
    height: 3px;

    border-radius: 500px;
}
.uk-range::-ms-fill-lower,
.uk-range::-ms-fill-upper {
    height: 3px;
    background: #ebebeb;
    border-radius: 500px;
}
.uk-range:focus::-ms-fill-lower,
.uk-range:focus::-ms-fill-upper {
    background: #dedede;
}
@media (min-width: 1200px) {
    .uk-column-1-2\@m {
        column-count: 2;
    }
    [class*='uk-column-'] {
        column-gap: 40px;
    }
}

/*preloader*/
body.loaded .showbox {
    display: none;
}

body.loaded_hiding .showbox {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5%;
    z-index: 99999;
    background: #fff;
}

body.loaded_hiding .showbox .loader {
    position: relative;
    margin: 0 auto;
    width: 100px;
}
body.loaded_hiding .showbox .loader:before {
    content: "";
    display: block;
    padding-top: 100%;
}

body.loaded_hiding .showbox .circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

body.loaded_hiding .showbox .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

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

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}
@-webkit-keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%, 90% {
        stroke: #ffa700;
    }
}
@keyframes color {
    100%, 0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%, 90% {
        stroke: #ffa700;
    }
}
.uk-blur {
    -webkit-filter: blur(3px);
    filter: blur(3px);
}
.uk-button.uk-button-text i.uk-icon svg {
    fill: currentColor;
}
.uk-overlay-xprimary {
    background: rgb(0 0 0 / 50%);
}

@media (min-width: 1200px) {
    .uk-seo-text h1 {
        font-size: 3.5rem;
        line-height: 3.25rem;
    }
    #citiesFull .uk-modal-dialog {
        width: 70rem;
    }
}

.disp-show {
    display: none !important;
}
/* ========================================================================
   Component: Autocomplete
 ========================================================================== */
.chosen-container {
    max-width: 100%;
    width: 100%;
    background: #fff;
    color: var(--main-color);
    transition: 0.2s ease-in-out;
    transition-property: color, background-color, border;
    font-size: 1.25rem;
    line-height: 1.5rem;
    height: 2.5rem;
    vertical-align: middle;
    display: inline-block;
    cursor: pointer;
    position: relative;

}
@media  (min-width: 1200px) {
    .chosen-container {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
}
.chosen-container .chosen-single {
    display: block;
    position: relative;
    padding: 0 20px 0 0;
    font-family: var(--sb-reg);
    background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    border-bottom: 1px solid var(--border-color);
}
.chosen-container .chosen-drop {
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    z-index: 1010;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    display: none;
}
.chosen-container.chosen-container-active.chosen-with-drop .chosen-drop {
    background: var(--contrast-color);
    box-shadow: 3px 4px 20px rgb(0 0 0 / 10%);
    display: block;
}
.chosen-container .chosen-search{
    position: relative;
}
.chosen-search > input{
    border: 1px solid var(--border-color);
    width: 100%;
    height: 2.5rem;
    outline: none !important;
    box-sizing: border-box;
    padding: 0 10px 0 2.5rem;
    position: relative;
}
.chosen-container .chosen-search::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.7832 14.3911L20 18.6069L18.6069 20L14.3911 15.7832C12.8224 17.0407 10.8713 17.7246 8.86088 17.7218C3.96968 17.7218 0 13.7521 0 8.86088C0 3.96968 3.96968 0 8.86088 0C13.7521 0 17.7218 3.96968 17.7218 8.86088C17.7246 10.8713 17.0407 12.8224 15.7832 14.3911ZM13.8082 13.6605C15.0577 12.3756 15.7555 10.6532 15.7527 8.86088C15.7527 5.05267 12.6681 1.96909 8.86088 1.96909C5.05267 1.96909 1.96909 5.05267 1.96909 8.86088C1.96909 12.6681 5.05267 15.7527 8.86088 15.7527C10.6532 15.7555 12.3756 15.0577 13.6605 13.8082L13.8082 13.6605Z' fill='%230F0F0F'/%3E%3C/svg%3E%0A");
    z-index: 999;
}
.chosen-container .chosen-search > input:focus {
    outline: none !important;
}
.chosen-results {
    font-size: 0.9rem;
    color: var(--muted-color);
    margin: 1rem 0 0 0;
    width: 100%;
    box-sizing: border-box;
    list-style: none;
    height: 0;
    display: none;
    padding: 0;
}

.chosen-container .chosen-results  li {
    cursor: pointer;
    padding: 0;
    transition: 0.15s ease-in;
}
.chosen-container .chosen-results  li.highlighted {
    color: var(--active-color);
}
.chosen-container.chosen-container-active .chosen-results{
    display: block;
    height: 11rem;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
/* ========================================================================
   Component: Tooltip
 ========================================================================== */
.uk-tooltip {
    display: none;
    position: absolute;
    z-index: 1030;
    top: 0;
    box-sizing: border-box;
    max-width: 200px;
    padding: 3px 6px;
    background: #666;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
}
.uk-tooltip.uk-active {
    display: block;
}

[class*='uk-tooltip-top'] {
    margin-top: -5px;
}
[class*='uk-tooltip-bottom'] {
    margin-top: 5px;
}
[class*='uk-tooltip-left'] {
    margin-left: -5px;
}
[class*='uk-tooltip-right'] {
    margin-left: 5px;
}
/* ========================================================================
   Component: Multiple select
 ========================================================================== */

.uk-select-blank, .uk-select-blank:focus, .uk-select-blank:active {
    border: none !important;
}
.uk-select-blank {
    height: 11rem;
    overflow-y: auto;
    padding: 0 1rem 0 0 !important;
}
.uk-select-blank option {
    cursor: pointer;
}
.uk-select-blank:not(.uk-form-large) option {
    padding: 10px 0;
}
.uk-heading-bullet::before {
    content: "";
    display: inline-block;
    position: relative;
    top: calc(-0.1 * 1em);
    vertical-align: middle;
    height: calc(4px + 0.7em);
    margin-right: calc(5px + 0.2em);
    border-left: calc(5px + 0.1em) solid var(--primary-color);
}

.form_label {
    position: relative;
    min-height: 2.5rem;
}

.form_label input,
.field_multiselect {
    position: relative;
    width: 100%;
    display: block;
    min-height: 2.5rem;
    border-bottom: 1px solid #E1E1E1;
    box-sizing: border-box;
    font-size: 1.8rem;
    color: var(--main-color);
    font-family: var(--sb-reg);
    outline: none;
}
.form_label input::placeholder,
.field_multiselect::placeholder {
    color: #757575;
}

.field_multiselect_help {
    position: absolute;
    max-width: 100%;
    background-color: #fff;
    top: -1.75rem;
    left: 0;
    opacity: 0;
    font-size: 0.875rem;
}

.field_multiselect {
    padding-right: 60px;
}
.field_multiselect:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1rem;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0A%3C%2Fsvg%3E%0A");
    background-repeat: no-repeat;
    background-position: 100% 50%;
}

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

.field_select {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    width: calc(100% - 3rem);
    border: none;
    box-sizing: border-box;
    outline: none;
    z-index: 6;
    background: white;
    box-shadow: 3px 4px 30px rgb(0 0 0 / 10%);
    border-radius: 0.5rem;
}

.field_select[multiple] {
    overflow-y: auto;
    max-height: 14rem;
}

.field_select option {
    display: block;
    padding: 8px 16px;
    color: var(--muted-color);
    cursor: pointer;
}
.field_select option:checked {
    color: var(--primary-color);
    background: var(--light-color);
}
.field_select option:hover {
    color: var(--primary-color);
    background: var(--contrast-color);
}

.field_multiselect button {
    position: relative;
    padding: 7px 34px 7px 8px;
    background: var(--light-color);
    color: var(--muted-color);
    border-radius: 4px;
    margin-right: 9px;
    margin-bottom: 0;
    top: -4px;
    outline: none;
    border: 1px solid var(--border-color);
    font-weight: 600;
    cursor: pointer;
    max-width: 12rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.field_multiselect button:hover, .field_multiselect button:focus {
    color: var(--primary-color)
}
.field_multiselect button:after {
    content: "";
    position: absolute;
    top: 7px;
    right: 10px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.4958 6.49499C19.7691 6.22162 19.7691 5.7784 19.4958 5.50504C19.2224 5.23167 18.7792 5.23167 18.5058 5.50504L12.5008 11.5101L6.49576 5.50504C6.22239 5.23167 5.77917 5.23167 5.50581 5.50504C5.23244 5.7784 5.23244 6.22162 5.50581 6.49499L11.5108 12.5L5.50581 18.505C5.23244 18.7784 5.23244 19.2216 5.50581 19.495C5.77917 19.7684 6.22239 19.7684 6.49576 19.495L12.5008 13.49L18.5058 19.495C18.7792 19.7684 19.2224 19.7684 19.4958 19.495C19.7691 19.2216 19.7691 18.7784 19.4958 18.505L13.4907 12.5L19.4958 6.49499Z' fill='%234F5588'/%3E%3C/svg%3E") 50% 50% no-repeat;
    background-size: contain;
}

.multiselect_label {
    position: absolute;
    top: 1px;
    left: 2px;
    width: 100%;
    height: 44px;
    cursor: pointer;
    z-index: 3;
}

.field_select {
    display: none;
}

input.multiselect_checkbox {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border: none;
    opacity: 0;
}

.multiselect_checkbox:checked ~ .field_select {
    display: block;
}

.multiselect_checkbox:checked ~ .multiselect_label {
    width: 3rem;
    left: initial;
    right: 0;
    background: #ffffff url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.4958 6.49499C19.7691 6.22162 19.7691 5.7784 19.4958 5.50504C19.2224 5.23167 18.7792 5.23167 18.5058 5.50504L12.5008 11.5101L6.49576 5.50504C6.22239 5.23167 5.77917 5.23167 5.50581 5.50504C5.23244 5.7784 5.23244 6.22162 5.50581 6.49499L11.5108 12.5L5.50581 18.505C5.23244 18.7784 5.23244 19.2216 5.50581 19.495C5.77917 19.7684 6.22239 19.7684 6.49576 19.495L12.5008 13.49L18.5058 19.495C18.7792 19.7684 19.2224 19.7684 19.4958 19.495C19.7691 19.2216 19.7691 18.7784 19.4958 18.505L13.4907 12.5L19.4958 6.49499Z' fill='%234F5588'/%3E%3C/svg%3E") 50% 50% no-repeat;
}

.multiselect_checkbox:checked ~ .field_multiselect_help {
    opacity: 1;
}
.uk-file-container a {
    margin: 0;
    border: none;
    overflow: visible;
    font: inherit;
    -webkit-appearance: none;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: middle;
    font-size: 0.875rem;
    letter-spacing: var(--ls-large);
    font-weight: var(--text-bold);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0.75rem;
    transition: var(--transition-large);
    transition-property: color, background-color, border-color;
    padding: 0;
    line-height: 1.5;
    background: none;
    color: var(--primary-color);
}
.uk-modal-container .uk-modal-dialog {
    width: 1500px;
}
.uk-modal-container .uk-modal-dialog {
    position: relative;
    box-sizing: border-box;
    margin: 1rem auto;
}
.uk-position-close {
    margin-top: -7px;
    margin-right: -12px;
}
@media (min-width: 1200px) {
    .uk-child-width-1-12\@l > * {
        width: calc(100% * 1 / 12.001);
    }
}
/* ========================================================================
   Component: Table
 ========================================================================== */
.uk-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 20px;
}
* + .uk-table {
    margin-top: 20px;
}
.uk-table th {
    padding: 16px 12px;
    text-align: left;
    vertical-align: bottom;
    /* 1 */
    font-size: 0.875rem;
    font-weight: normal;
    color: #999;
    text-transform: uppercase;
}
.uk-table td {
    padding: 16px 12px;
    vertical-align: top;
}
.uk-table td > :last-child {
    margin-bottom: 0;
}
.uk-table tfoot {
    font-size: 0.875rem;
}
.uk-table caption {
    font-size: 0.875rem;
    text-align: left;
    color: #999;
}
.uk-table-middle,
.uk-table-middle td {
    vertical-align: middle !important;
}
.uk-table-divider > tr:not(:first-child),
.uk-table-divider > :not(:first-child) > tr,
.uk-table-divider > :first-child > tr:not(:first-child) {
    border-top: 1px solid #e5e5e5;
}
.uk-table-striped > tr:nth-of-type(odd),
.uk-table-striped tbody tr:nth-of-type(odd) {
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.uk-table-hover > tr:hover,
.uk-table-hover tbody tr:hover {
    background: #ffd;
}
.uk-table > tr.uk-active,
.uk-table tbody tr.uk-active {
    background: #ffd;
}
.uk-table-small th,
.uk-table-small td {
    padding: 10px 12px;
}
.uk-table-large th,
.uk-table-large td {
    padding: 22px 12px;
}
.uk-table-justify th:first-child,
.uk-table-justify td:first-child {
    padding-left: 0;
}
.uk-table-justify th:last-child,
.uk-table-justify td:last-child {
    padding-right: 0;
}
.uk-table-shrink {
    width: 1px;
}
.uk-table-expand {
    min-width: 150px;
}
.uk-table-link {
    padding: 0 !important;
}
.uk-table-link > a {
    display: block;
    padding: 16px 12px;
}
.uk-table-small .uk-table-link > a {
    padding: 10px 12px;
}

@media (max-width: 959px) {
    .uk-table-responsive,
    .uk-table-responsive tbody,
    .uk-table-responsive th,
    .uk-table-responsive td,
    .uk-table-responsive tr {
        display: block;
    }
    .uk-table-responsive thead {
        display: none;
    }
    .uk-table-responsive th,
    .uk-table-responsive td {
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        overflow: visible !important;
        white-space: normal !important;
    }
    .uk-table-responsive th:not(:first-child):not(.uk-table-link),
    .uk-table-responsive td:not(:first-child):not(.uk-table-link),
    .uk-table-responsive .uk-table-link:not(:first-child) > a {
        padding-top: 5px !important;
    }
    .uk-table-responsive th:not(:last-child):not(.uk-table-link),
    .uk-table-responsive td:not(:last-child):not(.uk-table-link),
    .uk-table-responsive .uk-table-link:not(:last-child) > a {
        padding-bottom: 5px !important;
    }
    .uk-table-justify.uk-table-responsive th,
    .uk-table-justify.uk-table-responsive td {
        padding-left: 0;
        padding-right: 0;
    }
}
.uk-table tbody tr {
    transition: background-color 0.1s linear;
}
.uk-table-striped > tr:nth-of-type(even):last-child,
.uk-table-striped tbody tr:nth-of-type(even):last-child {
    border-bottom: 1px solid #e5e5e5;
}
/* ========================================================================
   Component: Search
 ========================================================================== */
.uk-search-icon svg > * {
    stroke-width: 1.5 !important;
}
a.uk-search-icon:hover svg > *{
    stroke: var(--hover-color);
}
.uk-search-input.uk-input {
    background: var(--light-color);
    border: var(--light-color);
    border-radius: 0.75rem;
    padding: 0 1rem;
}
.uk-search .uk-search-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #999;
}
.uk-search-default .uk-search-icon:not(.uk-search-icon-flip)~.uk-search-input {
    padding-left: 3rem;
}
#colorFiltersForm .uk-dropdown, .uk-tooltip {
    z-index: 99999999
}