/*======================================
  #General
======================================*/
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

main {
    display: block;
}

a {
    color: var(--theme);
}

    a:hover {
        color: var(--theme-darker);
    }

p a, li a {
    border-bottom: 1px solid;
}

.theme-bg a {
    color: var(--theme-contrast);
}

.theme-alt-bg a {
    color: var(--theme-alt-contrast);
}
/*======================================
  #Typography
======================================*/
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
}

@media only screen and (max-width: 1024px) {
    html {
        font-size: 0.95em;
    }
}

@media only screen and (max-width: 768px) {
    html {
        font-size: 0.9em;
    }
}

body {
    font-family: var(--body-font);
    font-display: swap;
    line-height: var(--body-line-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: var(--font-size);
    font-weight: var(--body-font-weight);
    width: 100%;
    overflow-x: hidden;
    color: var(--text-dark);
}

p,
ul,
ol {
    margin-bottom: 1.5em;
}

.text-big {
    font-weight: var(--text-big-font-weight);
    font-size: var(--font-size-big);
}

.text-small {
    font-size: var(--font-size-small);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.act-heading {
    font-family: var(--heading-font);
    font-display: swap;
    text-transform: uppercase;
    line-height: var(--heading-line-height);
    margin-bottom: 0.5em;
    font-weight: var(--heading-font-weight);
}

h2, h5, h6, .h2, .h5, .h6 {
    text-transform: unset;
}

.section-head {
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    line-height: 1;
    margin-bottom: 1em;
}

.pre-head {
    font-weight: var(--body-font-weight);
    font-family: var(--heading-font);
    font-display: swap;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    line-height: 1;
    margin-bottom: 0.9em;
    opacity: 0.8;
    color: var(--heading-dark);
}

.light-color {
    color: var(--text-light);
}

    .light-color h1,
    .light-color h2,
    .light-color h3,
    .light-color h4,
    .light-color h5,
    .light-color h6 .act-heading,
    .light-color .pre-head,
    .light-color .section-head {
        color: var(--heading-light);
    }

h1,
.h1 {
    font-size: var(--font-size-h1);
}

h2,
.h2 {
    font-size: var(--font-size-h2);
}

h3,
.h3 {
    font-size: var(--font-size-h3);
}

h4,
.h4 {
    font-size: var(--font-size-h4);
}

h5,
.h5 {
    font-size: var(--font-size-h5);
}

h6,
.h6 {
    font-size: var(--font-size-h6);
}

small {
    font-size: 80%;
}

mark {
    background: #fcf8e3;
    padding: 0 0.3em;
}

abbr {
    border-bottom: 2px dotted #555;
    text-decoration: none;
    cursor: help;
}

kbd {
    background: var(--background-dark);
    color: var(--white);
    border-radius: 3px;
    padding: 2px 4px;
    font-size: 80%;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

    a:hover {
        text-decoration: none;
    }

em,
i {
    font-style: italic;
}

strong,
b {
    font-weight: bold;
}

hr {
    border: none;
    height: 1px;
    background: var(--border-dark);
    margin: 2em 0;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

blockquote {
    font-style: normal;
    font-size: var(--font-size-big);
    position: relative;
    font-weight: var(--font-weight-light);
    max-width: 32.5em;
    margin: 4.4em auto 4em;
    text-align: center;
}

    blockquote::before {
        color: var(--theme);
        position: absolute;
        font-family: "FontAwesome";
        content: "\f10d";
        top: -1.5em;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5rem;
        line-height: 1;
    }

    blockquote cite {
        display: block;
        font-size: 80%;
    }

ul,
ol {
    padding-left: 20px;
}

    ul ul,
    ol ul,
    ul ol,
    ol ol {
        margin-bottom: 0;
    }

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}
/*======================================
  #Tables
======================================*/
.table-wrap {
    min-height: 0.01%;
    overflow-x: auto;
}

table {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
}

    table th,
    table td {
        padding: 0.75em;
    }

    table th {
        font-weight: var(--font-weight-bold);
        text-align: left;
    }

    table thead tr {
        border-bottom: 2px solid var(--border-dark);
    }

    table tbody tr {
        border-top: 1px solid var(--border-dark);
    }

        table tbody tr:first-child {
            border-top: 0;
        }

        table tbody tr:hover {
            background: rgba(0, 0, 0, 0.04);
        }
/*======================================
  #Container
======================================*/
.container-fluid,
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: var(--grid-gutter);
    padding-right: var(--grid-gutter);
}

.container {
    max-width: var(--grid-width);
}

.container--small {
    max-width: var(--grid-width-small);
}

.container--big {
    max-width: var(--grid-width-big);
}

.container--fluid {
    max-width: 100%;
}
/*======================================
  #Row
======================================*/
.row {
    display: flex;
    flex-flow: row wrap;
    margin-left: calc(var(--grid-gutter-half) * -1);
    margin-right: calc(var(--grid-gutter-half) * -1);
}

    .row.row--center {
        justify-content: center;
    }

    .row.row--left {
        justify-content: flex-start;
    }

    .row.row--right {
        justify-content: flex-end;
    }

    .row.row--space-around {
        justify-content: space-around;
    }

    .row.row--space-between {
        justify-content: space-between;
    }

    .row.row--space-evenly {
        justify-content: space-evenly;
    }

    .row.row--v-top {
        align-items: flex-start;
    }

    .row.row--v-center {
        align-items: center;
    }

    .row.row--v-bottom {
        align-items: flex-end;
    }

    .row.row--reverse {
        flex-direction: row-reverse;
    }

    .row.row--flat,
    .row.row--flat .row.sub-grid {
        margin-left: 0;
        margin-right: 0;
    }

        .row.row--flat > [class*='col-'],
        .row.row--flat .row.sub-grid > [class*='col-'],
        .row.row--flat > .col,
        .row.row--flat .row.sub-grid > .col {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

@media only screen and (max-width: 768px) {
    .row.row--flat-s {
        margin-left: 0;
        margin-right: 0;
    }

        .row.row--flat-s > [class*='col-'],
        .row.row--flat-s > .col {
            padding-left: 0;
            padding-right: 0;
        }
}

.row.row--grow > [class*='col-'],
.row.row--grow > .col {
    flex-grow: 1;
}
/*======================================
  #Cols
======================================*/
[class*='col-'],
.col {
    padding-left: var(--grid-gutter-half);
    padding-right: var(--grid-gutter-half);
}

    [class*='col-'].col--v-center,
    .col.col--v-center {
        -ms-grid-row-align: center;
        align-self: center;
    }

    [class*='col-'].col--grow,
    .col.col--grow {
        flex-grow: 1;
    }

.col,
.col- {
    flex-grow: 1;
    flex-basis: 0;
}

.col-10 {
    flex-basis: 10%;
    max-width: 10%;
}

.col-16 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
}

.col-20 {
    flex-basis: 20%;
    max-width: 20%;
}

.col-25 {
    flex-basis: 25%;
    max-width: 25%;
}

.col-30 {
    flex-basis: 30%;
    max-width: 30%;
}

.col-33 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
}

.col-40 {
    flex-basis: 40%;
    max-width: 40%;
}

.col-45 {
    flex-basis: 45%;
    max-width: 45%;
}

.col-50 {
    flex-basis: 50%;
    max-width: 50%;
}

.col-55 {
    flex-basis: 55%;
    max-width: 55%;
}

.col-60 {
    flex-basis: 60%;
    max-width: 60%;
}

.col-66 {
    flex-basis: 66.66666666%;
    max-width: 66.66666666%;
}

.col-70 {
    flex-basis: 70%;
    max-width: 70%;
}

.col-75 {
    flex-basis: 75%;
    max-width: 75%;
}

.col-80 {
    flex-basis: 80%;
    max-width: 80%;
}

.col-90 {
    flex-basis: 90%;
    max-width: 90%;
}

.col-100 {
    flex-basis: 100%;
    max-width: 100%;
}

@media only screen and (max-width: 1200px) {
    .col-l-10 {
        flex-basis: 10%;
        max-width: 10%;
    }

    .col-l-16 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-l-20 {
        flex-basis: 20%;
        max-width: 20%;
    }

    .col-l-25 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-l-30 {
        flex-basis: 30%;
        max-width: 30%;
    }

    .col-l-33 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-l-40 {
        flex-basis: 40%;
        max-width: 40%;
    }

    .col-l-45 {
        flex-basis: 45%;
        max-width: 45%;
    }

    .col-l-50 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-l-55 {
        flex-basis: 55%;
        max-width: 55%;
    }

    .col-l-60 {
        flex-basis: 60%;
        max-width: 60%;
    }

    .col-l-66 {
        flex-basis: 66.66666666%;
        max-width: 66.66666666%;
    }

    .col-l-70 {
        flex-basis: 70%;
        max-width: 70%;
    }

    .col-l-75 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-l-80 {
        flex-basis: 80%;
        max-width: 80%;
    }

    .col-l-90 {
        flex-basis: 90%;
        max-width: 90%;
    }

    .col-l-100 {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    .col-m-10 {
        flex-basis: 10%;
        max-width: 10%;
    }

    .col-m-16 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-m-20 {
        flex-basis: 20%;
        max-width: 20%;
    }

    .col-m-25 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-m-30 {
        flex-basis: 30%;
        max-width: 30%;
    }

    .col-m-33 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-m-40 {
        flex-basis: 40%;
        max-width: 40%;
    }

    .col-m-45 {
        flex-basis: 45%;
        max-width: 45%;
    }

    .col-m-50 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-m-55 {
        flex-basis: 55%;
        max-width: 55%;
    }

    .col-m-60 {
        flex-basis: 60%;
        max-width: 60%;
    }

    .col-m-66 {
        flex-basis: 66.66666666%;
        max-width: 66.66666666%;
    }

    .col-m-70 {
        flex-basis: 70%;
        max-width: 70%;
    }

    .col-m-75 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-m-80 {
        flex-basis: 80%;
        max-width: 80%;
    }

    .col-m-90 {
        flex-basis: 90%;
        max-width: 90%;
    }

    .col-m-100 {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 768px) {
    .col-s-10 {
        flex-basis: 10%;
        max-width: 10%;
    }

    .col-s-16 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-s-20 {
        flex-basis: 20%;
        max-width: 20%;
    }

    .col-s-25 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-s-30 {
        flex-basis: 30%;
        max-width: 30%;
    }

    .col-s-33 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-s-40 {
        flex-basis: 40%;
        max-width: 40%;
    }

    .col-s-45 {
        flex-basis: 45%;
        max-width: 45%;
    }

    .col-s-50 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-s-55 {
        flex-basis: 55%;
        max-width: 55%;
    }

    .col-s-60 {
        flex-basis: 60%;
        max-width: 60%;
    }

    .col-s-66 {
        flex-basis: 66.66666666%;
        max-width: 66.66666666%;
    }

    .col-s-70 {
        flex-basis: 70%;
        max-width: 70%;
    }

    .col-s-75 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-s-80 {
        flex-basis: 80%;
        max-width: 80%;
    }

    .col-s-90 {
        flex-basis: 90%;
        max-width: 90%;
    }

    .col-s-100 {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .col-xs-10 {
        flex-basis: 10%;
        max-width: 10%;
    }

    .col-xs-16 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-xs-20 {
        flex-basis: 20%;
        max-width: 20%;
    }

    .col-xs-25 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-xs-30 {
        flex-basis: 30%;
        max-width: 30%;
    }

    .col-xs-33 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-xs-40 {
        flex-basis: 40%;
        max-width: 40%;
    }

    .col-xs-45 {
        flex-basis: 45%;
        max-width: 45%;
    }

    .col-xs-50 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-xs-55 {
        flex-basis: 55%;
        max-width: 55%;
    }

    .col-xs-60 {
        flex-basis: 60%;
        max-width: 60%;
    }

    .col-xs-66 {
        flex-basis: 66.66666666%;
        max-width: 66.66666666%;
    }

    .col-xs-70 {
        flex-basis: 70%;
        max-width: 70%;
    }

    .col-xs-75 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-xs-80 {
        flex-basis: 80%;
        max-width: 80%;
    }

    .col-xs-90 {
        flex-basis: 90%;
        max-width: 90%;
    }

    .col-xs-100 {
        flex-basis: 100%;
        max-width: 100%;
    }
}
/*======================================
  #Order
======================================*/
.col-order-1 {
    order: 1;
}

.col-order-2 {
    order: 2;
}

.col-order-3 {
    order: 3;
}

.col-order-4 {
    order: 4;
}

.col-order-5 {
    order: 5;
}

@media only screen and (max-width: 1024px) {
    .col-m-order-1 {
        order: 1;
    }

    .col-m-order-2 {
        order: 2;
    }

    .col-m-order-3 {
        order: 3;
    }

    .col-m-order-4 {
        order: 4;
    }

    .col-m-order-5 {
        order: 5;
    }
}

@media only screen and (max-width: 768px) {
    .col-s-order-1 {
        order: 1;
    }

    .col-s-order-2 {
        order: 2;
    }

    .col-s-order-3 {
        order: 3;
    }

    .col-s-order-4 {
        order: 4;
    }

    .col-s-order-5 {
        order: 5;
    }
}
/*======================================
  #Horizontal scroll
======================================*/
.row.row--no-wrap {
    flex-flow: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .row.row--no-wrap > [class*='col-'] {
        flex: 0 0 auto;
    }

@media only screen and (max-width: 1024px) {
    .row.row--no-wrap-m {
        flex-flow: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

        .row.row--no-wrap-m > [class*='col-'] {
            flex: 0 0 auto;
        }
}

@media only screen and (max-width: 768px) {
    .row.row--no-wrap-s {
        flex-flow: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
        margin: 0;
    }

        .row.row--no-wrap-s > [class*='col-'] {
            flex: 0 0 auto;
            scroll-snap-align: center;
        }

        .row.row--no-wrap-s > .col-s-80 {
            min-width: 80%;
        }

        .row.row--no-wrap-s > .col-s-90 {
            min-width: 90%;
        }
}

@media only screen and (max-width: 768px) {
    .container--mobile-scroll {
        padding: 0;
    }

        .container--mobile-scroll > .row > [class*='col-']:first-child {
            padding-left: var(--grid-gutter);
        }

        .container--mobile-scroll > .row > [class*='col-']:last-child {
            padding-right: var(--grid-gutter);
        }
}

.PaymentPart_FormContainer {
    margin-top: 70px;
}

.PaymentPartSubmitButton {
    width: unset;
}

.PaymentPart_CartDeliveryMethodCaption {
    white-space: normal;
}

.MS_footerWrapper {
    position: absolute;
    left: 0;
    width: 100%;
}