@media (min-width:992px) {

    div,
    main,
    ol,
    pre,
    span,
    ul {
        scrollbar-width: thin;
        scrollbar-color: var(--scrollbar-color) transparent
    }

    div::-webkit-scrollbar,
    main::-webkit-scrollbar,
    ol::-webkit-scrollbar,
    pre::-webkit-scrollbar,
    span::-webkit-scrollbar,
    ul::-webkit-scrollbar {
        width: var(--scrollbar-size);
        height: var(--scrollbar-size)
    }

    div ::-webkit-scrollbar-track,
    main ::-webkit-scrollbar-track,
    ol ::-webkit-scrollbar-track,
    pre ::-webkit-scrollbar-track,
    span ::-webkit-scrollbar-track,
    ul ::-webkit-scrollbar-track {
        background-color: transparent
    }

    div ::-webkit-scrollbar-thumb,
    main ::-webkit-scrollbar-thumb,
    ol ::-webkit-scrollbar-thumb,
    pre ::-webkit-scrollbar-thumb,
    span ::-webkit-scrollbar-thumb,
    ul ::-webkit-scrollbar-thumb {
        border-radius: var(--scrollbar-size)
    }

    div::-webkit-scrollbar-thumb,
    main::-webkit-scrollbar-thumb,
    ol::-webkit-scrollbar-thumb,
    pre::-webkit-scrollbar-thumb,
    span::-webkit-scrollbar-thumb,
    ul::-webkit-scrollbar-thumb {
        background-color: var(--scrollbar-color)
    }

    div::-webkit-scrollbar-corner,
    main::-webkit-scrollbar-corner,
    ol::-webkit-scrollbar-corner,
    pre::-webkit-scrollbar-corner,
    span::-webkit-scrollbar-corner,
    ul::-webkit-scrollbar-corner {
        background-color: transparent
    }

    div:hover,
    main:hover,
    ol:hover,
    pre:hover,
    span:hover,
    ul:hover {
        scrollbar-color: var(--scrollbar-hover-color) transparent
    }

    div:hover::-webkit-scrollbar-thumb,
    main:hover::-webkit-scrollbar-thumb,
    ol:hover::-webkit-scrollbar-thumb,
    pre:hover::-webkit-scrollbar-thumb,
    span:hover::-webkit-scrollbar-thumb,
    ul:hover::-webkit-scrollbar-thumb {
        background-color: var(--scrollbar-hover-color)
    }

    div:hover::-webkit-scrollbar-corner,
    main:hover::-webkit-scrollbar-corner,
    ol:hover::-webkit-scrollbar-corner,
    pre:hover::-webkit-scrollbar-corner,
    span:hover::-webkit-scrollbar-corner,
    ul:hover::-webkit-scrollbar-corner {
        background-color: transparent
    }
}

.m8-card {
    --card-spacer-y: 1rem;
    --card-spacer-x: 1rem;
    --card-title-spacer-y: 0.5rem;
    --card-title-color: var(--gray-900);
    --card-border-width: 1px;
    --card-border-color: #F1F1F4;
    --card-border-radius: 0.625rem;
    --card-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03);
    --card-inner-border-radius: calc(0.625rem - 1px);
    --card-cap-padding-y: 0.5rem;
    --card-cap-padding-x: 1rem;
    --card-cap-bg: transparent;
    --card-bg: var(--body-bg);
    --card-img-overlay-padding: 1rem;
    --card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--card-height);
    color: var(--body-color);
    word-wrap: break-word;
    background-color: var(--card-bg);
    background-clip: border-box;
    border: var(--card-border-width) solid var(--card-border-color);
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-box-shadow)
}

.m8-card>hr {
    margin-right: 0;
    margin-left: 0
}

.m8-card>.list-group {
    border-top: inherit;
    border-bottom: inherit
}

.m8-card>.list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: var(--card-inner-border-radius);
    border-top-right-radius: var(--card-inner-border-radius)
}

.m8-card>.list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: var(--card-inner-border-radius);
    border-bottom-left-radius: var(--card-inner-border-radius)
}

.m8-card>.m8-card-header+.list-group,
.m8-card>.list-group+.m8-card-footer {
    border-top: 0
}

.m8-card-body {
    flex: 1 1 auto;
    padding: var(--card-spacer-y) var(--card-spacer-x);
    color: var(--card-color)
}

.m8-card-title {
    margin-bottom: var(--card-title-spacer-y);
    color: var(--card-title-color)
}

.m8-card-subtitle {
    margin-top: calc(-.5 * var(--card-title-spacer-y));
    margin-bottom: 0;
    color: var(--card-subtitle-color)
}

.m8-card-text:last-child {
    margin-bottom: 0
}

.m8-card-link+.m8-card-link {
    margin-left: var(--card-spacer-x)
}

.m8-card-header {
    padding: var(--card-cap-padding-y) var(--card-cap-padding-x);
    margin-bottom: 0;
    color: var(--card-cap-color);
    background-color: var(--card-cap-bg);
    border-bottom: var(--card-border-width) solid var(--card-border-color)
}

.m8-card-header:first-child {
    border-radius: var(--card-inner-border-radius) var(--card-inner-border-radius) 0 0
}

.m8-card-footer {
    padding: var(--card-cap-padding-y) var(--card-cap-padding-x);
    color: var(--card-cap-color);
    background-color: var(--card-cap-bg);
    border-top: var(--card-border-width) solid var(--card-border-color)
}

.m8-card-footer:last-child {
    border-radius: 0 0 var(--card-inner-border-radius) var(--card-inner-border-radius)
}

.m8-card-header-tabs {
    margin-right: calc(-.5 * var(--card-cap-padding-x));
    margin-bottom: calc(-1 * var(--card-cap-padding-y));
    margin-left: calc(-.5 * var(--card-cap-padding-x));
    border-bottom: 0
}

.m8-card-header-tabs .m8-nav-link.active {
    background-color: var(--card-bg);
    border-bottom-color: var(--card-bg)
}

.m8-card-header-pills {
    margin-right: calc(-.5 * var(--card-cap-padding-x));
    margin-left: calc(-.5 * var(--card-cap-padding-x))
}

.m8-card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: var(--card-img-overlay-padding);
    border-radius: var(--card-inner-border-radius)
}

.m8-card-img,
.m8-card-img-bottom,
.m8-card-img-top {
    width: 100%
}

.m8-card-img,
.m8-card-img-top {
    border-top-left-radius: var(--card-inner-border-radius);
    border-top-right-radius: var(--card-inner-border-radius)
}

.m8-card-img,
.m8-card-img-bottom {
    border-bottom-right-radius: var(--card-inner-border-radius);
    border-bottom-left-radius: var(--card-inner-border-radius)
}

.m8-card-group>.m8-card {
    margin-bottom: var(--card-group-margin)
}

@media (min-width:576px) {
    .m8-card-group {
        display: flex;
        flex-flow: row wrap
    }

    .m8-card-group>.m8-card {
        flex: 1 0 0%;
        margin-bottom: 0
    }

    .m8-card-group>.m8-card+.m8-card {
        margin-left: 0;
        border-left: 0
    }

    .m8-card-group>.m8-card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .m8-card-group>.m8-card:not(:last-child) .m8-card-header,
    .m8-card-group>.m8-card:not(:last-child) .m8-card-img-top {
        border-top-right-radius: 0
    }

    .m8-card-group>.m8-card:not(:last-child) .m8-card-footer,
    .m8-card-group>.m8-card:not(:last-child) .m8-card-img-bottom {
        border-bottom-right-radius: 0
    }

    .m8-card-group>.m8-card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .m8-card-group>.m8-card:not(:first-child) .m8-card-header,
    .m8-card-group>.m8-card:not(:first-child) .m8-card-img-top {
        border-top-left-radius: 0
    }

    .m8-card-group>.m8-card:not(:first-child) .m8-card-footer,
    .m8-card-group>.m8-card:not(:first-child) .m8-card-img-bottom {
        border-bottom-left-radius: 0
    }
}



.m8-card {
    --card-box-shadow: var(--root-card-box-shadow);
    --card-border-color: var(--root-card-border-color);
    border: 1px solid var(--card-border-color)
}

.m8-card .m8-card-header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    min-height: 70px;
    padding: 0 2.25rem;
    color: var(--card-cap-color);
    background-color: var(--card-cap-bg);
    border-bottom: 1px solid var(--card-border-color)
}

.m8-card .m8-card-header .m8-card-title {
    display: flex;
    align-items: center;
    margin: .5rem;
    margin-left: 0
}

.m8-card .m8-card-header .m8-card-title.m8-flex-column {
    align-items: flex-start;
    justify-content: center
}

.m8-card .m8-card-header .m8-card-title .m8-card-icon {
    margin-right: .75rem;
    line-height: 0
}

.m8-card .m8-card-header .m8-card-title .m8-card-icon i {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 0
}

.m8-card .m8-card-header .m8-card-title .m8-card-icon i:after,
.m8-card .m8-card-header .m8-card-title .m8-card-icon i:before {
    line-height: 0
}

.m8-card .m8-card-header .m8-card-title .m8-card-icon .svg-icon {
    color: var(--gray-600)
}

.m8-card .m8-card-header .m8-card-title .m8-card-icon .svg-icon svg {
    height: 24px;
    width: 24px
}

.m8-card .m8-card-header .m8-card-title,
.m8-card .m8-card-header .m8-card-title .m8-card-label {
    font-weight: 500;
    font-size: 1.275rem;
    color: var(--text-gray-900)
}

.m8-card .m8-card-header .m8-card-title .m8-card-label {
    margin: 0 .75rem 0 0;
    flex-wrap: wrap
}

.m8-card .m8-card-header .m8-card-title .small,
.m8-card .m8-card-header .m8-card-title small {
    color: var(--text-muted);
    font-size: 1rem
}

.m8-card .m8-card-header .m8-card-title .m8-h1,
.m8-card .m8-card-header .m8-card-title .m8-h2,
.m8-card .m8-card-header .m8-card-title .m8-h3,
.m8-card .m8-card-header .m8-card-title .m8-h4,
.m8-card .m8-card-header .m8-card-title .m8-h5,
.m8-card .m8-card-header .m8-card-title .m8-h6,
.m8-card .m8-card-header .m8-card-title h1,
.m8-card .m8-card-header .m8-card-title h2,
.m8-card .m8-card-header .m8-card-title h3,
.m8-card .m8-card-header .m8-card-title h4,
.m8-card .m8-card-header .m8-card-title h5,
.m8-card .m8-card-header .m8-card-title h6 {
    margin-bottom: 0
}

.m8-card .m8-card-header .m8-card-toolbar {
    display: flex;
    align-items: center;
    margin: .5rem 0;
    flex-wrap: wrap
}

.m8-card .m8-card-body {
    padding: 2rem 2.25rem;
    color: var(--card-color)
}

.m8-card .m8-card-footer {
    padding: 2rem 2.25rem;
    color: var(--card-cap-color);
    background-color: var(--card-cap-bg);
    border-top: 1px solid var(--card-border-color)
}

.m8-card .m8-card-scroll {
    position: relative;
    overflow: auto
}

.m8-card.m8-card-px-0 .m8-card-body,
.m8-card.m8-card-px-0 .m8-card-footer,
.m8-card.m8-card-px-0 .m8-card-header {
    padding-left: 0;
    padding-right: 0
}

.m8-card.m8-card-py-0 .m8-card-body,
.m8-card.m8-card-py-0 .m8-card-footer,
.m8-card.m8-card-py-0 .m8-card-header {
    padding-top: 0;
    padding-bottom: 0
}

.m8-card.m8-card-p-0 .m8-card-body,
.m8-card.m8-card-p-0 .m8-card-footer,
.m8-card.m8-card-p-0 .m8-card-header {
    padding: 0
}

.m8-card.m8-card-dashed {
    box-shadow: none;
    border: 1px dashed var(--border-dashed-color)
}

.m8-card.m8-card-dashed>.m8-card-header {
    border-bottom: 1px dashed var(--border-dashed-color)
}

.m8-card.m8-card-dashed>.m8-card-footer {
    border-top: 1px dashed var(--border-dashed-color)
}

.m8-card.m8-card-bordered {
    box-shadow: none;
    border: 1px solid #f1f1f4
}

.m8-card.m8-card-flush>.m8-card-header {
    border-bottom: 0 !important
}

.m8-card.m8-card-flush>.m8-card-footer {
    border-top: 0 !important
}

.m8-card.m8-card-shadow {
    box-shadow: var(--card-box-shadow);
    border: 0
}

.m8-card.m8-card-reset {
    border: 0 !important;
    box-shadow: none !important;
    background-color: transparent !important
}

.m8-card.m8-card-reset>.m8-card-header {
    border-bottom: 0 !important
}

.m8-card.m8-card-reset>.m8-card-footer {
    border-top: 0 !important
}

.m8-card.m8-card-borderless {
    border: 0 !important
}

.m8-card.m8-card-borderless>.m8-card-header {
    border-bottom: 0 !important
}

.m8-card.m8-card-borderless>.m8-card-footer {
    border-top: 0 !important
}

.m8-card.m8-card-border-0 {
    border: 0 !important
}

.m8-card.m8-card-stretch {
    height: calc(100% - var(--gutter-y))
}

.m8-card.m8-card-stretch-75 {
    height: calc(75% - var(--gutter-y))
}

.m8-card.m8-card-stretch-50 {
    height: calc(50% - var(--gutter-y))
}

.m8-card.m8-card-stretch-33 {
    height: calc(33.333% - var(--gutter-y))
}

.m8-card.m8-card-stretch-25 {
    height: calc(25% - var(--gutter-y))
}

.m8-card .m8-card-header-stretch {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: stretch
}

.m8-card .m8-card-header-stretch .m8-card-toolbar {
    margin: 0;
    align-items: stretch
}

@media (min-width:576px) {
    .m8-card.m8-card-sm-stretch {
        height: calc(100% - var(--gutter-y))
    }

    .m8-card.m8-card-sm-stretch-75 {
        height: calc(75% - var(--gutter-y))
    }

    .m8-card.m8-card-sm-stretch-50 {
        height: calc(50% - var(--gutter-y))
    }

    .m8-card.m8-card-sm-stretch-33 {
        height: calc(33.333% - var(--gutter-y))
    }

    .m8-card.m8-card-sm-stretch-25 {
        height: calc(25% - var(--gutter-y))
    }

    .m8-card .m8-card-header-sm-stretch {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        align-items: stretch
    }

    .m8-card .m8-card-header-sm-stretch .m8-card-toolbar {
        margin: 0;
        align-items: stretch
    }
}

@media (min-width:768px) {
    .m8-card.m8-card-md-stretch {
        height: calc(100% - var(--gutter-y))
    }

    .m8-card.m8-card-md-stretch-75 {
        height: calc(75% - var(--gutter-y))
    }

    .m8-card.m8-card-md-stretch-50 {
        height: calc(50% - var(--gutter-y))
    }

    .m8-card.m8-card-md-stretch-33 {
        height: calc(33.333% - var(--gutter-y))
    }

    .m8-card.m8-card-md-stretch-25 {
        height: calc(25% - var(--gutter-y))
    }

    .m8-card .m8-card-header-md-stretch {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        align-items: stretch
    }

    .m8-card .m8-card-header-md-stretch .m8-card-toolbar {
        margin: 0;
        align-items: stretch
    }
}

@media (min-width:992px) {
    .m8-card.m8-card-lg-stretch {
        height: calc(100% - var(--gutter-y))
    }

    .m8-card.m8-card-lg-stretch-75 {
        height: calc(75% - var(--gutter-y))
    }

    .m8-card.m8-card-lg-stretch-50 {
        height: calc(50% - var(--gutter-y))
    }

    .m8-card.m8-card-lg-stretch-33 {
        height: calc(33.333% - var(--gutter-y))
    }

    .m8-card.m8-card-lg-stretch-25 {
        height: calc(25% - var(--gutter-y))
    }

    .m8-card .m8-card-header-lg-stretch {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        align-items: stretch
    }

    .m8-card .m8-card-header-lg-stretch .m8-card-toolbar {
        margin: 0;
        align-items: stretch
    }
}

@media (min-width:1200px) {
    .m8-card.m8-card-xl-stretch {
        height: calc(100% - var(--gutter-y))
    }

    .m8-card.m8-card-xl-stretch-75 {
        height: calc(75% - var(--gutter-y))
    }

    .m8-card.m8-card-xl-stretch-50 {
        height: calc(50% - var(--gutter-y))
    }

    .m8-card.m8-card-xl-stretch-33 {
        height: calc(33.333% - var(--gutter-y))
    }

    .m8-card.m8-card-xl-stretch-25 {
        height: calc(25% - var(--gutter-y))
    }

    .m8-card .m8-card-header-xl-stretch {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        align-items: stretch
    }

    .m8-card .m8-card-header-xl-stretch .m8-card-toolbar {
        margin: 0;
        align-items: stretch
    }
}

@media (min-width:1400px) {
    .m8-card.m8-card-xxl-stretch {
        height: calc(100% - var(--gutter-y))
    }

    .m8-card.m8-card-xxl-stretch-75 {
        height: calc(75% - var(--gutter-y))
    }

    .m8-card.m8-card-xxl-stretch-50 {
        height: calc(50% - var(--gutter-y))
    }

    .m8-card.m8-card-xxl-stretch-33 {
        height: calc(33.333% - var(--gutter-y))
    }

    .m8-card.m8-card-xxl-stretch-25 {
        height: calc(25% - var(--gutter-y))
    }

    .m8-card .m8-card-header-xxl-stretch {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        align-items: stretch
    }

    .m8-card .m8-card-header-xxl-stretch .m8-card-toolbar {
        margin: 0;
        align-items: stretch
    }
}

.m8-card-p {
    padding: 2rem 2.25rem !important
}

.m8-card-border {
    border: 1px solid var(--root-card-border-color) !important
}

.m8-card-px {
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important
}

.m8-card-shadow {
    box-shadow: var(--card-box-shadow)
}

.m8-card-py {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
}

.m8-card-rounded {
    border-radius: .625rem
}

.m8-card-rounded-start {
    border-top-left-radius: .625rem;
    border-bottom-left-radius: .625rem
}

.m8-card-rounded-end {
    border-top-right-radius: .625rem;
    border-bottom-right-radius: .625rem
}

.m8-card-rounded-top {
    border-top-left-radius: .625rem;
    border-top-right-radius: .625rem
}

.m8-card-rounded-bottom {
    border-bottom-left-radius: .625rem;
    border-bottom-right-radius: .625rem
}

@media (max-width:767.98px) {
    .m8-card>.m8-card-header:not(.m8-flex-nowrap) {
        padding-top: .5rem;
        padding-bottom: .5rem
    }
}

[data-bs-theme=dark] .m8-card {
    --card-box-shadow: none
}

.m8-align-items-start {
    align-items: flex-start !important
}


.m8-row {
    --gutter-x: 1.5rem;
    --gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--gutter-y));
    margin-right: calc(-.5 * var(--gutter-x));
    margin-left: calc(-.5 * var(--gutter-x))
}

.m8-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * .5);
    padding-left: calc(var(--gutter-x) * .5);
    margin-top: var(--gutter-y)
}

.m8-col {
    flex: 1 0 0%
}

.m8-row-cols-auto>* {
    flex: 0 0 auto;
    width: auto
}

.m8-row-cols-1>* {
    flex: 0 0 auto;
    width: 100%
}

.m8-row-cols-2>* {
    flex: 0 0 auto;
    width: 50%
}

.m8-row-cols-3>* {
    flex: 0 0 auto;
    width: 33.33333333%
}

.m8-row-cols-4>* {
    flex: 0 0 auto;
    width: 25%
}

.m8-row-cols-5>* {
    flex: 0 0 auto;
    width: 20%
}

.m8-row-cols-6>* {
    flex: 0 0 auto;
    width: 16.66666667%
}

.m8-col-auto {
    flex: 0 0 auto;
    width: auto
}

.m8-col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.m8-col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.m8-col-3 {
    flex: 0 0 auto;
    width: 25%
}

.m8-col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.m8-col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.m8-col-6 {
    flex: 0 0 auto;
    width: 50%
}

.m8-col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.m8-col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.m8-col-9 {
    flex: 0 0 auto;
    width: 75%
}

.m8-col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.m8-col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.m8-col-12 {
    flex: 0 0 auto;
    width: 100%
}

.m8-offset-1 {
    margin-left: 8.33333333%
}

.m8-offset-2 {
    margin-left: 16.66666667%
}

.m8-offset-3 {
    margin-left: 25%
}

.m8-offset-4 {
    margin-left: 33.33333333%
}

.m8-offset-5 {
    margin-left: 41.66666667%
}

.m8-offset-6 {
    margin-left: 50%
}

.m8-offset-7 {
    margin-left: 58.33333333%
}

.m8-offset-8 {
    margin-left: 66.66666667%
}

.m8-offset-9 {
    margin-left: 75%
}

.m8-offset-10 {
    margin-left: 83.33333333%
}

.m8-offset-11 {
    margin-left: 91.66666667%
}

.m8-g-0,
.m8-gx-0 {
    --gutter-x: 0rem
}

.m8-g-0,
.m8-gy-0 {
    --gutter-y: 0rem
}

.m8-g-1,
.m8-gx-1 {
    --gutter-x: 0.25rem
}

.m8-g-1,
.m8-gy-1 {
    --gutter-y: 0.25rem
}

.m8-g-2,
.m8-gx-2 {
    --gutter-x: 0.5rem
}

.m8-g-2,
.m8-gy-2 {
    --gutter-y: 0.5rem
}

.m8-g-3,
.m8-gx-3 {
    --gutter-x: 0.75rem
}

.m8-g-3,
.m8-gy-3 {
    --gutter-y: 0.75rem
}

.m8-g-4,
.m8-gx-4 {
    --gutter-x: 1rem
}

.m8-g-4,
.m8-gy-4 {
    --gutter-y: 1rem
}

.m8-g-5,
.m8-gx-5 {
    --gutter-x: 1.25rem
}

.m8-g-5,
.m8-gy-5 {
    --gutter-y: 1.25rem
}

.m8-g-6,
.m8-gx-6 {
    --gutter-x: 1.5rem
}

.m8-g-6,
.m8-gy-6 {
    --gutter-y: 1.5rem
}

.m8-g-7,
.m8-gx-7 {
    --gutter-x: 1.75rem
}

.m8-g-7,
.m8-gy-7 {
    --gutter-y: 1.75rem
}

.m8-g-8,
.m8-gx-8 {
    --gutter-x: 2rem
}

.m8-g-8,
.m8-gy-8 {
    --gutter-y: 2rem
}

.m8-g-9,
.m8-gx-9 {
    --gutter-x: 2.25rem
}

.m8-g-9,
.m8-gy-9 {
    --gutter-y: 2.25rem
}

.m8-g-10,
.m8-gx-10 {
    --gutter-x: 2.5rem
}

.m8-g-10,
.m8-gy-10 {
    --gutter-y: 2.5rem
}

@media (min-width:576px) {
    .m8-col-sm {
        flex: 1 0 0%
    }

    .m8-row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .m8-row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .m8-row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .m8-row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .m8-row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .m8-row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .m8-row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .m8-col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .m8-col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .m8-col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .m8-col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .m8-col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .m8-col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .m8-col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .m8-col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .m8-col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .m8-col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .m8-col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .m8-col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .m8-col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .m8-offset-sm-0 {
        margin-left: 0
    }

    .m8-offset-sm-1 {
        margin-left: 8.33333333%
    }

    .m8-offset-sm-2 {
        margin-left: 16.66666667%
    }

    .m8-offset-sm-3 {
        margin-left: 25%
    }

    .m8-offset-sm-4 {
        margin-left: 33.33333333%
    }

    .m8-offset-sm-5 {
        margin-left: 41.66666667%
    }

    .m8-offset-sm-6 {
        margin-left: 50%
    }

    .m8-offset-sm-7 {
        margin-left: 58.33333333%
    }

    .m8-offset-sm-8 {
        margin-left: 66.66666667%
    }

    .m8-offset-sm-9 {
        margin-left: 75%
    }

    .m8-offset-sm-10 {
        margin-left: 83.33333333%
    }

    .m8-offset-sm-11 {
        margin-left: 91.66666667%
    }

    .m8-g-sm-0,
    .m8-gx-sm-0 {
        --gutter-x: 0rem
    }

    .m8-g-sm-0,
    .m8-gy-sm-0 {
        --gutter-y: 0rem
    }

    .m8-g-sm-1,
    .m8-gx-sm-1 {
        --gutter-x: 0.25rem
    }

    .m8-g-sm-1,
    .m8-gy-sm-1 {
        --gutter-y: 0.25rem
    }

    .m8-g-sm-2,
    .m8-gx-sm-2 {
        --gutter-x: 0.5rem
    }

    .m8-g-sm-2,
    .m8-gy-sm-2 {
        --gutter-y: 0.5rem
    }

    .m8-g-sm-3,
    .m8-gx-sm-3 {
        --gutter-x: 0.75rem
    }

    .m8-g-sm-3,
    .m8-gy-sm-3 {
        --gutter-y: 0.75rem
    }

    .m8-g-sm-4,
    .m8-gx-sm-4 {
        --gutter-x: 1rem
    }

    .m8-g-sm-4,
    .m8-gy-sm-4 {
        --gutter-y: 1rem
    }

    .m8-g-sm-5,
    .m8-gx-sm-5 {
        --gutter-x: 1.25rem
    }

    .m8-g-sm-5,
    .m8-gy-sm-5 {
        --gutter-y: 1.25rem
    }

    .m8-g-sm-6,
    .m8-gx-sm-6 {
        --gutter-x: 1.5rem
    }

    .m8-g-sm-6,
    .m8-gy-sm-6 {
        --gutter-y: 1.5rem
    }

    .m8-g-sm-7,
    .m8-gx-sm-7 {
        --gutter-x: 1.75rem
    }

    .m8-g-sm-7,
    .m8-gy-sm-7 {
        --gutter-y: 1.75rem
    }

    .m8-g-sm-8,
    .m8-gx-sm-8 {
        --gutter-x: 2rem
    }

    .m8-g-sm-8,
    .m8-gy-sm-8 {
        --gutter-y: 2rem
    }

    .m8-g-sm-9,
    .m8-gx-sm-9 {
        --gutter-x: 2.25rem
    }

    .m8-g-sm-9,
    .m8-gy-sm-9 {
        --gutter-y: 2.25rem
    }

    .m8-g-sm-10,
    .m8-gx-sm-10 {
        --gutter-x: 2.5rem
    }

    .m8-g-sm-10,
    .m8-gy-sm-10 {
        --gutter-y: 2.5rem
    }
}

@media (min-width:768px) {
    .m8-col-md {
        flex: 1 0 0%
    }

    .m8-row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .m8-row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .m8-row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .m8-row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .m8-row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .m8-row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .m8-row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .m8-col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .m8-col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .m8-col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .m8-col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .m8-col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .m8-col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .m8-col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .m8-col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .m8-col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .m8-col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .m8-col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .m8-col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .m8-col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .m8-offset-md-0 {
        margin-left: 0
    }

    .m8-offset-md-1 {
        margin-left: 8.33333333%
    }

    .m8-offset-md-2 {
        margin-left: 16.66666667%
    }

    .m8-offset-md-3 {
        margin-left: 25%
    }

    .m8-offset-md-4 {
        margin-left: 33.33333333%
    }

    .m8-offset-md-5 {
        margin-left: 41.66666667%
    }

    .m8-offset-md-6 {
        margin-left: 50%
    }

    .m8-offset-md-7 {
        margin-left: 58.33333333%
    }

    .m8-offset-md-8 {
        margin-left: 66.66666667%
    }

    .m8-offset-md-9 {
        margin-left: 75%
    }

    .m8-offset-md-10 {
        margin-left: 83.33333333%
    }

    .m8-offset-md-11 {
        margin-left: 91.66666667%
    }

    .m8-g-md-0,
    .m8-gx-md-0 {
        --gutter-x: 0rem
    }

    .m8-g-md-0,
    .m8-gy-md-0 {
        --gutter-y: 0rem
    }

    .m8-g-md-1,
    .m8-gx-md-1 {
        --gutter-x: 0.25rem
    }

    .m8-g-md-1,
    .m8-gy-md-1 {
        --gutter-y: 0.25rem
    }

    .m8-g-md-2,
    .m8-gx-md-2 {
        --gutter-x: 0.5rem
    }

    .m8-g-md-2,
    .m8-gy-md-2 {
        --gutter-y: 0.5rem
    }

    .m8-g-md-3,
    .m8-gx-md-3 {
        --gutter-x: 0.75rem
    }

    .m8-g-md-3,
    .m8-gy-md-3 {
        --gutter-y: 0.75rem
    }

    .m8-g-md-4,
    .m8-gx-md-4 {
        --gutter-x: 1rem
    }

    .m8-g-md-4,
    .m8-gy-md-4 {
        --gutter-y: 1rem
    }

    .m8-g-md-5,
    .m8-gx-md-5 {
        --gutter-x: 1.25rem
    }

    .m8-g-md-5,
    .m8-gy-md-5 {
        --gutter-y: 1.25rem
    }

    .m8-g-md-6,
    .m8-gx-md-6 {
        --gutter-x: 1.5rem
    }

    .m8-g-md-6,
    .m8-gy-md-6 {
        --gutter-y: 1.5rem
    }

    .m8-g-md-7,
    .m8-gx-md-7 {
        --gutter-x: 1.75rem
    }

    .m8-g-md-7,
    .m8-gy-md-7 {
        --gutter-y: 1.75rem
    }

    .m8-g-md-8,
    .m8-gx-md-8 {
        --gutter-x: 2rem
    }

    .m8-g-md-8,
    .m8-gy-md-8 {
        --gutter-y: 2rem
    }

    .m8-g-md-9,
    .m8-gx-md-9 {
        --gutter-x: 2.25rem
    }

    .m8-g-md-9,
    .m8-gy-md-9 {
        --gutter-y: 2.25rem
    }

    .m8-g-md-10,
    .m8-gx-md-10 {
        --gutter-x: 2.5rem
    }

    .m8-g-md-10,
    .m8-gy-md-10 {
        --gutter-y: 2.5rem
    }
}

@media (min-width:992px) {
    .m8-col-lg {
        flex: 1 0 0%
    }

    .m8-row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .m8-row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .m8-row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .m8-row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .m8-row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .m8-row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .m8-row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .m8-col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .m8-col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .m8-col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .m8-col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .m8-col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .m8-col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .m8-col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .m8-col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .m8-col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .m8-col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .m8-col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .m8-col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .m8-col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .m8-offset-lg-0 {
        margin-left: 0
    }

    .m8-offset-lg-1 {
        margin-left: 8.33333333%
    }

    .m8-offset-lg-2 {
        margin-left: 16.66666667%
    }

    .m8-offset-lg-3 {
        margin-left: 25%
    }

    .m8-offset-lg-4 {
        margin-left: 33.33333333%
    }

    .m8-offset-lg-5 {
        margin-left: 41.66666667%
    }

    .m8-offset-lg-6 {
        margin-left: 50%
    }

    .m8-offset-lg-7 {
        margin-left: 58.33333333%
    }

    .m8-offset-lg-8 {
        margin-left: 66.66666667%
    }

    .m8-offset-lg-9 {
        margin-left: 75%
    }

    .m8-offset-lg-10 {
        margin-left: 83.33333333%
    }

    .m8-offset-lg-11 {
        margin-left: 91.66666667%
    }

    .m8-g-lg-0,
    .m8-gx-lg-0 {
        --gutter-x: 0rem
    }

    .m8-g-lg-0,
    .m8-gy-lg-0 {
        --gutter-y: 0rem
    }

    .m8-g-lg-1,
    .m8-gx-lg-1 {
        --gutter-x: 0.25rem
    }

    .m8-g-lg-1,
    .m8-gy-lg-1 {
        --gutter-y: 0.25rem
    }

    .m8-g-lg-2,
    .m8-gx-lg-2 {
        --gutter-x: 0.5rem
    }

    .m8-g-lg-2,
    .m8-gy-lg-2 {
        --gutter-y: 0.5rem
    }

    .m8-g-lg-3,
    .m8-gx-lg-3 {
        --gutter-x: 0.75rem
    }

    .m8-g-lg-3,
    .m8-gy-lg-3 {
        --gutter-y: 0.75rem
    }

    .m8-g-lg-4,
    .m8-gx-lg-4 {
        --gutter-x: 1rem
    }

    .m8-g-lg-4,
    .m8-gy-lg-4 {
        --gutter-y: 1rem
    }

    .m8-g-lg-5,
    .m8-gx-lg-5 {
        --gutter-x: 1.25rem
    }

    .m8-g-lg-5,
    .m8-gy-lg-5 {
        --gutter-y: 1.25rem
    }

    .m8-g-lg-6,
    .m8-gx-lg-6 {
        --gutter-x: 1.5rem
    }

    .m8-g-lg-6,
    .m8-gy-lg-6 {
        --gutter-y: 1.5rem
    }

    .m8-g-lg-7,
    .m8-gx-lg-7 {
        --gutter-x: 1.75rem
    }

    .m8-g-lg-7,
    .m8-gy-lg-7 {
        --gutter-y: 1.75rem
    }

    .m8-g-lg-8,
    .m8-gx-lg-8 {
        --gutter-x: 2rem
    }

    .m8-g-lg-8,
    .m8-gy-lg-8 {
        --gutter-y: 2rem
    }

    .m8-g-lg-9,
    .m8-gx-lg-9 {
        --gutter-x: 2.25rem
    }

    .m8-g-lg-9,
    .m8-gy-lg-9 {
        --gutter-y: 2.25rem
    }

    .m8-g-lg-10,
    .m8-gx-lg-10 {
        --gutter-x: 2.5rem
    }

    .m8-g-lg-10,
    .m8-gy-lg-10 {
        --gutter-y: 2.5rem
    }
}

@media (min-width:1200px) {
    .m8-col-xl {
        flex: 1 0 0%
    }

    .m8-row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .m8-row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .m8-row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .m8-row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .m8-row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .m8-row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .m8-row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .m8-col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .m8-col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .m8-col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .m8-col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .m8-col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .m8-col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .m8-col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .m8-col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .m8-col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .m8-col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .m8-col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .m8-col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .m8-col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .m8-offset-xl-0 {
        margin-left: 0
    }

    .m8-offset-xl-1 {
        margin-left: 8.33333333%
    }

    .m8-offset-xl-2 {
        margin-left: 16.66666667%
    }

    .m8-offset-xl-3 {
        margin-left: 25%
    }

    .m8-offset-xl-4 {
        margin-left: 33.33333333%
    }

    .m8-offset-xl-5 {
        margin-left: 41.66666667%
    }

    .m8-offset-xl-6 {
        margin-left: 50%
    }

    .m8-offset-xl-7 {
        margin-left: 58.33333333%
    }

    .m8-offset-xl-8 {
        margin-left: 66.66666667%
    }

    .m8-offset-xl-9 {
        margin-left: 75%
    }

    .m8-offset-xl-10 {
        margin-left: 83.33333333%
    }

    .m8-offset-xl-11 {
        margin-left: 91.66666667%
    }

    .m8-g-xl-0,
    .m8-gx-xl-0 {
        --gutter-x: 0rem
    }

    .m8-g-xl-0,
    .m8-gy-xl-0 {
        --gutter-y: 0rem
    }

    .m8-g-xl-1,
    .m8-gx-xl-1 {
        --gutter-x: 0.25rem
    }

    .m8-g-xl-1,
    .m8-gy-xl-1 {
        --gutter-y: 0.25rem
    }

    .m8-g-xl-2,
    .m8-gx-xl-2 {
        --gutter-x: 0.5rem
    }

    .m8-g-xl-2,
    .m8-gy-xl-2 {
        --gutter-y: 0.5rem
    }

    .m8-g-xl-3,
    .m8-gx-xl-3 {
        --gutter-x: 0.75rem
    }

    .m8-g-xl-3,
    .m8-gy-xl-3 {
        --gutter-y: 0.75rem
    }

    .m8-g-xl-4,
    .m8-gx-xl-4 {
        --gutter-x: 1rem
    }

    .m8-g-xl-4,
    .m8-gy-xl-4 {
        --gutter-y: 1rem
    }

    .m8-g-xl-5,
    .m8-gx-xl-5 {
        --gutter-x: 1.25rem
    }

    .m8-g-xl-5,
    .m8-gy-xl-5 {
        --gutter-y: 1.25rem
    }

    .m8-g-xl-6,
    .m8-gx-xl-6 {
        --gutter-x: 1.5rem
    }

    .m8-g-xl-6,
    .m8-gy-xl-6 {
        --gutter-y: 1.5rem
    }

    .m8-g-xl-7,
    .m8-gx-xl-7 {
        --gutter-x: 1.75rem
    }

    .m8-g-xl-7,
    .m8-gy-xl-7 {
        --gutter-y: 1.75rem
    }

    .m8-g-xl-8,
    .m8-gx-xl-8 {
        --gutter-x: 2rem
    }

    .m8-g-xl-8,
    .m8-gy-xl-8 {
        --gutter-y: 2rem
    }

    .m8-g-xl-9,
    .m8-gx-xl-9 {
        --gutter-x: 2.25rem
    }

    .m8-g-xl-9,
    .m8-gy-xl-9 {
        --gutter-y: 2.25rem
    }

    .m8-g-xl-10,
    .m8-gx-xl-10 {
        --gutter-x: 2.5rem
    }

    .m8-g-xl-10,
    .m8-gy-xl-10 {
        --gutter-y: 2.5rem
    }
}

@media (min-width:1400px) {
    .m8-col-xxl {
        flex: 1 0 0%
    }

    .m8-row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .m8-row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .m8-row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .m8-row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .m8-row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .m8-row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .m8-row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .m8-col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .m8-col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .m8-col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .m8-col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .m8-col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .m8-col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .m8-col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .m8-col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .m8-col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .m8-col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .m8-col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .m8-col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .m8-col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .m8-offset-xxl-0 {
        margin-left: 0
    }

    .m8-offset-xxl-1 {
        margin-left: 8.33333333%
    }

    .m8-offset-xxl-2 {
        margin-left: 16.66666667%
    }

    .m8-offset-xxl-3 {
        margin-left: 25%
    }

    .m8-offset-xxl-4 {
        margin-left: 33.33333333%
    }

    .m8-offset-xxl-5 {
        margin-left: 41.66666667%
    }

    .m8-offset-xxl-6 {
        margin-left: 50%
    }

    .m8-offset-xxl-7 {
        margin-left: 58.33333333%
    }

    .m8-offset-xxl-8 {
        margin-left: 66.66666667%
    }

    .m8-offset-xxl-9 {
        margin-left: 75%
    }

    .m8-offset-xxl-10 {
        margin-left: 83.33333333%
    }

    .m8-offset-xxl-11 {
        margin-left: 91.66666667%
    }

    .m8-g-xxl-0,
    .m8-gx-xxl-0 {
        --gutter-x: 0rem
    }

    .m8-g-xxl-0,
    .m8-gy-xxl-0 {
        --gutter-y: 0rem
    }

    .m8-g-xxl-1,
    .m8-gx-xxl-1 {
        --gutter-x: 0.25rem
    }

    .m8-g-xxl-1,
    .m8-gy-xxl-1 {
        --gutter-y: 0.25rem
    }

    .m8-g-xxl-2,
    .m8-gx-xxl-2 {
        --gutter-x: 0.5rem
    }

    .m8-g-xxl-2,
    .m8-gy-xxl-2 {
        --gutter-y: 0.5rem
    }

    .m8-g-xxl-3,
    .m8-gx-xxl-3 {
        --gutter-x: 0.75rem
    }

    .m8-g-xxl-3,
    .m8-gy-xxl-3 {
        --gutter-y: 0.75rem
    }

    .m8-g-xxl-4,
    .m8-gx-xxl-4 {
        --gutter-x: 1rem
    }

    .m8-g-xxl-4,
    .m8-gy-xxl-4 {
        --gutter-y: 1rem
    }

    .m8-g-xxl-5,
    .m8-gx-xxl-5 {
        --gutter-x: 1.25rem
    }

    .m8-g-xxl-5,
    .m8-gy-xxl-5 {
        --gutter-y: 1.25rem
    }

    .m8-g-xxl-6,
    .m8-gx-xxl-6 {
        --gutter-x: 1.5rem
    }

    .m8-g-xxl-6,
    .m8-gy-xxl-6 {
        --gutter-y: 1.5rem
    }

    .m8-g-xxl-7,
    .m8-gx-xxl-7 {
        --gutter-x: 1.75rem
    }

    .m8-g-xxl-7,
    .m8-gy-xxl-7 {
        --gutter-y: 1.75rem
    }

    .m8-g-xxl-8,
    .m8-gx-xxl-8 {
        --gutter-x: 2rem
    }

    .m8-g-xxl-8,
    .m8-gy-xxl-8 {
        --gutter-y: 2rem
    }

    .m8-g-xxl-9,
    .m8-gx-xxl-9 {
        --gutter-x: 2.25rem
    }

    .m8-g-xxl-9,
    .m8-gy-xxl-9 {
        --gutter-y: 2.25rem
    }

    .m8-g-xxl-10,
    .m8-gx-xxl-10 {
        --gutter-x: 2.5rem
    }

    .m8-g-xxl-10,
    .m8-gy-xxl-10 {
        --gutter-y: 2.5rem
    }
}



@media (min-width:576px) {
    .m8-float-sm-start {
        float: left !important
    }

    .m8-float-sm-end {
        float: right !important
    }

    .m8-float-sm-none {
        float: none !important
    }

    .m8-object-fit-sm-contain {
        object-fit: contain !important
    }

    .m8-object-fit-sm-cover {
        object-fit: cover !important
    }

    .m8-object-fit-sm-fill {
        object-fit: fill !important
    }

    .m8-object-fit-sm-scale {
        object-fit: scale-down !important
    }

    .m8-object-fit-sm-none {
        object-fit: none !important
    }

    .m8-overflow-sm-auto {
        overflow: auto !important
    }

    .m8-overflow-sm-hidden {
        overflow: hidden !important
    }

    .m8-overflow-sm-visible {
        overflow: visible !important
    }

    .m8-overflow-sm-scroll {
        overflow: scroll !important
    }

    .m8-d-sm-inline {
        display: inline !important
    }

    .m8-d-sm-inline-block {
        display: inline-block !important
    }

    .m8-d-sm-block {
        display: block !important
    }

    .m8-d-sm-grid {
        display: grid !important
    }

    .m8-d-sm-inline-grid {
        display: inline-grid !important
    }

    .m8-d-sm-table {
        display: table !important
    }

    .m8-d-sm-table-row {
        display: table-row !important
    }

    .m8-d-sm-table-cell {
        display: table-cell !important
    }

    .m8-d-sm-flex {
        display: flex !important
    }

    .m8-d-sm-inline-flex {
        display: inline-flex !important
    }

    .m8-d-sm-none {
        display: none !important
    }

    .m8-position-sm-static {
        position: static !important
    }

    .m8-position-sm-relative {
        position: relative !important
    }

    .m8-position-sm-absolute {
        position: absolute !important
    }

    .m8-position-sm-fixed {
        position: fixed !important
    }

    .m8-position-sm-sticky {
        position: sticky !important
    }

    .m8-w-sm-unset {
        width: unset !important
    }

    .m8-w-sm-25 {
        width: 25% !important
    }

    .m8-w-sm-50 {
        width: 50% !important
    }

    .m8-w-sm-75 {
        width: 75% !important
    }

    .m8-w-sm-100 {
        width: 100% !important
    }

    .m8-w-sm-auto {
        width: auto !important
    }

    .m8-w-sm-1px {
        width: 1px !important
    }

    .m8-w-sm-2px {
        width: 2px !important
    }

    .m8-w-sm-3px {
        width: 3px !important
    }

    .m8-w-sm-4px {
        width: 4px !important
    }

    .m8-w-sm-5px {
        width: 5px !important
    }

    .m8-w-sm-6px {
        width: 6px !important
    }

    .m8-w-sm-7px {
        width: 7px !important
    }

    .m8-w-sm-8px {
        width: 8px !important
    }

    .m8-w-sm-9px {
        width: 9px !important
    }

    .m8-w-sm-10px {
        width: 10px !important
    }

    .m8-w-sm-15px {
        width: 15px !important
    }

    .m8-w-sm-20px {
        width: 20px !important
    }

    .m8-w-sm-25px {
        width: 25px !important
    }

    .m8-w-sm-30px {
        width: 30px !important
    }

    .m8-w-sm-35px {
        width: 35px !important
    }

    .m8-w-sm-40px {
        width: 40px !important
    }

    .m8-w-sm-45px {
        width: 45px !important
    }

    .m8-w-sm-50px {
        width: 50px !important
    }

    .m8-w-sm-55px {
        width: 55px !important
    }

    .m8-w-sm-60px {
        width: 60px !important
    }

    .m8-w-sm-65px {
        width: 65px !important
    }

    .m8-w-sm-70px {
        width: 70px !important
    }

    .m8-w-sm-75px {
        width: 75px !important
    }

    .m8-w-sm-80px {
        width: 80px !important
    }

    .m8-w-sm-85px {
        width: 85px !important
    }

    .m8-w-sm-90px {
        width: 90px !important
    }

    .m8-w-sm-95px {
        width: 95px !important
    }

    .m8-w-sm-100px {
        width: 100px !important
    }

    .m8-w-sm-125px {
        width: 125px !important
    }

    .m8-w-sm-150px {
        width: 150px !important
    }

    .m8-w-sm-175px {
        width: 175px !important
    }

    .m8-w-sm-200px {
        width: 200px !important
    }

    .m8-w-sm-225px {
        width: 225px !important
    }

    .m8-w-sm-250px {
        width: 250px !important
    }

    .m8-w-sm-275px {
        width: 275px !important
    }

    .m8-w-sm-300px {
        width: 300px !important
    }

    .m8-w-sm-325px {
        width: 325px !important
    }

    .m8-w-sm-350px {
        width: 350px !important
    }

    .m8-w-sm-375px {
        width: 375px !important
    }

    .m8-w-sm-400px {
        width: 400px !important
    }

    .m8-w-sm-425px {
        width: 425px !important
    }

    .m8-w-sm-450px {
        width: 450px !important
    }

    .m8-w-sm-475px {
        width: 475px !important
    }

    .m8-w-sm-500px {
        width: 500px !important
    }

    .m8-w-sm-550px {
        width: 550px !important
    }

    .m8-w-sm-600px {
        width: 600px !important
    }

    .m8-w-sm-650px {
        width: 650px !important
    }

    .m8-w-sm-700px {
        width: 700px !important
    }

    .m8-w-sm-750px {
        width: 750px !important
    }

    .m8-w-sm-800px {
        width: 800px !important
    }

    .m8-w-sm-850px {
        width: 850px !important
    }

    .m8-w-sm-900px {
        width: 900px !important
    }

    .m8-w-sm-950px {
        width: 950px !important
    }

    .m8-w-sm-1000px {
        width: 1000px !important
    }

    .m8-mw-sm-unset {
        max-width: unset !important
    }

    .m8-mw-sm-25 {
        max-width: 25% !important
    }

    .m8-mw-sm-50 {
        max-width: 50% !important
    }

    .m8-mw-sm-75 {
        max-width: 75% !important
    }

    .m8-mw-sm-100 {
        max-width: 100% !important
    }

    .m8-mw-sm-auto {
        max-width: auto !important
    }

    .m8-mw-sm-1px {
        max-width: 1px !important
    }

    .m8-mw-sm-2px {
        max-width: 2px !important
    }

    .m8-mw-sm-3px {
        max-width: 3px !important
    }

    .m8-mw-sm-4px {
        max-width: 4px !important
    }

    .m8-mw-sm-5px {
        max-width: 5px !important
    }

    .m8-mw-sm-6px {
        max-width: 6px !important
    }

    .m8-mw-sm-7px {
        max-width: 7px !important
    }

    .m8-mw-sm-8px {
        max-width: 8px !important
    }

    .m8-mw-sm-9px {
        max-width: 9px !important
    }

    .m8-mw-sm-10px {
        max-width: 10px !important
    }

    .m8-mw-sm-15px {
        max-width: 15px !important
    }

    .m8-mw-sm-20px {
        max-width: 20px !important
    }

    .m8-mw-sm-25px {
        max-width: 25px !important
    }

    .m8-mw-sm-30px {
        max-width: 30px !important
    }

    .m8-mw-sm-35px {
        max-width: 35px !important
    }

    .m8-mw-sm-40px {
        max-width: 40px !important
    }

    .m8-mw-sm-45px {
        max-width: 45px !important
    }

    .m8-mw-sm-50px {
        max-width: 50px !important
    }

    .m8-mw-sm-55px {
        max-width: 55px !important
    }

    .m8-mw-sm-60px {
        max-width: 60px !important
    }

    .m8-mw-sm-65px {
        max-width: 65px !important
    }

    .m8-mw-sm-70px {
        max-width: 70px !important
    }

    .m8-mw-sm-75px {
        max-width: 75px !important
    }

    .m8-mw-sm-80px {
        max-width: 80px !important
    }

    .m8-mw-sm-85px {
        max-width: 85px !important
    }

    .m8-mw-sm-90px {
        max-width: 90px !important
    }

    .m8-mw-sm-95px {
        max-width: 95px !important
    }

    .m8-mw-sm-100px {
        max-width: 100px !important
    }

    .m8-mw-sm-125px {
        max-width: 125px !important
    }

    .m8-mw-sm-150px {
        max-width: 150px !important
    }

    .m8-mw-sm-175px {
        max-width: 175px !important
    }

    .m8-mw-sm-200px {
        max-width: 200px !important
    }

    .m8-mw-sm-225px {
        max-width: 225px !important
    }

    .m8-mw-sm-250px {
        max-width: 250px !important
    }

    .m8-mw-sm-275px {
        max-width: 275px !important
    }

    .m8-mw-sm-300px {
        max-width: 300px !important
    }

    .m8-mw-sm-325px {
        max-width: 325px !important
    }

    .m8-mw-sm-350px {
        max-width: 350px !important
    }

    .m8-mw-sm-375px {
        max-width: 375px !important
    }

    .m8-mw-sm-400px {
        max-width: 400px !important
    }

    .m8-mw-sm-425px {
        max-width: 425px !important
    }

    .m8-mw-sm-450px {
        max-width: 450px !important
    }

    .m8-mw-sm-475px {
        max-width: 475px !important
    }

    .m8-mw-sm-500px {
        max-width: 500px !important
    }

    .m8-mw-sm-550px {
        max-width: 550px !important
    }

    .m8-mw-sm-600px {
        max-width: 600px !important
    }

    .m8-mw-sm-650px {
        max-width: 650px !important
    }

    .m8-mw-sm-700px {
        max-width: 700px !important
    }

    .m8-mw-sm-750px {
        max-width: 750px !important
    }

    .m8-mw-sm-800px {
        max-width: 800px !important
    }

    .m8-mw-sm-850px {
        max-width: 850px !important
    }

    .m8-mw-sm-900px {
        max-width: 900px !important
    }

    .m8-mw-sm-950px {
        max-width: 950px !important
    }

    .m8-mw-sm-1000px {
        max-width: 1000px !important
    }

    .m8-h-sm-unset {
        height: unset !important
    }

    .m8-h-sm-25 {
        height: 25% !important
    }

    .m8-h-sm-50 {
        height: 50% !important
    }

    .m8-h-sm-75 {
        height: 75% !important
    }

    .m8-h-sm-100 {
        height: 100% !important
    }

    .m8-h-sm-auto {
        height: auto !important
    }

    .m8-h-sm-1px {
        height: 1px !important
    }

    .m8-h-sm-2px {
        height: 2px !important
    }

    .m8-h-sm-3px {
        height: 3px !important
    }

    .m8-h-sm-4px {
        height: 4px !important
    }

    .m8-h-sm-5px {
        height: 5px !important
    }

    .m8-h-sm-6px {
        height: 6px !important
    }

    .m8-h-sm-7px {
        height: 7px !important
    }

    .m8-h-sm-8px {
        height: 8px !important
    }

    .m8-h-sm-9px {
        height: 9px !important
    }

    .m8-h-sm-10px {
        height: 10px !important
    }

    .m8-h-sm-15px {
        height: 15px !important
    }

    .m8-h-sm-20px {
        height: 20px !important
    }

    .m8-h-sm-25px {
        height: 25px !important
    }

    .m8-h-sm-30px {
        height: 30px !important
    }

    .m8-h-sm-35px {
        height: 35px !important
    }

    .m8-h-sm-40px {
        height: 40px !important
    }

    .m8-h-sm-45px {
        height: 45px !important
    }

    .m8-h-sm-50px {
        height: 50px !important
    }

    .m8-h-sm-55px {
        height: 55px !important
    }

    .m8-h-sm-60px {
        height: 60px !important
    }

    .m8-h-sm-65px {
        height: 65px !important
    }

    .m8-h-sm-70px {
        height: 70px !important
    }

    .m8-h-sm-75px {
        height: 75px !important
    }

    .m8-h-sm-80px {
        height: 80px !important
    }

    .m8-h-sm-85px {
        height: 85px !important
    }

    .m8-h-sm-90px {
        height: 90px !important
    }

    .m8-h-sm-95px {
        height: 95px !important
    }

    .m8-h-sm-100px {
        height: 100px !important
    }

    .m8-h-sm-125px {
        height: 125px !important
    }

    .m8-h-sm-150px {
        height: 150px !important
    }

    .m8-h-sm-175px {
        height: 175px !important
    }

    .m8-h-sm-200px {
        height: 200px !important
    }

    .m8-h-sm-225px {
        height: 225px !important
    }

    .m8-h-sm-250px {
        height: 250px !important
    }

    .m8-h-sm-275px {
        height: 275px !important
    }

    .m8-h-sm-300px {
        height: 300px !important
    }

    .m8-h-sm-325px {
        height: 325px !important
    }

    .m8-h-sm-350px {
        height: 350px !important
    }

    .m8-h-sm-375px {
        height: 375px !important
    }

    .m8-h-sm-400px {
        height: 400px !important
    }

    .m8-h-sm-425px {
        height: 425px !important
    }

    .m8-h-sm-450px {
        height: 450px !important
    }

    .m8-h-sm-475px {
        height: 475px !important
    }

    .m8-h-sm-500px {
        height: 500px !important
    }

    .m8-h-sm-550px {
        height: 550px !important
    }

    .m8-h-sm-600px {
        height: 600px !important
    }

    .m8-h-sm-650px {
        height: 650px !important
    }

    .m8-h-sm-700px {
        height: 700px !important
    }

    .m8-h-sm-750px {
        height: 750px !important
    }

    .m8-h-sm-800px {
        height: 800px !important
    }

    .m8-h-sm-850px {
        height: 850px !important
    }

    .m8-h-sm-900px {
        height: 900px !important
    }

    .m8-h-sm-950px {
        height: 950px !important
    }

    .m8-h-sm-1000px {
        height: 1000px !important
    }

    .m8-mh-sm-unset {
        max-height: unset !important
    }

    .m8-mh-sm-25 {
        max-height: 25% !important
    }

    .m8-mh-sm-50 {
        max-height: 50% !important
    }

    .m8-mh-sm-75 {
        max-height: 75% !important
    }

    .m8-mh-sm-100 {
        max-height: 100% !important
    }

    .m8-mh-sm-auto {
        max-height: auto !important
    }

    .m8-mh-sm-1px {
        max-height: 1px !important
    }

    .m8-mh-sm-2px {
        max-height: 2px !important
    }

    .m8-mh-sm-3px {
        max-height: 3px !important
    }

    .m8-mh-sm-4px {
        max-height: 4px !important
    }

    .m8-mh-sm-5px {
        max-height: 5px !important
    }

    .m8-mh-sm-6px {
        max-height: 6px !important
    }

    .m8-mh-sm-7px {
        max-height: 7px !important
    }

    .m8-mh-sm-8px {
        max-height: 8px !important
    }

    .m8-mh-sm-9px {
        max-height: 9px !important
    }

    .m8-mh-sm-10px {
        max-height: 10px !important
    }

    .m8-mh-sm-15px {
        max-height: 15px !important
    }

    .m8-mh-sm-20px {
        max-height: 20px !important
    }

    .m8-mh-sm-25px {
        max-height: 25px !important
    }

    .m8-mh-sm-30px {
        max-height: 30px !important
    }

    .m8-mh-sm-35px {
        max-height: 35px !important
    }

    .m8-mh-sm-40px {
        max-height: 40px !important
    }

    .m8-mh-sm-45px {
        max-height: 45px !important
    }

    .m8-mh-sm-50px {
        max-height: 50px !important
    }

    .m8-mh-sm-55px {
        max-height: 55px !important
    }

    .m8-mh-sm-60px {
        max-height: 60px !important
    }

    .m8-mh-sm-65px {
        max-height: 65px !important
    }

    .m8-mh-sm-70px {
        max-height: 70px !important
    }

    .m8-mh-sm-75px {
        max-height: 75px !important
    }

    .m8-mh-sm-80px {
        max-height: 80px !important
    }

    .m8-mh-sm-85px {
        max-height: 85px !important
    }

    .m8-mh-sm-90px {
        max-height: 90px !important
    }

    .m8-mh-sm-95px {
        max-height: 95px !important
    }

    .m8-mh-sm-100px {
        max-height: 100px !important
    }

    .m8-mh-sm-125px {
        max-height: 125px !important
    }

    .m8-mh-sm-150px {
        max-height: 150px !important
    }

    .m8-mh-sm-175px {
        max-height: 175px !important
    }

    .m8-mh-sm-200px {
        max-height: 200px !important
    }

    .m8-mh-sm-225px {
        max-height: 225px !important
    }

    .m8-mh-sm-250px {
        max-height: 250px !important
    }

    .m8-mh-sm-275px {
        max-height: 275px !important
    }

    .m8-mh-sm-300px {
        max-height: 300px !important
    }

    .m8-mh-sm-325px {
        max-height: 325px !important
    }

    .m8-mh-sm-350px {
        max-height: 350px !important
    }

    .m8-mh-sm-375px {
        max-height: 375px !important
    }

    .m8-mh-sm-400px {
        max-height: 400px !important
    }

    .m8-mh-sm-425px {
        max-height: 425px !important
    }

    .m8-mh-sm-450px {
        max-height: 450px !important
    }

    .m8-mh-sm-475px {
        max-height: 475px !important
    }

    .m8-mh-sm-500px {
        max-height: 500px !important
    }

    .m8-mh-sm-550px {
        max-height: 550px !important
    }

    .m8-mh-sm-600px {
        max-height: 600px !important
    }

    .m8-mh-sm-650px {
        max-height: 650px !important
    }

    .m8-mh-sm-700px {
        max-height: 700px !important
    }

    .m8-mh-sm-750px {
        max-height: 750px !important
    }

    .m8-mh-sm-800px {
        max-height: 800px !important
    }

    .m8-mh-sm-850px {
        max-height: 850px !important
    }

    .m8-mh-sm-900px {
        max-height: 900px !important
    }

    .m8-mh-sm-950px {
        max-height: 950px !important
    }

    .m8-mh-sm-1000px {
        max-height: 1000px !important
    }

    .m8-flex-sm-fill {
        flex: 1 1 auto !important
    }

    .m8-flex-sm-row {
        flex-direction: row !important
    }

    .m8-flex-sm-column {
        flex-direction: column !important
    }

    .m8-flex-sm-row-reverse {
        flex-direction: row-reverse !important
    }

    .m8-flex-sm-column-reverse {
        flex-direction: column-reverse !important
    }

    .m8-flex-sm-grow-0 {
        flex-grow: 0 !important
    }

    .m8-flex-sm-grow-1 {
        flex-grow: 1 !important
    }

    .m8-flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }

    .m8-flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }

    .m8-flex-sm-wrap {
        flex-wrap: wrap !important
    }

    .m8-flex-sm-nowrap {
        flex-wrap: nowrap !important
    }

    .m8-flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .m8-justify-content-sm-start {
        justify-content: flex-start !important
    }

    .m8-justify-content-sm-end {
        justify-content: flex-end !important
    }

    .m8-justify-content-sm-center {
        justify-content: center !important
    }

    .m8-justify-content-sm-between {
        justify-content: space-between !important
    }

    .m8-justify-content-sm-around {
        justify-content: space-around !important
    }

    .m8-justify-content-sm-evenly {
        justify-content: space-evenly !important
    }

    .m8-align-items-sm-start {
        align-items: flex-start !important
    }

    .m8-align-items-sm-end {
        align-items: flex-end !important
    }

    .m8-align-items-sm-center {
        align-items: center !important
    }

    .m8-align-items-sm-baseline {
        align-items: baseline !important
    }

    .m8-align-items-sm-stretch {
        align-items: stretch !important
    }

    .m8-align-content-sm-start {
        align-content: flex-start !important
    }

    .m8-align-content-sm-end {
        align-content: flex-end !important
    }

    .m8-align-content-sm-center {
        align-content: center !important
    }

    .m8-align-content-sm-between {
        align-content: space-between !important
    }

    .m8-align-content-sm-around {
        align-content: space-around !important
    }

    .m8-align-content-sm-stretch {
        align-content: stretch !important
    }

    .m8-align-self-sm-auto {
        align-self: auto !important
    }

    .m8-align-self-sm-start {
        align-self: flex-start !important
    }

    .m8-align-self-sm-end {
        align-self: flex-end !important
    }

    .m8-align-self-sm-center {
        align-self: center !important
    }

    .m8-align-self-sm-baseline {
        align-self: baseline !important
    }

    .m8-align-self-sm-stretch {
        align-self: stretch !important
    }

    .m8-order-sm-first {
        order: -1 !important
    }

    .m8-order-sm-0 {
        order: 0 !important
    }

    .m8-order-sm-1 {
        order: 1 !important
    }

    .m8-order-sm-2 {
        order: 2 !important
    }

    .m8-order-sm-3 {
        order: 3 !important
    }

    .m8-order-sm-4 {
        order: 4 !important
    }

    .m8-order-sm-5 {
        order: 5 !important
    }

    .m8-order-sm-last {
        order: 6 !important
    }

    .m8-m-sm-0 {
        margin: 0 !important
    }

    .m8-m-sm-1 {
        margin: .25rem !important
    }

    .m8-m-sm-2 {
        margin: .5rem !important
    }

    .m8-m-sm-3 {
        margin: .75rem !important
    }

    .m8-m-sm-4 {
        margin: 1rem !important
    }

    .m8-m-sm-5 {
        margin: 1.25rem !important
    }

    .m8-m-sm-6 {
        margin: 1.5rem !important
    }

    .m8-m-sm-7 {
        margin: 1.75rem !important
    }

    .m8-m-sm-8 {
        margin: 2rem !important
    }

    .m8-m-sm-9 {
        margin: 2.25rem !important
    }

    .m8-m-sm-10 {
        margin: 2.5rem !important
    }

    .m8-m-sm-11 {
        margin: 2.75rem !important
    }

    .m8-m-sm-12 {
        margin: 3rem !important
    }

    .m8-m-sm-13 {
        margin: 3.25rem !important
    }

    .m8-m-sm-14 {
        margin: 3.5rem !important
    }

    .m8-m-sm-15 {
        margin: 3.75rem !important
    }

    .m8-m-sm-16 {
        margin: 4rem !important
    }

    .m8-m-sm-17 {
        margin: 4.25rem !important
    }

    .m8-m-sm-18 {
        margin: 4.5rem !important
    }

    .m8-m-sm-19 {
        margin: 4.75rem !important
    }

    .m8-m-sm-20 {
        margin: 5rem !important
    }

    .m8-m-sm-auto {
        margin: auto !important
    }

    .m8-mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .m8-mx-sm-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .m8-mx-sm-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .m8-mx-sm-3 {
        margin-right: .75rem !important;
        margin-left: .75rem !important
    }

    .m8-mx-sm-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .m8-mx-sm-5 {
        margin-right: 1.25rem !important;
        margin-left: 1.25rem !important
    }

    .m8-mx-sm-6 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .m8-mx-sm-7 {
        margin-right: 1.75rem !important;
        margin-left: 1.75rem !important
    }

    .m8-mx-sm-8 {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }

    .m8-mx-sm-9 {
        margin-right: 2.25rem !important;
        margin-left: 2.25rem !important
    }

    .m8-mx-sm-10 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important
    }

    .m8-mx-sm-11 {
        margin-right: 2.75rem !important;
        margin-left: 2.75rem !important
    }

    .m8-mx-sm-12 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .m8-mx-sm-13 {
        margin-right: 3.25rem !important;
        margin-left: 3.25rem !important
    }

    .m8-mx-sm-14 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important
    }

    .m8-mx-sm-15 {
        margin-right: 3.75rem !important;
        margin-left: 3.75rem !important
    }

    .m8-mx-sm-16 {
        margin-right: 4rem !important;
        margin-left: 4rem !important
    }

    .m8-mx-sm-17 {
        margin-right: 4.25rem !important;
        margin-left: 4.25rem !important
    }

    .m8-mx-sm-18 {
        margin-right: 4.5rem !important;
        margin-left: 4.5rem !important
    }

    .m8-mx-sm-19 {
        margin-right: 4.75rem !important;
        margin-left: 4.75rem !important
    }

    .m8-mx-sm-20 {
        margin-right: 5rem !important;
        margin-left: 5rem !important
    }

    .m8-mx-sm-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .m8-my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .m8-my-sm-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .m8-my-sm-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .m8-my-sm-3 {
        margin-top: .75rem !important;
        margin-bottom: .75rem !important
    }

    .m8-my-sm-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .m8-my-sm-5 {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important
    }

    .m8-my-sm-6 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .m8-my-sm-7 {
        margin-top: 1.75rem !important;
        margin-bottom: 1.75rem !important
    }

    .m8-my-sm-8 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }

    .m8-my-sm-9 {
        margin-top: 2.25rem !important;
        margin-bottom: 2.25rem !important
    }

    .m8-my-sm-10 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important
    }

    .m8-my-sm-11 {
        margin-top: 2.75rem !important;
        margin-bottom: 2.75rem !important
    }

    .m8-my-sm-12 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .m8-my-sm-13 {
        margin-top: 3.25rem !important;
        margin-bottom: 3.25rem !important
    }

    .m8-my-sm-14 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important
    }

    .m8-my-sm-15 {
        margin-top: 3.75rem !important;
        margin-bottom: 3.75rem !important
    }

    .m8-my-sm-16 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important
    }

    .m8-my-sm-17 {
        margin-top: 4.25rem !important;
        margin-bottom: 4.25rem !important
    }

    .m8-my-sm-18 {
        margin-top: 4.5rem !important;
        margin-bottom: 4.5rem !important
    }

    .m8-my-sm-19 {
        margin-top: 4.75rem !important;
        margin-bottom: 4.75rem !important
    }

    .m8-my-sm-20 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important
    }

    .m8-my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .m8-mt-sm-0 {
        margin-top: 0 !important
    }

    .m8-mt-sm-1 {
        margin-top: .25rem !important
    }

    .m8-mt-sm-2 {
        margin-top: .5rem !important
    }

    .m8-mt-sm-3 {
        margin-top: .75rem !important
    }

    .m8-mt-sm-4 {
        margin-top: 1rem !important
    }

    .m8-mt-sm-5 {
        margin-top: 1.25rem !important
    }

    .m8-mt-sm-6 {
        margin-top: 1.5rem !important
    }

    .m8-mt-sm-7 {
        margin-top: 1.75rem !important
    }

    .m8-mt-sm-8 {
        margin-top: 2rem !important
    }

    .m8-mt-sm-9 {
        margin-top: 2.25rem !important
    }

    .m8-mt-sm-10 {
        margin-top: 2.5rem !important
    }

    .m8-mt-sm-11 {
        margin-top: 2.75rem !important
    }

    .m8-mt-sm-12 {
        margin-top: 3rem !important
    }

    .m8-mt-sm-13 {
        margin-top: 3.25rem !important
    }

    .m8-mt-sm-14 {
        margin-top: 3.5rem !important
    }

    .m8-mt-sm-15 {
        margin-top: 3.75rem !important
    }

    .m8-mt-sm-16 {
        margin-top: 4rem !important
    }

    .m8-mt-sm-17 {
        margin-top: 4.25rem !important
    }

    .m8-mt-sm-18 {
        margin-top: 4.5rem !important
    }

    .m8-mt-sm-19 {
        margin-top: 4.75rem !important
    }

    .m8-mt-sm-20 {
        margin-top: 5rem !important
    }

    .m8-mt-sm-auto {
        margin-top: auto !important
    }

    .m8-me-sm-0 {
        margin-right: 0 !important
    }

    .m8-me-sm-1 {
        margin-right: .25rem !important
    }

    .m8-me-sm-2 {
        margin-right: .5rem !important
    }

    .m8-me-sm-3 {
        margin-right: .75rem !important
    }

    .m8-me-sm-4 {
        margin-right: 1rem !important
    }

    .m8-me-sm-5 {
        margin-right: 1.25rem !important
    }

    .m8-me-sm-6 {
        margin-right: 1.5rem !important
    }

    .m8-me-sm-7 {
        margin-right: 1.75rem !important
    }

    .m8-me-sm-8 {
        margin-right: 2rem !important
    }

    .m8-me-sm-9 {
        margin-right: 2.25rem !important
    }

    .m8-me-sm-10 {
        margin-right: 2.5rem !important
    }

    .m8-me-sm-11 {
        margin-right: 2.75rem !important
    }

    .m8-me-sm-12 {
        margin-right: 3rem !important
    }

    .m8-me-sm-13 {
        margin-right: 3.25rem !important
    }

    .m8-me-sm-14 {
        margin-right: 3.5rem !important
    }

    .m8-me-sm-15 {
        margin-right: 3.75rem !important
    }

    .m8-me-sm-16 {
        margin-right: 4rem !important
    }

    .m8-me-sm-17 {
        margin-right: 4.25rem !important
    }

    .m8-me-sm-18 {
        margin-right: 4.5rem !important
    }

    .m8-me-sm-19 {
        margin-right: 4.75rem !important
    }

    .m8-me-sm-20 {
        margin-right: 5rem !important
    }

    .m8-me-sm-auto {
        margin-right: auto !important
    }

    .m8-mb-sm-0 {
        margin-bottom: 0 !important
    }

    .m8-mb-sm-1 {
        margin-bottom: .25rem !important
    }

    .m8-mb-sm-2 {
        margin-bottom: .5rem !important
    }

    .m8-mb-sm-3 {
        margin-bottom: .75rem !important
    }

    .m8-mb-sm-4 {
        margin-bottom: 1rem !important
    }

    .m8-mb-sm-5 {
        margin-bottom: 1.25rem !important
    }

    .m8-mb-sm-6 {
        margin-bottom: 1.5rem !important
    }

    .m8-mb-sm-7 {
        margin-bottom: 1.75rem !important
    }

    .m8-mb-sm-8 {
        margin-bottom: 2rem !important
    }

    .m8-mb-sm-9 {
        margin-bottom: 2.25rem !important
    }

    .m8-mb-sm-10 {
        margin-bottom: 2.5rem !important
    }

    .m8-mb-sm-11 {
        margin-bottom: 2.75rem !important
    }

    .m8-mb-sm-12 {
        margin-bottom: 3rem !important
    }

    .m8-mb-sm-13 {
        margin-bottom: 3.25rem !important
    }

    .m8-mb-sm-14 {
        margin-bottom: 3.5rem !important
    }

    .m8-mb-sm-15 {
        margin-bottom: 3.75rem !important
    }

    .m8-mb-sm-16 {
        margin-bottom: 4rem !important
    }

    .m8-mb-sm-17 {
        margin-bottom: 4.25rem !important
    }

    .m8-mb-sm-18 {
        margin-bottom: 4.5rem !important
    }

    .m8-mb-sm-19 {
        margin-bottom: 4.75rem !important
    }

    .m8-mb-sm-20 {
        margin-bottom: 5rem !important
    }

    .m8-mb-sm-auto {
        margin-bottom: auto !important
    }

    .m8-ms-sm-0 {
        margin-left: 0 !important
    }

    .m8-ms-sm-1 {
        margin-left: .25rem !important
    }

    .m8-ms-sm-2 {
        margin-left: .5rem !important
    }

    .m8-ms-sm-3 {
        margin-left: .75rem !important
    }

    .m8-ms-sm-4 {
        margin-left: 1rem !important
    }

    .m8-ms-sm-5 {
        margin-left: 1.25rem !important
    }

    .m8-ms-sm-6 {
        margin-left: 1.5rem !important
    }

    .m8-ms-sm-7 {
        margin-left: 1.75rem !important
    }

    .m8-ms-sm-8 {
        margin-left: 2rem !important
    }

    .m8-ms-sm-9 {
        margin-left: 2.25rem !important
    }

    .m8-ms-sm-10 {
        margin-left: 2.5rem !important
    }

    .m8-ms-sm-11 {
        margin-left: 2.75rem !important
    }

    .m8-ms-sm-12 {
        margin-left: 3rem !important
    }

    .m8-ms-sm-13 {
        margin-left: 3.25rem !important
    }

    .m8-ms-sm-14 {
        margin-left: 3.5rem !important
    }

    .m8-ms-sm-15 {
        margin-left: 3.75rem !important
    }

    .m8-ms-sm-16 {
        margin-left: 4rem !important
    }

    .m8-ms-sm-17 {
        margin-left: 4.25rem !important
    }

    .m8-ms-sm-18 {
        margin-left: 4.5rem !important
    }

    .m8-ms-sm-19 {
        margin-left: 4.75rem !important
    }

    .m8-ms-sm-20 {
        margin-left: 5rem !important
    }

    .m8-ms-sm-auto {
        margin-left: auto !important
    }

    .m8-m-sm-n1 {
        margin: -.25rem !important
    }

    .m8-m-sm-n2 {
        margin: -.5rem !important
    }

    .m8-m-sm-n3 {
        margin: -.75rem !important
    }

    .m8-m-sm-n4 {
        margin: -1rem !important
    }

    .m8-m-sm-n5 {
        margin: -1.25rem !important
    }

    .m8-m-sm-n6 {
        margin: -1.5rem !important
    }

    .m8-m-sm-n7 {
        margin: -1.75rem !important
    }

    .m8-m-sm-n8 {
        margin: -2rem !important
    }

    .m8-m-sm-n9 {
        margin: -2.25rem !important
    }

    .m8-m-sm-n10 {
        margin: -2.5rem !important
    }

    .m8-m-sm-n11 {
        margin: -2.75rem !important
    }

    .m8-m-sm-n12 {
        margin: -3rem !important
    }

    .m8-m-sm-n13 {
        margin: -3.25rem !important
    }

    .m8-m-sm-n14 {
        margin: -3.5rem !important
    }

    .m8-m-sm-n15 {
        margin: -3.75rem !important
    }

    .m8-m-sm-n16 {
        margin: -4rem !important
    }

    .m8-m-sm-n17 {
        margin: -4.25rem !important
    }

    .m8-m-sm-n18 {
        margin: -4.5rem !important
    }

    .m8-m-sm-n19 {
        margin: -4.75rem !important
    }

    .m8-m-sm-n20 {
        margin: -5rem !important
    }

    .m8-mx-sm-n1 {
        margin-right: -.25rem !important;
        margin-left: -.25rem !important
    }

    .m8-mx-sm-n2 {
        margin-right: -.5rem !important;
        margin-left: -.5rem !important
    }

    .m8-mx-sm-n3 {
        margin-right: -.75rem !important;
        margin-left: -.75rem !important
    }

    .m8-mx-sm-n4 {
        margin-right: -1rem !important;
        margin-left: -1rem !important
    }

    .m8-mx-sm-n5 {
        margin-right: -1.25rem !important;
        margin-left: -1.25rem !important
    }

    .m8-mx-sm-n6 {
        margin-right: -1.5rem !important;
        margin-left: -1.5rem !important
    }

    .m8-mx-sm-n7 {
        margin-right: -1.75rem !important;
        margin-left: -1.75rem !important
    }

    .m8-mx-sm-n8 {
        margin-right: -2rem !important;
        margin-left: -2rem !important
    }

    .m8-mx-sm-n9 {
        margin-right: -2.25rem !important;
        margin-left: -2.25rem !important
    }

    .m8-mx-sm-n10 {
        margin-right: -2.5rem !important;
        margin-left: -2.5rem !important
    }

    .m8-mx-sm-n11 {
        margin-right: -2.75rem !important;
        margin-left: -2.75rem !important
    }

    .m8-mx-sm-n12 {
        margin-right: -3rem !important;
        margin-left: -3rem !important
    }

    .m8-mx-sm-n13 {
        margin-right: -3.25rem !important;
        margin-left: -3.25rem !important
    }

    .m8-mx-sm-n14 {
        margin-right: -3.5rem !important;
        margin-left: -3.5rem !important
    }

    .m8-mx-sm-n15 {
        margin-right: -3.75rem !important;
        margin-left: -3.75rem !important
    }

    .m8-mx-sm-n16 {
        margin-right: -4rem !important;
        margin-left: -4rem !important
    }

    .m8-mx-sm-n17 {
        margin-right: -4.25rem !important;
        margin-left: -4.25rem !important
    }

    .m8-mx-sm-n18 {
        margin-right: -4.5rem !important;
        margin-left: -4.5rem !important
    }

    .m8-mx-sm-n19 {
        margin-right: -4.75rem !important;
        margin-left: -4.75rem !important
    }

    .m8-mx-sm-n20 {
        margin-right: -5rem !important;
        margin-left: -5rem !important
    }

    .m8-my-sm-n1 {
        margin-top: -.25rem !important;
        margin-bottom: -.25rem !important
    }

    .m8-my-sm-n2 {
        margin-top: -.5rem !important;
        margin-bottom: -.5rem !important
    }

    .m8-my-sm-n3 {
        margin-top: -.75rem !important;
        margin-bottom: -.75rem !important
    }

    .m8-my-sm-n4 {
        margin-top: -1rem !important;
        margin-bottom: -1rem !important
    }

    .m8-my-sm-n5 {
        margin-top: -1.25rem !important;
        margin-bottom: -1.25rem !important
    }

    .m8-my-sm-n6 {
        margin-top: -1.5rem !important;
        margin-bottom: -1.5rem !important
    }

    .m8-my-sm-n7 {
        margin-top: -1.75rem !important;
        margin-bottom: -1.75rem !important
    }

    .m8-my-sm-n8 {
        margin-top: -2rem !important;
        margin-bottom: -2rem !important
    }

    .m8-my-sm-n9 {
        margin-top: -2.25rem !important;
        margin-bottom: -2.25rem !important
    }

    .m8-my-sm-n10 {
        margin-top: -2.5rem !important;
        margin-bottom: -2.5rem !important
    }

    .m8-my-sm-n11 {
        margin-top: -2.75rem !important;
        margin-bottom: -2.75rem !important
    }

    .m8-my-sm-n12 {
        margin-top: -3rem !important;
        margin-bottom: -3rem !important
    }

    .m8-my-sm-n13 {
        margin-top: -3.25rem !important;
        margin-bottom: -3.25rem !important
    }

    .m8-my-sm-n14 {
        margin-top: -3.5rem !important;
        margin-bottom: -3.5rem !important
    }

    .m8-my-sm-n15 {
        margin-top: -3.75rem !important;
        margin-bottom: -3.75rem !important
    }

    .m8-my-sm-n16 {
        margin-top: -4rem !important;
        margin-bottom: -4rem !important
    }

    .m8-my-sm-n17 {
        margin-top: -4.25rem !important;
        margin-bottom: -4.25rem !important
    }

    .m8-my-sm-n18 {
        margin-top: -4.5rem !important;
        margin-bottom: -4.5rem !important
    }

    .m8-my-sm-n19 {
        margin-top: -4.75rem !important;
        margin-bottom: -4.75rem !important
    }

    .m8-my-sm-n20 {
        margin-top: -5rem !important;
        margin-bottom: -5rem !important
    }

    .m8-mt-sm-n1 {
        margin-top: -.25rem !important
    }

    .m8-mt-sm-n2 {
        margin-top: -.5rem !important
    }

    .m8-mt-sm-n3 {
        margin-top: -.75rem !important
    }

    .m8-mt-sm-n4 {
        margin-top: -1rem !important
    }

    .m8-mt-sm-n5 {
        margin-top: -1.25rem !important
    }

    .m8-mt-sm-n6 {
        margin-top: -1.5rem !important
    }

    .m8-mt-sm-n7 {
        margin-top: -1.75rem !important
    }

    .m8-mt-sm-n8 {
        margin-top: -2rem !important
    }

    .m8-mt-sm-n9 {
        margin-top: -2.25rem !important
    }

    .m8-mt-sm-n10 {
        margin-top: -2.5rem !important
    }

    .m8-mt-sm-n11 {
        margin-top: -2.75rem !important
    }

    .m8-mt-sm-n12 {
        margin-top: -3rem !important
    }

    .m8-mt-sm-n13 {
        margin-top: -3.25rem !important
    }

    .m8-mt-sm-n14 {
        margin-top: -3.5rem !important
    }

    .m8-mt-sm-n15 {
        margin-top: -3.75rem !important
    }

    .m8-mt-sm-n16 {
        margin-top: -4rem !important
    }

    .m8-mt-sm-n17 {
        margin-top: -4.25rem !important
    }

    .m8-mt-sm-n18 {
        margin-top: -4.5rem !important
    }

    .m8-mt-sm-n19 {
        margin-top: -4.75rem !important
    }

    .m8-mt-sm-n20 {
        margin-top: -5rem !important
    }

    .m8-me-sm-n1 {
        margin-right: -.25rem !important
    }

    .m8-me-sm-n2 {
        margin-right: -.5rem !important
    }

    .m8-me-sm-n3 {
        margin-right: -.75rem !important
    }

    .m8-me-sm-n4 {
        margin-right: -1rem !important
    }

    .m8-me-sm-n5 {
        margin-right: -1.25rem !important
    }

    .m8-me-sm-n6 {
        margin-right: -1.5rem !important
    }

    .m8-me-sm-n7 {
        margin-right: -1.75rem !important
    }

    .m8-me-sm-n8 {
        margin-right: -2rem !important
    }

    .m8-me-sm-n9 {
        margin-right: -2.25rem !important
    }

    .m8-me-sm-n10 {
        margin-right: -2.5rem !important
    }

    .m8-me-sm-n11 {
        margin-right: -2.75rem !important
    }

    .m8-me-sm-n12 {
        margin-right: -3rem !important
    }

    .m8-me-sm-n13 {
        margin-right: -3.25rem !important
    }

    .m8-me-sm-n14 {
        margin-right: -3.5rem !important
    }

    .m8-me-sm-n15 {
        margin-right: -3.75rem !important
    }

    .m8-me-sm-n16 {
        margin-right: -4rem !important
    }

    .m8-me-sm-n17 {
        margin-right: -4.25rem !important
    }

    .m8-me-sm-n18 {
        margin-right: -4.5rem !important
    }

    .m8-me-sm-n19 {
        margin-right: -4.75rem !important
    }

    .m8-me-sm-n20 {
        margin-right: -5rem !important
    }

    .m8-mb-sm-n1 {
        margin-bottom: -.25rem !important
    }

    .m8-mb-sm-n2 {
        margin-bottom: -.5rem !important
    }

    .m8-mb-sm-n3 {
        margin-bottom: -.75rem !important
    }

    .m8-mb-sm-n4 {
        margin-bottom: -1rem !important
    }

    .m8-mb-sm-n5 {
        margin-bottom: -1.25rem !important
    }

    .m8-mb-sm-n6 {
        margin-bottom: -1.5rem !important
    }

    .m8-mb-sm-n7 {
        margin-bottom: -1.75rem !important
    }

    .m8-mb-sm-n8 {
        margin-bottom: -2rem !important
    }

    .m8-mb-sm-n9 {
        margin-bottom: -2.25rem !important
    }

    .m8-mb-sm-n10 {
        margin-bottom: -2.5rem !important
    }

    .m8-mb-sm-n11 {
        margin-bottom: -2.75rem !important
    }

    .m8-mb-sm-n12 {
        margin-bottom: -3rem !important
    }

    .m8-mb-sm-n13 {
        margin-bottom: -3.25rem !important
    }

    .m8-mb-sm-n14 {
        margin-bottom: -3.5rem !important
    }

    .m8-mb-sm-n15 {
        margin-bottom: -3.75rem !important
    }

    .m8-mb-sm-n16 {
        margin-bottom: -4rem !important
    }

    .m8-mb-sm-n17 {
        margin-bottom: -4.25rem !important
    }

    .m8-mb-sm-n18 {
        margin-bottom: -4.5rem !important
    }

    .m8-mb-sm-n19 {
        margin-bottom: -4.75rem !important
    }

    .m8-mb-sm-n20 {
        margin-bottom: -5rem !important
    }

    .m8-ms-sm-n1 {
        margin-left: -.25rem !important
    }

    .m8-ms-sm-n2 {
        margin-left: -.5rem !important
    }

    .m8-ms-sm-n3 {
        margin-left: -.75rem !important
    }

    .m8-ms-sm-n4 {
        margin-left: -1rem !important
    }

    .m8-ms-sm-n5 {
        margin-left: -1.25rem !important
    }

    .m8-ms-sm-n6 {
        margin-left: -1.5rem !important
    }

    .m8-ms-sm-n7 {
        margin-left: -1.75rem !important
    }

    .m8-ms-sm-n8 {
        margin-left: -2rem !important
    }

    .m8-ms-sm-n9 {
        margin-left: -2.25rem !important
    }

    .m8-ms-sm-n10 {
        margin-left: -2.5rem !important
    }

    .m8-ms-sm-n11 {
        margin-left: -2.75rem !important
    }

    .m8-ms-sm-n12 {
        margin-left: -3rem !important
    }

    .m8-ms-sm-n13 {
        margin-left: -3.25rem !important
    }

    .m8-ms-sm-n14 {
        margin-left: -3.5rem !important
    }

    .m8-ms-sm-n15 {
        margin-left: -3.75rem !important
    }

    .m8-ms-sm-n16 {
        margin-left: -4rem !important
    }

    .m8-ms-sm-n17 {
        margin-left: -4.25rem !important
    }

    .m8-ms-sm-n18 {
        margin-left: -4.5rem !important
    }

    .m8-ms-sm-n19 {
        margin-left: -4.75rem !important
    }

    .m8-ms-sm-n20 {
        margin-left: -5rem !important
    }

    .m8-p-sm-0 {
        padding: 0 !important
    }

    .m8-p-sm-1 {
        padding: .25rem !important
    }

    .m8-p-sm-2 {
        padding: .5rem !important
    }

    .m8-p-sm-3 {
        padding: .75rem !important
    }

    .m8-p-sm-4 {
        padding: 1rem !important
    }

    .m8-p-sm-5 {
        padding: 1.25rem !important
    }

    .m8-p-sm-6 {
        padding: 1.5rem !important
    }

    .m8-p-sm-7 {
        padding: 1.75rem !important
    }

    .m8-p-sm-8 {
        padding: 2rem !important
    }

    .m8-p-sm-9 {
        padding: 2.25rem !important
    }

    .m8-p-sm-10 {
        padding: 2.5rem !important
    }

    .m8-p-sm-11 {
        padding: 2.75rem !important
    }

    .m8-p-sm-12 {
        padding: 3rem !important
    }

    .m8-p-sm-13 {
        padding: 3.25rem !important
    }

    .m8-p-sm-14 {
        padding: 3.5rem !important
    }

    .m8-p-sm-15 {
        padding: 3.75rem !important
    }

    .m8-p-sm-16 {
        padding: 4rem !important
    }

    .m8-p-sm-17 {
        padding: 4.25rem !important
    }

    .m8-p-sm-18 {
        padding: 4.5rem !important
    }

    .m8-p-sm-19 {
        padding: 4.75rem !important
    }

    .m8-p-sm-20 {
        padding: 5rem !important
    }

    .m8-px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .m8-px-sm-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .m8-px-sm-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .m8-px-sm-3 {
        padding-right: .75rem !important;
        padding-left: .75rem !important
    }

    .m8-px-sm-4 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .m8-px-sm-5 {
        padding-right: 1.25rem !important;
        padding-left: 1.25rem !important
    }

    .m8-px-sm-6 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .m8-px-sm-7 {
        padding-right: 1.75rem !important;
        padding-left: 1.75rem !important
    }

    .m8-px-sm-8 {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }

    .m8-px-sm-9 {
        padding-right: 2.25rem !important;
        padding-left: 2.25rem !important
    }

    .m8-px-sm-10 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important
    }

    .m8-px-sm-11 {
        padding-right: 2.75rem !important;
        padding-left: 2.75rem !important
    }

    .m8-px-sm-12 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .m8-px-sm-13 {
        padding-right: 3.25rem !important;
        padding-left: 3.25rem !important
    }

    .m8-px-sm-14 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important
    }

    .m8-px-sm-15 {
        padding-right: 3.75rem !important;
        padding-left: 3.75rem !important
    }

    .m8-px-sm-16 {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }

    .m8-px-sm-17 {
        padding-right: 4.25rem !important;
        padding-left: 4.25rem !important
    }

    .m8-px-sm-18 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !important
    }

    .m8-px-sm-19 {
        padding-right: 4.75rem !important;
        padding-left: 4.75rem !important
    }

    .m8-px-sm-20 {
        padding-right: 5rem !important;
        padding-left: 5rem !important
    }

    .m8-py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .m8-py-sm-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .m8-py-sm-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .m8-py-sm-3 {
        padding-top: .75rem !important;
        padding-bottom: .75rem !important
    }

    .m8-py-sm-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .m8-py-sm-5 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important
    }

    .m8-py-sm-6 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .m8-py-sm-7 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important
    }

    .m8-py-sm-8 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }

    .m8-py-sm-9 {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important
    }

    .m8-py-sm-10 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important
    }

    .m8-py-sm-11 {
        padding-top: 2.75rem !important;
        padding-bottom: 2.75rem !important
    }

    .m8-py-sm-12 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .m8-py-sm-13 {
        padding-top: 3.25rem !important;
        padding-bottom: 3.25rem !important
    }

    .m8-py-sm-14 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important
    }

    .m8-py-sm-15 {
        padding-top: 3.75rem !important;
        padding-bottom: 3.75rem !important
    }

    .m8-py-sm-16 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }

    .m8-py-sm-17 {
        padding-top: 4.25rem !important;
        padding-bottom: 4.25rem !important
    }

    .m8-py-sm-18 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important
    }

    .m8-py-sm-19 {
        padding-top: 4.75rem !important;
        padding-bottom: 4.75rem !important
    }

    .m8-py-sm-20 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important
    }

    .m8-pt-sm-0 {
        padding-top: 0 !important
    }

    .m8-pt-sm-1 {
        padding-top: .25rem !important
    }

    .m8-pt-sm-2 {
        padding-top: .5rem !important
    }

    .m8-pt-sm-3 {
        padding-top: .75rem !important
    }

    .m8-pt-sm-4 {
        padding-top: 1rem !important
    }

    .m8-pt-sm-5 {
        padding-top: 1.25rem !important
    }

    .m8-pt-sm-6 {
        padding-top: 1.5rem !important
    }

    .m8-pt-sm-7 {
        padding-top: 1.75rem !important
    }

    .m8-pt-sm-8 {
        padding-top: 2rem !important
    }

    .m8-pt-sm-9 {
        padding-top: 2.25rem !important
    }

    .m8-pt-sm-10 {
        padding-top: 2.5rem !important
    }

    .m8-pt-sm-11 {
        padding-top: 2.75rem !important
    }

    .m8-pt-sm-12 {
        padding-top: 3rem !important
    }

    .m8-pt-sm-13 {
        padding-top: 3.25rem !important
    }

    .m8-pt-sm-14 {
        padding-top: 3.5rem !important
    }

    .m8-pt-sm-15 {
        padding-top: 3.75rem !important
    }

    .m8-pt-sm-16 {
        padding-top: 4rem !important
    }

    .m8-pt-sm-17 {
        padding-top: 4.25rem !important
    }

    .m8-pt-sm-18 {
        padding-top: 4.5rem !important
    }

    .m8-pt-sm-19 {
        padding-top: 4.75rem !important
    }

    .m8-pt-sm-20 {
        padding-top: 5rem !important
    }

    .m8-pe-sm-0 {
        padding-right: 0 !important
    }

    .m8-pe-sm-1 {
        padding-right: .25rem !important
    }

    .m8-pe-sm-2 {
        padding-right: .5rem !important
    }

    .m8-pe-sm-3 {
        padding-right: .75rem !important
    }

    .m8-pe-sm-4 {
        padding-right: 1rem !important
    }

    .m8-pe-sm-5 {
        padding-right: 1.25rem !important
    }

    .m8-pe-sm-6 {
        padding-right: 1.5rem !important
    }

    .m8-pe-sm-7 {
        padding-right: 1.75rem !important
    }

    .m8-pe-sm-8 {
        padding-right: 2rem !important
    }

    .m8-pe-sm-9 {
        padding-right: 2.25rem !important
    }

    .m8-pe-sm-10 {
        padding-right: 2.5rem !important
    }

    .m8-pe-sm-11 {
        padding-right: 2.75rem !important
    }

    .m8-pe-sm-12 {
        padding-right: 3rem !important
    }

    .m8-pe-sm-13 {
        padding-right: 3.25rem !important
    }

    .m8-pe-sm-14 {
        padding-right: 3.5rem !important
    }

    .m8-pe-sm-15 {
        padding-right: 3.75rem !important
    }

    .m8-pe-sm-16 {
        padding-right: 4rem !important
    }

    .m8-pe-sm-17 {
        padding-right: 4.25rem !important
    }

    .m8-pe-sm-18 {
        padding-right: 4.5rem !important
    }

    .m8-pe-sm-19 {
        padding-right: 4.75rem !important
    }

    .m8-pe-sm-20 {
        padding-right: 5rem !important
    }

    .m8-pb-sm-0 {
        padding-bottom: 0 !important
    }

    .m8-pb-sm-1 {
        padding-bottom: .25rem !important
    }

    .m8-pb-sm-2 {
        padding-bottom: .5rem !important
    }

    .m8-pb-sm-3 {
        padding-bottom: .75rem !important
    }

    .m8-pb-sm-4 {
        padding-bottom: 1rem !important
    }

    .m8-pb-sm-5 {
        padding-bottom: 1.25rem !important
    }

    .m8-pb-sm-6 {
        padding-bottom: 1.5rem !important
    }

    .m8-pb-sm-7 {
        padding-bottom: 1.75rem !important
    }

    .m8-pb-sm-8 {
        padding-bottom: 2rem !important
    }

    .m8-pb-sm-9 {
        padding-bottom: 2.25rem !important
    }

    .m8-pb-sm-10 {
        padding-bottom: 2.5rem !important
    }

    .m8-pb-sm-11 {
        padding-bottom: 2.75rem !important
    }

    .m8-pb-sm-12 {
        padding-bottom: 3rem !important
    }

    .m8-pb-sm-13 {
        padding-bottom: 3.25rem !important
    }

    .m8-pb-sm-14 {
        padding-bottom: 3.5rem !important
    }

    .m8-pb-sm-15 {
        padding-bottom: 3.75rem !important
    }

    .m8-pb-sm-16 {
        padding-bottom: 4rem !important
    }

    .m8-pb-sm-17 {
        padding-bottom: 4.25rem !important
    }

    .m8-pb-sm-18 {
        padding-bottom: 4.5rem !important
    }

    .m8-pb-sm-19 {
        padding-bottom: 4.75rem !important
    }

    .m8-pb-sm-20 {
        padding-bottom: 5rem !important
    }

    .m8-ps-sm-0 {
        padding-left: 0 !important
    }

    .m8-ps-sm-1 {
        padding-left: .25rem !important
    }

    .m8-ps-sm-2 {
        padding-left: .5rem !important
    }

    .m8-ps-sm-3 {
        padding-left: .75rem !important
    }

    .m8-ps-sm-4 {
        padding-left: 1rem !important
    }

    .m8-ps-sm-5 {
        padding-left: 1.25rem !important
    }

    .m8-ps-sm-6 {
        padding-left: 1.5rem !important
    }

    .m8-ps-sm-7 {
        padding-left: 1.75rem !important
    }

    .m8-ps-sm-8 {
        padding-left: 2rem !important
    }

    .m8-ps-sm-9 {
        padding-left: 2.25rem !important
    }

    .m8-ps-sm-10 {
        padding-left: 2.5rem !important
    }

    .m8-ps-sm-11 {
        padding-left: 2.75rem !important
    }

    .m8-ps-sm-12 {
        padding-left: 3rem !important
    }

    .m8-ps-sm-13 {
        padding-left: 3.25rem !important
    }

    .m8-ps-sm-14 {
        padding-left: 3.5rem !important
    }

    .m8-ps-sm-15 {
        padding-left: 3.75rem !important
    }

    .m8-ps-sm-16 {
        padding-left: 4rem !important
    }

    .m8-ps-sm-17 {
        padding-left: 4.25rem !important
    }

    .m8-ps-sm-18 {
        padding-left: 4.5rem !important
    }

    .m8-ps-sm-19 {
        padding-left: 4.75rem !important
    }

    .m8-ps-sm-20 {
        padding-left: 5rem !important
    }

    .m8-gap-sm-0 {
        gap: 0 !important
    }

    .m8-gap-sm-1 {
        gap: .25rem !important
    }

    .m8-gap-sm-2 {
        gap: .5rem !important
    }

    .m8-gap-sm-3 {
        gap: .75rem !important
    }

    .m8-gap-sm-4 {
        gap: 1rem !important
    }

    .m8-gap-sm-5 {
        gap: 1.25rem !important
    }

    .m8-gap-sm-6 {
        gap: 1.5rem !important
    }

    .m8-gap-sm-7 {
        gap: 1.75rem !important
    }

    .m8-gap-sm-8 {
        gap: 2rem !important
    }

    .m8-gap-sm-9 {
        gap: 2.25rem !important
    }

    .m8-gap-sm-10 {
        gap: 2.5rem !important
    }

    .m8-gap-sm-11 {
        gap: 2.75rem !important
    }

    .m8-gap-sm-12 {
        gap: 3rem !important
    }

    .m8-gap-sm-13 {
        gap: 3.25rem !important
    }

    .m8-gap-sm-14 {
        gap: 3.5rem !important
    }

    .m8-gap-sm-15 {
        gap: 3.75rem !important
    }

    .m8-gap-sm-16 {
        gap: 4rem !important
    }

    .m8-gap-sm-17 {
        gap: 4.25rem !important
    }

    .m8-gap-sm-18 {
        gap: 4.5rem !important
    }

    .m8-gap-sm-19 {
        gap: 4.75rem !important
    }

    .m8-gap-sm-20 {
        gap: 5rem !important
    }

    .m8-row-gap-sm-0 {
        row-gap: 0 !important
    }

    .m8-row-gap-sm-1 {
        row-gap: .25rem !important
    }

    .m8-row-gap-sm-2 {
        row-gap: .5rem !important
    }

    .m8-row-gap-sm-3 {
        row-gap: .75rem !important
    }

    .m8-row-gap-sm-4 {
        row-gap: 1rem !important
    }

    .m8-row-gap-sm-5 {
        row-gap: 1.25rem !important
    }

    .m8-row-gap-sm-6 {
        row-gap: 1.5rem !important
    }

    .m8-row-gap-sm-7 {
        row-gap: 1.75rem !important
    }

    .m8-row-gap-sm-8 {
        row-gap: 2rem !important
    }

    .m8-row-gap-sm-9 {
        row-gap: 2.25rem !important
    }

    .m8-row-gap-sm-10 {
        row-gap: 2.5rem !important
    }

    .m8-row-gap-sm-11 {
        row-gap: 2.75rem !important
    }

    .m8-row-gap-sm-12 {
        row-gap: 3rem !important
    }

    .m8-row-gap-sm-13 {
        row-gap: 3.25rem !important
    }

    .m8-row-gap-sm-14 {
        row-gap: 3.5rem !important
    }

    .m8-row-gap-sm-15 {
        row-gap: 3.75rem !important
    }

    .m8-row-gap-sm-16 {
        row-gap: 4rem !important
    }

    .m8-row-gap-sm-17 {
        row-gap: 4.25rem !important
    }

    .m8-row-gap-sm-18 {
        row-gap: 4.5rem !important
    }

    .m8-row-gap-sm-19 {
        row-gap: 4.75rem !important
    }

    .m8-row-gap-sm-20 {
        row-gap: 5rem !important
    }

    .m8-column-gap-sm-0 {
        column-gap: 0 !important
    }

    .m8-column-gap-sm-1 {
        column-gap: .25rem !important
    }

    .m8-column-gap-sm-2 {
        column-gap: .5rem !important
    }

    .m8-column-gap-sm-3 {
        column-gap: .75rem !important
    }

    .m8-column-gap-sm-4 {
        column-gap: 1rem !important
    }

    .m8-column-gap-sm-5 {
        column-gap: 1.25rem !important
    }

    .m8-column-gap-sm-6 {
        column-gap: 1.5rem !important
    }

    .m8-column-gap-sm-7 {
        column-gap: 1.75rem !important
    }

    .m8-column-gap-sm-8 {
        column-gap: 2rem !important
    }

    .m8-column-gap-sm-9 {
        column-gap: 2.25rem !important
    }

    .m8-column-gap-sm-10 {
        column-gap: 2.5rem !important
    }

    .m8-column-gap-sm-11 {
        column-gap: 2.75rem !important
    }

    .m8-column-gap-sm-12 {
        column-gap: 3rem !important
    }

    .m8-column-gap-sm-13 {
        column-gap: 3.25rem !important
    }

    .m8-column-gap-sm-14 {
        column-gap: 3.5rem !important
    }

    .m8-column-gap-sm-15 {
        column-gap: 3.75rem !important
    }

    .m8-column-gap-sm-16 {
        column-gap: 4rem !important
    }

    .m8-column-gap-sm-17 {
        column-gap: 4.25rem !important
    }

    .m8-column-gap-sm-18 {
        column-gap: 4.5rem !important
    }

    .m8-column-gap-sm-19 {
        column-gap: 4.75rem !important
    }

    .m8-column-gap-sm-20 {
        column-gap: 5rem !important
    }

    .m8-fs-sm-1 {
        font-size: calc(1.3rem + .6vw) !important
    }

    .m8-fs-sm-2 {
        font-size: calc(1.275rem + .3vw) !important
    }

    .m8-fs-sm-3 {
        font-size: calc(1.26rem + .12vw) !important
    }

    .m8-fs-sm-4 {
        font-size: 1.25rem !important
    }

    .m8-fs-sm-5 {
        font-size: 1.15rem !important
    }

    .m8-fs-sm-6 {
        font-size: 1.075rem !important
    }

    .m8-fs-sm-7 {
        font-size: .95rem !important
    }

    .m8-fs-sm-8 {
        font-size: .85rem !important
    }

    .m8-fs-sm-9 {
        font-size: .75rem !important
    }

    .m8-fs-sm-10 {
        font-size: .5rem !important
    }

    .m8-fs-sm-sm {
        font-size: .95rem !important
    }

    .m8-fs-sm-base {
        font-size: 1rem !important
    }

    .m8-fs-sm-lg {
        font-size: 1.075rem !important
    }

    .m8-fs-sm-xl {
        font-size: 1.21rem !important
    }

    .m8-fs-sm-fluid {
        font-size: 100% !important
    }

    .m8-fs-sm-2x {
        font-size: calc(1.325rem + .9vw) !important
    }

    .m8-fs-sm-2qx {
        font-size: calc(1.35rem + 1.2vw) !important
    }

    .m8-fs-sm-2hx {
        font-size: calc(1.375rem + 1.5vw) !important
    }

    .m8-fs-sm-2tx {
        font-size: calc(1.4rem + 1.8vw) !important
    }

    .m8-fs-sm-3x {
        font-size: calc(1.425rem + 2.1vw) !important
    }

    .m8-fs-sm-3qx {
        font-size: calc(1.45rem + 2.4vw) !important
    }

    .m8-fs-sm-3hx {
        font-size: calc(1.475rem + 2.7vw) !important
    }

    .m8-fs-sm-3tx {
        font-size: calc(1.5rem + 3vw) !important
    }

    .m8-fs-sm-4x {
        font-size: calc(1.525rem + 3.3vw) !important
    }

    .m8-fs-sm-4qx {
        font-size: calc(1.55rem + 3.6vw) !important
    }

    .m8-fs-sm-4hx {
        font-size: calc(1.575rem + 3.9vw) !important
    }

    .m8-fs-sm-4tx {
        font-size: calc(1.6rem + 4.2vw) !important
    }

    .m8-fs-sm-5x {
        font-size: calc(1.625rem + 4.5vw) !important
    }

    .m8-fs-sm-5qx {
        font-size: calc(1.65rem + 4.8vw) !important
    }

    .m8-fs-sm-5hx {
        font-size: calc(1.675rem + 5.1vw) !important
    }

    .m8-fs-sm-5tx {
        font-size: calc(1.7rem + 5.4vw) !important
    }

    .m8-fs-sm-6x {
        font-size: calc(1.725rem + 5.7vw) !important
    }

    .m8-fs-sm-6qx {
        font-size: calc(1.75rem + 6vw) !important
    }

    .m8-fs-sm-6hx {
        font-size: calc(1.775rem + 6.3vw) !important
    }

    .m8-fs-sm-6tx {
        font-size: calc(1.8rem + 6.6vw) !important
    }

    .m8-fs-sm-7x {
        font-size: calc(1.825rem + 6.9vw) !important
    }

    .m8-fs-sm-7qx {
        font-size: calc(1.85rem + 7.2vw) !important
    }

    .m8-fs-sm-7hx {
        font-size: calc(1.875rem + 7.5vw) !important
    }

    .m8-fs-sm-7tx {
        font-size: calc(1.9rem + 7.8vw) !important
    }

    .m8-text-sm-start {
        text-align: left !important
    }

    .m8-text-sm-end {
        text-align: right !important
    }

    .m8-text-sm-center {
        text-align: center !important
    }

    .m8-min-w-sm-unset {
        min-width: unset !important
    }

    .m8-min-w-sm-25 {
        min-width: 25% !important
    }

    .m8-min-w-sm-50 {
        min-width: 50% !important
    }

    .m8-min-w-sm-75 {
        min-width: 75% !important
    }

    .m8-min-w-sm-100 {
        min-width: 100% !important
    }

    .m8-min-w-sm-auto {
        min-width: auto !important
    }

    .m8-min-w-sm-1px {
        min-width: 1px !important
    }

    .m8-min-w-sm-2px {
        min-width: 2px !important
    }

    .m8-min-w-sm-3px {
        min-width: 3px !important
    }

    .m8-min-w-sm-4px {
        min-width: 4px !important
    }

    .m8-min-w-sm-5px {
        min-width: 5px !important
    }

    .m8-min-w-sm-6px {
        min-width: 6px !important
    }

    .m8-min-w-sm-7px {
        min-width: 7px !important
    }

    .m8-min-w-sm-8px {
        min-width: 8px !important
    }

    .m8-min-w-sm-9px {
        min-width: 9px !important
    }

    .m8-min-w-sm-10px {
        min-width: 10px !important
    }

    .m8-min-w-sm-15px {
        min-width: 15px !important
    }

    .m8-min-w-sm-20px {
        min-width: 20px !important
    }

    .m8-min-w-sm-25px {
        min-width: 25px !important
    }

    .m8-min-w-sm-30px {
        min-width: 30px !important
    }

    .m8-min-w-sm-35px {
        min-width: 35px !important
    }

    .m8-min-w-sm-40px {
        min-width: 40px !important
    }

    .m8-min-w-sm-45px {
        min-width: 45px !important
    }

    .m8-min-w-sm-50px {
        min-width: 50px !important
    }

    .m8-min-w-sm-55px {
        min-width: 55px !important
    }

    .m8-min-w-sm-60px {
        min-width: 60px !important
    }

    .m8-min-w-sm-65px {
        min-width: 65px !important
    }

    .m8-min-w-sm-70px {
        min-width: 70px !important
    }

    .m8-min-w-sm-75px {
        min-width: 75px !important
    }

    .m8-min-w-sm-80px {
        min-width: 80px !important
    }

    .m8-min-w-sm-85px {
        min-width: 85px !important
    }

    .m8-min-w-sm-90px {
        min-width: 90px !important
    }

    .m8-min-w-sm-95px {
        min-width: 95px !important
    }

    .m8-min-w-sm-100px {
        min-width: 100px !important
    }

    .m8-min-w-sm-125px {
        min-width: 125px !important
    }

    .m8-min-w-sm-150px {
        min-width: 150px !important
    }

    .m8-min-w-sm-175px {
        min-width: 175px !important
    }

    .m8-min-w-sm-200px {
        min-width: 200px !important
    }

    .m8-min-w-sm-225px {
        min-width: 225px !important
    }

    .m8-min-w-sm-250px {
        min-width: 250px !important
    }

    .m8-min-w-sm-275px {
        min-width: 275px !important
    }

    .m8-min-w-sm-300px {
        min-width: 300px !important
    }

    .m8-min-w-sm-325px {
        min-width: 325px !important
    }

    .m8-min-w-sm-350px {
        min-width: 350px !important
    }

    .m8-min-w-sm-375px {
        min-width: 375px !important
    }

    .m8-min-w-sm-400px {
        min-width: 400px !important
    }

    .m8-min-w-sm-425px {
        min-width: 425px !important
    }

    .m8-min-w-sm-450px {
        min-width: 450px !important
    }

    .m8-min-w-sm-475px {
        min-width: 475px !important
    }

    .m8-min-w-sm-500px {
        min-width: 500px !important
    }

    .m8-min-w-sm-550px {
        min-width: 550px !important
    }

    .m8-min-w-sm-600px {
        min-width: 600px !important
    }

    .m8-min-w-sm-650px {
        min-width: 650px !important
    }

    .m8-min-w-sm-700px {
        min-width: 700px !important
    }

    .m8-min-w-sm-750px {
        min-width: 750px !important
    }

    .m8-min-w-sm-800px {
        min-width: 800px !important
    }

    .m8-min-w-sm-850px {
        min-width: 850px !important
    }

    .m8-min-w-sm-900px {
        min-width: 900px !important
    }

    .m8-min-w-sm-950px {
        min-width: 950px !important
    }

    .m8-min-w-sm-1000px {
        min-width: 1000px !important
    }

    .m8-min-h-sm-unset {
        min-height: unset !important
    }

    .m8-min-h-sm-25 {
        min-height: 25% !important
    }

    .m8-min-h-sm-50 {
        min-height: 50% !important
    }

    .m8-min-h-sm-75 {
        min-height: 75% !important
    }

    .m8-min-h-sm-100 {
        min-height: 100% !important
    }

    .m8-min-h-sm-auto {
        min-height: auto !important
    }

    .m8-min-h-sm-1px {
        min-height: 1px !important
    }

    .m8-min-h-sm-2px {
        min-height: 2px !important
    }

    .m8-min-h-sm-3px {
        min-height: 3px !important
    }

    .m8-min-h-sm-4px {
        min-height: 4px !important
    }

    .m8-min-h-sm-5px {
        min-height: 5px !important
    }

    .m8-min-h-sm-6px {
        min-height: 6px !important
    }

    .m8-min-h-sm-7px {
        min-height: 7px !important
    }

    .m8-min-h-sm-8px {
        min-height: 8px !important
    }

    .m8-min-h-sm-9px {
        min-height: 9px !important
    }

    .m8-min-h-sm-10px {
        min-height: 10px !important
    }

    .m8-min-h-sm-15px {
        min-height: 15px !important
    }

    .m8-min-h-sm-20px {
        min-height: 20px !important
    }

    .m8-min-h-sm-25px {
        min-height: 25px !important
    }

    .m8-min-h-sm-30px {
        min-height: 30px !important
    }

    .m8-min-h-sm-35px {
        min-height: 35px !important
    }

    .m8-min-h-sm-40px {
        min-height: 40px !important
    }

    .m8-min-h-sm-45px {
        min-height: 45px !important
    }

    .m8-min-h-sm-50px {
        min-height: 50px !important
    }

    .m8-min-h-sm-55px {
        min-height: 55px !important
    }

    .m8-min-h-sm-60px {
        min-height: 60px !important
    }

    .m8-min-h-sm-65px {
        min-height: 65px !important
    }

    .m8-min-h-sm-70px {
        min-height: 70px !important
    }

    .m8-min-h-sm-75px {
        min-height: 75px !important
    }

    .m8-min-h-sm-80px {
        min-height: 80px !important
    }

    .m8-min-h-sm-85px {
        min-height: 85px !important
    }

    .m8-min-h-sm-90px {
        min-height: 90px !important
    }

    .m8-min-h-sm-95px {
        min-height: 95px !important
    }

    .m8-min-h-sm-100px {
        min-height: 100px !important
    }

    .m8-min-h-sm-125px {
        min-height: 125px !important
    }

    .m8-min-h-sm-150px {
        min-height: 150px !important
    }

    .m8-min-h-sm-175px {
        min-height: 175px !important
    }

    .m8-min-h-sm-200px {
        min-height: 200px !important
    }

    .m8-min-h-sm-225px {
        min-height: 225px !important
    }

    .m8-min-h-sm-250px {
        min-height: 250px !important
    }

    .m8-min-h-sm-275px {
        min-height: 275px !important
    }

    .m8-min-h-sm-300px {
        min-height: 300px !important
    }

    .m8-min-h-sm-325px {
        min-height: 325px !important
    }

    .m8-min-h-sm-350px {
        min-height: 350px !important
    }

    .m8-min-h-sm-375px {
        min-height: 375px !important
    }

    .m8-min-h-sm-400px {
        min-height: 400px !important
    }

    .m8-min-h-sm-425px {
        min-height: 425px !important
    }

    .m8-min-h-sm-450px {
        min-height: 450px !important
    }

    .m8-min-h-sm-475px {
        min-height: 475px !important
    }

    .m8-min-h-sm-500px {
        min-height: 500px !important
    }

    .m8-min-h-sm-550px {
        min-height: 550px !important
    }

    .m8-min-h-sm-600px {
        min-height: 600px !important
    }

    .m8-min-h-sm-650px {
        min-height: 650px !important
    }

    .m8-min-h-sm-700px {
        min-height: 700px !important
    }

    .m8-min-h-sm-750px {
        min-height: 750px !important
    }

    .m8-min-h-sm-800px {
        min-height: 800px !important
    }

    .m8-min-h-sm-850px {
        min-height: 850px !important
    }

    .m8-min-h-sm-900px {
        min-height: 900px !important
    }

    .m8-min-h-sm-950px {
        min-height: 950px !important
    }

    .m8-min-h-sm-1000px {
        min-height: 1000px !important
    }
}

@media (min-width:768px) {
    .m8-float-md-start {
        float: left !important
    }

    .m8-float-md-end {
        float: right !important
    }

    .m8-float-md-none {
        float: none !important
    }

    .m8-object-fit-md-contain {
        object-fit: contain !important
    }

    .m8-object-fit-md-cover {
        object-fit: cover !important
    }

    .m8-object-fit-md-fill {
        object-fit: fill !important
    }

    .m8-object-fit-md-scale {
        object-fit: scale-down !important
    }

    .m8-object-fit-md-none {
        object-fit: none !important
    }

    .m8-overflow-md-auto {
        overflow: auto !important
    }

    .m8-overflow-md-hidden {
        overflow: hidden !important
    }

    .m8-overflow-md-visible {
        overflow: visible !important
    }

    .m8-overflow-md-scroll {
        overflow: scroll !important
    }

    .m8-d-md-inline {
        display: inline !important
    }

    .m8-d-md-inline-block {
        display: inline-block !important
    }

    .m8-d-md-block {
        display: block !important
    }

    .m8-d-md-grid {
        display: grid !important
    }

    .m8-d-md-inline-grid {
        display: inline-grid !important
    }

    .m8-d-md-table {
        display: table !important
    }

    .m8-d-md-table-row {
        display: table-row !important
    }

    .m8-d-md-table-cell {
        display: table-cell !important
    }

    .m8-d-md-flex {
        display: flex !important
    }

    .m8-d-md-inline-flex {
        display: inline-flex !important
    }

    .m8-d-md-none {
        display: none !important
    }

    .m8-position-md-static {
        position: static !important
    }

    .m8-position-md-relative {
        position: relative !important
    }

    .m8-position-md-absolute {
        position: absolute !important
    }

    .m8-position-md-fixed {
        position: fixed !important
    }

    .m8-position-md-sticky {
        position: sticky !important
    }

    .m8-w-md-unset {
        width: unset !important
    }

    .m8-w-md-25 {
        width: 25% !important
    }

    .m8-w-md-50 {
        width: 50% !important
    }

    .m8-w-md-75 {
        width: 75% !important
    }

    .m8-w-md-100 {
        width: 100% !important
    }

    .m8-w-md-auto {
        width: auto !important
    }

    .m8-w-md-1px {
        width: 1px !important
    }

    .m8-w-md-2px {
        width: 2px !important
    }

    .m8-w-md-3px {
        width: 3px !important
    }

    .m8-w-md-4px {
        width: 4px !important
    }

    .m8-w-md-5px {
        width: 5px !important
    }

    .m8-w-md-6px {
        width: 6px !important
    }

    .m8-w-md-7px {
        width: 7px !important
    }

    .m8-w-md-8px {
        width: 8px !important
    }

    .m8-w-md-9px {
        width: 9px !important
    }

    .m8-w-md-10px {
        width: 10px !important
    }

    .m8-w-md-15px {
        width: 15px !important
    }

    .m8-w-md-20px {
        width: 20px !important
    }

    .m8-w-md-25px {
        width: 25px !important
    }

    .m8-w-md-30px {
        width: 30px !important
    }

    .m8-w-md-35px {
        width: 35px !important
    }

    .m8-w-md-40px {
        width: 40px !important
    }

    .m8-w-md-45px {
        width: 45px !important
    }

    .m8-w-md-50px {
        width: 50px !important
    }

    .m8-w-md-55px {
        width: 55px !important
    }

    .m8-w-md-60px {
        width: 60px !important
    }

    .m8-w-md-65px {
        width: 65px !important
    }

    .m8-w-md-70px {
        width: 70px !important
    }

    .m8-w-md-75px {
        width: 75px !important
    }

    .m8-w-md-80px {
        width: 80px !important
    }

    .m8-w-md-85px {
        width: 85px !important
    }

    .m8-w-md-90px {
        width: 90px !important
    }

    .m8-w-md-95px {
        width: 95px !important
    }

    .m8-w-md-100px {
        width: 100px !important
    }

    .m8-w-md-125px {
        width: 125px !important
    }

    .m8-w-md-150px {
        width: 150px !important
    }

    .m8-w-md-175px {
        width: 175px !important
    }

    .m8-w-md-200px {
        width: 200px !important
    }

    .m8-w-md-225px {
        width: 225px !important
    }

    .m8-w-md-250px {
        width: 250px !important
    }

    .m8-w-md-275px {
        width: 275px !important
    }

    .m8-w-md-300px {
        width: 300px !important
    }

    .m8-w-md-325px {
        width: 325px !important
    }

    .m8-w-md-350px {
        width: 350px !important
    }

    .m8-w-md-375px {
        width: 375px !important
    }

    .m8-w-md-400px {
        width: 400px !important
    }

    .m8-w-md-425px {
        width: 425px !important
    }

    .m8-w-md-450px {
        width: 450px !important
    }

    .m8-w-md-475px {
        width: 475px !important
    }

    .m8-w-md-500px {
        width: 500px !important
    }

    .m8-w-md-550px {
        width: 550px !important
    }

    .m8-w-md-600px {
        width: 600px !important
    }

    .m8-w-md-650px {
        width: 650px !important
    }

    .m8-w-md-700px {
        width: 700px !important
    }

    .m8-w-md-750px {
        width: 750px !important
    }

    .m8-w-md-800px {
        width: 800px !important
    }

    .m8-w-md-850px {
        width: 850px !important
    }

    .m8-w-md-900px {
        width: 900px !important
    }

    .m8-w-md-950px {
        width: 950px !important
    }

    .m8-w-md-1000px {
        width: 1000px !important
    }

    .m8-mw-md-unset {
        max-width: unset !important
    }

    .m8-mw-md-25 {
        max-width: 25% !important
    }

    .m8-mw-md-50 {
        max-width: 50% !important
    }

    .m8-mw-md-75 {
        max-width: 75% !important
    }

    .m8-mw-md-100 {
        max-width: 100% !important
    }

    .m8-mw-md-auto {
        max-width: auto !important
    }

    .m8-mw-md-1px {
        max-width: 1px !important
    }

    .m8-mw-md-2px {
        max-width: 2px !important
    }

    .m8-mw-md-3px {
        max-width: 3px !important
    }

    .m8-mw-md-4px {
        max-width: 4px !important
    }

    .m8-mw-md-5px {
        max-width: 5px !important
    }

    .m8-mw-md-6px {
        max-width: 6px !important
    }

    .m8-mw-md-7px {
        max-width: 7px !important
    }

    .m8-mw-md-8px {
        max-width: 8px !important
    }

    .m8-mw-md-9px {
        max-width: 9px !important
    }

    .m8-mw-md-10px {
        max-width: 10px !important
    }

    .m8-mw-md-15px {
        max-width: 15px !important
    }

    .m8-mw-md-20px {
        max-width: 20px !important
    }

    .m8-mw-md-25px {
        max-width: 25px !important
    }

    .m8-mw-md-30px {
        max-width: 30px !important
    }

    .m8-mw-md-35px {
        max-width: 35px !important
    }

    .m8-mw-md-40px {
        max-width: 40px !important
    }

    .m8-mw-md-45px {
        max-width: 45px !important
    }

    .m8-mw-md-50px {
        max-width: 50px !important
    }

    .m8-mw-md-55px {
        max-width: 55px !important
    }

    .m8-mw-md-60px {
        max-width: 60px !important
    }

    .m8-mw-md-65px {
        max-width: 65px !important
    }

    .m8-mw-md-70px {
        max-width: 70px !important
    }

    .m8-mw-md-75px {
        max-width: 75px !important
    }

    .m8-mw-md-80px {
        max-width: 80px !important
    }

    .m8-mw-md-85px {
        max-width: 85px !important
    }

    .m8-mw-md-90px {
        max-width: 90px !important
    }

    .m8-mw-md-95px {
        max-width: 95px !important
    }

    .m8-mw-md-100px {
        max-width: 100px !important
    }

    .m8-mw-md-125px {
        max-width: 125px !important
    }

    .m8-mw-md-150px {
        max-width: 150px !important
    }

    .m8-mw-md-175px {
        max-width: 175px !important
    }

    .m8-mw-md-200px {
        max-width: 200px !important
    }

    .m8-mw-md-225px {
        max-width: 225px !important
    }

    .m8-mw-md-250px {
        max-width: 250px !important
    }

    .m8-mw-md-275px {
        max-width: 275px !important
    }

    .m8-mw-md-300px {
        max-width: 300px !important
    }

    .m8-mw-md-325px {
        max-width: 325px !important
    }

    .m8-mw-md-350px {
        max-width: 350px !important
    }

    .m8-mw-md-375px {
        max-width: 375px !important
    }

    .m8-mw-md-400px {
        max-width: 400px !important
    }

    .m8-mw-md-425px {
        max-width: 425px !important
    }

    .m8-mw-md-450px {
        max-width: 450px !important
    }

    .m8-mw-md-475px {
        max-width: 475px !important
    }

    .m8-mw-md-500px {
        max-width: 500px !important
    }

    .m8-mw-md-550px {
        max-width: 550px !important
    }

    .m8-mw-md-600px {
        max-width: 600px !important
    }

    .m8-mw-md-650px {
        max-width: 650px !important
    }

    .m8-mw-md-700px {
        max-width: 700px !important
    }

    .m8-mw-md-750px {
        max-width: 750px !important
    }

    .m8-mw-md-800px {
        max-width: 800px !important
    }

    .m8-mw-md-850px {
        max-width: 850px !important
    }

    .m8-mw-md-900px {
        max-width: 900px !important
    }

    .m8-mw-md-950px {
        max-width: 950px !important
    }

    .m8-mw-md-1000px {
        max-width: 1000px !important
    }

    .m8-h-md-unset {
        height: unset !important
    }

    .m8-h-md-25 {
        height: 25% !important
    }

    .m8-h-md-50 {
        height: 50% !important
    }

    .m8-h-md-75 {
        height: 75% !important
    }

    .m8-h-md-100 {
        height: 100% !important
    }

    .m8-h-md-auto {
        height: auto !important
    }

    .m8-h-md-1px {
        height: 1px !important
    }

    .m8-h-md-2px {
        height: 2px !important
    }

    .m8-h-md-3px {
        height: 3px !important
    }

    .m8-h-md-4px {
        height: 4px !important
    }

    .m8-h-md-5px {
        height: 5px !important
    }

    .m8-h-md-6px {
        height: 6px !important
    }

    .m8-h-md-7px {
        height: 7px !important
    }

    .m8-h-md-8px {
        height: 8px !important
    }

    .m8-h-md-9px {
        height: 9px !important
    }

    .m8-h-md-10px {
        height: 10px !important
    }

    .m8-h-md-15px {
        height: 15px !important
    }

    .m8-h-md-20px {
        height: 20px !important
    }

    .m8-h-md-25px {
        height: 25px !important
    }

    .m8-h-md-30px {
        height: 30px !important
    }

    .m8-h-md-35px {
        height: 35px !important
    }

    .m8-h-md-40px {
        height: 40px !important
    }

    .m8-h-md-45px {
        height: 45px !important
    }

    .m8-h-md-50px {
        height: 50px !important
    }

    .m8-h-md-55px {
        height: 55px !important
    }

    .m8-h-md-60px {
        height: 60px !important
    }

    .m8-h-md-65px {
        height: 65px !important
    }

    .m8-h-md-70px {
        height: 70px !important
    }

    .m8-h-md-75px {
        height: 75px !important
    }

    .m8-h-md-80px {
        height: 80px !important
    }

    .m8-h-md-85px {
        height: 85px !important
    }

    .m8-h-md-90px {
        height: 90px !important
    }

    .m8-h-md-95px {
        height: 95px !important
    }

    .m8-h-md-100px {
        height: 100px !important
    }

    .m8-h-md-125px {
        height: 125px !important
    }

    .m8-h-md-150px {
        height: 150px !important
    }

    .m8-h-md-175px {
        height: 175px !important
    }

    .m8-h-md-200px {
        height: 200px !important
    }

    .m8-h-md-225px {
        height: 225px !important
    }

    .m8-h-md-250px {
        height: 250px !important
    }

    .m8-h-md-275px {
        height: 275px !important
    }

    .m8-h-md-300px {
        height: 300px !important
    }

    .m8-h-md-325px {
        height: 325px !important
    }

    .m8-h-md-350px {
        height: 350px !important
    }

    .m8-h-md-375px {
        height: 375px !important
    }

    .m8-h-md-400px {
        height: 400px !important
    }

    .m8-h-md-425px {
        height: 425px !important
    }

    .m8-h-md-450px {
        height: 450px !important
    }

    .m8-h-md-475px {
        height: 475px !important
    }

    .m8-h-md-500px {
        height: 500px !important
    }

    .m8-h-md-550px {
        height: 550px !important
    }

    .m8-h-md-600px {
        height: 600px !important
    }

    .m8-h-md-650px {
        height: 650px !important
    }

    .m8-h-md-700px {
        height: 700px !important
    }

    .m8-h-md-750px {
        height: 750px !important
    }

    .m8-h-md-800px {
        height: 800px !important
    }

    .m8-h-md-850px {
        height: 850px !important
    }

    .m8-h-md-900px {
        height: 900px !important
    }

    .m8-h-md-950px {
        height: 950px !important
    }

    .m8-h-md-1000px {
        height: 1000px !important
    }

    .m8-mh-md-unset {
        max-height: unset !important
    }

    .m8-mh-md-25 {
        max-height: 25% !important
    }

    .m8-mh-md-50 {
        max-height: 50% !important
    }

    .m8-mh-md-75 {
        max-height: 75% !important
    }

    .m8-mh-md-100 {
        max-height: 100% !important
    }

    .m8-mh-md-auto {
        max-height: auto !important
    }

    .m8-mh-md-1px {
        max-height: 1px !important
    }

    .m8-mh-md-2px {
        max-height: 2px !important
    }

    .m8-mh-md-3px {
        max-height: 3px !important
    }

    .m8-mh-md-4px {
        max-height: 4px !important
    }

    .m8-mh-md-5px {
        max-height: 5px !important
    }

    .m8-mh-md-6px {
        max-height: 6px !important
    }

    .m8-mh-md-7px {
        max-height: 7px !important
    }

    .m8-mh-md-8px {
        max-height: 8px !important
    }

    .m8-mh-md-9px {
        max-height: 9px !important
    }

    .m8-mh-md-10px {
        max-height: 10px !important
    }

    .m8-mh-md-15px {
        max-height: 15px !important
    }

    .m8-mh-md-20px {
        max-height: 20px !important
    }

    .m8-mh-md-25px {
        max-height: 25px !important
    }

    .m8-mh-md-30px {
        max-height: 30px !important
    }

    .m8-mh-md-35px {
        max-height: 35px !important
    }

    .m8-mh-md-40px {
        max-height: 40px !important
    }

    .m8-mh-md-45px {
        max-height: 45px !important
    }

    .m8-mh-md-50px {
        max-height: 50px !important
    }

    .m8-mh-md-55px {
        max-height: 55px !important
    }

    .m8-mh-md-60px {
        max-height: 60px !important
    }

    .m8-mh-md-65px {
        max-height: 65px !important
    }

    .m8-mh-md-70px {
        max-height: 70px !important
    }

    .m8-mh-md-75px {
        max-height: 75px !important
    }

    .m8-mh-md-80px {
        max-height: 80px !important
    }

    .m8-mh-md-85px {
        max-height: 85px !important
    }

    .m8-mh-md-90px {
        max-height: 90px !important
    }

    .m8-mh-md-95px {
        max-height: 95px !important
    }

    .m8-mh-md-100px {
        max-height: 100px !important
    }

    .m8-mh-md-125px {
        max-height: 125px !important
    }

    .m8-mh-md-150px {
        max-height: 150px !important
    }

    .m8-mh-md-175px {
        max-height: 175px !important
    }

    .m8-mh-md-200px {
        max-height: 200px !important
    }

    .m8-mh-md-225px {
        max-height: 225px !important
    }

    .m8-mh-md-250px {
        max-height: 250px !important
    }

    .m8-mh-md-275px {
        max-height: 275px !important
    }

    .m8-mh-md-300px {
        max-height: 300px !important
    }

    .m8-mh-md-325px {
        max-height: 325px !important
    }

    .m8-mh-md-350px {
        max-height: 350px !important
    }

    .m8-mh-md-375px {
        max-height: 375px !important
    }

    .m8-mh-md-400px {
        max-height: 400px !important
    }

    .m8-mh-md-425px {
        max-height: 425px !important
    }

    .m8-mh-md-450px {
        max-height: 450px !important
    }

    .m8-mh-md-475px {
        max-height: 475px !important
    }

    .m8-mh-md-500px {
        max-height: 500px !important
    }

    .m8-mh-md-550px {
        max-height: 550px !important
    }

    .m8-mh-md-600px {
        max-height: 600px !important
    }

    .m8-mh-md-650px {
        max-height: 650px !important
    }

    .m8-mh-md-700px {
        max-height: 700px !important
    }

    .m8-mh-md-750px {
        max-height: 750px !important
    }

    .m8-mh-md-800px {
        max-height: 800px !important
    }

    .m8-mh-md-850px {
        max-height: 850px !important
    }

    .m8-mh-md-900px {
        max-height: 900px !important
    }

    .m8-mh-md-950px {
        max-height: 950px !important
    }

    .m8-mh-md-1000px {
        max-height: 1000px !important
    }

    .m8-flex-md-fill {
        flex: 1 1 auto !important
    }

    .m8-flex-md-row {
        flex-direction: row !important
    }

    .m8-flex-md-column {
        flex-direction: column !important
    }

    .m8-flex-md-row-reverse {
        flex-direction: row-reverse !important
    }

    .m8-flex-md-column-reverse {
        flex-direction: column-reverse !important
    }

    .m8-flex-md-grow-0 {
        flex-grow: 0 !important
    }

    .m8-flex-md-grow-1 {
        flex-grow: 1 !important
    }

    .m8-flex-md-shrink-0 {
        flex-shrink: 0 !important
    }

    .m8-flex-md-shrink-1 {
        flex-shrink: 1 !important
    }

    .m8-flex-md-wrap {
        flex-wrap: wrap !important
    }

    .m8-flex-md-nowrap {
        flex-wrap: nowrap !important
    }

    .m8-flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .m8-justify-content-md-start {
        justify-content: flex-start !important
    }

    .m8-justify-content-md-end {
        justify-content: flex-end !important
    }

    .m8-justify-content-md-center {
        justify-content: center !important
    }

    .m8-justify-content-md-between {
        justify-content: space-between !important
    }

    .m8-justify-content-md-around {
        justify-content: space-around !important
    }

    .m8-justify-content-md-evenly {
        justify-content: space-evenly !important
    }

    .m8-align-items-md-start {
        align-items: flex-start !important
    }

    .m8-align-items-md-end {
        align-items: flex-end !important
    }

    .m8-align-items-md-center {
        align-items: center !important
    }

    .m8-align-items-md-baseline {
        align-items: baseline !important
    }

    .m8-align-items-md-stretch {
        align-items: stretch !important
    }

    .m8-align-content-md-start {
        align-content: flex-start !important
    }

    .m8-align-content-md-end {
        align-content: flex-end !important
    }

    .m8-align-content-md-center {
        align-content: center !important
    }

    .m8-align-content-md-between {
        align-content: space-between !important
    }

    .m8-align-content-md-around {
        align-content: space-around !important
    }

    .m8-align-content-md-stretch {
        align-content: stretch !important
    }

    .m8-align-self-md-auto {
        align-self: auto !important
    }

    .m8-align-self-md-start {
        align-self: flex-start !important
    }

    .m8-align-self-md-end {
        align-self: flex-end !important
    }

    .m8-align-self-md-center {
        align-self: center !important
    }

    .m8-align-self-md-baseline {
        align-self: baseline !important
    }

    .m8-align-self-md-stretch {
        align-self: stretch !important
    }

    .m8-order-md-first {
        order: -1 !important
    }

    .m8-order-md-0 {
        order: 0 !important
    }

    .m8-order-md-1 {
        order: 1 !important
    }

    .m8-order-md-2 {
        order: 2 !important
    }

    .m8-order-md-3 {
        order: 3 !important
    }

    .m8-order-md-4 {
        order: 4 !important
    }

    .m8-order-md-5 {
        order: 5 !important
    }

    .m8-order-md-last {
        order: 6 !important
    }

    .m8-m-md-0 {
        margin: 0 !important
    }

    .m8-m-md-1 {
        margin: .25rem !important
    }

    .m8-m-md-2 {
        margin: .5rem !important
    }

    .m8-m-md-3 {
        margin: .75rem !important
    }

    .m8-m-md-4 {
        margin: 1rem !important
    }

    .m8-m-md-5 {
        margin: 1.25rem !important
    }

    .m8-m-md-6 {
        margin: 1.5rem !important
    }

    .m8-m-md-7 {
        margin: 1.75rem !important
    }

    .m8-m-md-8 {
        margin: 2rem !important
    }

    .m8-m-md-9 {
        margin: 2.25rem !important
    }

    .m8-m-md-10 {
        margin: 2.5rem !important
    }

    .m8-m-md-11 {
        margin: 2.75rem !important
    }

    .m8-m-md-12 {
        margin: 3rem !important
    }

    .m8-m-md-13 {
        margin: 3.25rem !important
    }

    .m8-m-md-14 {
        margin: 3.5rem !important
    }

    .m8-m-md-15 {
        margin: 3.75rem !important
    }

    .m8-m-md-16 {
        margin: 4rem !important
    }

    .m8-m-md-17 {
        margin: 4.25rem !important
    }

    .m8-m-md-18 {
        margin: 4.5rem !important
    }

    .m8-m-md-19 {
        margin: 4.75rem !important
    }

    .m8-m-md-20 {
        margin: 5rem !important
    }

    .m8-m-md-auto {
        margin: auto !important
    }

    .m8-mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .m8-mx-md-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .m8-mx-md-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .m8-mx-md-3 {
        margin-right: .75rem !important;
        margin-left: .75rem !important
    }

    .m8-mx-md-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .m8-mx-md-5 {
        margin-right: 1.25rem !important;
        margin-left: 1.25rem !important
    }

    .m8-mx-md-6 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .m8-mx-md-7 {
        margin-right: 1.75rem !important;
        margin-left: 1.75rem !important
    }

    .m8-mx-md-8 {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }

    .m8-mx-md-9 {
        margin-right: 2.25rem !important;
        margin-left: 2.25rem !important
    }

    .m8-mx-md-10 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important
    }

    .m8-mx-md-11 {
        margin-right: 2.75rem !important;
        margin-left: 2.75rem !important
    }

    .m8-mx-md-12 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .m8-mx-md-13 {
        margin-right: 3.25rem !important;
        margin-left: 3.25rem !important
    }

    .m8-mx-md-14 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important
    }

    .m8-mx-md-15 {
        margin-right: 3.75rem !important;
        margin-left: 3.75rem !important
    }

    .m8-mx-md-16 {
        margin-right: 4rem !important;
        margin-left: 4rem !important
    }

    .m8-mx-md-17 {
        margin-right: 4.25rem !important;
        margin-left: 4.25rem !important
    }

    .m8-mx-md-18 {
        margin-right: 4.5rem !important;
        margin-left: 4.5rem !important
    }

    .m8-mx-md-19 {
        margin-right: 4.75rem !important;
        margin-left: 4.75rem !important
    }

    .m8-mx-md-20 {
        margin-right: 5rem !important;
        margin-left: 5rem !important
    }

    .m8-mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .m8-my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .m8-my-md-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .m8-my-md-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .m8-my-md-3 {
        margin-top: .75rem !important;
        margin-bottom: .75rem !important
    }

    .m8-my-md-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .m8-my-md-5 {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important
    }

    .m8-my-md-6 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .m8-my-md-7 {
        margin-top: 1.75rem !important;
        margin-bottom: 1.75rem !important
    }

    .m8-my-md-8 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }

    .m8-my-md-9 {
        margin-top: 2.25rem !important;
        margin-bottom: 2.25rem !important
    }

    .m8-my-md-10 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important
    }

    .m8-my-md-11 {
        margin-top: 2.75rem !important;
        margin-bottom: 2.75rem !important
    }

    .m8-my-md-12 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .m8-my-md-13 {
        margin-top: 3.25rem !important;
        margin-bottom: 3.25rem !important
    }

    .m8-my-md-14 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important
    }

    .m8-my-md-15 {
        margin-top: 3.75rem !important;
        margin-bottom: 3.75rem !important
    }

    .m8-my-md-16 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important
    }

    .m8-my-md-17 {
        margin-top: 4.25rem !important;
        margin-bottom: 4.25rem !important
    }

    .m8-my-md-18 {
        margin-top: 4.5rem !important;
        margin-bottom: 4.5rem !important
    }

    .m8-my-md-19 {
        margin-top: 4.75rem !important;
        margin-bottom: 4.75rem !important
    }

    .m8-my-md-20 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important
    }

    .m8-my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .m8-mt-md-0 {
        margin-top: 0 !important
    }

    .m8-mt-md-1 {
        margin-top: .25rem !important
    }

    .m8-mt-md-2 {
        margin-top: .5rem !important
    }

    .m8-mt-md-3 {
        margin-top: .75rem !important
    }

    .m8-mt-md-4 {
        margin-top: 1rem !important
    }

    .m8-mt-md-5 {
        margin-top: 1.25rem !important
    }

    .m8-mt-md-6 {
        margin-top: 1.5rem !important
    }

    .m8-mt-md-7 {
        margin-top: 1.75rem !important
    }

    .m8-mt-md-8 {
        margin-top: 2rem !important
    }

    .m8-mt-md-9 {
        margin-top: 2.25rem !important
    }

    .m8-mt-md-10 {
        margin-top: 2.5rem !important
    }

    .m8-mt-md-11 {
        margin-top: 2.75rem !important
    }

    .m8-mt-md-12 {
        margin-top: 3rem !important
    }

    .m8-mt-md-13 {
        margin-top: 3.25rem !important
    }

    .m8-mt-md-14 {
        margin-top: 3.5rem !important
    }

    .m8-mt-md-15 {
        margin-top: 3.75rem !important
    }

    .m8-mt-md-16 {
        margin-top: 4rem !important
    }

    .m8-mt-md-17 {
        margin-top: 4.25rem !important
    }

    .m8-mt-md-18 {
        margin-top: 4.5rem !important
    }

    .m8-mt-md-19 {
        margin-top: 4.75rem !important
    }

    .m8-mt-md-20 {
        margin-top: 5rem !important
    }

    .m8-mt-md-auto {
        margin-top: auto !important
    }

    .m8-me-md-0 {
        margin-right: 0 !important
    }

    .m8-me-md-1 {
        margin-right: .25rem !important
    }

    .m8-me-md-2 {
        margin-right: .5rem !important
    }

    .m8-me-md-3 {
        margin-right: .75rem !important
    }

    .m8-me-md-4 {
        margin-right: 1rem !important
    }

    .m8-me-md-5 {
        margin-right: 1.25rem !important
    }

    .m8-me-md-6 {
        margin-right: 1.5rem !important
    }

    .m8-me-md-7 {
        margin-right: 1.75rem !important
    }

    .m8-me-md-8 {
        margin-right: 2rem !important
    }

    .m8-me-md-9 {
        margin-right: 2.25rem !important
    }

    .m8-me-md-10 {
        margin-right: 2.5rem !important
    }

    .m8-me-md-11 {
        margin-right: 2.75rem !important
    }

    .m8-me-md-12 {
        margin-right: 3rem !important
    }

    .m8-me-md-13 {
        margin-right: 3.25rem !important
    }

    .m8-me-md-14 {
        margin-right: 3.5rem !important
    }

    .m8-me-md-15 {
        margin-right: 3.75rem !important
    }

    .m8-me-md-16 {
        margin-right: 4rem !important
    }

    .m8-me-md-17 {
        margin-right: 4.25rem !important
    }

    .m8-me-md-18 {
        margin-right: 4.5rem !important
    }

    .m8-me-md-19 {
        margin-right: 4.75rem !important
    }

    .m8-me-md-20 {
        margin-right: 5rem !important
    }

    .m8-me-md-auto {
        margin-right: auto !important
    }

    .m8-mb-md-0 {
        margin-bottom: 0 !important
    }

    .m8-mb-md-1 {
        margin-bottom: .25rem !important
    }

    .m8-mb-md-2 {
        margin-bottom: .5rem !important
    }

    .m8-mb-md-3 {
        margin-bottom: .75rem !important
    }

    .m8-mb-md-4 {
        margin-bottom: 1rem !important
    }

    .m8-mb-md-5 {
        margin-bottom: 1.25rem !important
    }

    .m8-mb-md-6 {
        margin-bottom: 1.5rem !important
    }

    .m8-mb-md-7 {
        margin-bottom: 1.75rem !important
    }

    .m8-mb-md-8 {
        margin-bottom: 2rem !important
    }

    .m8-mb-md-9 {
        margin-bottom: 2.25rem !important
    }

    .m8-mb-md-10 {
        margin-bottom: 2.5rem !important
    }

    .m8-mb-md-11 {
        margin-bottom: 2.75rem !important
    }

    .m8-mb-md-12 {
        margin-bottom: 3rem !important
    }

    .m8-mb-md-13 {
        margin-bottom: 3.25rem !important
    }

    .m8-mb-md-14 {
        margin-bottom: 3.5rem !important
    }

    .m8-mb-md-15 {
        margin-bottom: 3.75rem !important
    }

    .m8-mb-md-16 {
        margin-bottom: 4rem !important
    }

    .m8-mb-md-17 {
        margin-bottom: 4.25rem !important
    }

    .m8-mb-md-18 {
        margin-bottom: 4.5rem !important
    }

    .m8-mb-md-19 {
        margin-bottom: 4.75rem !important
    }

    .m8-mb-md-20 {
        margin-bottom: 5rem !important
    }

    .m8-mb-md-auto {
        margin-bottom: auto !important
    }

    .m8-ms-md-0 {
        margin-left: 0 !important
    }

    .m8-ms-md-1 {
        margin-left: .25rem !important
    }

    .m8-ms-md-2 {
        margin-left: .5rem !important
    }

    .m8-ms-md-3 {
        margin-left: .75rem !important
    }

    .m8-ms-md-4 {
        margin-left: 1rem !important
    }

    .m8-ms-md-5 {
        margin-left: 1.25rem !important
    }

    .m8-ms-md-6 {
        margin-left: 1.5rem !important
    }

    .m8-ms-md-7 {
        margin-left: 1.75rem !important
    }

    .m8-ms-md-8 {
        margin-left: 2rem !important
    }

    .m8-ms-md-9 {
        margin-left: 2.25rem !important
    }

    .m8-ms-md-10 {
        margin-left: 2.5rem !important
    }

    .m8-ms-md-11 {
        margin-left: 2.75rem !important
    }

    .m8-ms-md-12 {
        margin-left: 3rem !important
    }

    .m8-ms-md-13 {
        margin-left: 3.25rem !important
    }

    .m8-ms-md-14 {
        margin-left: 3.5rem !important
    }

    .m8-ms-md-15 {
        margin-left: 3.75rem !important
    }

    .m8-ms-md-16 {
        margin-left: 4rem !important
    }

    .m8-ms-md-17 {
        margin-left: 4.25rem !important
    }

    .m8-ms-md-18 {
        margin-left: 4.5rem !important
    }

    .m8-ms-md-19 {
        margin-left: 4.75rem !important
    }

    .m8-ms-md-20 {
        margin-left: 5rem !important
    }

    .m8-ms-md-auto {
        margin-left: auto !important
    }

    .m8-m-md-n1 {
        margin: -.25rem !important
    }

    .m8-m-md-n2 {
        margin: -.5rem !important
    }

    .m8-m-md-n3 {
        margin: -.75rem !important
    }

    .m8-m-md-n4 {
        margin: -1rem !important
    }

    .m8-m-md-n5 {
        margin: -1.25rem !important
    }

    .m8-m-md-n6 {
        margin: -1.5rem !important
    }

    .m8-m-md-n7 {
        margin: -1.75rem !important
    }

    .m8-m-md-n8 {
        margin: -2rem !important
    }

    .m8-m-md-n9 {
        margin: -2.25rem !important
    }

    .m8-m-md-n10 {
        margin: -2.5rem !important
    }

    .m8-m-md-n11 {
        margin: -2.75rem !important
    }

    .m8-m-md-n12 {
        margin: -3rem !important
    }

    .m8-m-md-n13 {
        margin: -3.25rem !important
    }

    .m8-m-md-n14 {
        margin: -3.5rem !important
    }

    .m8-m-md-n15 {
        margin: -3.75rem !important
    }

    .m8-m-md-n16 {
        margin: -4rem !important
    }

    .m8-m-md-n17 {
        margin: -4.25rem !important
    }

    .m8-m-md-n18 {
        margin: -4.5rem !important
    }

    .m8-m-md-n19 {
        margin: -4.75rem !important
    }

    .m8-m-md-n20 {
        margin: -5rem !important
    }

    .m8-mx-md-n1 {
        margin-right: -.25rem !important;
        margin-left: -.25rem !important
    }

    .m8-mx-md-n2 {
        margin-right: -.5rem !important;
        margin-left: -.5rem !important
    }

    .m8-mx-md-n3 {
        margin-right: -.75rem !important;
        margin-left: -.75rem !important
    }

    .m8-mx-md-n4 {
        margin-right: -1rem !important;
        margin-left: -1rem !important
    }

    .m8-mx-md-n5 {
        margin-right: -1.25rem !important;
        margin-left: -1.25rem !important
    }

    .m8-mx-md-n6 {
        margin-right: -1.5rem !important;
        margin-left: -1.5rem !important
    }

    .m8-mx-md-n7 {
        margin-right: -1.75rem !important;
        margin-left: -1.75rem !important
    }

    .m8-mx-md-n8 {
        margin-right: -2rem !important;
        margin-left: -2rem !important
    }

    .m8-mx-md-n9 {
        margin-right: -2.25rem !important;
        margin-left: -2.25rem !important
    }

    .m8-mx-md-n10 {
        margin-right: -2.5rem !important;
        margin-left: -2.5rem !important
    }

    .m8-mx-md-n11 {
        margin-right: -2.75rem !important;
        margin-left: -2.75rem !important
    }

    .m8-mx-md-n12 {
        margin-right: -3rem !important;
        margin-left: -3rem !important
    }

    .m8-mx-md-n13 {
        margin-right: -3.25rem !important;
        margin-left: -3.25rem !important
    }

    .m8-mx-md-n14 {
        margin-right: -3.5rem !important;
        margin-left: -3.5rem !important
    }

    .m8-mx-md-n15 {
        margin-right: -3.75rem !important;
        margin-left: -3.75rem !important
    }

    .m8-mx-md-n16 {
        margin-right: -4rem !important;
        margin-left: -4rem !important
    }

    .m8-mx-md-n17 {
        margin-right: -4.25rem !important;
        margin-left: -4.25rem !important
    }

    .m8-mx-md-n18 {
        margin-right: -4.5rem !important;
        margin-left: -4.5rem !important
    }

    .m8-mx-md-n19 {
        margin-right: -4.75rem !important;
        margin-left: -4.75rem !important
    }

    .m8-mx-md-n20 {
        margin-right: -5rem !important;
        margin-left: -5rem !important
    }

    .m8-my-md-n1 {
        margin-top: -.25rem !important;
        margin-bottom: -.25rem !important
    }

    .m8-my-md-n2 {
        margin-top: -.5rem !important;
        margin-bottom: -.5rem !important
    }

    .m8-my-md-n3 {
        margin-top: -.75rem !important;
        margin-bottom: -.75rem !important
    }

    .m8-my-md-n4 {
        margin-top: -1rem !important;
        margin-bottom: -1rem !important
    }

    .m8-my-md-n5 {
        margin-top: -1.25rem !important;
        margin-bottom: -1.25rem !important
    }

    .m8-my-md-n6 {
        margin-top: -1.5rem !important;
        margin-bottom: -1.5rem !important
    }

    .m8-my-md-n7 {
        margin-top: -1.75rem !important;
        margin-bottom: -1.75rem !important
    }

    .m8-my-md-n8 {
        margin-top: -2rem !important;
        margin-bottom: -2rem !important
    }

    .m8-my-md-n9 {
        margin-top: -2.25rem !important;
        margin-bottom: -2.25rem !important
    }

    .m8-my-md-n10 {
        margin-top: -2.5rem !important;
        margin-bottom: -2.5rem !important
    }

    .m8-my-md-n11 {
        margin-top: -2.75rem !important;
        margin-bottom: -2.75rem !important
    }

    .m8-my-md-n12 {
        margin-top: -3rem !important;
        margin-bottom: -3rem !important
    }

    .m8-my-md-n13 {
        margin-top: -3.25rem !important;
        margin-bottom: -3.25rem !important
    }

    .m8-my-md-n14 {
        margin-top: -3.5rem !important;
        margin-bottom: -3.5rem !important
    }

    .m8-my-md-n15 {
        margin-top: -3.75rem !important;
        margin-bottom: -3.75rem !important
    }

    .m8-my-md-n16 {
        margin-top: -4rem !important;
        margin-bottom: -4rem !important
    }

    .m8-my-md-n17 {
        margin-top: -4.25rem !important;
        margin-bottom: -4.25rem !important
    }

    .m8-my-md-n18 {
        margin-top: -4.5rem !important;
        margin-bottom: -4.5rem !important
    }

    .m8-my-md-n19 {
        margin-top: -4.75rem !important;
        margin-bottom: -4.75rem !important
    }

    .m8-my-md-n20 {
        margin-top: -5rem !important;
        margin-bottom: -5rem !important
    }

    .m8-mt-md-n1 {
        margin-top: -.25rem !important
    }

    .m8-mt-md-n2 {
        margin-top: -.5rem !important
    }

    .m8-mt-md-n3 {
        margin-top: -.75rem !important
    }

    .m8-mt-md-n4 {
        margin-top: -1rem !important
    }

    .m8-mt-md-n5 {
        margin-top: -1.25rem !important
    }

    .m8-mt-md-n6 {
        margin-top: -1.5rem !important
    }

    .m8-mt-md-n7 {
        margin-top: -1.75rem !important
    }

    .m8-mt-md-n8 {
        margin-top: -2rem !important
    }

    .m8-mt-md-n9 {
        margin-top: -2.25rem !important
    }

    .m8-mt-md-n10 {
        margin-top: -2.5rem !important
    }

    .m8-mt-md-n11 {
        margin-top: -2.75rem !important
    }

    .m8-mt-md-n12 {
        margin-top: -3rem !important
    }

    .m8-mt-md-n13 {
        margin-top: -3.25rem !important
    }

    .m8-mt-md-n14 {
        margin-top: -3.5rem !important
    }

    .m8-mt-md-n15 {
        margin-top: -3.75rem !important
    }

    .m8-mt-md-n16 {
        margin-top: -4rem !important
    }

    .m8-mt-md-n17 {
        margin-top: -4.25rem !important
    }

    .m8-mt-md-n18 {
        margin-top: -4.5rem !important
    }

    .m8-mt-md-n19 {
        margin-top: -4.75rem !important
    }

    .m8-mt-md-n20 {
        margin-top: -5rem !important
    }

    .m8-me-md-n1 {
        margin-right: -.25rem !important
    }

    .m8-me-md-n2 {
        margin-right: -.5rem !important
    }

    .m8-me-md-n3 {
        margin-right: -.75rem !important
    }

    .m8-me-md-n4 {
        margin-right: -1rem !important
    }

    .m8-me-md-n5 {
        margin-right: -1.25rem !important
    }

    .m8-me-md-n6 {
        margin-right: -1.5rem !important
    }

    .m8-me-md-n7 {
        margin-right: -1.75rem !important
    }

    .m8-me-md-n8 {
        margin-right: -2rem !important
    }

    .m8-me-md-n9 {
        margin-right: -2.25rem !important
    }

    .m8-me-md-n10 {
        margin-right: -2.5rem !important
    }

    .m8-me-md-n11 {
        margin-right: -2.75rem !important
    }

    .m8-me-md-n12 {
        margin-right: -3rem !important
    }

    .m8-me-md-n13 {
        margin-right: -3.25rem !important
    }

    .m8-me-md-n14 {
        margin-right: -3.5rem !important
    }

    .m8-me-md-n15 {
        margin-right: -3.75rem !important
    }

    .m8-me-md-n16 {
        margin-right: -4rem !important
    }

    .m8-me-md-n17 {
        margin-right: -4.25rem !important
    }

    .m8-me-md-n18 {
        margin-right: -4.5rem !important
    }

    .m8-me-md-n19 {
        margin-right: -4.75rem !important
    }

    .m8-me-md-n20 {
        margin-right: -5rem !important
    }

    .m8-mb-md-n1 {
        margin-bottom: -.25rem !important
    }

    .m8-mb-md-n2 {
        margin-bottom: -.5rem !important
    }

    .m8-mb-md-n3 {
        margin-bottom: -.75rem !important
    }

    .m8-mb-md-n4 {
        margin-bottom: -1rem !important
    }

    .m8-mb-md-n5 {
        margin-bottom: -1.25rem !important
    }

    .m8-mb-md-n6 {
        margin-bottom: -1.5rem !important
    }

    .m8-mb-md-n7 {
        margin-bottom: -1.75rem !important
    }

    .m8-mb-md-n8 {
        margin-bottom: -2rem !important
    }

    .m8-mb-md-n9 {
        margin-bottom: -2.25rem !important
    }

    .m8-mb-md-n10 {
        margin-bottom: -2.5rem !important
    }

    .m8-mb-md-n11 {
        margin-bottom: -2.75rem !important
    }

    .m8-mb-md-n12 {
        margin-bottom: -3rem !important
    }

    .m8-mb-md-n13 {
        margin-bottom: -3.25rem !important
    }

    .m8-mb-md-n14 {
        margin-bottom: -3.5rem !important
    }

    .m8-mb-md-n15 {
        margin-bottom: -3.75rem !important
    }

    .m8-mb-md-n16 {
        margin-bottom: -4rem !important
    }

    .m8-mb-md-n17 {
        margin-bottom: -4.25rem !important
    }

    .m8-mb-md-n18 {
        margin-bottom: -4.5rem !important
    }

    .m8-mb-md-n19 {
        margin-bottom: -4.75rem !important
    }

    .m8-mb-md-n20 {
        margin-bottom: -5rem !important
    }

    .m8-ms-md-n1 {
        margin-left: -.25rem !important
    }

    .m8-ms-md-n2 {
        margin-left: -.5rem !important
    }

    .m8-ms-md-n3 {
        margin-left: -.75rem !important
    }

    .m8-ms-md-n4 {
        margin-left: -1rem !important
    }

    .m8-ms-md-n5 {
        margin-left: -1.25rem !important
    }

    .m8-ms-md-n6 {
        margin-left: -1.5rem !important
    }

    .m8-ms-md-n7 {
        margin-left: -1.75rem !important
    }

    .m8-ms-md-n8 {
        margin-left: -2rem !important
    }

    .m8-ms-md-n9 {
        margin-left: -2.25rem !important
    }

    .m8-ms-md-n10 {
        margin-left: -2.5rem !important
    }

    .m8-ms-md-n11 {
        margin-left: -2.75rem !important
    }

    .m8-ms-md-n12 {
        margin-left: -3rem !important
    }

    .m8-ms-md-n13 {
        margin-left: -3.25rem !important
    }

    .m8-ms-md-n14 {
        margin-left: -3.5rem !important
    }

    .m8-ms-md-n15 {
        margin-left: -3.75rem !important
    }

    .m8-ms-md-n16 {
        margin-left: -4rem !important
    }

    .m8-ms-md-n17 {
        margin-left: -4.25rem !important
    }

    .m8-ms-md-n18 {
        margin-left: -4.5rem !important
    }

    .m8-ms-md-n19 {
        margin-left: -4.75rem !important
    }

    .m8-ms-md-n20 {
        margin-left: -5rem !important
    }

    .m8-p-md-0 {
        padding: 0 !important
    }

    .m8-p-md-1 {
        padding: .25rem !important
    }

    .m8-p-md-2 {
        padding: .5rem !important
    }

    .m8-p-md-3 {
        padding: .75rem !important
    }

    .m8-p-md-4 {
        padding: 1rem !important
    }

    .m8-p-md-5 {
        padding: 1.25rem !important
    }

    .m8-p-md-6 {
        padding: 1.5rem !important
    }

    .m8-p-md-7 {
        padding: 1.75rem !important
    }

    .m8-p-md-8 {
        padding: 2rem !important
    }

    .m8-p-md-9 {
        padding: 2.25rem !important
    }

    .m8-p-md-10 {
        padding: 2.5rem !important
    }

    .m8-p-md-11 {
        padding: 2.75rem !important
    }

    .m8-p-md-12 {
        padding: 3rem !important
    }

    .m8-p-md-13 {
        padding: 3.25rem !important
    }

    .m8-p-md-14 {
        padding: 3.5rem !important
    }

    .m8-p-md-15 {
        padding: 3.75rem !important
    }

    .m8-p-md-16 {
        padding: 4rem !important
    }

    .m8-p-md-17 {
        padding: 4.25rem !important
    }

    .m8-p-md-18 {
        padding: 4.5rem !important
    }

    .m8-p-md-19 {
        padding: 4.75rem !important
    }

    .m8-p-md-20 {
        padding: 5rem !important
    }

    .m8-px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .m8-px-md-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .m8-px-md-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .m8-px-md-3 {
        padding-right: .75rem !important;
        padding-left: .75rem !important
    }

    .m8-px-md-4 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .m8-px-md-5 {
        padding-right: 1.25rem !important;
        padding-left: 1.25rem !important
    }

    .m8-px-md-6 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .m8-px-md-7 {
        padding-right: 1.75rem !important;
        padding-left: 1.75rem !important
    }

    .m8-px-md-8 {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }

    .m8-px-md-9 {
        padding-right: 2.25rem !important;
        padding-left: 2.25rem !important
    }

    .m8-px-md-10 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important
    }

    .m8-px-md-11 {
        padding-right: 2.75rem !important;
        padding-left: 2.75rem !important
    }

    .m8-px-md-12 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .m8-px-md-13 {
        padding-right: 3.25rem !important;
        padding-left: 3.25rem !important
    }

    .m8-px-md-14 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important
    }

    .m8-px-md-15 {
        padding-right: 3.75rem !important;
        padding-left: 3.75rem !important
    }

    .m8-px-md-16 {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }

    .m8-px-md-17 {
        padding-right: 4.25rem !important;
        padding-left: 4.25rem !important
    }

    .m8-px-md-18 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !important
    }

    .m8-px-md-19 {
        padding-right: 4.75rem !important;
        padding-left: 4.75rem !important
    }

    .m8-px-md-20 {
        padding-right: 5rem !important;
        padding-left: 5rem !important
    }

    .m8-py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .m8-py-md-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .m8-py-md-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .m8-py-md-3 {
        padding-top: .75rem !important;
        padding-bottom: .75rem !important
    }

    .m8-py-md-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .m8-py-md-5 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important
    }

    .m8-py-md-6 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .m8-py-md-7 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important
    }

    .m8-py-md-8 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }

    .m8-py-md-9 {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important
    }

    .m8-py-md-10 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important
    }

    .m8-py-md-11 {
        padding-top: 2.75rem !important;
        padding-bottom: 2.75rem !important
    }

    .m8-py-md-12 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .m8-py-md-13 {
        padding-top: 3.25rem !important;
        padding-bottom: 3.25rem !important
    }

    .m8-py-md-14 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important
    }

    .m8-py-md-15 {
        padding-top: 3.75rem !important;
        padding-bottom: 3.75rem !important
    }

    .m8-py-md-16 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }

    .m8-py-md-17 {
        padding-top: 4.25rem !important;
        padding-bottom: 4.25rem !important
    }

    .m8-py-md-18 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important
    }

    .m8-py-md-19 {
        padding-top: 4.75rem !important;
        padding-bottom: 4.75rem !important
    }

    .m8-py-md-20 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important
    }

    .m8-pt-md-0 {
        padding-top: 0 !important
    }

    .m8-pt-md-1 {
        padding-top: .25rem !important
    }

    .m8-pt-md-2 {
        padding-top: .5rem !important
    }

    .m8-pt-md-3 {
        padding-top: .75rem !important
    }

    .m8-pt-md-4 {
        padding-top: 1rem !important
    }

    .m8-pt-md-5 {
        padding-top: 1.25rem !important
    }

    .m8-pt-md-6 {
        padding-top: 1.5rem !important
    }

    .m8-pt-md-7 {
        padding-top: 1.75rem !important
    }

    .m8-pt-md-8 {
        padding-top: 2rem !important
    }

    .m8-pt-md-9 {
        padding-top: 2.25rem !important
    }

    .m8-pt-md-10 {
        padding-top: 2.5rem !important
    }

    .m8-pt-md-11 {
        padding-top: 2.75rem !important
    }

    .m8-pt-md-12 {
        padding-top: 3rem !important
    }

    .m8-pt-md-13 {
        padding-top: 3.25rem !important
    }

    .m8-pt-md-14 {
        padding-top: 3.5rem !important
    }

    .m8-pt-md-15 {
        padding-top: 3.75rem !important
    }

    .m8-pt-md-16 {
        padding-top: 4rem !important
    }

    .m8-pt-md-17 {
        padding-top: 4.25rem !important
    }

    .m8-pt-md-18 {
        padding-top: 4.5rem !important
    }

    .m8-pt-md-19 {
        padding-top: 4.75rem !important
    }

    .m8-pt-md-20 {
        padding-top: 5rem !important
    }

    .m8-pe-md-0 {
        padding-right: 0 !important
    }

    .m8-pe-md-1 {
        padding-right: .25rem !important
    }

    .m8-pe-md-2 {
        padding-right: .5rem !important
    }

    .m8-pe-md-3 {
        padding-right: .75rem !important
    }

    .m8-pe-md-4 {
        padding-right: 1rem !important
    }

    .m8-pe-md-5 {
        padding-right: 1.25rem !important
    }

    .m8-pe-md-6 {
        padding-right: 1.5rem !important
    }

    .m8-pe-md-7 {
        padding-right: 1.75rem !important
    }

    .m8-pe-md-8 {
        padding-right: 2rem !important
    }

    .m8-pe-md-9 {
        padding-right: 2.25rem !important
    }

    .m8-pe-md-10 {
        padding-right: 2.5rem !important
    }

    .m8-pe-md-11 {
        padding-right: 2.75rem !important
    }

    .m8-pe-md-12 {
        padding-right: 3rem !important
    }

    .m8-pe-md-13 {
        padding-right: 3.25rem !important
    }

    .m8-pe-md-14 {
        padding-right: 3.5rem !important
    }

    .m8-pe-md-15 {
        padding-right: 3.75rem !important
    }

    .m8-pe-md-16 {
        padding-right: 4rem !important
    }

    .m8-pe-md-17 {
        padding-right: 4.25rem !important
    }

    .m8-pe-md-18 {
        padding-right: 4.5rem !important
    }

    .m8-pe-md-19 {
        padding-right: 4.75rem !important
    }

    .m8-pe-md-20 {
        padding-right: 5rem !important
    }

    .m8-pb-md-0 {
        padding-bottom: 0 !important
    }

    .m8-pb-md-1 {
        padding-bottom: .25rem !important
    }

    .m8-pb-md-2 {
        padding-bottom: .5rem !important
    }

    .m8-pb-md-3 {
        padding-bottom: .75rem !important
    }

    .m8-pb-md-4 {
        padding-bottom: 1rem !important
    }

    .m8-pb-md-5 {
        padding-bottom: 1.25rem !important
    }

    .m8-pb-md-6 {
        padding-bottom: 1.5rem !important
    }

    .m8-pb-md-7 {
        padding-bottom: 1.75rem !important
    }

    .m8-pb-md-8 {
        padding-bottom: 2rem !important
    }

    .m8-pb-md-9 {
        padding-bottom: 2.25rem !important
    }

    .m8-pb-md-10 {
        padding-bottom: 2.5rem !important
    }

    .m8-pb-md-11 {
        padding-bottom: 2.75rem !important
    }

    .m8-pb-md-12 {
        padding-bottom: 3rem !important
    }

    .m8-pb-md-13 {
        padding-bottom: 3.25rem !important
    }

    .m8-pb-md-14 {
        padding-bottom: 3.5rem !important
    }

    .m8-pb-md-15 {
        padding-bottom: 3.75rem !important
    }

    .m8-pb-md-16 {
        padding-bottom: 4rem !important
    }

    .m8-pb-md-17 {
        padding-bottom: 4.25rem !important
    }

    .m8-pb-md-18 {
        padding-bottom: 4.5rem !important
    }

    .m8-pb-md-19 {
        padding-bottom: 4.75rem !important
    }

    .m8-pb-md-20 {
        padding-bottom: 5rem !important
    }

    .m8-ps-md-0 {
        padding-left: 0 !important
    }

    .m8-ps-md-1 {
        padding-left: .25rem !important
    }

    .m8-ps-md-2 {
        padding-left: .5rem !important
    }

    .m8-ps-md-3 {
        padding-left: .75rem !important
    }

    .m8-ps-md-4 {
        padding-left: 1rem !important
    }

    .m8-ps-md-5 {
        padding-left: 1.25rem !important
    }

    .m8-ps-md-6 {
        padding-left: 1.5rem !important
    }

    .m8-ps-md-7 {
        padding-left: 1.75rem !important
    }

    .m8-ps-md-8 {
        padding-left: 2rem !important
    }

    .m8-ps-md-9 {
        padding-left: 2.25rem !important
    }

    .m8-ps-md-10 {
        padding-left: 2.5rem !important
    }

    .m8-ps-md-11 {
        padding-left: 2.75rem !important
    }

    .m8-ps-md-12 {
        padding-left: 3rem !important
    }

    .m8-ps-md-13 {
        padding-left: 3.25rem !important
    }

    .m8-ps-md-14 {
        padding-left: 3.5rem !important
    }

    .m8-ps-md-15 {
        padding-left: 3.75rem !important
    }

    .m8-ps-md-16 {
        padding-left: 4rem !important
    }

    .m8-ps-md-17 {
        padding-left: 4.25rem !important
    }

    .m8-ps-md-18 {
        padding-left: 4.5rem !important
    }

    .m8-ps-md-19 {
        padding-left: 4.75rem !important
    }

    .m8-ps-md-20 {
        padding-left: 5rem !important
    }

    .m8-gap-md-0 {
        gap: 0 !important
    }

    .m8-gap-md-1 {
        gap: .25rem !important
    }

    .m8-gap-md-2 {
        gap: .5rem !important
    }

    .m8-gap-md-3 {
        gap: .75rem !important
    }

    .m8-gap-md-4 {
        gap: 1rem !important
    }

    .m8-gap-md-5 {
        gap: 1.25rem !important
    }

    .m8-gap-md-6 {
        gap: 1.5rem !important
    }

    .m8-gap-md-7 {
        gap: 1.75rem !important
    }

    .m8-gap-md-8 {
        gap: 2rem !important
    }

    .m8-gap-md-9 {
        gap: 2.25rem !important
    }

    .m8-gap-md-10 {
        gap: 2.5rem !important
    }

    .m8-gap-md-11 {
        gap: 2.75rem !important
    }

    .m8-gap-md-12 {
        gap: 3rem !important
    }

    .m8-gap-md-13 {
        gap: 3.25rem !important
    }

    .m8-gap-md-14 {
        gap: 3.5rem !important
    }

    .m8-gap-md-15 {
        gap: 3.75rem !important
    }

    .m8-gap-md-16 {
        gap: 4rem !important
    }

    .m8-gap-md-17 {
        gap: 4.25rem !important
    }

    .m8-gap-md-18 {
        gap: 4.5rem !important
    }

    .m8-gap-md-19 {
        gap: 4.75rem !important
    }

    .m8-gap-md-20 {
        gap: 5rem !important
    }

    .m8-row-gap-md-0 {
        row-gap: 0 !important
    }

    .m8-row-gap-md-1 {
        row-gap: .25rem !important
    }

    .m8-row-gap-md-2 {
        row-gap: .5rem !important
    }

    .m8-row-gap-md-3 {
        row-gap: .75rem !important
    }

    .m8-row-gap-md-4 {
        row-gap: 1rem !important
    }

    .m8-row-gap-md-5 {
        row-gap: 1.25rem !important
    }

    .m8-row-gap-md-6 {
        row-gap: 1.5rem !important
    }

    .m8-row-gap-md-7 {
        row-gap: 1.75rem !important
    }

    .m8-row-gap-md-8 {
        row-gap: 2rem !important
    }

    .m8-row-gap-md-9 {
        row-gap: 2.25rem !important
    }

    .m8-row-gap-md-10 {
        row-gap: 2.5rem !important
    }

    .m8-row-gap-md-11 {
        row-gap: 2.75rem !important
    }

    .m8-row-gap-md-12 {
        row-gap: 3rem !important
    }

    .m8-row-gap-md-13 {
        row-gap: 3.25rem !important
    }

    .m8-row-gap-md-14 {
        row-gap: 3.5rem !important
    }

    .m8-row-gap-md-15 {
        row-gap: 3.75rem !important
    }

    .m8-row-gap-md-16 {
        row-gap: 4rem !important
    }

    .m8-row-gap-md-17 {
        row-gap: 4.25rem !important
    }

    .m8-row-gap-md-18 {
        row-gap: 4.5rem !important
    }

    .m8-row-gap-md-19 {
        row-gap: 4.75rem !important
    }

    .m8-row-gap-md-20 {
        row-gap: 5rem !important
    }

    .m8-column-gap-md-0 {
        column-gap: 0 !important
    }

    .m8-column-gap-md-1 {
        column-gap: .25rem !important
    }

    .m8-column-gap-md-2 {
        column-gap: .5rem !important
    }

    .m8-column-gap-md-3 {
        column-gap: .75rem !important
    }

    .m8-column-gap-md-4 {
        column-gap: 1rem !important
    }

    .m8-column-gap-md-5 {
        column-gap: 1.25rem !important
    }

    .m8-column-gap-md-6 {
        column-gap: 1.5rem !important
    }

    .m8-column-gap-md-7 {
        column-gap: 1.75rem !important
    }

    .m8-column-gap-md-8 {
        column-gap: 2rem !important
    }

    .m8-column-gap-md-9 {
        column-gap: 2.25rem !important
    }

    .m8-column-gap-md-10 {
        column-gap: 2.5rem !important
    }

    .m8-column-gap-md-11 {
        column-gap: 2.75rem !important
    }

    .m8-column-gap-md-12 {
        column-gap: 3rem !important
    }

    .m8-column-gap-md-13 {
        column-gap: 3.25rem !important
    }

    .m8-column-gap-md-14 {
        column-gap: 3.5rem !important
    }

    .m8-column-gap-md-15 {
        column-gap: 3.75rem !important
    }

    .m8-column-gap-md-16 {
        column-gap: 4rem !important
    }

    .m8-column-gap-md-17 {
        column-gap: 4.25rem !important
    }

    .m8-column-gap-md-18 {
        column-gap: 4.5rem !important
    }

    .m8-column-gap-md-19 {
        column-gap: 4.75rem !important
    }

    .m8-column-gap-md-20 {
        column-gap: 5rem !important
    }

    .m8-fs-md-1 {
        font-size: calc(1.3rem + .6vw) !important
    }

    .m8-fs-md-2 {
        font-size: calc(1.275rem + .3vw) !important
    }

    .m8-fs-md-3 {
        font-size: calc(1.26rem + .12vw) !important
    }

    .m8-fs-md-4 {
        font-size: 1.25rem !important
    }

    .m8-fs-md-5 {
        font-size: 1.15rem !important
    }

    .m8-fs-md-6 {
        font-size: 1.075rem !important
    }

    .m8-fs-md-7 {
        font-size: .95rem !important
    }

    .m8-fs-md-8 {
        font-size: .85rem !important
    }

    .m8-fs-md-9 {
        font-size: .75rem !important
    }

    .m8-fs-md-10 {
        font-size: .5rem !important
    }

    .m8-fs-md-sm {
        font-size: .95rem !important
    }

    .m8-fs-md-base {
        font-size: 1rem !important
    }

    .m8-fs-md-lg {
        font-size: 1.075rem !important
    }

    .m8-fs-md-xl {
        font-size: 1.21rem !important
    }

    .m8-fs-md-fluid {
        font-size: 100% !important
    }

    .m8-fs-md-2x {
        font-size: calc(1.325rem + .9vw) !important
    }

    .m8-fs-md-2qx {
        font-size: calc(1.35rem + 1.2vw) !important
    }

    .m8-fs-md-2hx {
        font-size: calc(1.375rem + 1.5vw) !important
    }

    .m8-fs-md-2tx {
        font-size: calc(1.4rem + 1.8vw) !important
    }

    .m8-fs-md-3x {
        font-size: calc(1.425rem + 2.1vw) !important
    }

    .m8-fs-md-3qx {
        font-size: calc(1.45rem + 2.4vw) !important
    }

    .m8-fs-md-3hx {
        font-size: calc(1.475rem + 2.7vw) !important
    }

    .m8-fs-md-3tx {
        font-size: calc(1.5rem + 3vw) !important
    }

    .m8-fs-md-4x {
        font-size: calc(1.525rem + 3.3vw) !important
    }

    .m8-fs-md-4qx {
        font-size: calc(1.55rem + 3.6vw) !important
    }

    .m8-fs-md-4hx {
        font-size: calc(1.575rem + 3.9vw) !important
    }

    .m8-fs-md-4tx {
        font-size: calc(1.6rem + 4.2vw) !important
    }

    .m8-fs-md-5x {
        font-size: calc(1.625rem + 4.5vw) !important
    }

    .m8-fs-md-5qx {
        font-size: calc(1.65rem + 4.8vw) !important
    }

    .m8-fs-md-5hx {
        font-size: calc(1.675rem + 5.1vw) !important
    }

    .m8-fs-md-5tx {
        font-size: calc(1.7rem + 5.4vw) !important
    }

    .m8-fs-md-6x {
        font-size: calc(1.725rem + 5.7vw) !important
    }

    .m8-fs-md-6qx {
        font-size: calc(1.75rem + 6vw) !important
    }

    .m8-fs-md-6hx {
        font-size: calc(1.775rem + 6.3vw) !important
    }

    .m8-fs-md-6tx {
        font-size: calc(1.8rem + 6.6vw) !important
    }

    .m8-fs-md-7x {
        font-size: calc(1.825rem + 6.9vw) !important
    }

    .m8-fs-md-7qx {
        font-size: calc(1.85rem + 7.2vw) !important
    }

    .m8-fs-md-7hx {
        font-size: calc(1.875rem + 7.5vw) !important
    }

    .m8-fs-md-7tx {
        font-size: calc(1.9rem + 7.8vw) !important
    }

    .m8-text-md-start {
        text-align: left !important
    }

    .m8-text-md-end {
        text-align: right !important
    }

    .m8-text-md-center {
        text-align: center !important
    }

    .m8-min-w-md-unset {
        min-width: unset !important
    }

    .m8-min-w-md-25 {
        min-width: 25% !important
    }

    .m8-min-w-md-50 {
        min-width: 50% !important
    }

    .m8-min-w-md-75 {
        min-width: 75% !important
    }

    .m8-min-w-md-100 {
        min-width: 100% !important
    }

    .m8-min-w-md-auto {
        min-width: auto !important
    }

    .m8-min-w-md-1px {
        min-width: 1px !important
    }

    .m8-min-w-md-2px {
        min-width: 2px !important
    }

    .m8-min-w-md-3px {
        min-width: 3px !important
    }

    .m8-min-w-md-4px {
        min-width: 4px !important
    }

    .m8-min-w-md-5px {
        min-width: 5px !important
    }

    .m8-min-w-md-6px {
        min-width: 6px !important
    }

    .m8-min-w-md-7px {
        min-width: 7px !important
    }

    .m8-min-w-md-8px {
        min-width: 8px !important
    }

    .m8-min-w-md-9px {
        min-width: 9px !important
    }

    .m8-min-w-md-10px {
        min-width: 10px !important
    }

    .m8-min-w-md-15px {
        min-width: 15px !important
    }

    .m8-min-w-md-20px {
        min-width: 20px !important
    }

    .m8-min-w-md-25px {
        min-width: 25px !important
    }

    .m8-min-w-md-30px {
        min-width: 30px !important
    }

    .m8-min-w-md-35px {
        min-width: 35px !important
    }

    .m8-min-w-md-40px {
        min-width: 40px !important
    }

    .m8-min-w-md-45px {
        min-width: 45px !important
    }

    .m8-min-w-md-50px {
        min-width: 50px !important
    }

    .m8-min-w-md-55px {
        min-width: 55px !important
    }

    .m8-min-w-md-60px {
        min-width: 60px !important
    }

    .m8-min-w-md-65px {
        min-width: 65px !important
    }

    .m8-min-w-md-70px {
        min-width: 70px !important
    }

    .m8-min-w-md-75px {
        min-width: 75px !important
    }

    .m8-min-w-md-80px {
        min-width: 80px !important
    }

    .m8-min-w-md-85px {
        min-width: 85px !important
    }

    .m8-min-w-md-90px {
        min-width: 90px !important
    }

    .m8-min-w-md-95px {
        min-width: 95px !important
    }

    .m8-min-w-md-100px {
        min-width: 100px !important
    }

    .m8-min-w-md-125px {
        min-width: 125px !important
    }

    .m8-min-w-md-150px {
        min-width: 150px !important
    }

    .m8-min-w-md-175px {
        min-width: 175px !important
    }

    .m8-min-w-md-200px {
        min-width: 200px !important
    }

    .m8-min-w-md-225px {
        min-width: 225px !important
    }

    .m8-min-w-md-250px {
        min-width: 250px !important
    }

    .m8-min-w-md-275px {
        min-width: 275px !important
    }

    .m8-min-w-md-300px {
        min-width: 300px !important
    }

    .m8-min-w-md-325px {
        min-width: 325px !important
    }

    .m8-min-w-md-350px {
        min-width: 350px !important
    }

    .m8-min-w-md-375px {
        min-width: 375px !important
    }

    .m8-min-w-md-400px {
        min-width: 400px !important
    }

    .m8-min-w-md-425px {
        min-width: 425px !important
    }

    .m8-min-w-md-450px {
        min-width: 450px !important
    }

    .m8-min-w-md-475px {
        min-width: 475px !important
    }

    .m8-min-w-md-500px {
        min-width: 500px !important
    }

    .m8-min-w-md-550px {
        min-width: 550px !important
    }

    .m8-min-w-md-600px {
        min-width: 600px !important
    }

    .m8-min-w-md-650px {
        min-width: 650px !important
    }

    .m8-min-w-md-700px {
        min-width: 700px !important
    }

    .m8-min-w-md-750px {
        min-width: 750px !important
    }

    .m8-min-w-md-800px {
        min-width: 800px !important
    }

    .m8-min-w-md-850px {
        min-width: 850px !important
    }

    .m8-min-w-md-900px {
        min-width: 900px !important
    }

    .m8-min-w-md-950px {
        min-width: 950px !important
    }

    .m8-min-w-md-1000px {
        min-width: 1000px !important
    }

    .m8-min-h-md-unset {
        min-height: unset !important
    }

    .m8-min-h-md-25 {
        min-height: 25% !important
    }

    .m8-min-h-md-50 {
        min-height: 50% !important
    }

    .m8-min-h-md-75 {
        min-height: 75% !important
    }

    .m8-min-h-md-100 {
        min-height: 100% !important
    }

    .m8-min-h-md-auto {
        min-height: auto !important
    }

    .m8-min-h-md-1px {
        min-height: 1px !important
    }

    .m8-min-h-md-2px {
        min-height: 2px !important
    }

    .m8-min-h-md-3px {
        min-height: 3px !important
    }

    .m8-min-h-md-4px {
        min-height: 4px !important
    }

    .m8-min-h-md-5px {
        min-height: 5px !important
    }

    .m8-min-h-md-6px {
        min-height: 6px !important
    }

    .m8-min-h-md-7px {
        min-height: 7px !important
    }

    .m8-min-h-md-8px {
        min-height: 8px !important
    }

    .m8-min-h-md-9px {
        min-height: 9px !important
    }

    .m8-min-h-md-10px {
        min-height: 10px !important
    }

    .m8-min-h-md-15px {
        min-height: 15px !important
    }

    .m8-min-h-md-20px {
        min-height: 20px !important
    }

    .m8-min-h-md-25px {
        min-height: 25px !important
    }

    .m8-min-h-md-30px {
        min-height: 30px !important
    }

    .m8-min-h-md-35px {
        min-height: 35px !important
    }

    .m8-min-h-md-40px {
        min-height: 40px !important
    }

    .m8-min-h-md-45px {
        min-height: 45px !important
    }

    .m8-min-h-md-50px {
        min-height: 50px !important
    }

    .m8-min-h-md-55px {
        min-height: 55px !important
    }

    .m8-min-h-md-60px {
        min-height: 60px !important
    }

    .m8-min-h-md-65px {
        min-height: 65px !important
    }

    .m8-min-h-md-70px {
        min-height: 70px !important
    }

    .m8-min-h-md-75px {
        min-height: 75px !important
    }

    .m8-min-h-md-80px {
        min-height: 80px !important
    }

    .m8-min-h-md-85px {
        min-height: 85px !important
    }

    .m8-min-h-md-90px {
        min-height: 90px !important
    }

    .m8-min-h-md-95px {
        min-height: 95px !important
    }

    .m8-min-h-md-100px {
        min-height: 100px !important
    }

    .m8-min-h-md-125px {
        min-height: 125px !important
    }

    .m8-min-h-md-150px {
        min-height: 150px !important
    }

    .m8-min-h-md-175px {
        min-height: 175px !important
    }

    .m8-min-h-md-200px {
        min-height: 200px !important
    }

    .m8-min-h-md-225px {
        min-height: 225px !important
    }

    .m8-min-h-md-250px {
        min-height: 250px !important
    }

    .m8-min-h-md-275px {
        min-height: 275px !important
    }

    .m8-min-h-md-300px {
        min-height: 300px !important
    }

    .m8-min-h-md-325px {
        min-height: 325px !important
    }

    .m8-min-h-md-350px {
        min-height: 350px !important
    }

    .m8-min-h-md-375px {
        min-height: 375px !important
    }

    .m8-min-h-md-400px {
        min-height: 400px !important
    }

    .m8-min-h-md-425px {
        min-height: 425px !important
    }

    .m8-min-h-md-450px {
        min-height: 450px !important
    }

    .m8-min-h-md-475px {
        min-height: 475px !important
    }

    .m8-min-h-md-500px {
        min-height: 500px !important
    }

    .m8-min-h-md-550px {
        min-height: 550px !important
    }

    .m8-min-h-md-600px {
        min-height: 600px !important
    }

    .m8-min-h-md-650px {
        min-height: 650px !important
    }

    .m8-min-h-md-700px {
        min-height: 700px !important
    }

    .m8-min-h-md-750px {
        min-height: 750px !important
    }

    .m8-min-h-md-800px {
        min-height: 800px !important
    }

    .m8-min-h-md-850px {
        min-height: 850px !important
    }

    .m8-min-h-md-900px {
        min-height: 900px !important
    }

    .m8-min-h-md-950px {
        min-height: 950px !important
    }

    .m8-min-h-md-1000px {
        min-height: 1000px !important
    }
}

@media (min-width:992px) {
    .m8-float-lg-start {
        float: left !important
    }

    .m8-float-lg-end {
        float: right !important
    }

    .m8-float-lg-none {
        float: none !important
    }

    .m8-object-fit-lg-contain {
        object-fit: contain !important
    }

    .m8-object-fit-lg-cover {
        object-fit: cover !important
    }

    .m8-object-fit-lg-fill {
        object-fit: fill !important
    }

    .m8-object-fit-lg-scale {
        object-fit: scale-down !important
    }

    .m8-object-fit-lg-none {
        object-fit: none !important
    }

    .m8-overflow-lg-auto {
        overflow: auto !important
    }

    .m8-overflow-lg-hidden {
        overflow: hidden !important
    }

    .m8-overflow-lg-visible {
        overflow: visible !important
    }

    .m8-overflow-lg-scroll {
        overflow: scroll !important
    }

    .m8-d-lg-inline {
        display: inline !important
    }

    .m8-d-lg-inline-block {
        display: inline-block !important
    }

    .m8-d-lg-block {
        display: block !important
    }

    .m8-d-lg-grid {
        display: grid !important
    }

    .m8-d-lg-inline-grid {
        display: inline-grid !important
    }

    .m8-d-lg-table {
        display: table !important
    }

    .m8-d-lg-table-row {
        display: table-row !important
    }

    .m8-d-lg-table-cell {
        display: table-cell !important
    }

    .m8-d-lg-flex {
        display: flex !important
    }

    .m8-d-lg-inline-flex {
        display: inline-flex !important
    }

    .m8-d-lg-none {
        display: none !important
    }

    .m8-position-lg-static {
        position: static !important
    }

    .m8-position-lg-relative {
        position: relative !important
    }

    .m8-position-lg-absolute {
        position: absolute !important
    }

    .m8-position-lg-fixed {
        position: fixed !important
    }

    .m8-position-lg-sticky {
        position: sticky !important
    }

    .m8-w-lg-unset {
        width: unset !important
    }

    .m8-w-lg-25 {
        width: 25% !important
    }

    .m8-w-lg-50 {
        width: 50% !important
    }

    .m8-w-lg-75 {
        width: 75% !important
    }

    .m8-w-lg-100 {
        width: 100% !important
    }

    .m8-w-lg-auto {
        width: auto !important
    }

    .m8-w-lg-1px {
        width: 1px !important
    }

    .m8-w-lg-2px {
        width: 2px !important
    }

    .m8-w-lg-3px {
        width: 3px !important
    }

    .m8-w-lg-4px {
        width: 4px !important
    }

    .m8-w-lg-5px {
        width: 5px !important
    }

    .m8-w-lg-6px {
        width: 6px !important
    }

    .m8-w-lg-7px {
        width: 7px !important
    }

    .m8-w-lg-8px {
        width: 8px !important
    }

    .m8-w-lg-9px {
        width: 9px !important
    }

    .m8-w-lg-10px {
        width: 10px !important
    }

    .m8-w-lg-15px {
        width: 15px !important
    }

    .m8-w-lg-20px {
        width: 20px !important
    }

    .m8-w-lg-25px {
        width: 25px !important
    }

    .m8-w-lg-30px {
        width: 30px !important
    }

    .m8-w-lg-35px {
        width: 35px !important
    }

    .m8-w-lg-40px {
        width: 40px !important
    }

    .m8-w-lg-45px {
        width: 45px !important
    }

    .m8-w-lg-50px {
        width: 50px !important
    }

    .m8-w-lg-55px {
        width: 55px !important
    }

    .m8-w-lg-60px {
        width: 60px !important
    }

    .m8-w-lg-65px {
        width: 65px !important
    }

    .m8-w-lg-70px {
        width: 70px !important
    }

    .m8-w-lg-75px {
        width: 75px !important
    }

    .m8-w-lg-80px {
        width: 80px !important
    }

    .m8-w-lg-85px {
        width: 85px !important
    }

    .m8-w-lg-90px {
        width: 90px !important
    }

    .m8-w-lg-95px {
        width: 95px !important
    }

    .m8-w-lg-100px {
        width: 100px !important
    }

    .m8-w-lg-125px {
        width: 125px !important
    }

    .m8-w-lg-150px {
        width: 150px !important
    }

    .m8-w-lg-175px {
        width: 175px !important
    }

    .m8-w-lg-200px {
        width: 200px !important
    }

    .m8-w-lg-225px {
        width: 225px !important
    }

    .m8-w-lg-250px {
        width: 250px !important
    }

    .m8-w-lg-275px {
        width: 275px !important
    }

    .m8-w-lg-300px {
        width: 300px !important
    }

    .m8-w-lg-325px {
        width: 325px !important
    }

    .m8-w-lg-350px {
        width: 350px !important
    }

    .m8-w-lg-375px {
        width: 375px !important
    }

    .m8-w-lg-400px {
        width: 400px !important
    }

    .m8-w-lg-425px {
        width: 425px !important
    }

    .m8-w-lg-450px {
        width: 450px !important
    }

    .m8-w-lg-475px {
        width: 475px !important
    }

    .m8-w-lg-500px {
        width: 500px !important
    }

    .m8-w-lg-550px {
        width: 550px !important
    }

    .m8-w-lg-600px {
        width: 600px !important
    }

    .m8-w-lg-650px {
        width: 650px !important
    }

    .m8-w-lg-700px {
        width: 700px !important
    }

    .m8-w-lg-750px {
        width: 750px !important
    }

    .m8-w-lg-800px {
        width: 800px !important
    }

    .m8-w-lg-850px {
        width: 850px !important
    }

    .m8-w-lg-900px {
        width: 900px !important
    }

    .m8-w-lg-950px {
        width: 950px !important
    }

    .m8-w-lg-1000px {
        width: 1000px !important
    }

    .m8-mw-lg-unset {
        max-width: unset !important
    }

    .m8-mw-lg-25 {
        max-width: 25% !important
    }

    .m8-mw-lg-50 {
        max-width: 50% !important
    }

    .m8-mw-lg-75 {
        max-width: 75% !important
    }

    .m8-mw-lg-100 {
        max-width: 100% !important
    }

    .m8-mw-lg-auto {
        max-width: auto !important
    }

    .m8-mw-lg-1px {
        max-width: 1px !important
    }

    .m8-mw-lg-2px {
        max-width: 2px !important
    }

    .m8-mw-lg-3px {
        max-width: 3px !important
    }

    .m8-mw-lg-4px {
        max-width: 4px !important
    }

    .m8-mw-lg-5px {
        max-width: 5px !important
    }

    .m8-mw-lg-6px {
        max-width: 6px !important
    }

    .m8-mw-lg-7px {
        max-width: 7px !important
    }

    .m8-mw-lg-8px {
        max-width: 8px !important
    }

    .m8-mw-lg-9px {
        max-width: 9px !important
    }

    .m8-mw-lg-10px {
        max-width: 10px !important
    }

    .m8-mw-lg-15px {
        max-width: 15px !important
    }

    .m8-mw-lg-20px {
        max-width: 20px !important
    }

    .m8-mw-lg-25px {
        max-width: 25px !important
    }

    .m8-mw-lg-30px {
        max-width: 30px !important
    }

    .m8-mw-lg-35px {
        max-width: 35px !important
    }

    .m8-mw-lg-40px {
        max-width: 40px !important
    }

    .m8-mw-lg-45px {
        max-width: 45px !important
    }

    .m8-mw-lg-50px {
        max-width: 50px !important
    }

    .m8-mw-lg-55px {
        max-width: 55px !important
    }

    .m8-mw-lg-60px {
        max-width: 60px !important
    }

    .m8-mw-lg-65px {
        max-width: 65px !important
    }

    .m8-mw-lg-70px {
        max-width: 70px !important
    }

    .m8-mw-lg-75px {
        max-width: 75px !important
    }

    .m8-mw-lg-80px {
        max-width: 80px !important
    }

    .m8-mw-lg-85px {
        max-width: 85px !important
    }

    .m8-mw-lg-90px {
        max-width: 90px !important
    }

    .m8-mw-lg-95px {
        max-width: 95px !important
    }

    .m8-mw-lg-100px {
        max-width: 100px !important
    }

    .m8-mw-lg-125px {
        max-width: 125px !important
    }

    .m8-mw-lg-150px {
        max-width: 150px !important
    }

    .m8-mw-lg-175px {
        max-width: 175px !important
    }

    .m8-mw-lg-200px {
        max-width: 200px !important
    }

    .m8-mw-lg-225px {
        max-width: 225px !important
    }

    .m8-mw-lg-250px {
        max-width: 250px !important
    }

    .m8-mw-lg-275px {
        max-width: 275px !important
    }

    .m8-mw-lg-300px {
        max-width: 300px !important
    }

    .m8-mw-lg-325px {
        max-width: 325px !important
    }

    .m8-mw-lg-350px {
        max-width: 350px !important
    }

    .m8-mw-lg-375px {
        max-width: 375px !important
    }

    .m8-mw-lg-400px {
        max-width: 400px !important
    }

    .m8-mw-lg-425px {
        max-width: 425px !important
    }

    .m8-mw-lg-450px {
        max-width: 450px !important
    }

    .m8-mw-lg-475px {
        max-width: 475px !important
    }

    .m8-mw-lg-500px {
        max-width: 500px !important
    }

    .m8-mw-lg-550px {
        max-width: 550px !important
    }

    .m8-mw-lg-600px {
        max-width: 600px !important
    }

    .m8-mw-lg-650px {
        max-width: 650px !important
    }

    .m8-mw-lg-700px {
        max-width: 700px !important
    }

    .m8-mw-lg-750px {
        max-width: 750px !important
    }

    .m8-mw-lg-800px {
        max-width: 800px !important
    }

    .m8-mw-lg-850px {
        max-width: 850px !important
    }

    .m8-mw-lg-900px {
        max-width: 900px !important
    }

    .m8-mw-lg-950px {
        max-width: 950px !important
    }

    .m8-mw-lg-1000px {
        max-width: 1000px !important
    }

    .m8-h-lg-unset {
        height: unset !important
    }

    .m8-h-lg-25 {
        height: 25% !important
    }

    .m8-h-lg-50 {
        height: 50% !important
    }

    .m8-h-lg-75 {
        height: 75% !important
    }

    .m8-h-lg-100 {
        height: 100% !important
    }

    .m8-h-lg-auto {
        height: auto !important
    }

    .m8-h-lg-1px {
        height: 1px !important
    }

    .m8-h-lg-2px {
        height: 2px !important
    }

    .m8-h-lg-3px {
        height: 3px !important
    }

    .m8-h-lg-4px {
        height: 4px !important
    }

    .m8-h-lg-5px {
        height: 5px !important
    }

    .m8-h-lg-6px {
        height: 6px !important
    }

    .m8-h-lg-7px {
        height: 7px !important
    }

    .m8-h-lg-8px {
        height: 8px !important
    }

    .m8-h-lg-9px {
        height: 9px !important
    }

    .m8-h-lg-10px {
        height: 10px !important
    }

    .m8-h-lg-15px {
        height: 15px !important
    }

    .m8-h-lg-20px {
        height: 20px !important
    }

    .m8-h-lg-25px {
        height: 25px !important
    }

    .m8-h-lg-30px {
        height: 30px !important
    }

    .m8-h-lg-35px {
        height: 35px !important
    }

    .m8-h-lg-40px {
        height: 40px !important
    }

    .m8-h-lg-45px {
        height: 45px !important
    }

    .m8-h-lg-50px {
        height: 50px !important
    }

    .m8-h-lg-55px {
        height: 55px !important
    }

    .m8-h-lg-60px {
        height: 60px !important
    }

    .m8-h-lg-65px {
        height: 65px !important
    }

    .m8-h-lg-70px {
        height: 70px !important
    }

    .m8-h-lg-75px {
        height: 75px !important
    }

    .m8-h-lg-80px {
        height: 80px !important
    }

    .m8-h-lg-85px {
        height: 85px !important
    }

    .m8-h-lg-90px {
        height: 90px !important
    }

    .m8-h-lg-95px {
        height: 95px !important
    }

    .m8-h-lg-100px {
        height: 100px !important
    }

    .m8-h-lg-125px {
        height: 125px !important
    }

    .m8-h-lg-150px {
        height: 150px !important
    }

    .m8-h-lg-175px {
        height: 175px !important
    }

    .m8-h-lg-200px {
        height: 200px !important
    }

    .m8-h-lg-225px {
        height: 225px !important
    }

    .m8-h-lg-250px {
        height: 250px !important
    }

    .m8-h-lg-275px {
        height: 275px !important
    }

    .m8-h-lg-300px {
        height: 300px !important
    }

    .m8-h-lg-325px {
        height: 325px !important
    }

    .m8-h-lg-350px {
        height: 350px !important
    }

    .m8-h-lg-375px {
        height: 375px !important
    }

    .m8-h-lg-400px {
        height: 400px !important
    }

    .m8-h-lg-425px {
        height: 425px !important
    }

    .m8-h-lg-450px {
        height: 450px !important
    }

    .m8-h-lg-475px {
        height: 475px !important
    }

    .m8-h-lg-500px {
        height: 500px !important
    }

    .m8-h-lg-550px {
        height: 550px !important
    }

    .m8-h-lg-600px {
        height: 600px !important
    }

    .m8-h-lg-650px {
        height: 650px !important
    }

    .m8-h-lg-700px {
        height: 700px !important
    }

    .m8-h-lg-750px {
        height: 750px !important
    }

    .m8-h-lg-800px {
        height: 800px !important
    }

    .m8-h-lg-850px {
        height: 850px !important
    }

    .m8-h-lg-900px {
        height: 900px !important
    }

    .m8-h-lg-950px {
        height: 950px !important
    }

    .m8-h-lg-1000px {
        height: 1000px !important
    }

    .m8-mh-lg-unset {
        max-height: unset !important
    }

    .m8-mh-lg-25 {
        max-height: 25% !important
    }

    .m8-mh-lg-50 {
        max-height: 50% !important
    }

    .m8-mh-lg-75 {
        max-height: 75% !important
    }

    .m8-mh-lg-100 {
        max-height: 100% !important
    }

    .m8-mh-lg-auto {
        max-height: auto !important
    }

    .m8-mh-lg-1px {
        max-height: 1px !important
    }

    .m8-mh-lg-2px {
        max-height: 2px !important
    }

    .m8-mh-lg-3px {
        max-height: 3px !important
    }

    .m8-mh-lg-4px {
        max-height: 4px !important
    }

    .m8-mh-lg-5px {
        max-height: 5px !important
    }

    .m8-mh-lg-6px {
        max-height: 6px !important
    }

    .m8-mh-lg-7px {
        max-height: 7px !important
    }

    .m8-mh-lg-8px {
        max-height: 8px !important
    }

    .m8-mh-lg-9px {
        max-height: 9px !important
    }

    .m8-mh-lg-10px {
        max-height: 10px !important
    }

    .m8-mh-lg-15px {
        max-height: 15px !important
    }

    .m8-mh-lg-20px {
        max-height: 20px !important
    }

    .m8-mh-lg-25px {
        max-height: 25px !important
    }

    .m8-mh-lg-30px {
        max-height: 30px !important
    }

    .m8-mh-lg-35px {
        max-height: 35px !important
    }

    .m8-mh-lg-40px {
        max-height: 40px !important
    }

    .m8-mh-lg-45px {
        max-height: 45px !important
    }

    .m8-mh-lg-50px {
        max-height: 50px !important
    }

    .m8-mh-lg-55px {
        max-height: 55px !important
    }

    .m8-mh-lg-60px {
        max-height: 60px !important
    }

    .m8-mh-lg-65px {
        max-height: 65px !important
    }

    .m8-mh-lg-70px {
        max-height: 70px !important
    }

    .m8-mh-lg-75px {
        max-height: 75px !important
    }

    .m8-mh-lg-80px {
        max-height: 80px !important
    }

    .m8-mh-lg-85px {
        max-height: 85px !important
    }

    .m8-mh-lg-90px {
        max-height: 90px !important
    }

    .m8-mh-lg-95px {
        max-height: 95px !important
    }

    .m8-mh-lg-100px {
        max-height: 100px !important
    }

    .m8-mh-lg-125px {
        max-height: 125px !important
    }

    .m8-mh-lg-150px {
        max-height: 150px !important
    }

    .m8-mh-lg-175px {
        max-height: 175px !important
    }

    .m8-mh-lg-200px {
        max-height: 200px !important
    }

    .m8-mh-lg-225px {
        max-height: 225px !important
    }

    .m8-mh-lg-250px {
        max-height: 250px !important
    }

    .m8-mh-lg-275px {
        max-height: 275px !important
    }

    .m8-mh-lg-300px {
        max-height: 300px !important
    }

    .m8-mh-lg-325px {
        max-height: 325px !important
    }

    .m8-mh-lg-350px {
        max-height: 350px !important
    }

    .m8-mh-lg-375px {
        max-height: 375px !important
    }

    .m8-mh-lg-400px {
        max-height: 400px !important
    }

    .m8-mh-lg-425px {
        max-height: 425px !important
    }

    .m8-mh-lg-450px {
        max-height: 450px !important
    }

    .m8-mh-lg-475px {
        max-height: 475px !important
    }

    .m8-mh-lg-500px {
        max-height: 500px !important
    }

    .m8-mh-lg-550px {
        max-height: 550px !important
    }

    .m8-mh-lg-600px {
        max-height: 600px !important
    }

    .m8-mh-lg-650px {
        max-height: 650px !important
    }

    .m8-mh-lg-700px {
        max-height: 700px !important
    }

    .m8-mh-lg-750px {
        max-height: 750px !important
    }

    .m8-mh-lg-800px {
        max-height: 800px !important
    }

    .m8-mh-lg-850px {
        max-height: 850px !important
    }

    .m8-mh-lg-900px {
        max-height: 900px !important
    }

    .m8-mh-lg-950px {
        max-height: 950px !important
    }

    .m8-mh-lg-1000px {
        max-height: 1000px !important
    }

    .m8-flex-lg-fill {
        flex: 1 1 auto !important
    }

    .m8-flex-lg-row {
        flex-direction: row !important
    }

    .m8-flex-lg-column {
        flex-direction: column !important
    }

    .m8-flex-lg-row-reverse {
        flex-direction: row-reverse !important
    }

    .m8-flex-lg-column-reverse {
        flex-direction: column-reverse !important
    }

    .m8-flex-lg-grow-0 {
        flex-grow: 0 !important
    }

    .m8-flex-lg-grow-1 {
        flex-grow: 1 !important
    }

    .m8-flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }

    .m8-flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }

    .m8-flex-lg-wrap {
        flex-wrap: wrap !important
    }

    .m8-flex-lg-nowrap {
        flex-wrap: nowrap !important
    }

    .m8-flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .m8-justify-content-lg-start {
        justify-content: flex-start !important
    }

    .m8-justify-content-lg-end {
        justify-content: flex-end !important
    }

    .m8-justify-content-lg-center {
        justify-content: center !important
    }

    .m8-justify-content-lg-between {
        justify-content: space-between !important
    }

    .m8-justify-content-lg-around {
        justify-content: space-around !important
    }

    .m8-justify-content-lg-evenly {
        justify-content: space-evenly !important
    }

    .m8-align-items-lg-start {
        align-items: flex-start !important
    }

    .m8-align-items-lg-end {
        align-items: flex-end !important
    }

    .m8-align-items-lg-center {
        align-items: center !important
    }

    .m8-align-items-lg-baseline {
        align-items: baseline !important
    }

    .m8-align-items-lg-stretch {
        align-items: stretch !important
    }

    .m8-align-content-lg-start {
        align-content: flex-start !important
    }

    .m8-align-content-lg-end {
        align-content: flex-end !important
    }

    .m8-align-content-lg-center {
        align-content: center !important
    }

    .m8-align-content-lg-between {
        align-content: space-between !important
    }

    .m8-align-content-lg-around {
        align-content: space-around !important
    }

    .m8-align-content-lg-stretch {
        align-content: stretch !important
    }

    .m8-align-self-lg-auto {
        align-self: auto !important
    }

    .m8-align-self-lg-start {
        align-self: flex-start !important
    }

    .m8-align-self-lg-end {
        align-self: flex-end !important
    }

    .m8-align-self-lg-center {
        align-self: center !important
    }

    .m8-align-self-lg-baseline {
        align-self: baseline !important
    }

    .m8-align-self-lg-stretch {
        align-self: stretch !important
    }

    .m8-order-lg-first {
        order: -1 !important
    }

    .m8-order-lg-0 {
        order: 0 !important
    }

    .m8-order-lg-1 {
        order: 1 !important
    }

    .m8-order-lg-2 {
        order: 2 !important
    }

    .m8-order-lg-3 {
        order: 3 !important
    }

    .m8-order-lg-4 {
        order: 4 !important
    }

    .m8-order-lg-5 {
        order: 5 !important
    }

    .m8-order-lg-last {
        order: 6 !important
    }

    .m8-m-lg-0 {
        margin: 0 !important
    }

    .m8-m-lg-1 {
        margin: .25rem !important
    }

    .m8-m-lg-2 {
        margin: .5rem !important
    }

    .m8-m-lg-3 {
        margin: .75rem !important
    }

    .m8-m-lg-4 {
        margin: 1rem !important
    }

    .m8-m-lg-5 {
        margin: 1.25rem !important
    }

    .m8-m-lg-6 {
        margin: 1.5rem !important
    }

    .m8-m-lg-7 {
        margin: 1.75rem !important
    }

    .m8-m-lg-8 {
        margin: 2rem !important
    }

    .m8-m-lg-9 {
        margin: 2.25rem !important
    }

    .m8-m-lg-10 {
        margin: 2.5rem !important
    }

    .m8-m-lg-11 {
        margin: 2.75rem !important
    }

    .m8-m-lg-12 {
        margin: 3rem !important
    }

    .m8-m-lg-13 {
        margin: 3.25rem !important
    }

    .m8-m-lg-14 {
        margin: 3.5rem !important
    }

    .m8-m-lg-15 {
        margin: 3.75rem !important
    }

    .m8-m-lg-16 {
        margin: 4rem !important
    }

    .m8-m-lg-17 {
        margin: 4.25rem !important
    }

    .m8-m-lg-18 {
        margin: 4.5rem !important
    }

    .m8-m-lg-19 {
        margin: 4.75rem !important
    }

    .m8-m-lg-20 {
        margin: 5rem !important
    }

    .m8-m-lg-auto {
        margin: auto !important
    }

    .m8-mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .m8-mx-lg-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .m8-mx-lg-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .m8-mx-lg-3 {
        margin-right: .75rem !important;
        margin-left: .75rem !important
    }

    .m8-mx-lg-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .m8-mx-lg-5 {
        margin-right: 1.25rem !important;
        margin-left: 1.25rem !important
    }

    .m8-mx-lg-6 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .m8-mx-lg-7 {
        margin-right: 1.75rem !important;
        margin-left: 1.75rem !important
    }

    .m8-mx-lg-8 {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }

    .m8-mx-lg-9 {
        margin-right: 2.25rem !important;
        margin-left: 2.25rem !important
    }

    .m8-mx-lg-10 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important
    }

    .m8-mx-lg-11 {
        margin-right: 2.75rem !important;
        margin-left: 2.75rem !important
    }

    .m8-mx-lg-12 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .m8-mx-lg-13 {
        margin-right: 3.25rem !important;
        margin-left: 3.25rem !important
    }

    .m8-mx-lg-14 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important
    }

    .m8-mx-lg-15 {
        margin-right: 3.75rem !important;
        margin-left: 3.75rem !important
    }

    .m8-mx-lg-16 {
        margin-right: 4rem !important;
        margin-left: 4rem !important
    }

    .m8-mx-lg-17 {
        margin-right: 4.25rem !important;
        margin-left: 4.25rem !important
    }

    .m8-mx-lg-18 {
        margin-right: 4.5rem !important;
        margin-left: 4.5rem !important
    }

    .m8-mx-lg-19 {
        margin-right: 4.75rem !important;
        margin-left: 4.75rem !important
    }

    .m8-mx-lg-20 {
        margin-right: 5rem !important;
        margin-left: 5rem !important
    }

    .m8-mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .m8-my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .m8-my-lg-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .m8-my-lg-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .m8-my-lg-3 {
        margin-top: .75rem !important;
        margin-bottom: .75rem !important
    }

    .m8-my-lg-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .m8-my-lg-5 {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important
    }

    .m8-my-lg-6 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .m8-my-lg-7 {
        margin-top: 1.75rem !important;
        margin-bottom: 1.75rem !important
    }

    .m8-my-lg-8 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }

    .m8-my-lg-9 {
        margin-top: 2.25rem !important;
        margin-bottom: 2.25rem !important
    }

    .m8-my-lg-10 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important
    }

    .m8-my-lg-11 {
        margin-top: 2.75rem !important;
        margin-bottom: 2.75rem !important
    }

    .m8-my-lg-12 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .m8-my-lg-13 {
        margin-top: 3.25rem !important;
        margin-bottom: 3.25rem !important
    }

    .m8-my-lg-14 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important
    }

    .m8-my-lg-15 {
        margin-top: 3.75rem !important;
        margin-bottom: 3.75rem !important
    }

    .m8-my-lg-16 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important
    }

    .m8-my-lg-17 {
        margin-top: 4.25rem !important;
        margin-bottom: 4.25rem !important
    }

    .m8-my-lg-18 {
        margin-top: 4.5rem !important;
        margin-bottom: 4.5rem !important
    }

    .m8-my-lg-19 {
        margin-top: 4.75rem !important;
        margin-bottom: 4.75rem !important
    }

    .m8-my-lg-20 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important
    }

    .m8-my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .m8-mt-lg-0 {
        margin-top: 0 !important
    }

    .m8-mt-lg-1 {
        margin-top: .25rem !important
    }

    .m8-mt-lg-2 {
        margin-top: .5rem !important
    }

    .m8-mt-lg-3 {
        margin-top: .75rem !important
    }

    .m8-mt-lg-4 {
        margin-top: 1rem !important
    }

    .m8-mt-lg-5 {
        margin-top: 1.25rem !important
    }

    .m8-mt-lg-6 {
        margin-top: 1.5rem !important
    }

    .m8-mt-lg-7 {
        margin-top: 1.75rem !important
    }

    .m8-mt-lg-8 {
        margin-top: 2rem !important
    }

    .m8-mt-lg-9 {
        margin-top: 2.25rem !important
    }

    .m8-mt-lg-10 {
        margin-top: 2.5rem !important
    }

    .m8-mt-lg-11 {
        margin-top: 2.75rem !important
    }

    .m8-mt-lg-12 {
        margin-top: 3rem !important
    }

    .m8-mt-lg-13 {
        margin-top: 3.25rem !important
    }

    .m8-mt-lg-14 {
        margin-top: 3.5rem !important
    }

    .m8-mt-lg-15 {
        margin-top: 3.75rem !important
    }

    .m8-mt-lg-16 {
        margin-top: 4rem !important
    }

    .m8-mt-lg-17 {
        margin-top: 4.25rem !important
    }

    .m8-mt-lg-18 {
        margin-top: 4.5rem !important
    }

    .m8-mt-lg-19 {
        margin-top: 4.75rem !important
    }

    .m8-mt-lg-20 {
        margin-top: 5rem !important
    }

    .m8-mt-lg-auto {
        margin-top: auto !important
    }

    .m8-me-lg-0 {
        margin-right: 0 !important
    }

    .m8-me-lg-1 {
        margin-right: .25rem !important
    }

    .m8-me-lg-2 {
        margin-right: .5rem !important
    }

    .m8-me-lg-3 {
        margin-right: .75rem !important
    }

    .m8-me-lg-4 {
        margin-right: 1rem !important
    }

    .m8-me-lg-5 {
        margin-right: 1.25rem !important
    }

    .m8-me-lg-6 {
        margin-right: 1.5rem !important
    }

    .m8-me-lg-7 {
        margin-right: 1.75rem !important
    }

    .m8-me-lg-8 {
        margin-right: 2rem !important
    }

    .m8-me-lg-9 {
        margin-right: 2.25rem !important
    }

    .m8-me-lg-10 {
        margin-right: 2.5rem !important
    }

    .m8-me-lg-11 {
        margin-right: 2.75rem !important
    }

    .m8-me-lg-12 {
        margin-right: 3rem !important
    }

    .m8-me-lg-13 {
        margin-right: 3.25rem !important
    }

    .m8-me-lg-14 {
        margin-right: 3.5rem !important
    }

    .m8-me-lg-15 {
        margin-right: 3.75rem !important
    }

    .m8-me-lg-16 {
        margin-right: 4rem !important
    }

    .m8-me-lg-17 {
        margin-right: 4.25rem !important
    }

    .m8-me-lg-18 {
        margin-right: 4.5rem !important
    }

    .m8-me-lg-19 {
        margin-right: 4.75rem !important
    }

    .m8-me-lg-20 {
        margin-right: 5rem !important
    }

    .m8-me-lg-auto {
        margin-right: auto !important
    }

    .m8-mb-lg-0 {
        margin-bottom: 0 !important
    }

    .m8-mb-lg-1 {
        margin-bottom: .25rem !important
    }

    .m8-mb-lg-2 {
        margin-bottom: .5rem !important
    }

    .m8-mb-lg-3 {
        margin-bottom: .75rem !important
    }

    .m8-mb-lg-4 {
        margin-bottom: 1rem !important
    }

    .m8-mb-lg-5 {
        margin-bottom: 1.25rem !important
    }

    .m8-mb-lg-6 {
        margin-bottom: 1.5rem !important
    }

    .m8-mb-lg-7 {
        margin-bottom: 1.75rem !important
    }

    .m8-mb-lg-8 {
        margin-bottom: 2rem !important
    }

    .m8-mb-lg-9 {
        margin-bottom: 2.25rem !important
    }

    .m8-mb-lg-10 {
        margin-bottom: 2.5rem !important
    }

    .m8-mb-lg-11 {
        margin-bottom: 2.75rem !important
    }

    .m8-mb-lg-12 {
        margin-bottom: 3rem !important
    }

    .m8-mb-lg-13 {
        margin-bottom: 3.25rem !important
    }

    .m8-mb-lg-14 {
        margin-bottom: 3.5rem !important
    }

    .m8-mb-lg-15 {
        margin-bottom: 3.75rem !important
    }

    .m8-mb-lg-16 {
        margin-bottom: 4rem !important
    }

    .m8-mb-lg-17 {
        margin-bottom: 4.25rem !important
    }

    .m8-mb-lg-18 {
        margin-bottom: 4.5rem !important
    }

    .m8-mb-lg-19 {
        margin-bottom: 4.75rem !important
    }

    .m8-mb-lg-20 {
        margin-bottom: 5rem !important
    }

    .m8-mb-lg-auto {
        margin-bottom: auto !important
    }

    .m8-ms-lg-0 {
        margin-left: 0 !important
    }

    .m8-ms-lg-1 {
        margin-left: .25rem !important
    }

    .m8-ms-lg-2 {
        margin-left: .5rem !important
    }

    .m8-ms-lg-3 {
        margin-left: .75rem !important
    }

    .m8-ms-lg-4 {
        margin-left: 1rem !important
    }

    .m8-ms-lg-5 {
        margin-left: 1.25rem !important
    }

    .m8-ms-lg-6 {
        margin-left: 1.5rem !important
    }

    .m8-ms-lg-7 {
        margin-left: 1.75rem !important
    }

    .m8-ms-lg-8 {
        margin-left: 2rem !important
    }

    .m8-ms-lg-9 {
        margin-left: 2.25rem !important
    }

    .m8-ms-lg-10 {
        margin-left: 2.5rem !important
    }

    .m8-ms-lg-11 {
        margin-left: 2.75rem !important
    }

    .m8-ms-lg-12 {
        margin-left: 3rem !important
    }

    .m8-ms-lg-13 {
        margin-left: 3.25rem !important
    }

    .m8-ms-lg-14 {
        margin-left: 3.5rem !important
    }

    .m8-ms-lg-15 {
        margin-left: 3.75rem !important
    }

    .m8-ms-lg-16 {
        margin-left: 4rem !important
    }

    .m8-ms-lg-17 {
        margin-left: 4.25rem !important
    }

    .m8-ms-lg-18 {
        margin-left: 4.5rem !important
    }

    .m8-ms-lg-19 {
        margin-left: 4.75rem !important
    }

    .m8-ms-lg-20 {
        margin-left: 5rem !important
    }

    .m8-ms-lg-auto {
        margin-left: auto !important
    }

    .m8-m-lg-n1 {
        margin: -.25rem !important
    }

    .m8-m-lg-n2 {
        margin: -.5rem !important
    }

    .m8-m-lg-n3 {
        margin: -.75rem !important
    }

    .m8-m-lg-n4 {
        margin: -1rem !important
    }

    .m8-m-lg-n5 {
        margin: -1.25rem !important
    }

    .m8-m-lg-n6 {
        margin: -1.5rem !important
    }

    .m8-m-lg-n7 {
        margin: -1.75rem !important
    }

    .m8-m-lg-n8 {
        margin: -2rem !important
    }

    .m8-m-lg-n9 {
        margin: -2.25rem !important
    }

    .m8-m-lg-n10 {
        margin: -2.5rem !important
    }

    .m8-m-lg-n11 {
        margin: -2.75rem !important
    }

    .m8-m-lg-n12 {
        margin: -3rem !important
    }

    .m8-m-lg-n13 {
        margin: -3.25rem !important
    }

    .m8-m-lg-n14 {
        margin: -3.5rem !important
    }

    .m8-m-lg-n15 {
        margin: -3.75rem !important
    }

    .m8-m-lg-n16 {
        margin: -4rem !important
    }

    .m8-m-lg-n17 {
        margin: -4.25rem !important
    }

    .m8-m-lg-n18 {
        margin: -4.5rem !important
    }

    .m8-m-lg-n19 {
        margin: -4.75rem !important
    }

    .m8-m-lg-n20 {
        margin: -5rem !important
    }

    .m8-mx-lg-n1 {
        margin-right: -.25rem !important;
        margin-left: -.25rem !important
    }

    .m8-mx-lg-n2 {
        margin-right: -.5rem !important;
        margin-left: -.5rem !important
    }

    .m8-mx-lg-n3 {
        margin-right: -.75rem !important;
        margin-left: -.75rem !important
    }

    .m8-mx-lg-n4 {
        margin-right: -1rem !important;
        margin-left: -1rem !important
    }

    .m8-mx-lg-n5 {
        margin-right: -1.25rem !important;
        margin-left: -1.25rem !important
    }

    .m8-mx-lg-n6 {
        margin-right: -1.5rem !important;
        margin-left: -1.5rem !important
    }

    .m8-mx-lg-n7 {
        margin-right: -1.75rem !important;
        margin-left: -1.75rem !important
    }

    .m8-mx-lg-n8 {
        margin-right: -2rem !important;
        margin-left: -2rem !important
    }

    .m8-mx-lg-n9 {
        margin-right: -2.25rem !important;
        margin-left: -2.25rem !important
    }

    .m8-mx-lg-n10 {
        margin-right: -2.5rem !important;
        margin-left: -2.5rem !important
    }

    .m8-mx-lg-n11 {
        margin-right: -2.75rem !important;
        margin-left: -2.75rem !important
    }

    .m8-mx-lg-n12 {
        margin-right: -3rem !important;
        margin-left: -3rem !important
    }

    .m8-mx-lg-n13 {
        margin-right: -3.25rem !important;
        margin-left: -3.25rem !important
    }

    .m8-mx-lg-n14 {
        margin-right: -3.5rem !important;
        margin-left: -3.5rem !important
    }

    .m8-mx-lg-n15 {
        margin-right: -3.75rem !important;
        margin-left: -3.75rem !important
    }

    .m8-mx-lg-n16 {
        margin-right: -4rem !important;
        margin-left: -4rem !important
    }

    .m8-mx-lg-n17 {
        margin-right: -4.25rem !important;
        margin-left: -4.25rem !important
    }

    .m8-mx-lg-n18 {
        margin-right: -4.5rem !important;
        margin-left: -4.5rem !important
    }

    .m8-mx-lg-n19 {
        margin-right: -4.75rem !important;
        margin-left: -4.75rem !important
    }

    .m8-mx-lg-n20 {
        margin-right: -5rem !important;
        margin-left: -5rem !important
    }

    .m8-my-lg-n1 {
        margin-top: -.25rem !important;
        margin-bottom: -.25rem !important
    }

    .m8-my-lg-n2 {
        margin-top: -.5rem !important;
        margin-bottom: -.5rem !important
    }

    .m8-my-lg-n3 {
        margin-top: -.75rem !important;
        margin-bottom: -.75rem !important
    }

    .m8-my-lg-n4 {
        margin-top: -1rem !important;
        margin-bottom: -1rem !important
    }

    .m8-my-lg-n5 {
        margin-top: -1.25rem !important;
        margin-bottom: -1.25rem !important
    }

    .m8-my-lg-n6 {
        margin-top: -1.5rem !important;
        margin-bottom: -1.5rem !important
    }

    .m8-my-lg-n7 {
        margin-top: -1.75rem !important;
        margin-bottom: -1.75rem !important
    }

    .m8-my-lg-n8 {
        margin-top: -2rem !important;
        margin-bottom: -2rem !important
    }

    .m8-my-lg-n9 {
        margin-top: -2.25rem !important;
        margin-bottom: -2.25rem !important
    }

    .m8-my-lg-n10 {
        margin-top: -2.5rem !important;
        margin-bottom: -2.5rem !important
    }

    .m8-my-lg-n11 {
        margin-top: -2.75rem !important;
        margin-bottom: -2.75rem !important
    }

    .m8-my-lg-n12 {
        margin-top: -3rem !important;
        margin-bottom: -3rem !important
    }

    .m8-my-lg-n13 {
        margin-top: -3.25rem !important;
        margin-bottom: -3.25rem !important
    }

    .m8-my-lg-n14 {
        margin-top: -3.5rem !important;
        margin-bottom: -3.5rem !important
    }

    .m8-my-lg-n15 {
        margin-top: -3.75rem !important;
        margin-bottom: -3.75rem !important
    }

    .m8-my-lg-n16 {
        margin-top: -4rem !important;
        margin-bottom: -4rem !important
    }

    .m8-my-lg-n17 {
        margin-top: -4.25rem !important;
        margin-bottom: -4.25rem !important
    }

    .m8-my-lg-n18 {
        margin-top: -4.5rem !important;
        margin-bottom: -4.5rem !important
    }

    .m8-my-lg-n19 {
        margin-top: -4.75rem !important;
        margin-bottom: -4.75rem !important
    }

    .m8-my-lg-n20 {
        margin-top: -5rem !important;
        margin-bottom: -5rem !important
    }

    .m8-mt-lg-n1 {
        margin-top: -.25rem !important
    }

    .m8-mt-lg-n2 {
        margin-top: -.5rem !important
    }

    .m8-mt-lg-n3 {
        margin-top: -.75rem !important
    }

    .m8-mt-lg-n4 {
        margin-top: -1rem !important
    }

    .m8-mt-lg-n5 {
        margin-top: -1.25rem !important
    }

    .m8-mt-lg-n6 {
        margin-top: -1.5rem !important
    }

    .m8-mt-lg-n7 {
        margin-top: -1.75rem !important
    }

    .m8-mt-lg-n8 {
        margin-top: -2rem !important
    }

    .m8-mt-lg-n9 {
        margin-top: -2.25rem !important
    }

    .m8-mt-lg-n10 {
        margin-top: -2.5rem !important
    }

    .m8-mt-lg-n11 {
        margin-top: -2.75rem !important
    }

    .m8-mt-lg-n12 {
        margin-top: -3rem !important
    }

    .m8-mt-lg-n13 {
        margin-top: -3.25rem !important
    }

    .m8-mt-lg-n14 {
        margin-top: -3.5rem !important
    }

    .m8-mt-lg-n15 {
        margin-top: -3.75rem !important
    }

    .m8-mt-lg-n16 {
        margin-top: -4rem !important
    }

    .m8-mt-lg-n17 {
        margin-top: -4.25rem !important
    }

    .m8-mt-lg-n18 {
        margin-top: -4.5rem !important
    }

    .m8-mt-lg-n19 {
        margin-top: -4.75rem !important
    }

    .m8-mt-lg-n20 {
        margin-top: -5rem !important
    }

    .m8-me-lg-n1 {
        margin-right: -.25rem !important
    }

    .m8-me-lg-n2 {
        margin-right: -.5rem !important
    }

    .m8-me-lg-n3 {
        margin-right: -.75rem !important
    }

    .m8-me-lg-n4 {
        margin-right: -1rem !important
    }

    .m8-me-lg-n5 {
        margin-right: -1.25rem !important
    }

    .m8-me-lg-n6 {
        margin-right: -1.5rem !important
    }

    .m8-me-lg-n7 {
        margin-right: -1.75rem !important
    }

    .m8-me-lg-n8 {
        margin-right: -2rem !important
    }

    .m8-me-lg-n9 {
        margin-right: -2.25rem !important
    }

    .m8-me-lg-n10 {
        margin-right: -2.5rem !important
    }

    .m8-me-lg-n11 {
        margin-right: -2.75rem !important
    }

    .m8-me-lg-n12 {
        margin-right: -3rem !important
    }

    .m8-me-lg-n13 {
        margin-right: -3.25rem !important
    }

    .m8-me-lg-n14 {
        margin-right: -3.5rem !important
    }

    .m8-me-lg-n15 {
        margin-right: -3.75rem !important
    }

    .m8-me-lg-n16 {
        margin-right: -4rem !important
    }

    .m8-me-lg-n17 {
        margin-right: -4.25rem !important
    }

    .m8-me-lg-n18 {
        margin-right: -4.5rem !important
    }

    .m8-me-lg-n19 {
        margin-right: -4.75rem !important
    }

    .m8-me-lg-n20 {
        margin-right: -5rem !important
    }

    .m8-mb-lg-n1 {
        margin-bottom: -.25rem !important
    }

    .m8-mb-lg-n2 {
        margin-bottom: -.5rem !important
    }

    .m8-mb-lg-n3 {
        margin-bottom: -.75rem !important
    }

    .m8-mb-lg-n4 {
        margin-bottom: -1rem !important
    }

    .m8-mb-lg-n5 {
        margin-bottom: -1.25rem !important
    }

    .m8-mb-lg-n6 {
        margin-bottom: -1.5rem !important
    }

    .m8-mb-lg-n7 {
        margin-bottom: -1.75rem !important
    }

    .m8-mb-lg-n8 {
        margin-bottom: -2rem !important
    }

    .m8-mb-lg-n9 {
        margin-bottom: -2.25rem !important
    }

    .m8-mb-lg-n10 {
        margin-bottom: -2.5rem !important
    }

    .m8-mb-lg-n11 {
        margin-bottom: -2.75rem !important
    }

    .m8-mb-lg-n12 {
        margin-bottom: -3rem !important
    }

    .m8-mb-lg-n13 {
        margin-bottom: -3.25rem !important
    }

    .m8-mb-lg-n14 {
        margin-bottom: -3.5rem !important
    }

    .m8-mb-lg-n15 {
        margin-bottom: -3.75rem !important
    }

    .m8-mb-lg-n16 {
        margin-bottom: -4rem !important
    }

    .m8-mb-lg-n17 {
        margin-bottom: -4.25rem !important
    }

    .m8-mb-lg-n18 {
        margin-bottom: -4.5rem !important
    }

    .m8-mb-lg-n19 {
        margin-bottom: -4.75rem !important
    }

    .m8-mb-lg-n20 {
        margin-bottom: -5rem !important
    }

    .m8-ms-lg-n1 {
        margin-left: -.25rem !important
    }

    .m8-ms-lg-n2 {
        margin-left: -.5rem !important
    }

    .m8-ms-lg-n3 {
        margin-left: -.75rem !important
    }

    .m8-ms-lg-n4 {
        margin-left: -1rem !important
    }

    .m8-ms-lg-n5 {
        margin-left: -1.25rem !important
    }

    .m8-ms-lg-n6 {
        margin-left: -1.5rem !important
    }

    .m8-ms-lg-n7 {
        margin-left: -1.75rem !important
    }

    .m8-ms-lg-n8 {
        margin-left: -2rem !important
    }

    .m8-ms-lg-n9 {
        margin-left: -2.25rem !important
    }

    .m8-ms-lg-n10 {
        margin-left: -2.5rem !important
    }

    .m8-ms-lg-n11 {
        margin-left: -2.75rem !important
    }

    .m8-ms-lg-n12 {
        margin-left: -3rem !important
    }

    .m8-ms-lg-n13 {
        margin-left: -3.25rem !important
    }

    .m8-ms-lg-n14 {
        margin-left: -3.5rem !important
    }

    .m8-ms-lg-n15 {
        margin-left: -3.75rem !important
    }

    .m8-ms-lg-n16 {
        margin-left: -4rem !important
    }

    .m8-ms-lg-n17 {
        margin-left: -4.25rem !important
    }

    .m8-ms-lg-n18 {
        margin-left: -4.5rem !important
    }

    .m8-ms-lg-n19 {
        margin-left: -4.75rem !important
    }

    .m8-ms-lg-n20 {
        margin-left: -5rem !important
    }

    .m8-p-lg-0 {
        padding: 0 !important
    }

    .m8-p-lg-1 {
        padding: .25rem !important
    }

    .m8-p-lg-2 {
        padding: .5rem !important
    }

    .m8-p-lg-3 {
        padding: .75rem !important
    }

    .m8-p-lg-4 {
        padding: 1rem !important
    }

    .m8-p-lg-5 {
        padding: 1.25rem !important
    }

    .m8-p-lg-6 {
        padding: 1.5rem !important
    }

    .m8-p-lg-7 {
        padding: 1.75rem !important
    }

    .m8-p-lg-8 {
        padding: 2rem !important
    }

    .m8-p-lg-9 {
        padding: 2.25rem !important
    }

    .m8-p-lg-10 {
        padding: 2.5rem !important
    }

    .m8-p-lg-11 {
        padding: 2.75rem !important
    }

    .m8-p-lg-12 {
        padding: 3rem !important
    }

    .m8-p-lg-13 {
        padding: 3.25rem !important
    }

    .m8-p-lg-14 {
        padding: 3.5rem !important
    }

    .m8-p-lg-15 {
        padding: 3.75rem !important
    }

    .m8-p-lg-16 {
        padding: 4rem !important
    }

    .m8-p-lg-17 {
        padding: 4.25rem !important
    }

    .m8-p-lg-18 {
        padding: 4.5rem !important
    }

    .m8-p-lg-19 {
        padding: 4.75rem !important
    }

    .m8-p-lg-20 {
        padding: 5rem !important
    }

    .m8-px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .m8-px-lg-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .m8-px-lg-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .m8-px-lg-3 {
        padding-right: .75rem !important;
        padding-left: .75rem !important
    }

    .m8-px-lg-4 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .m8-px-lg-5 {
        padding-right: 1.25rem !important;
        padding-left: 1.25rem !important
    }

    .m8-px-lg-6 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .m8-px-lg-7 {
        padding-right: 1.75rem !important;
        padding-left: 1.75rem !important
    }

    .m8-px-lg-8 {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }

    .m8-px-lg-9 {
        padding-right: 2.25rem !important;
        padding-left: 2.25rem !important
    }

    .m8-px-lg-10 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important
    }

    .m8-px-lg-11 {
        padding-right: 2.75rem !important;
        padding-left: 2.75rem !important
    }

    .m8-px-lg-12 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .m8-px-lg-13 {
        padding-right: 3.25rem !important;
        padding-left: 3.25rem !important
    }

    .m8-px-lg-14 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important
    }

    .m8-px-lg-15 {
        padding-right: 3.75rem !important;
        padding-left: 3.75rem !important
    }

    .m8-px-lg-16 {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }

    .m8-px-lg-17 {
        padding-right: 4.25rem !important;
        padding-left: 4.25rem !important
    }

    .m8-px-lg-18 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !important
    }

    .m8-px-lg-19 {
        padding-right: 4.75rem !important;
        padding-left: 4.75rem !important
    }

    .m8-px-lg-20 {
        padding-right: 5rem !important;
        padding-left: 5rem !important
    }

    .m8-py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .m8-py-lg-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .m8-py-lg-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .m8-py-lg-3 {
        padding-top: .75rem !important;
        padding-bottom: .75rem !important
    }

    .m8-py-lg-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .m8-py-lg-5 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important
    }

    .m8-py-lg-6 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .m8-py-lg-7 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important
    }

    .m8-py-lg-8 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }

    .m8-py-lg-9 {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important
    }

    .m8-py-lg-10 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important
    }

    .m8-py-lg-11 {
        padding-top: 2.75rem !important;
        padding-bottom: 2.75rem !important
    }

    .m8-py-lg-12 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .m8-py-lg-13 {
        padding-top: 3.25rem !important;
        padding-bottom: 3.25rem !important
    }

    .m8-py-lg-14 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important
    }

    .m8-py-lg-15 {
        padding-top: 3.75rem !important;
        padding-bottom: 3.75rem !important
    }

    .m8-py-lg-16 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }

    .m8-py-lg-17 {
        padding-top: 4.25rem !important;
        padding-bottom: 4.25rem !important
    }

    .m8-py-lg-18 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important
    }

    .m8-py-lg-19 {
        padding-top: 4.75rem !important;
        padding-bottom: 4.75rem !important
    }

    .m8-py-lg-20 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important
    }

    .m8-pt-lg-0 {
        padding-top: 0 !important
    }

    .m8-pt-lg-1 {
        padding-top: .25rem !important
    }

    .m8-pt-lg-2 {
        padding-top: .5rem !important
    }

    .m8-pt-lg-3 {
        padding-top: .75rem !important
    }

    .m8-pt-lg-4 {
        padding-top: 1rem !important
    }

    .m8-pt-lg-5 {
        padding-top: 1.25rem !important
    }

    .m8-pt-lg-6 {
        padding-top: 1.5rem !important
    }

    .m8-pt-lg-7 {
        padding-top: 1.75rem !important
    }

    .m8-pt-lg-8 {
        padding-top: 2rem !important
    }

    .m8-pt-lg-9 {
        padding-top: 2.25rem !important
    }

    .m8-pt-lg-10 {
        padding-top: 2.5rem !important
    }

    .m8-pt-lg-11 {
        padding-top: 2.75rem !important
    }

    .m8-pt-lg-12 {
        padding-top: 3rem !important
    }

    .m8-pt-lg-13 {
        padding-top: 3.25rem !important
    }

    .m8-pt-lg-14 {
        padding-top: 3.5rem !important
    }

    .m8-pt-lg-15 {
        padding-top: 3.75rem !important
    }

    .m8-pt-lg-16 {
        padding-top: 4rem !important
    }

    .m8-pt-lg-17 {
        padding-top: 4.25rem !important
    }

    .m8-pt-lg-18 {
        padding-top: 4.5rem !important
    }

    .m8-pt-lg-19 {
        padding-top: 4.75rem !important
    }

    .m8-pt-lg-20 {
        padding-top: 5rem !important
    }

    .m8-pe-lg-0 {
        padding-right: 0 !important
    }

    .m8-pe-lg-1 {
        padding-right: .25rem !important
    }

    .m8-pe-lg-2 {
        padding-right: .5rem !important
    }

    .m8-pe-lg-3 {
        padding-right: .75rem !important
    }

    .m8-pe-lg-4 {
        padding-right: 1rem !important
    }

    .m8-pe-lg-5 {
        padding-right: 1.25rem !important
    }

    .m8-pe-lg-6 {
        padding-right: 1.5rem !important
    }

    .m8-pe-lg-7 {
        padding-right: 1.75rem !important
    }

    .m8-pe-lg-8 {
        padding-right: 2rem !important
    }

    .m8-pe-lg-9 {
        padding-right: 2.25rem !important
    }

    .m8-pe-lg-10 {
        padding-right: 2.5rem !important
    }

    .m8-pe-lg-11 {
        padding-right: 2.75rem !important
    }

    .m8-pe-lg-12 {
        padding-right: 3rem !important
    }

    .m8-pe-lg-13 {
        padding-right: 3.25rem !important
    }

    .m8-pe-lg-14 {
        padding-right: 3.5rem !important
    }

    .m8-pe-lg-15 {
        padding-right: 3.75rem !important
    }

    .m8-pe-lg-16 {
        padding-right: 4rem !important
    }

    .m8-pe-lg-17 {
        padding-right: 4.25rem !important
    }

    .m8-pe-lg-18 {
        padding-right: 4.5rem !important
    }

    .m8-pe-lg-19 {
        padding-right: 4.75rem !important
    }

    .m8-pe-lg-20 {
        padding-right: 5rem !important
    }

    .m8-pb-lg-0 {
        padding-bottom: 0 !important
    }

    .m8-pb-lg-1 {
        padding-bottom: .25rem !important
    }

    .m8-pb-lg-2 {
        padding-bottom: .5rem !important
    }

    .m8-pb-lg-3 {
        padding-bottom: .75rem !important
    }

    .m8-pb-lg-4 {
        padding-bottom: 1rem !important
    }

    .m8-pb-lg-5 {
        padding-bottom: 1.25rem !important
    }

    .m8-pb-lg-6 {
        padding-bottom: 1.5rem !important
    }

    .m8-pb-lg-7 {
        padding-bottom: 1.75rem !important
    }

    .m8-pb-lg-8 {
        padding-bottom: 2rem !important
    }

    .m8-pb-lg-9 {
        padding-bottom: 2.25rem !important
    }

    .m8-pb-lg-10 {
        padding-bottom: 2.5rem !important
    }

    .m8-pb-lg-11 {
        padding-bottom: 2.75rem !important
    }

    .m8-pb-lg-12 {
        padding-bottom: 3rem !important
    }

    .m8-pb-lg-13 {
        padding-bottom: 3.25rem !important
    }

    .m8-pb-lg-14 {
        padding-bottom: 3.5rem !important
    }

    .m8-pb-lg-15 {
        padding-bottom: 3.75rem !important
    }

    .m8-pb-lg-16 {
        padding-bottom: 4rem !important
    }

    .m8-pb-lg-17 {
        padding-bottom: 4.25rem !important
    }

    .m8-pb-lg-18 {
        padding-bottom: 4.5rem !important
    }

    .m8-pb-lg-19 {
        padding-bottom: 4.75rem !important
    }

    .m8-pb-lg-20 {
        padding-bottom: 5rem !important
    }

    .m8-ps-lg-0 {
        padding-left: 0 !important
    }

    .m8-ps-lg-1 {
        padding-left: .25rem !important
    }

    .m8-ps-lg-2 {
        padding-left: .5rem !important
    }

    .m8-ps-lg-3 {
        padding-left: .75rem !important
    }

    .m8-ps-lg-4 {
        padding-left: 1rem !important
    }

    .m8-ps-lg-5 {
        padding-left: 1.25rem !important
    }

    .m8-ps-lg-6 {
        padding-left: 1.5rem !important
    }

    .m8-ps-lg-7 {
        padding-left: 1.75rem !important
    }

    .m8-ps-lg-8 {
        padding-left: 2rem !important
    }

    .m8-ps-lg-9 {
        padding-left: 2.25rem !important
    }

    .m8-ps-lg-10 {
        padding-left: 2.5rem !important
    }

    .m8-ps-lg-11 {
        padding-left: 2.75rem !important
    }

    .m8-ps-lg-12 {
        padding-left: 3rem !important
    }

    .m8-ps-lg-13 {
        padding-left: 3.25rem !important
    }

    .m8-ps-lg-14 {
        padding-left: 3.5rem !important
    }

    .m8-ps-lg-15 {
        padding-left: 3.75rem !important
    }

    .m8-ps-lg-16 {
        padding-left: 4rem !important
    }

    .m8-ps-lg-17 {
        padding-left: 4.25rem !important
    }

    .m8-ps-lg-18 {
        padding-left: 4.5rem !important
    }

    .m8-ps-lg-19 {
        padding-left: 4.75rem !important
    }

    .m8-ps-lg-20 {
        padding-left: 5rem !important
    }

    .m8-gap-lg-0 {
        gap: 0 !important
    }

    .m8-gap-lg-1 {
        gap: .25rem !important
    }

    .m8-gap-lg-2 {
        gap: .5rem !important
    }

    .m8-gap-lg-3 {
        gap: .75rem !important
    }

    .m8-gap-lg-4 {
        gap: 1rem !important
    }

    .m8-gap-lg-5 {
        gap: 1.25rem !important
    }

    .m8-gap-lg-6 {
        gap: 1.5rem !important
    }

    .m8-gap-lg-7 {
        gap: 1.75rem !important
    }

    .m8-gap-lg-8 {
        gap: 2rem !important
    }

    .m8-gap-lg-9 {
        gap: 2.25rem !important
    }

    .m8-gap-lg-10 {
        gap: 2.5rem !important
    }

    .m8-gap-lg-11 {
        gap: 2.75rem !important
    }

    .m8-gap-lg-12 {
        gap: 3rem !important
    }

    .m8-gap-lg-13 {
        gap: 3.25rem !important
    }

    .m8-gap-lg-14 {
        gap: 3.5rem !important
    }

    .m8-gap-lg-15 {
        gap: 3.75rem !important
    }

    .m8-gap-lg-16 {
        gap: 4rem !important
    }

    .m8-gap-lg-17 {
        gap: 4.25rem !important
    }

    .m8-gap-lg-18 {
        gap: 4.5rem !important
    }

    .m8-gap-lg-19 {
        gap: 4.75rem !important
    }

    .m8-gap-lg-20 {
        gap: 5rem !important
    }

    .m8-row-gap-lg-0 {
        row-gap: 0 !important
    }

    .m8-row-gap-lg-1 {
        row-gap: .25rem !important
    }

    .m8-row-gap-lg-2 {
        row-gap: .5rem !important
    }

    .m8-row-gap-lg-3 {
        row-gap: .75rem !important
    }

    .m8-row-gap-lg-4 {
        row-gap: 1rem !important
    }

    .m8-row-gap-lg-5 {
        row-gap: 1.25rem !important
    }

    .m8-row-gap-lg-6 {
        row-gap: 1.5rem !important
    }

    .m8-row-gap-lg-7 {
        row-gap: 1.75rem !important
    }

    .m8-row-gap-lg-8 {
        row-gap: 2rem !important
    }

    .m8-row-gap-lg-9 {
        row-gap: 2.25rem !important
    }

    .m8-row-gap-lg-10 {
        row-gap: 2.5rem !important
    }

    .m8-row-gap-lg-11 {
        row-gap: 2.75rem !important
    }

    .m8-row-gap-lg-12 {
        row-gap: 3rem !important
    }

    .m8-row-gap-lg-13 {
        row-gap: 3.25rem !important
    }

    .m8-row-gap-lg-14 {
        row-gap: 3.5rem !important
    }

    .m8-row-gap-lg-15 {
        row-gap: 3.75rem !important
    }

    .m8-row-gap-lg-16 {
        row-gap: 4rem !important
    }

    .m8-row-gap-lg-17 {
        row-gap: 4.25rem !important
    }

    .m8-row-gap-lg-18 {
        row-gap: 4.5rem !important
    }

    .m8-row-gap-lg-19 {
        row-gap: 4.75rem !important
    }

    .m8-row-gap-lg-20 {
        row-gap: 5rem !important
    }

    .m8-column-gap-lg-0 {
        column-gap: 0 !important
    }

    .m8-column-gap-lg-1 {
        column-gap: .25rem !important
    }

    .m8-column-gap-lg-2 {
        column-gap: .5rem !important
    }

    .m8-column-gap-lg-3 {
        column-gap: .75rem !important
    }

    .m8-column-gap-lg-4 {
        column-gap: 1rem !important
    }

    .m8-column-gap-lg-5 {
        column-gap: 1.25rem !important
    }

    .m8-column-gap-lg-6 {
        column-gap: 1.5rem !important
    }

    .m8-column-gap-lg-7 {
        column-gap: 1.75rem !important
    }

    .m8-column-gap-lg-8 {
        column-gap: 2rem !important
    }

    .m8-column-gap-lg-9 {
        column-gap: 2.25rem !important
    }

    .m8-column-gap-lg-10 {
        column-gap: 2.5rem !important
    }

    .m8-column-gap-lg-11 {
        column-gap: 2.75rem !important
    }

    .m8-column-gap-lg-12 {
        column-gap: 3rem !important
    }

    .m8-column-gap-lg-13 {
        column-gap: 3.25rem !important
    }

    .m8-column-gap-lg-14 {
        column-gap: 3.5rem !important
    }

    .m8-column-gap-lg-15 {
        column-gap: 3.75rem !important
    }

    .m8-column-gap-lg-16 {
        column-gap: 4rem !important
    }

    .m8-column-gap-lg-17 {
        column-gap: 4.25rem !important
    }

    .m8-column-gap-lg-18 {
        column-gap: 4.5rem !important
    }

    .m8-column-gap-lg-19 {
        column-gap: 4.75rem !important
    }

    .m8-column-gap-lg-20 {
        column-gap: 5rem !important
    }

    .m8-fs-lg-1 {
        font-size: calc(1.3rem + .6vw) !important
    }

    .m8-fs-lg-2 {
        font-size: calc(1.275rem + .3vw) !important
    }

    .m8-fs-lg-3 {
        font-size: calc(1.26rem + .12vw) !important
    }

    .m8-fs-lg-4 {
        font-size: 1.25rem !important
    }

    .m8-fs-lg-5 {
        font-size: 1.15rem !important
    }

    .m8-fs-lg-6 {
        font-size: 1.075rem !important
    }

    .m8-fs-lg-7 {
        font-size: .95rem !important
    }

    .m8-fs-lg-8 {
        font-size: .85rem !important
    }

    .m8-fs-lg-9 {
        font-size: .75rem !important
    }

    .m8-fs-lg-10 {
        font-size: .5rem !important
    }

    .m8-fs-lg-sm {
        font-size: .95rem !important
    }

    .m8-fs-lg-base {
        font-size: 1rem !important
    }

    .m8-fs-lg-lg {
        font-size: 1.075rem !important
    }

    .m8-fs-lg-xl {
        font-size: 1.21rem !important
    }

    .m8-fs-lg-fluid {
        font-size: 100% !important
    }

    .m8-fs-lg-2x {
        font-size: calc(1.325rem + .9vw) !important
    }

    .m8-fs-lg-2qx {
        font-size: calc(1.35rem + 1.2vw) !important
    }

    .m8-fs-lg-2hx {
        font-size: calc(1.375rem + 1.5vw) !important
    }

    .m8-fs-lg-2tx {
        font-size: calc(1.4rem + 1.8vw) !important
    }

    .m8-fs-lg-3x {
        font-size: calc(1.425rem + 2.1vw) !important
    }

    .m8-fs-lg-3qx {
        font-size: calc(1.45rem + 2.4vw) !important
    }

    .m8-fs-lg-3hx {
        font-size: calc(1.475rem + 2.7vw) !important
    }

    .m8-fs-lg-3tx {
        font-size: calc(1.5rem + 3vw) !important
    }

    .m8-fs-lg-4x {
        font-size: calc(1.525rem + 3.3vw) !important
    }

    .m8-fs-lg-4qx {
        font-size: calc(1.55rem + 3.6vw) !important
    }

    .m8-fs-lg-4hx {
        font-size: calc(1.575rem + 3.9vw) !important
    }

    .m8-fs-lg-4tx {
        font-size: calc(1.6rem + 4.2vw) !important
    }

    .m8-fs-lg-5x {
        font-size: calc(1.625rem + 4.5vw) !important
    }

    .m8-fs-lg-5qx {
        font-size: calc(1.65rem + 4.8vw) !important
    }

    .m8-fs-lg-5hx {
        font-size: calc(1.675rem + 5.1vw) !important
    }

    .m8-fs-lg-5tx {
        font-size: calc(1.7rem + 5.4vw) !important
    }

    .m8-fs-lg-6x {
        font-size: calc(1.725rem + 5.7vw) !important
    }

    .m8-fs-lg-6qx {
        font-size: calc(1.75rem + 6vw) !important
    }

    .m8-fs-lg-6hx {
        font-size: calc(1.775rem + 6.3vw) !important
    }

    .m8-fs-lg-6tx {
        font-size: calc(1.8rem + 6.6vw) !important
    }

    .m8-fs-lg-7x {
        font-size: calc(1.825rem + 6.9vw) !important
    }

    .m8-fs-lg-7qx {
        font-size: calc(1.85rem + 7.2vw) !important
    }

    .m8-fs-lg-7hx {
        font-size: calc(1.875rem + 7.5vw) !important
    }

    .m8-fs-lg-7tx {
        font-size: calc(1.9rem + 7.8vw) !important
    }

    .m8-text-lg-start {
        text-align: left !important
    }

    .m8-text-lg-end {
        text-align: right !important
    }

    .m8-text-lg-center {
        text-align: center !important
    }

    .m8-min-w-lg-unset {
        min-width: unset !important
    }

    .m8-min-w-lg-25 {
        min-width: 25% !important
    }

    .m8-min-w-lg-50 {
        min-width: 50% !important
    }

    .m8-min-w-lg-75 {
        min-width: 75% !important
    }

    .m8-min-w-lg-100 {
        min-width: 100% !important
    }

    .m8-min-w-lg-auto {
        min-width: auto !important
    }

    .m8-min-w-lg-1px {
        min-width: 1px !important
    }

    .m8-min-w-lg-2px {
        min-width: 2px !important
    }

    .m8-min-w-lg-3px {
        min-width: 3px !important
    }

    .m8-min-w-lg-4px {
        min-width: 4px !important
    }

    .m8-min-w-lg-5px {
        min-width: 5px !important
    }

    .m8-min-w-lg-6px {
        min-width: 6px !important
    }

    .m8-min-w-lg-7px {
        min-width: 7px !important
    }

    .m8-min-w-lg-8px {
        min-width: 8px !important
    }

    .m8-min-w-lg-9px {
        min-width: 9px !important
    }

    .m8-min-w-lg-10px {
        min-width: 10px !important
    }

    .m8-min-w-lg-15px {
        min-width: 15px !important
    }

    .m8-min-w-lg-20px {
        min-width: 20px !important
    }

    .m8-min-w-lg-25px {
        min-width: 25px !important
    }

    .m8-min-w-lg-30px {
        min-width: 30px !important
    }

    .m8-min-w-lg-35px {
        min-width: 35px !important
    }

    .m8-min-w-lg-40px {
        min-width: 40px !important
    }

    .m8-min-w-lg-45px {
        min-width: 45px !important
    }

    .m8-min-w-lg-50px {
        min-width: 50px !important
    }

    .m8-min-w-lg-55px {
        min-width: 55px !important
    }

    .m8-min-w-lg-60px {
        min-width: 60px !important
    }

    .m8-min-w-lg-65px {
        min-width: 65px !important
    }

    .m8-min-w-lg-70px {
        min-width: 70px !important
    }

    .m8-min-w-lg-75px {
        min-width: 75px !important
    }

    .m8-min-w-lg-80px {
        min-width: 80px !important
    }

    .m8-min-w-lg-85px {
        min-width: 85px !important
    }

    .m8-min-w-lg-90px {
        min-width: 90px !important
    }

    .m8-min-w-lg-95px {
        min-width: 95px !important
    }

    .m8-min-w-lg-100px {
        min-width: 100px !important
    }

    .m8-min-w-lg-125px {
        min-width: 125px !important
    }

    .m8-min-w-lg-150px {
        min-width: 150px !important
    }

    .m8-min-w-lg-175px {
        min-width: 175px !important
    }

    .m8-min-w-lg-200px {
        min-width: 200px !important
    }

    .m8-min-w-lg-225px {
        min-width: 225px !important
    }

    .m8-min-w-lg-250px {
        min-width: 250px !important
    }

    .m8-min-w-lg-275px {
        min-width: 275px !important
    }

    .m8-min-w-lg-300px {
        min-width: 300px !important
    }

    .m8-min-w-lg-325px {
        min-width: 325px !important
    }

    .m8-min-w-lg-350px {
        min-width: 350px !important
    }

    .m8-min-w-lg-375px {
        min-width: 375px !important
    }

    .m8-min-w-lg-400px {
        min-width: 400px !important
    }

    .m8-min-w-lg-425px {
        min-width: 425px !important
    }

    .m8-min-w-lg-450px {
        min-width: 450px !important
    }

    .m8-min-w-lg-475px {
        min-width: 475px !important
    }

    .m8-min-w-lg-500px {
        min-width: 500px !important
    }

    .m8-min-w-lg-550px {
        min-width: 550px !important
    }

    .m8-min-w-lg-600px {
        min-width: 600px !important
    }

    .m8-min-w-lg-650px {
        min-width: 650px !important
    }

    .m8-min-w-lg-700px {
        min-width: 700px !important
    }

    .m8-min-w-lg-750px {
        min-width: 750px !important
    }

    .m8-min-w-lg-800px {
        min-width: 800px !important
    }

    .m8-min-w-lg-850px {
        min-width: 850px !important
    }

    .m8-min-w-lg-900px {
        min-width: 900px !important
    }

    .m8-min-w-lg-950px {
        min-width: 950px !important
    }

    .m8-min-w-lg-1000px {
        min-width: 1000px !important
    }

    .m8-min-h-lg-unset {
        min-height: unset !important
    }

    .m8-min-h-lg-25 {
        min-height: 25% !important
    }

    .m8-min-h-lg-50 {
        min-height: 50% !important
    }

    .m8-min-h-lg-75 {
        min-height: 75% !important
    }

    .m8-min-h-lg-100 {
        min-height: 100% !important
    }

    .m8-min-h-lg-auto {
        min-height: auto !important
    }

    .m8-min-h-lg-1px {
        min-height: 1px !important
    }

    .m8-min-h-lg-2px {
        min-height: 2px !important
    }

    .m8-min-h-lg-3px {
        min-height: 3px !important
    }

    .m8-min-h-lg-4px {
        min-height: 4px !important
    }

    .m8-min-h-lg-5px {
        min-height: 5px !important
    }

    .m8-min-h-lg-6px {
        min-height: 6px !important
    }

    .m8-min-h-lg-7px {
        min-height: 7px !important
    }

    .m8-min-h-lg-8px {
        min-height: 8px !important
    }

    .m8-min-h-lg-9px {
        min-height: 9px !important
    }

    .m8-min-h-lg-10px {
        min-height: 10px !important
    }

    .m8-min-h-lg-15px {
        min-height: 15px !important
    }

    .m8-min-h-lg-20px {
        min-height: 20px !important
    }

    .m8-min-h-lg-25px {
        min-height: 25px !important
    }

    .m8-min-h-lg-30px {
        min-height: 30px !important
    }

    .m8-min-h-lg-35px {
        min-height: 35px !important
    }

    .m8-min-h-lg-40px {
        min-height: 40px !important
    }

    .m8-min-h-lg-45px {
        min-height: 45px !important
    }

    .m8-min-h-lg-50px {
        min-height: 50px !important
    }

    .m8-min-h-lg-55px {
        min-height: 55px !important
    }

    .m8-min-h-lg-60px {
        min-height: 60px !important
    }

    .m8-min-h-lg-65px {
        min-height: 65px !important
    }

    .m8-min-h-lg-70px {
        min-height: 70px !important
    }

    .m8-min-h-lg-75px {
        min-height: 75px !important
    }

    .m8-min-h-lg-80px {
        min-height: 80px !important
    }

    .m8-min-h-lg-85px {
        min-height: 85px !important
    }

    .m8-min-h-lg-90px {
        min-height: 90px !important
    }

    .m8-min-h-lg-95px {
        min-height: 95px !important
    }

    .m8-min-h-lg-100px {
        min-height: 100px !important
    }

    .m8-min-h-lg-125px {
        min-height: 125px !important
    }

    .m8-min-h-lg-150px {
        min-height: 150px !important
    }

    .m8-min-h-lg-175px {
        min-height: 175px !important
    }

    .m8-min-h-lg-200px {
        min-height: 200px !important
    }

    .m8-min-h-lg-225px {
        min-height: 225px !important
    }

    .m8-min-h-lg-250px {
        min-height: 250px !important
    }

    .m8-min-h-lg-275px {
        min-height: 275px !important
    }

    .m8-min-h-lg-300px {
        min-height: 300px !important
    }

    .m8-min-h-lg-325px {
        min-height: 325px !important
    }

    .m8-min-h-lg-350px {
        min-height: 350px !important
    }

    .m8-min-h-lg-375px {
        min-height: 375px !important
    }

    .m8-min-h-lg-400px {
        min-height: 400px !important
    }

    .m8-min-h-lg-425px {
        min-height: 425px !important
    }

    .m8-min-h-lg-450px {
        min-height: 450px !important
    }

    .m8-min-h-lg-475px {
        min-height: 475px !important
    }

    .m8-min-h-lg-500px {
        min-height: 500px !important
    }

    .m8-min-h-lg-550px {
        min-height: 550px !important
    }

    .m8-min-h-lg-600px {
        min-height: 600px !important
    }

    .m8-min-h-lg-650px {
        min-height: 650px !important
    }

    .m8-min-h-lg-700px {
        min-height: 700px !important
    }

    .m8-min-h-lg-750px {
        min-height: 750px !important
    }

    .m8-min-h-lg-800px {
        min-height: 800px !important
    }

    .m8-min-h-lg-850px {
        min-height: 850px !important
    }

    .m8-min-h-lg-900px {
        min-height: 900px !important
    }

    .m8-min-h-lg-950px {
        min-height: 950px !important
    }

    .m8-min-h-lg-1000px {
        min-height: 1000px !important
    }
}

@media (min-width:1200px) {
    .m8-float-xl-start {
        float: left !important
    }

    .m8-float-xl-end {
        float: right !important
    }

    .m8-float-xl-none {
        float: none !important
    }

    .m8-object-fit-xl-contain {
        object-fit: contain !important
    }

    .m8-object-fit-xl-cover {
        object-fit: cover !important
    }

    .m8-object-fit-xl-fill {
        object-fit: fill !important
    }

    .m8-object-fit-xl-scale {
        object-fit: scale-down !important
    }

    .m8-object-fit-xl-none {
        object-fit: none !important
    }

    .m8-overflow-xl-auto {
        overflow: auto !important
    }

    .m8-overflow-xl-hidden {
        overflow: hidden !important
    }

    .m8-overflow-xl-visible {
        overflow: visible !important
    }

    .m8-overflow-xl-scroll {
        overflow: scroll !important
    }

    .m8-d-xl-inline {
        display: inline !important
    }

    .m8-d-xl-inline-block {
        display: inline-block !important
    }

    .m8-d-xl-block {
        display: block !important
    }

    .m8-d-xl-grid {
        display: grid !important
    }

    .m8-d-xl-inline-grid {
        display: inline-grid !important
    }

    .m8-d-xl-table {
        display: table !important
    }

    .m8-d-xl-table-row {
        display: table-row !important
    }

    .m8-d-xl-table-cell {
        display: table-cell !important
    }

    .m8-d-xl-flex {
        display: flex !important
    }

    .m8-d-xl-inline-flex {
        display: inline-flex !important
    }

    .m8-d-xl-none {
        display: none !important
    }

    .m8-position-xl-static {
        position: static !important
    }

    .m8-position-xl-relative {
        position: relative !important
    }

    .m8-position-xl-absolute {
        position: absolute !important
    }

    .m8-position-xl-fixed {
        position: fixed !important
    }

    .m8-position-xl-sticky {
        position: sticky !important
    }

    .m8-w-xl-unset {
        width: unset !important
    }

    .m8-w-xl-25 {
        width: 25% !important
    }

    .m8-w-xl-50 {
        width: 50% !important
    }

    .m8-w-xl-75 {
        width: 75% !important
    }

    .m8-w-xl-100 {
        width: 100% !important
    }

    .m8-w-xl-auto {
        width: auto !important
    }

    .m8-w-xl-1px {
        width: 1px !important
    }

    .m8-w-xl-2px {
        width: 2px !important
    }

    .m8-w-xl-3px {
        width: 3px !important
    }

    .m8-w-xl-4px {
        width: 4px !important
    }

    .m8-w-xl-5px {
        width: 5px !important
    }

    .m8-w-xl-6px {
        width: 6px !important
    }

    .m8-w-xl-7px {
        width: 7px !important
    }

    .m8-w-xl-8px {
        width: 8px !important
    }

    .m8-w-xl-9px {
        width: 9px !important
    }

    .m8-w-xl-10px {
        width: 10px !important
    }

    .m8-w-xl-15px {
        width: 15px !important
    }

    .m8-w-xl-20px {
        width: 20px !important
    }

    .m8-w-xl-25px {
        width: 25px !important
    }

    .m8-w-xl-30px {
        width: 30px !important
    }

    .m8-w-xl-35px {
        width: 35px !important
    }

    .m8-w-xl-40px {
        width: 40px !important
    }

    .m8-w-xl-45px {
        width: 45px !important
    }

    .m8-w-xl-50px {
        width: 50px !important
    }

    .m8-w-xl-55px {
        width: 55px !important
    }

    .m8-w-xl-60px {
        width: 60px !important
    }

    .m8-w-xl-65px {
        width: 65px !important
    }

    .m8-w-xl-70px {
        width: 70px !important
    }

    .m8-w-xl-75px {
        width: 75px !important
    }

    .m8-w-xl-80px {
        width: 80px !important
    }

    .m8-w-xl-85px {
        width: 85px !important
    }

    .m8-w-xl-90px {
        width: 90px !important
    }

    .m8-w-xl-95px {
        width: 95px !important
    }

    .m8-w-xl-100px {
        width: 100px !important
    }

    .m8-w-xl-125px {
        width: 125px !important
    }

    .m8-w-xl-150px {
        width: 150px !important
    }

    .m8-w-xl-175px {
        width: 175px !important
    }

    .m8-w-xl-200px {
        width: 200px !important
    }

    .m8-w-xl-225px {
        width: 225px !important
    }

    .m8-w-xl-250px {
        width: 250px !important
    }

    .m8-w-xl-275px {
        width: 275px !important
    }

    .m8-w-xl-300px {
        width: 300px !important
    }

    .m8-w-xl-325px {
        width: 325px !important
    }

    .m8-w-xl-350px {
        width: 350px !important
    }

    .m8-w-xl-375px {
        width: 375px !important
    }

    .m8-w-xl-400px {
        width: 400px !important
    }

    .m8-w-xl-425px {
        width: 425px !important
    }

    .m8-w-xl-450px {
        width: 450px !important
    }

    .m8-w-xl-475px {
        width: 475px !important
    }

    .m8-w-xl-500px {
        width: 500px !important
    }

    .m8-w-xl-550px {
        width: 550px !important
    }

    .m8-w-xl-600px {
        width: 600px !important
    }

    .m8-w-xl-650px {
        width: 650px !important
    }

    .m8-w-xl-700px {
        width: 700px !important
    }

    .m8-w-xl-750px {
        width: 750px !important
    }

    .m8-w-xl-800px {
        width: 800px !important
    }

    .m8-w-xl-850px {
        width: 850px !important
    }

    .m8-w-xl-900px {
        width: 900px !important
    }

    .m8-w-xl-950px {
        width: 950px !important
    }

    .m8-w-xl-1000px {
        width: 1000px !important
    }

    .m8-mw-xl-unset {
        max-width: unset !important
    }

    .m8-mw-xl-25 {
        max-width: 25% !important
    }

    .m8-mw-xl-50 {
        max-width: 50% !important
    }

    .m8-mw-xl-75 {
        max-width: 75% !important
    }

    .m8-mw-xl-100 {
        max-width: 100% !important
    }

    .m8-mw-xl-auto {
        max-width: auto !important
    }

    .m8-mw-xl-1px {
        max-width: 1px !important
    }

    .m8-mw-xl-2px {
        max-width: 2px !important
    }

    .m8-mw-xl-3px {
        max-width: 3px !important
    }

    .m8-mw-xl-4px {
        max-width: 4px !important
    }

    .m8-mw-xl-5px {
        max-width: 5px !important
    }

    .m8-mw-xl-6px {
        max-width: 6px !important
    }

    .m8-mw-xl-7px {
        max-width: 7px !important
    }

    .m8-mw-xl-8px {
        max-width: 8px !important
    }

    .m8-mw-xl-9px {
        max-width: 9px !important
    }

    .m8-mw-xl-10px {
        max-width: 10px !important
    }

    .m8-mw-xl-15px {
        max-width: 15px !important
    }

    .m8-mw-xl-20px {
        max-width: 20px !important
    }

    .m8-mw-xl-25px {
        max-width: 25px !important
    }

    .m8-mw-xl-30px {
        max-width: 30px !important
    }

    .m8-mw-xl-35px {
        max-width: 35px !important
    }

    .m8-mw-xl-40px {
        max-width: 40px !important
    }

    .m8-mw-xl-45px {
        max-width: 45px !important
    }

    .m8-mw-xl-50px {
        max-width: 50px !important
    }

    .m8-mw-xl-55px {
        max-width: 55px !important
    }

    .m8-mw-xl-60px {
        max-width: 60px !important
    }

    .m8-mw-xl-65px {
        max-width: 65px !important
    }

    .m8-mw-xl-70px {
        max-width: 70px !important
    }

    .m8-mw-xl-75px {
        max-width: 75px !important
    }

    .m8-mw-xl-80px {
        max-width: 80px !important
    }

    .m8-mw-xl-85px {
        max-width: 85px !important
    }

    .m8-mw-xl-90px {
        max-width: 90px !important
    }

    .m8-mw-xl-95px {
        max-width: 95px !important
    }

    .m8-mw-xl-100px {
        max-width: 100px !important
    }

    .m8-mw-xl-125px {
        max-width: 125px !important
    }

    .m8-mw-xl-150px {
        max-width: 150px !important
    }

    .m8-mw-xl-175px {
        max-width: 175px !important
    }

    .m8-mw-xl-200px {
        max-width: 200px !important
    }

    .m8-mw-xl-225px {
        max-width: 225px !important
    }

    .m8-mw-xl-250px {
        max-width: 250px !important
    }

    .m8-mw-xl-275px {
        max-width: 275px !important
    }

    .m8-mw-xl-300px {
        max-width: 300px !important
    }

    .m8-mw-xl-325px {
        max-width: 325px !important
    }

    .m8-mw-xl-350px {
        max-width: 350px !important
    }

    .m8-mw-xl-375px {
        max-width: 375px !important
    }

    .m8-mw-xl-400px {
        max-width: 400px !important
    }

    .m8-mw-xl-425px {
        max-width: 425px !important
    }

    .m8-mw-xl-450px {
        max-width: 450px !important
    }

    .m8-mw-xl-475px {
        max-width: 475px !important
    }

    .m8-mw-xl-500px {
        max-width: 500px !important
    }

    .m8-mw-xl-550px {
        max-width: 550px !important
    }

    .m8-mw-xl-600px {
        max-width: 600px !important
    }

    .m8-mw-xl-650px {
        max-width: 650px !important
    }

    .m8-mw-xl-700px {
        max-width: 700px !important
    }

    .m8-mw-xl-750px {
        max-width: 750px !important
    }

    .m8-mw-xl-800px {
        max-width: 800px !important
    }

    .m8-mw-xl-850px {
        max-width: 850px !important
    }

    .m8-mw-xl-900px {
        max-width: 900px !important
    }

    .m8-mw-xl-950px {
        max-width: 950px !important
    }

    .m8-mw-xl-1000px {
        max-width: 1000px !important
    }

    .m8-h-xl-unset {
        height: unset !important
    }

    .m8-h-xl-25 {
        height: 25% !important
    }

    .m8-h-xl-50 {
        height: 50% !important
    }

    .m8-h-xl-75 {
        height: 75% !important
    }

    .m8-h-xl-100 {
        height: 100% !important
    }

    .m8-h-xl-auto {
        height: auto !important
    }

    .m8-h-xl-1px {
        height: 1px !important
    }

    .m8-h-xl-2px {
        height: 2px !important
    }

    .m8-h-xl-3px {
        height: 3px !important
    }

    .m8-h-xl-4px {
        height: 4px !important
    }

    .m8-h-xl-5px {
        height: 5px !important
    }

    .m8-h-xl-6px {
        height: 6px !important
    }

    .m8-h-xl-7px {
        height: 7px !important
    }

    .m8-h-xl-8px {
        height: 8px !important
    }

    .m8-h-xl-9px {
        height: 9px !important
    }

    .m8-h-xl-10px {
        height: 10px !important
    }

    .m8-h-xl-15px {
        height: 15px !important
    }

    .m8-h-xl-20px {
        height: 20px !important
    }

    .m8-h-xl-25px {
        height: 25px !important
    }

    .m8-h-xl-30px {
        height: 30px !important
    }

    .m8-h-xl-35px {
        height: 35px !important
    }

    .m8-h-xl-40px {
        height: 40px !important
    }

    .m8-h-xl-45px {
        height: 45px !important
    }

    .m8-h-xl-50px {
        height: 50px !important
    }

    .m8-h-xl-55px {
        height: 55px !important
    }

    .m8-h-xl-60px {
        height: 60px !important
    }

    .m8-h-xl-65px {
        height: 65px !important
    }

    .m8-h-xl-70px {
        height: 70px !important
    }

    .m8-h-xl-75px {
        height: 75px !important
    }

    .m8-h-xl-80px {
        height: 80px !important
    }

    .m8-h-xl-85px {
        height: 85px !important
    }

    .m8-h-xl-90px {
        height: 90px !important
    }

    .m8-h-xl-95px {
        height: 95px !important
    }

    .m8-h-xl-100px {
        height: 100px !important
    }

    .m8-h-xl-125px {
        height: 125px !important
    }

    .m8-h-xl-150px {
        height: 150px !important
    }

    .m8-h-xl-175px {
        height: 175px !important
    }

    .m8-h-xl-200px {
        height: 200px !important
    }

    .m8-h-xl-225px {
        height: 225px !important
    }

    .m8-h-xl-250px {
        height: 250px !important
    }

    .m8-h-xl-275px {
        height: 275px !important
    }

    .m8-h-xl-300px {
        height: 300px !important
    }

    .m8-h-xl-325px {
        height: 325px !important
    }

    .m8-h-xl-350px {
        height: 350px !important
    }

    .m8-h-xl-375px {
        height: 375px !important
    }

    .m8-h-xl-400px {
        height: 400px !important
    }

    .m8-h-xl-425px {
        height: 425px !important
    }

    .m8-h-xl-450px {
        height: 450px !important
    }

    .m8-h-xl-475px {
        height: 475px !important
    }

    .m8-h-xl-500px {
        height: 500px !important
    }

    .m8-h-xl-550px {
        height: 550px !important
    }

    .m8-h-xl-600px {
        height: 600px !important
    }

    .m8-h-xl-650px {
        height: 650px !important
    }

    .m8-h-xl-700px {
        height: 700px !important
    }

    .m8-h-xl-750px {
        height: 750px !important
    }

    .m8-h-xl-800px {
        height: 800px !important
    }

    .m8-h-xl-850px {
        height: 850px !important
    }

    .m8-h-xl-900px {
        height: 900px !important
    }

    .m8-h-xl-950px {
        height: 950px !important
    }

    .m8-h-xl-1000px {
        height: 1000px !important
    }

    .m8-mh-xl-unset {
        max-height: unset !important
    }

    .m8-mh-xl-25 {
        max-height: 25% !important
    }

    .m8-mh-xl-50 {
        max-height: 50% !important
    }

    .m8-mh-xl-75 {
        max-height: 75% !important
    }

    .m8-mh-xl-100 {
        max-height: 100% !important
    }

    .m8-mh-xl-auto {
        max-height: auto !important
    }

    .m8-mh-xl-1px {
        max-height: 1px !important
    }

    .m8-mh-xl-2px {
        max-height: 2px !important
    }

    .m8-mh-xl-3px {
        max-height: 3px !important
    }

    .m8-mh-xl-4px {
        max-height: 4px !important
    }

    .m8-mh-xl-5px {
        max-height: 5px !important
    }

    .m8-mh-xl-6px {
        max-height: 6px !important
    }

    .m8-mh-xl-7px {
        max-height: 7px !important
    }

    .m8-mh-xl-8px {
        max-height: 8px !important
    }

    .m8-mh-xl-9px {
        max-height: 9px !important
    }

    .m8-mh-xl-10px {
        max-height: 10px !important
    }

    .m8-mh-xl-15px {
        max-height: 15px !important
    }

    .m8-mh-xl-20px {
        max-height: 20px !important
    }

    .m8-mh-xl-25px {
        max-height: 25px !important
    }

    .m8-mh-xl-30px {
        max-height: 30px !important
    }

    .m8-mh-xl-35px {
        max-height: 35px !important
    }

    .m8-mh-xl-40px {
        max-height: 40px !important
    }

    .m8-mh-xl-45px {
        max-height: 45px !important
    }

    .m8-mh-xl-50px {
        max-height: 50px !important
    }

    .m8-mh-xl-55px {
        max-height: 55px !important
    }

    .m8-mh-xl-60px {
        max-height: 60px !important
    }

    .m8-mh-xl-65px {
        max-height: 65px !important
    }

    .m8-mh-xl-70px {
        max-height: 70px !important
    }

    .m8-mh-xl-75px {
        max-height: 75px !important
    }

    .m8-mh-xl-80px {
        max-height: 80px !important
    }

    .m8-mh-xl-85px {
        max-height: 85px !important
    }

    .m8-mh-xl-90px {
        max-height: 90px !important
    }

    .m8-mh-xl-95px {
        max-height: 95px !important
    }

    .m8-mh-xl-100px {
        max-height: 100px !important
    }

    .m8-mh-xl-125px {
        max-height: 125px !important
    }

    .m8-mh-xl-150px {
        max-height: 150px !important
    }

    .m8-mh-xl-175px {
        max-height: 175px !important
    }

    .m8-mh-xl-200px {
        max-height: 200px !important
    }

    .m8-mh-xl-225px {
        max-height: 225px !important
    }

    .m8-mh-xl-250px {
        max-height: 250px !important
    }

    .m8-mh-xl-275px {
        max-height: 275px !important
    }

    .m8-mh-xl-300px {
        max-height: 300px !important
    }

    .m8-mh-xl-325px {
        max-height: 325px !important
    }

    .m8-mh-xl-350px {
        max-height: 350px !important
    }

    .m8-mh-xl-375px {
        max-height: 375px !important
    }

    .m8-mh-xl-400px {
        max-height: 400px !important
    }

    .m8-mh-xl-425px {
        max-height: 425px !important
    }

    .m8-mh-xl-450px {
        max-height: 450px !important
    }

    .m8-mh-xl-475px {
        max-height: 475px !important
    }

    .m8-mh-xl-500px {
        max-height: 500px !important
    }

    .m8-mh-xl-550px {
        max-height: 550px !important
    }

    .m8-mh-xl-600px {
        max-height: 600px !important
    }

    .m8-mh-xl-650px {
        max-height: 650px !important
    }

    .m8-mh-xl-700px {
        max-height: 700px !important
    }

    .m8-mh-xl-750px {
        max-height: 750px !important
    }

    .m8-mh-xl-800px {
        max-height: 800px !important
    }

    .m8-mh-xl-850px {
        max-height: 850px !important
    }

    .m8-mh-xl-900px {
        max-height: 900px !important
    }

    .m8-mh-xl-950px {
        max-height: 950px !important
    }

    .m8-mh-xl-1000px {
        max-height: 1000px !important
    }

    .m8-flex-xl-fill {
        flex: 1 1 auto !important
    }

    .m8-flex-xl-row {
        flex-direction: row !important
    }

    .m8-flex-xl-column {
        flex-direction: column !important
    }

    .m8-flex-xl-row-reverse {
        flex-direction: row-reverse !important
    }

    .m8-flex-xl-column-reverse {
        flex-direction: column-reverse !important
    }

    .m8-flex-xl-grow-0 {
        flex-grow: 0 !important
    }

    .m8-flex-xl-grow-1 {
        flex-grow: 1 !important
    }

    .m8-flex-xl-shrink-0 {
        flex-shrink: 0 !important
    }

    .m8-flex-xl-shrink-1 {
        flex-shrink: 1 !important
    }

    .m8-flex-xl-wrap {
        flex-wrap: wrap !important
    }

    .m8-flex-xl-nowrap {
        flex-wrap: nowrap !important
    }

    .m8-flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .m8-justify-content-xl-start {
        justify-content: flex-start !important
    }

    .m8-justify-content-xl-end {
        justify-content: flex-end !important
    }

    .m8-justify-content-xl-center {
        justify-content: center !important
    }

    .m8-justify-content-xl-between {
        justify-content: space-between !important
    }

    .m8-justify-content-xl-around {
        justify-content: space-around !important
    }

    .m8-justify-content-xl-evenly {
        justify-content: space-evenly !important
    }

    .m8-align-items-xl-start {
        align-items: flex-start !important
    }

    .m8-align-items-xl-end {
        align-items: flex-end !important
    }

    .m8-align-items-xl-center {
        align-items: center !important
    }

    .m8-align-items-xl-baseline {
        align-items: baseline !important
    }

    .m8-align-items-xl-stretch {
        align-items: stretch !important
    }

    .m8-align-content-xl-start {
        align-content: flex-start !important
    }

    .m8-align-content-xl-end {
        align-content: flex-end !important
    }

    .m8-align-content-xl-center {
        align-content: center !important
    }

    .m8-align-content-xl-between {
        align-content: space-between !important
    }

    .m8-align-content-xl-around {
        align-content: space-around !important
    }

    .m8-align-content-xl-stretch {
        align-content: stretch !important
    }

    .m8-align-self-xl-auto {
        align-self: auto !important
    }

    .m8-align-self-xl-start {
        align-self: flex-start !important
    }

    .m8-align-self-xl-end {
        align-self: flex-end !important
    }

    .m8-align-self-xl-center {
        align-self: center !important
    }

    .m8-align-self-xl-baseline {
        align-self: baseline !important
    }

    .m8-align-self-xl-stretch {
        align-self: stretch !important
    }

    .m8-order-xl-first {
        order: -1 !important
    }

    .m8-order-xl-0 {
        order: 0 !important
    }

    .m8-order-xl-1 {
        order: 1 !important
    }

    .m8-order-xl-2 {
        order: 2 !important
    }

    .m8-order-xl-3 {
        order: 3 !important
    }

    .m8-order-xl-4 {
        order: 4 !important
    }

    .m8-order-xl-5 {
        order: 5 !important
    }

    .m8-order-xl-last {
        order: 6 !important
    }

    .m8-m-xl-0 {
        margin: 0 !important
    }

    .m8-m-xl-1 {
        margin: .25rem !important
    }

    .m8-m-xl-2 {
        margin: .5rem !important
    }

    .m8-m-xl-3 {
        margin: .75rem !important
    }

    .m8-m-xl-4 {
        margin: 1rem !important
    }

    .m8-m-xl-5 {
        margin: 1.25rem !important
    }

    .m8-m-xl-6 {
        margin: 1.5rem !important
    }

    .m8-m-xl-7 {
        margin: 1.75rem !important
    }

    .m8-m-xl-8 {
        margin: 2rem !important
    }

    .m8-m-xl-9 {
        margin: 2.25rem !important
    }

    .m8-m-xl-10 {
        margin: 2.5rem !important
    }

    .m8-m-xl-11 {
        margin: 2.75rem !important
    }

    .m8-m-xl-12 {
        margin: 3rem !important
    }

    .m8-m-xl-13 {
        margin: 3.25rem !important
    }

    .m8-m-xl-14 {
        margin: 3.5rem !important
    }

    .m8-m-xl-15 {
        margin: 3.75rem !important
    }

    .m8-m-xl-16 {
        margin: 4rem !important
    }

    .m8-m-xl-17 {
        margin: 4.25rem !important
    }

    .m8-m-xl-18 {
        margin: 4.5rem !important
    }

    .m8-m-xl-19 {
        margin: 4.75rem !important
    }

    .m8-m-xl-20 {
        margin: 5rem !important
    }

    .m8-m-xl-auto {
        margin: auto !important
    }

    .m8-mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .m8-mx-xl-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .m8-mx-xl-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .m8-mx-xl-3 {
        margin-right: .75rem !important;
        margin-left: .75rem !important
    }

    .m8-mx-xl-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .m8-mx-xl-5 {
        margin-right: 1.25rem !important;
        margin-left: 1.25rem !important
    }

    .m8-mx-xl-6 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .m8-mx-xl-7 {
        margin-right: 1.75rem !important;
        margin-left: 1.75rem !important
    }

    .m8-mx-xl-8 {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }

    .m8-mx-xl-9 {
        margin-right: 2.25rem !important;
        margin-left: 2.25rem !important
    }

    .m8-mx-xl-10 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important
    }

    .m8-mx-xl-11 {
        margin-right: 2.75rem !important;
        margin-left: 2.75rem !important
    }

    .m8-mx-xl-12 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .m8-mx-xl-13 {
        margin-right: 3.25rem !important;
        margin-left: 3.25rem !important
    }

    .m8-mx-xl-14 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important
    }

    .m8-mx-xl-15 {
        margin-right: 3.75rem !important;
        margin-left: 3.75rem !important
    }

    .m8-mx-xl-16 {
        margin-right: 4rem !important;
        margin-left: 4rem !important
    }

    .m8-mx-xl-17 {
        margin-right: 4.25rem !important;
        margin-left: 4.25rem !important
    }

    .m8-mx-xl-18 {
        margin-right: 4.5rem !important;
        margin-left: 4.5rem !important
    }

    .m8-mx-xl-19 {
        margin-right: 4.75rem !important;
        margin-left: 4.75rem !important
    }

    .m8-mx-xl-20 {
        margin-right: 5rem !important;
        margin-left: 5rem !important
    }

    .m8-mx-xl-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .m8-my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .m8-my-xl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .m8-my-xl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .m8-my-xl-3 {
        margin-top: .75rem !important;
        margin-bottom: .75rem !important
    }

    .m8-my-xl-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .m8-my-xl-5 {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important
    }

    .m8-my-xl-6 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .m8-my-xl-7 {
        margin-top: 1.75rem !important;
        margin-bottom: 1.75rem !important
    }

    .m8-my-xl-8 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }

    .m8-my-xl-9 {
        margin-top: 2.25rem !important;
        margin-bottom: 2.25rem !important
    }

    .m8-my-xl-10 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important
    }

    .m8-my-xl-11 {
        margin-top: 2.75rem !important;
        margin-bottom: 2.75rem !important
    }

    .m8-my-xl-12 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .m8-my-xl-13 {
        margin-top: 3.25rem !important;
        margin-bottom: 3.25rem !important
    }

    .m8-my-xl-14 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important
    }

    .m8-my-xl-15 {
        margin-top: 3.75rem !important;
        margin-bottom: 3.75rem !important
    }

    .m8-my-xl-16 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important
    }

    .m8-my-xl-17 {
        margin-top: 4.25rem !important;
        margin-bottom: 4.25rem !important
    }

    .m8-my-xl-18 {
        margin-top: 4.5rem !important;
        margin-bottom: 4.5rem !important
    }

    .m8-my-xl-19 {
        margin-top: 4.75rem !important;
        margin-bottom: 4.75rem !important
    }

    .m8-my-xl-20 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important
    }

    .m8-my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .m8-mt-xl-0 {
        margin-top: 0 !important
    }

    .m8-mt-xl-1 {
        margin-top: .25rem !important
    }

    .m8-mt-xl-2 {
        margin-top: .5rem !important
    }

    .m8-mt-xl-3 {
        margin-top: .75rem !important
    }

    .m8-mt-xl-4 {
        margin-top: 1rem !important
    }

    .m8-mt-xl-5 {
        margin-top: 1.25rem !important
    }

    .m8-mt-xl-6 {
        margin-top: 1.5rem !important
    }

    .m8-mt-xl-7 {
        margin-top: 1.75rem !important
    }

    .m8-mt-xl-8 {
        margin-top: 2rem !important
    }

    .m8-mt-xl-9 {
        margin-top: 2.25rem !important
    }

    .m8-mt-xl-10 {
        margin-top: 2.5rem !important
    }

    .m8-mt-xl-11 {
        margin-top: 2.75rem !important
    }

    .m8-mt-xl-12 {
        margin-top: 3rem !important
    }

    .m8-mt-xl-13 {
        margin-top: 3.25rem !important
    }

    .m8-mt-xl-14 {
        margin-top: 3.5rem !important
    }

    .m8-mt-xl-15 {
        margin-top: 3.75rem !important
    }

    .m8-mt-xl-16 {
        margin-top: 4rem !important
    }

    .m8-mt-xl-17 {
        margin-top: 4.25rem !important
    }

    .m8-mt-xl-18 {
        margin-top: 4.5rem !important
    }

    .m8-mt-xl-19 {
        margin-top: 4.75rem !important
    }

    .m8-mt-xl-20 {
        margin-top: 5rem !important
    }

    .m8-mt-xl-auto {
        margin-top: auto !important
    }

    .m8-me-xl-0 {
        margin-right: 0 !important
    }

    .m8-me-xl-1 {
        margin-right: .25rem !important
    }

    .m8-me-xl-2 {
        margin-right: .5rem !important
    }

    .m8-me-xl-3 {
        margin-right: .75rem !important
    }

    .m8-me-xl-4 {
        margin-right: 1rem !important
    }

    .m8-me-xl-5 {
        margin-right: 1.25rem !important
    }

    .m8-me-xl-6 {
        margin-right: 1.5rem !important
    }

    .m8-me-xl-7 {
        margin-right: 1.75rem !important
    }

    .m8-me-xl-8 {
        margin-right: 2rem !important
    }

    .m8-me-xl-9 {
        margin-right: 2.25rem !important
    }

    .m8-me-xl-10 {
        margin-right: 2.5rem !important
    }

    .m8-me-xl-11 {
        margin-right: 2.75rem !important
    }

    .m8-me-xl-12 {
        margin-right: 3rem !important
    }

    .m8-me-xl-13 {
        margin-right: 3.25rem !important
    }

    .m8-me-xl-14 {
        margin-right: 3.5rem !important
    }

    .m8-me-xl-15 {
        margin-right: 3.75rem !important
    }

    .m8-me-xl-16 {
        margin-right: 4rem !important
    }

    .m8-me-xl-17 {
        margin-right: 4.25rem !important
    }

    .m8-me-xl-18 {
        margin-right: 4.5rem !important
    }

    .m8-me-xl-19 {
        margin-right: 4.75rem !important
    }

    .m8-me-xl-20 {
        margin-right: 5rem !important
    }

    .m8-me-xl-auto {
        margin-right: auto !important
    }

    .m8-mb-xl-0 {
        margin-bottom: 0 !important
    }

    .m8-mb-xl-1 {
        margin-bottom: .25rem !important
    }

    .m8-mb-xl-2 {
        margin-bottom: .5rem !important
    }

    .m8-mb-xl-3 {
        margin-bottom: .75rem !important
    }

    .m8-mb-xl-4 {
        margin-bottom: 1rem !important
    }

    .m8-mb-xl-5 {
        margin-bottom: 1.25rem !important
    }

    .m8-mb-xl-6 {
        margin-bottom: 1.5rem !important
    }

    .m8-mb-xl-7 {
        margin-bottom: 1.75rem !important
    }

    .m8-mb-xl-8 {
        margin-bottom: 2rem !important
    }

    .m8-mb-xl-9 {
        margin-bottom: 2.25rem !important
    }

    .m8-mb-xl-10 {
        margin-bottom: 2.5rem !important
    }

    .m8-mb-xl-11 {
        margin-bottom: 2.75rem !important
    }

    .m8-mb-xl-12 {
        margin-bottom: 3rem !important
    }

    .m8-mb-xl-13 {
        margin-bottom: 3.25rem !important
    }

    .m8-mb-xl-14 {
        margin-bottom: 3.5rem !important
    }

    .m8-mb-xl-15 {
        margin-bottom: 3.75rem !important
    }

    .m8-mb-xl-16 {
        margin-bottom: 4rem !important
    }

    .m8-mb-xl-17 {
        margin-bottom: 4.25rem !important
    }

    .m8-mb-xl-18 {
        margin-bottom: 4.5rem !important
    }

    .m8-mb-xl-19 {
        margin-bottom: 4.75rem !important
    }

    .m8-mb-xl-20 {
        margin-bottom: 5rem !important
    }

    .m8-mb-xl-auto {
        margin-bottom: auto !important
    }

    .m8-ms-xl-0 {
        margin-left: 0 !important
    }

    .m8-ms-xl-1 {
        margin-left: .25rem !important
    }

    .m8-ms-xl-2 {
        margin-left: .5rem !important
    }

    .m8-ms-xl-3 {
        margin-left: .75rem !important
    }

    .m8-ms-xl-4 {
        margin-left: 1rem !important
    }

    .m8-ms-xl-5 {
        margin-left: 1.25rem !important
    }

    .m8-ms-xl-6 {
        margin-left: 1.5rem !important
    }

    .m8-ms-xl-7 {
        margin-left: 1.75rem !important
    }

    .m8-ms-xl-8 {
        margin-left: 2rem !important
    }

    .m8-ms-xl-9 {
        margin-left: 2.25rem !important
    }

    .m8-ms-xl-10 {
        margin-left: 2.5rem !important
    }

    .m8-ms-xl-11 {
        margin-left: 2.75rem !important
    }

    .m8-ms-xl-12 {
        margin-left: 3rem !important
    }

    .m8-ms-xl-13 {
        margin-left: 3.25rem !important
    }

    .m8-ms-xl-14 {
        margin-left: 3.5rem !important
    }

    .m8-ms-xl-15 {
        margin-left: 3.75rem !important
    }

    .m8-ms-xl-16 {
        margin-left: 4rem !important
    }

    .m8-ms-xl-17 {
        margin-left: 4.25rem !important
    }

    .m8-ms-xl-18 {
        margin-left: 4.5rem !important
    }

    .m8-ms-xl-19 {
        margin-left: 4.75rem !important
    }

    .m8-ms-xl-20 {
        margin-left: 5rem !important
    }

    .m8-ms-xl-auto {
        margin-left: auto !important
    }

    .m8-m-xl-n1 {
        margin: -.25rem !important
    }

    .m8-m-xl-n2 {
        margin: -.5rem !important
    }

    .m8-m-xl-n3 {
        margin: -.75rem !important
    }

    .m8-m-xl-n4 {
        margin: -1rem !important
    }

    .m8-m-xl-n5 {
        margin: -1.25rem !important
    }

    .m8-m-xl-n6 {
        margin: -1.5rem !important
    }

    .m8-m-xl-n7 {
        margin: -1.75rem !important
    }

    .m8-m-xl-n8 {
        margin: -2rem !important
    }

    .m8-m-xl-n9 {
        margin: -2.25rem !important
    }

    .m8-m-xl-n10 {
        margin: -2.5rem !important
    }

    .m8-m-xl-n11 {
        margin: -2.75rem !important
    }

    .m8-m-xl-n12 {
        margin: -3rem !important
    }

    .m8-m-xl-n13 {
        margin: -3.25rem !important
    }

    .m8-m-xl-n14 {
        margin: -3.5rem !important
    }

    .m8-m-xl-n15 {
        margin: -3.75rem !important
    }

    .m8-m-xl-n16 {
        margin: -4rem !important
    }

    .m8-m-xl-n17 {
        margin: -4.25rem !important
    }

    .m8-m-xl-n18 {
        margin: -4.5rem !important
    }

    .m8-m-xl-n19 {
        margin: -4.75rem !important
    }

    .m8-m-xl-n20 {
        margin: -5rem !important
    }

    .m8-mx-xl-n1 {
        margin-right: -.25rem !important;
        margin-left: -.25rem !important
    }

    .m8-mx-xl-n2 {
        margin-right: -.5rem !important;
        margin-left: -.5rem !important
    }

    .m8-mx-xl-n3 {
        margin-right: -.75rem !important;
        margin-left: -.75rem !important
    }

    .m8-mx-xl-n4 {
        margin-right: -1rem !important;
        margin-left: -1rem !important
    }

    .m8-mx-xl-n5 {
        margin-right: -1.25rem !important;
        margin-left: -1.25rem !important
    }

    .m8-mx-xl-n6 {
        margin-right: -1.5rem !important;
        margin-left: -1.5rem !important
    }

    .m8-mx-xl-n7 {
        margin-right: -1.75rem !important;
        margin-left: -1.75rem !important
    }

    .m8-mx-xl-n8 {
        margin-right: -2rem !important;
        margin-left: -2rem !important
    }

    .m8-mx-xl-n9 {
        margin-right: -2.25rem !important;
        margin-left: -2.25rem !important
    }

    .m8-mx-xl-n10 {
        margin-right: -2.5rem !important;
        margin-left: -2.5rem !important
    }

    .m8-mx-xl-n11 {
        margin-right: -2.75rem !important;
        margin-left: -2.75rem !important
    }

    .m8-mx-xl-n12 {
        margin-right: -3rem !important;
        margin-left: -3rem !important
    }

    .m8-mx-xl-n13 {
        margin-right: -3.25rem !important;
        margin-left: -3.25rem !important
    }

    .m8-mx-xl-n14 {
        margin-right: -3.5rem !important;
        margin-left: -3.5rem !important
    }

    .m8-mx-xl-n15 {
        margin-right: -3.75rem !important;
        margin-left: -3.75rem !important
    }

    .m8-mx-xl-n16 {
        margin-right: -4rem !important;
        margin-left: -4rem !important
    }

    .m8-mx-xl-n17 {
        margin-right: -4.25rem !important;
        margin-left: -4.25rem !important
    }

    .m8-mx-xl-n18 {
        margin-right: -4.5rem !important;
        margin-left: -4.5rem !important
    }

    .m8-mx-xl-n19 {
        margin-right: -4.75rem !important;
        margin-left: -4.75rem !important
    }

    .m8-mx-xl-n20 {
        margin-right: -5rem !important;
        margin-left: -5rem !important
    }

    .m8-my-xl-n1 {
        margin-top: -.25rem !important;
        margin-bottom: -.25rem !important
    }

    .m8-my-xl-n2 {
        margin-top: -.5rem !important;
        margin-bottom: -.5rem !important
    }

    .m8-my-xl-n3 {
        margin-top: -.75rem !important;
        margin-bottom: -.75rem !important
    }

    .m8-my-xl-n4 {
        margin-top: -1rem !important;
        margin-bottom: -1rem !important
    }

    .m8-my-xl-n5 {
        margin-top: -1.25rem !important;
        margin-bottom: -1.25rem !important
    }

    .m8-my-xl-n6 {
        margin-top: -1.5rem !important;
        margin-bottom: -1.5rem !important
    }

    .m8-my-xl-n7 {
        margin-top: -1.75rem !important;
        margin-bottom: -1.75rem !important
    }

    .m8-my-xl-n8 {
        margin-top: -2rem !important;
        margin-bottom: -2rem !important
    }

    .m8-my-xl-n9 {
        margin-top: -2.25rem !important;
        margin-bottom: -2.25rem !important
    }

    .m8-my-xl-n10 {
        margin-top: -2.5rem !important;
        margin-bottom: -2.5rem !important
    }

    .m8-my-xl-n11 {
        margin-top: -2.75rem !important;
        margin-bottom: -2.75rem !important
    }

    .m8-my-xl-n12 {
        margin-top: -3rem !important;
        margin-bottom: -3rem !important
    }

    .m8-my-xl-n13 {
        margin-top: -3.25rem !important;
        margin-bottom: -3.25rem !important
    }

    .m8-my-xl-n14 {
        margin-top: -3.5rem !important;
        margin-bottom: -3.5rem !important
    }

    .m8-my-xl-n15 {
        margin-top: -3.75rem !important;
        margin-bottom: -3.75rem !important
    }

    .m8-my-xl-n16 {
        margin-top: -4rem !important;
        margin-bottom: -4rem !important
    }

    .m8-my-xl-n17 {
        margin-top: -4.25rem !important;
        margin-bottom: -4.25rem !important
    }

    .m8-my-xl-n18 {
        margin-top: -4.5rem !important;
        margin-bottom: -4.5rem !important
    }

    .m8-my-xl-n19 {
        margin-top: -4.75rem !important;
        margin-bottom: -4.75rem !important
    }

    .m8-my-xl-n20 {
        margin-top: -5rem !important;
        margin-bottom: -5rem !important
    }

    .m8-mt-xl-n1 {
        margin-top: -.25rem !important
    }

    .m8-mt-xl-n2 {
        margin-top: -.5rem !important
    }

    .m8-mt-xl-n3 {
        margin-top: -.75rem !important
    }

    .m8-mt-xl-n4 {
        margin-top: -1rem !important
    }

    .m8-mt-xl-n5 {
        margin-top: -1.25rem !important
    }

    .m8-mt-xl-n6 {
        margin-top: -1.5rem !important
    }

    .m8-mt-xl-n7 {
        margin-top: -1.75rem !important
    }

    .m8-mt-xl-n8 {
        margin-top: -2rem !important
    }

    .m8-mt-xl-n9 {
        margin-top: -2.25rem !important
    }

    .m8-mt-xl-n10 {
        margin-top: -2.5rem !important
    }

    .m8-mt-xl-n11 {
        margin-top: -2.75rem !important
    }

    .m8-mt-xl-n12 {
        margin-top: -3rem !important
    }

    .m8-mt-xl-n13 {
        margin-top: -3.25rem !important
    }

    .m8-mt-xl-n14 {
        margin-top: -3.5rem !important
    }

    .m8-mt-xl-n15 {
        margin-top: -3.75rem !important
    }

    .m8-mt-xl-n16 {
        margin-top: -4rem !important
    }

    .m8-mt-xl-n17 {
        margin-top: -4.25rem !important
    }

    .m8-mt-xl-n18 {
        margin-top: -4.5rem !important
    }

    .m8-mt-xl-n19 {
        margin-top: -4.75rem !important
    }

    .m8-mt-xl-n20 {
        margin-top: -5rem !important
    }

    .m8-me-xl-n1 {
        margin-right: -.25rem !important
    }

    .m8-me-xl-n2 {
        margin-right: -.5rem !important
    }

    .m8-me-xl-n3 {
        margin-right: -.75rem !important
    }

    .m8-me-xl-n4 {
        margin-right: -1rem !important
    }

    .m8-me-xl-n5 {
        margin-right: -1.25rem !important
    }

    .m8-me-xl-n6 {
        margin-right: -1.5rem !important
    }

    .m8-me-xl-n7 {
        margin-right: -1.75rem !important
    }

    .m8-me-xl-n8 {
        margin-right: -2rem !important
    }

    .m8-me-xl-n9 {
        margin-right: -2.25rem !important
    }

    .m8-me-xl-n10 {
        margin-right: -2.5rem !important
    }

    .m8-me-xl-n11 {
        margin-right: -2.75rem !important
    }

    .m8-me-xl-n12 {
        margin-right: -3rem !important
    }

    .m8-me-xl-n13 {
        margin-right: -3.25rem !important
    }

    .m8-me-xl-n14 {
        margin-right: -3.5rem !important
    }

    .m8-me-xl-n15 {
        margin-right: -3.75rem !important
    }

    .m8-me-xl-n16 {
        margin-right: -4rem !important
    }

    .m8-me-xl-n17 {
        margin-right: -4.25rem !important
    }

    .m8-me-xl-n18 {
        margin-right: -4.5rem !important
    }

    .m8-me-xl-n19 {
        margin-right: -4.75rem !important
    }

    .m8-me-xl-n20 {
        margin-right: -5rem !important
    }

    .m8-mb-xl-n1 {
        margin-bottom: -.25rem !important
    }

    .m8-mb-xl-n2 {
        margin-bottom: -.5rem !important
    }

    .m8-mb-xl-n3 {
        margin-bottom: -.75rem !important
    }

    .m8-mb-xl-n4 {
        margin-bottom: -1rem !important
    }

    .m8-mb-xl-n5 {
        margin-bottom: -1.25rem !important
    }

    .m8-mb-xl-n6 {
        margin-bottom: -1.5rem !important
    }

    .m8-mb-xl-n7 {
        margin-bottom: -1.75rem !important
    }

    .m8-mb-xl-n8 {
        margin-bottom: -2rem !important
    }

    .m8-mb-xl-n9 {
        margin-bottom: -2.25rem !important
    }

    .m8-mb-xl-n10 {
        margin-bottom: -2.5rem !important
    }

    .m8-mb-xl-n11 {
        margin-bottom: -2.75rem !important
    }

    .m8-mb-xl-n12 {
        margin-bottom: -3rem !important
    }

    .m8-mb-xl-n13 {
        margin-bottom: -3.25rem !important
    }

    .m8-mb-xl-n14 {
        margin-bottom: -3.5rem !important
    }

    .m8-mb-xl-n15 {
        margin-bottom: -3.75rem !important
    }

    .m8-mb-xl-n16 {
        margin-bottom: -4rem !important
    }

    .m8-mb-xl-n17 {
        margin-bottom: -4.25rem !important
    }

    .m8-mb-xl-n18 {
        margin-bottom: -4.5rem !important
    }

    .m8-mb-xl-n19 {
        margin-bottom: -4.75rem !important
    }

    .m8-mb-xl-n20 {
        margin-bottom: -5rem !important
    }

    .m8-ms-xl-n1 {
        margin-left: -.25rem !important
    }

    .m8-ms-xl-n2 {
        margin-left: -.5rem !important
    }

    .m8-ms-xl-n3 {
        margin-left: -.75rem !important
    }

    .m8-ms-xl-n4 {
        margin-left: -1rem !important
    }

    .m8-ms-xl-n5 {
        margin-left: -1.25rem !important
    }

    .m8-ms-xl-n6 {
        margin-left: -1.5rem !important
    }

    .m8-ms-xl-n7 {
        margin-left: -1.75rem !important
    }

    .m8-ms-xl-n8 {
        margin-left: -2rem !important
    }

    .m8-ms-xl-n9 {
        margin-left: -2.25rem !important
    }

    .m8-ms-xl-n10 {
        margin-left: -2.5rem !important
    }

    .m8-ms-xl-n11 {
        margin-left: -2.75rem !important
    }

    .m8-ms-xl-n12 {
        margin-left: -3rem !important
    }

    .m8-ms-xl-n13 {
        margin-left: -3.25rem !important
    }

    .m8-ms-xl-n14 {
        margin-left: -3.5rem !important
    }

    .m8-ms-xl-n15 {
        margin-left: -3.75rem !important
    }

    .m8-ms-xl-n16 {
        margin-left: -4rem !important
    }

    .m8-ms-xl-n17 {
        margin-left: -4.25rem !important
    }

    .m8-ms-xl-n18 {
        margin-left: -4.5rem !important
    }

    .m8-ms-xl-n19 {
        margin-left: -4.75rem !important
    }

    .m8-ms-xl-n20 {
        margin-left: -5rem !important
    }

    .m8-p-xl-0 {
        padding: 0 !important
    }

    .m8-p-xl-1 {
        padding: .25rem !important
    }

    .m8-p-xl-2 {
        padding: .5rem !important
    }

    .m8-p-xl-3 {
        padding: .75rem !important
    }

    .m8-p-xl-4 {
        padding: 1rem !important
    }

    .m8-p-xl-5 {
        padding: 1.25rem !important
    }

    .m8-p-xl-6 {
        padding: 1.5rem !important
    }

    .m8-p-xl-7 {
        padding: 1.75rem !important
    }

    .m8-p-xl-8 {
        padding: 2rem !important
    }

    .m8-p-xl-9 {
        padding: 2.25rem !important
    }

    .m8-p-xl-10 {
        padding: 2.5rem !important
    }

    .m8-p-xl-11 {
        padding: 2.75rem !important
    }

    .m8-p-xl-12 {
        padding: 3rem !important
    }

    .m8-p-xl-13 {
        padding: 3.25rem !important
    }

    .m8-p-xl-14 {
        padding: 3.5rem !important
    }

    .m8-p-xl-15 {
        padding: 3.75rem !important
    }

    .m8-p-xl-16 {
        padding: 4rem !important
    }

    .m8-p-xl-17 {
        padding: 4.25rem !important
    }

    .m8-p-xl-18 {
        padding: 4.5rem !important
    }

    .m8-p-xl-19 {
        padding: 4.75rem !important
    }

    .m8-p-xl-20 {
        padding: 5rem !important
    }

    .m8-px-xl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .m8-px-xl-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .m8-px-xl-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .m8-px-xl-3 {
        padding-right: .75rem !important;
        padding-left: .75rem !important
    }

    .m8-px-xl-4 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .m8-px-xl-5 {
        padding-right: 1.25rem !important;
        padding-left: 1.25rem !important
    }

    .m8-px-xl-6 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .m8-px-xl-7 {
        padding-right: 1.75rem !important;
        padding-left: 1.75rem !important
    }

    .m8-px-xl-8 {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }

    .m8-px-xl-9 {
        padding-right: 2.25rem !important;
        padding-left: 2.25rem !important
    }

    .m8-px-xl-10 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important
    }

    .m8-px-xl-11 {
        padding-right: 2.75rem !important;
        padding-left: 2.75rem !important
    }

    .m8-px-xl-12 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .m8-px-xl-13 {
        padding-right: 3.25rem !important;
        padding-left: 3.25rem !important
    }

    .m8-px-xl-14 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important
    }

    .m8-px-xl-15 {
        padding-right: 3.75rem !important;
        padding-left: 3.75rem !important
    }

    .m8-px-xl-16 {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }

    .m8-px-xl-17 {
        padding-right: 4.25rem !important;
        padding-left: 4.25rem !important
    }

    .m8-px-xl-18 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !important
    }

    .m8-px-xl-19 {
        padding-right: 4.75rem !important;
        padding-left: 4.75rem !important
    }

    .m8-px-xl-20 {
        padding-right: 5rem !important;
        padding-left: 5rem !important
    }

    .m8-py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .m8-py-xl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .m8-py-xl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .m8-py-xl-3 {
        padding-top: .75rem !important;
        padding-bottom: .75rem !important
    }

    .m8-py-xl-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .m8-py-xl-5 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important
    }

    .m8-py-xl-6 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .m8-py-xl-7 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important
    }

    .m8-py-xl-8 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }

    .m8-py-xl-9 {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important
    }

    .m8-py-xl-10 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important
    }

    .m8-py-xl-11 {
        padding-top: 2.75rem !important;
        padding-bottom: 2.75rem !important
    }

    .m8-py-xl-12 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .m8-py-xl-13 {
        padding-top: 3.25rem !important;
        padding-bottom: 3.25rem !important
    }

    .m8-py-xl-14 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important
    }

    .m8-py-xl-15 {
        padding-top: 3.75rem !important;
        padding-bottom: 3.75rem !important
    }

    .m8-py-xl-16 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }

    .m8-py-xl-17 {
        padding-top: 4.25rem !important;
        padding-bottom: 4.25rem !important
    }

    .m8-py-xl-18 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important
    }

    .m8-py-xl-19 {
        padding-top: 4.75rem !important;
        padding-bottom: 4.75rem !important
    }

    .m8-py-xl-20 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important
    }

    .m8-pt-xl-0 {
        padding-top: 0 !important
    }

    .m8-pt-xl-1 {
        padding-top: .25rem !important
    }

    .m8-pt-xl-2 {
        padding-top: .5rem !important
    }

    .m8-pt-xl-3 {
        padding-top: .75rem !important
    }

    .m8-pt-xl-4 {
        padding-top: 1rem !important
    }

    .m8-pt-xl-5 {
        padding-top: 1.25rem !important
    }

    .m8-pt-xl-6 {
        padding-top: 1.5rem !important
    }

    .m8-pt-xl-7 {
        padding-top: 1.75rem !important
    }

    .m8-pt-xl-8 {
        padding-top: 2rem !important
    }

    .m8-pt-xl-9 {
        padding-top: 2.25rem !important
    }

    .m8-pt-xl-10 {
        padding-top: 2.5rem !important
    }

    .m8-pt-xl-11 {
        padding-top: 2.75rem !important
    }

    .m8-pt-xl-12 {
        padding-top: 3rem !important
    }

    .m8-pt-xl-13 {
        padding-top: 3.25rem !important
    }

    .m8-pt-xl-14 {
        padding-top: 3.5rem !important
    }

    .m8-pt-xl-15 {
        padding-top: 3.75rem !important
    }

    .m8-pt-xl-16 {
        padding-top: 4rem !important
    }

    .m8-pt-xl-17 {
        padding-top: 4.25rem !important
    }

    .m8-pt-xl-18 {
        padding-top: 4.5rem !important
    }

    .m8-pt-xl-19 {
        padding-top: 4.75rem !important
    }

    .m8-pt-xl-20 {
        padding-top: 5rem !important
    }

    .m8-pe-xl-0 {
        padding-right: 0 !important
    }

    .m8-pe-xl-1 {
        padding-right: .25rem !important
    }

    .m8-pe-xl-2 {
        padding-right: .5rem !important
    }

    .m8-pe-xl-3 {
        padding-right: .75rem !important
    }

    .m8-pe-xl-4 {
        padding-right: 1rem !important
    }

    .m8-pe-xl-5 {
        padding-right: 1.25rem !important
    }

    .m8-pe-xl-6 {
        padding-right: 1.5rem !important
    }

    .m8-pe-xl-7 {
        padding-right: 1.75rem !important
    }

    .m8-pe-xl-8 {
        padding-right: 2rem !important
    }

    .m8-pe-xl-9 {
        padding-right: 2.25rem !important
    }

    .m8-pe-xl-10 {
        padding-right: 2.5rem !important
    }

    .m8-pe-xl-11 {
        padding-right: 2.75rem !important
    }

    .m8-pe-xl-12 {
        padding-right: 3rem !important
    }

    .m8-pe-xl-13 {
        padding-right: 3.25rem !important
    }

    .m8-pe-xl-14 {
        padding-right: 3.5rem !important
    }

    .m8-pe-xl-15 {
        padding-right: 3.75rem !important
    }

    .m8-pe-xl-16 {
        padding-right: 4rem !important
    }

    .m8-pe-xl-17 {
        padding-right: 4.25rem !important
    }

    .m8-pe-xl-18 {
        padding-right: 4.5rem !important
    }

    .m8-pe-xl-19 {
        padding-right: 4.75rem !important
    }

    .m8-pe-xl-20 {
        padding-right: 5rem !important
    }

    .m8-pb-xl-0 {
        padding-bottom: 0 !important
    }

    .m8-pb-xl-1 {
        padding-bottom: .25rem !important
    }

    .m8-pb-xl-2 {
        padding-bottom: .5rem !important
    }

    .m8-pb-xl-3 {
        padding-bottom: .75rem !important
    }

    .m8-pb-xl-4 {
        padding-bottom: 1rem !important
    }

    .m8-pb-xl-5 {
        padding-bottom: 1.25rem !important
    }

    .m8-pb-xl-6 {
        padding-bottom: 1.5rem !important
    }

    .m8-pb-xl-7 {
        padding-bottom: 1.75rem !important
    }

    .m8-pb-xl-8 {
        padding-bottom: 2rem !important
    }

    .m8-pb-xl-9 {
        padding-bottom: 2.25rem !important
    }

    .m8-pb-xl-10 {
        padding-bottom: 2.5rem !important
    }

    .m8-pb-xl-11 {
        padding-bottom: 2.75rem !important
    }

    .m8-pb-xl-12 {
        padding-bottom: 3rem !important
    }

    .m8-pb-xl-13 {
        padding-bottom: 3.25rem !important
    }

    .m8-pb-xl-14 {
        padding-bottom: 3.5rem !important
    }

    .m8-pb-xl-15 {
        padding-bottom: 3.75rem !important
    }

    .m8-pb-xl-16 {
        padding-bottom: 4rem !important
    }

    .m8-pb-xl-17 {
        padding-bottom: 4.25rem !important
    }

    .m8-pb-xl-18 {
        padding-bottom: 4.5rem !important
    }

    .m8-pb-xl-19 {
        padding-bottom: 4.75rem !important
    }

    .m8-pb-xl-20 {
        padding-bottom: 5rem !important
    }

    .m8-ps-xl-0 {
        padding-left: 0 !important
    }

    .m8-ps-xl-1 {
        padding-left: .25rem !important
    }

    .m8-ps-xl-2 {
        padding-left: .5rem !important
    }

    .m8-ps-xl-3 {
        padding-left: .75rem !important
    }

    .m8-ps-xl-4 {
        padding-left: 1rem !important
    }

    .m8-ps-xl-5 {
        padding-left: 1.25rem !important
    }

    .m8-ps-xl-6 {
        padding-left: 1.5rem !important
    }

    .m8-ps-xl-7 {
        padding-left: 1.75rem !important
    }

    .m8-ps-xl-8 {
        padding-left: 2rem !important
    }

    .m8-ps-xl-9 {
        padding-left: 2.25rem !important
    }

    .m8-ps-xl-10 {
        padding-left: 2.5rem !important
    }

    .m8-ps-xl-11 {
        padding-left: 2.75rem !important
    }

    .m8-ps-xl-12 {
        padding-left: 3rem !important
    }

    .m8-ps-xl-13 {
        padding-left: 3.25rem !important
    }

    .m8-ps-xl-14 {
        padding-left: 3.5rem !important
    }

    .m8-ps-xl-15 {
        padding-left: 3.75rem !important
    }

    .m8-ps-xl-16 {
        padding-left: 4rem !important
    }

    .m8-ps-xl-17 {
        padding-left: 4.25rem !important
    }

    .m8-ps-xl-18 {
        padding-left: 4.5rem !important
    }

    .m8-ps-xl-19 {
        padding-left: 4.75rem !important
    }

    .m8-ps-xl-20 {
        padding-left: 5rem !important
    }

    .m8-gap-xl-0 {
        gap: 0 !important
    }

    .m8-gap-xl-1 {
        gap: .25rem !important
    }

    .m8-gap-xl-2 {
        gap: .5rem !important
    }

    .m8-gap-xl-3 {
        gap: .75rem !important
    }

    .m8-gap-xl-4 {
        gap: 1rem !important
    }

    .m8-gap-xl-5 {
        gap: 1.25rem !important
    }

    .m8-gap-xl-6 {
        gap: 1.5rem !important
    }

    .m8-gap-xl-7 {
        gap: 1.75rem !important
    }

    .m8-gap-xl-8 {
        gap: 2rem !important
    }

    .m8-gap-xl-9 {
        gap: 2.25rem !important
    }

    .m8-gap-xl-10 {
        gap: 2.5rem !important
    }

    .m8-gap-xl-11 {
        gap: 2.75rem !important
    }

    .m8-gap-xl-12 {
        gap: 3rem !important
    }

    .m8-gap-xl-13 {
        gap: 3.25rem !important
    }

    .m8-gap-xl-14 {
        gap: 3.5rem !important
    }

    .m8-gap-xl-15 {
        gap: 3.75rem !important
    }

    .m8-gap-xl-16 {
        gap: 4rem !important
    }

    .m8-gap-xl-17 {
        gap: 4.25rem !important
    }

    .m8-gap-xl-18 {
        gap: 4.5rem !important
    }

    .m8-gap-xl-19 {
        gap: 4.75rem !important
    }

    .m8-gap-xl-20 {
        gap: 5rem !important
    }

    .m8-row-gap-xl-0 {
        row-gap: 0 !important
    }

    .m8-row-gap-xl-1 {
        row-gap: .25rem !important
    }

    .m8-row-gap-xl-2 {
        row-gap: .5rem !important
    }

    .m8-row-gap-xl-3 {
        row-gap: .75rem !important
    }

    .m8-row-gap-xl-4 {
        row-gap: 1rem !important
    }

    .m8-row-gap-xl-5 {
        row-gap: 1.25rem !important
    }

    .m8-row-gap-xl-6 {
        row-gap: 1.5rem !important
    }

    .m8-row-gap-xl-7 {
        row-gap: 1.75rem !important
    }

    .m8-row-gap-xl-8 {
        row-gap: 2rem !important
    }

    .m8-row-gap-xl-9 {
        row-gap: 2.25rem !important
    }

    .m8-row-gap-xl-10 {
        row-gap: 2.5rem !important
    }

    .m8-row-gap-xl-11 {
        row-gap: 2.75rem !important
    }

    .m8-row-gap-xl-12 {
        row-gap: 3rem !important
    }

    .m8-row-gap-xl-13 {
        row-gap: 3.25rem !important
    }

    .m8-row-gap-xl-14 {
        row-gap: 3.5rem !important
    }

    .m8-row-gap-xl-15 {
        row-gap: 3.75rem !important
    }

    .m8-row-gap-xl-16 {
        row-gap: 4rem !important
    }

    .m8-row-gap-xl-17 {
        row-gap: 4.25rem !important
    }

    .m8-row-gap-xl-18 {
        row-gap: 4.5rem !important
    }

    .m8-row-gap-xl-19 {
        row-gap: 4.75rem !important
    }

    .m8-row-gap-xl-20 {
        row-gap: 5rem !important
    }

    .m8-column-gap-xl-0 {
        column-gap: 0 !important
    }

    .m8-column-gap-xl-1 {
        column-gap: .25rem !important
    }

    .m8-column-gap-xl-2 {
        column-gap: .5rem !important
    }

    .m8-column-gap-xl-3 {
        column-gap: .75rem !important
    }

    .m8-column-gap-xl-4 {
        column-gap: 1rem !important
    }

    .m8-column-gap-xl-5 {
        column-gap: 1.25rem !important
    }

    .m8-column-gap-xl-6 {
        column-gap: 1.5rem !important
    }

    .m8-column-gap-xl-7 {
        column-gap: 1.75rem !important
    }

    .m8-column-gap-xl-8 {
        column-gap: 2rem !important
    }

    .m8-column-gap-xl-9 {
        column-gap: 2.25rem !important
    }

    .m8-column-gap-xl-10 {
        column-gap: 2.5rem !important
    }

    .m8-column-gap-xl-11 {
        column-gap: 2.75rem !important
    }

    .m8-column-gap-xl-12 {
        column-gap: 3rem !important
    }

    .m8-column-gap-xl-13 {
        column-gap: 3.25rem !important
    }

    .m8-column-gap-xl-14 {
        column-gap: 3.5rem !important
    }

    .m8-column-gap-xl-15 {
        column-gap: 3.75rem !important
    }

    .m8-column-gap-xl-16 {
        column-gap: 4rem !important
    }

    .m8-column-gap-xl-17 {
        column-gap: 4.25rem !important
    }

    .m8-column-gap-xl-18 {
        column-gap: 4.5rem !important
    }

    .m8-column-gap-xl-19 {
        column-gap: 4.75rem !important
    }

    .m8-column-gap-xl-20 {
        column-gap: 5rem !important
    }

    .m8-fs-xl-1 {
        font-size: calc(1.3rem + .6vw) !important
    }

    .m8-fs-xl-2 {
        font-size: calc(1.275rem + .3vw) !important
    }

    .m8-fs-xl-3 {
        font-size: calc(1.26rem + .12vw) !important
    }

    .m8-fs-xl-4 {
        font-size: 1.25rem !important
    }

    .m8-fs-xl-5 {
        font-size: 1.15rem !important
    }

    .m8-fs-xl-6 {
        font-size: 1.075rem !important
    }

    .m8-fs-xl-7 {
        font-size: .95rem !important
    }

    .m8-fs-xl-8 {
        font-size: .85rem !important
    }

    .m8-fs-xl-9 {
        font-size: .75rem !important
    }

    .m8-fs-xl-10 {
        font-size: .5rem !important
    }

    .m8-fs-xl-sm {
        font-size: .95rem !important
    }

    .m8-fs-xl-base {
        font-size: 1rem !important
    }

    .m8-fs-xl-lg {
        font-size: 1.075rem !important
    }

    .m8-fs-xl-xl {
        font-size: 1.21rem !important
    }

    .m8-fs-xl-fluid {
        font-size: 100% !important
    }

    .m8-fs-xl-2x {
        font-size: calc(1.325rem + .9vw) !important
    }

    .m8-fs-xl-2qx {
        font-size: calc(1.35rem + 1.2vw) !important
    }

    .m8-fs-xl-2hx {
        font-size: calc(1.375rem + 1.5vw) !important
    }

    .m8-fs-xl-2tx {
        font-size: calc(1.4rem + 1.8vw) !important
    }

    .m8-fs-xl-3x {
        font-size: calc(1.425rem + 2.1vw) !important
    }

    .m8-fs-xl-3qx {
        font-size: calc(1.45rem + 2.4vw) !important
    }

    .m8-fs-xl-3hx {
        font-size: calc(1.475rem + 2.7vw) !important
    }

    .m8-fs-xl-3tx {
        font-size: calc(1.5rem + 3vw) !important
    }

    .m8-fs-xl-4x {
        font-size: calc(1.525rem + 3.3vw) !important
    }

    .m8-fs-xl-4qx {
        font-size: calc(1.55rem + 3.6vw) !important
    }

    .m8-fs-xl-4hx {
        font-size: calc(1.575rem + 3.9vw) !important
    }

    .m8-fs-xl-4tx {
        font-size: calc(1.6rem + 4.2vw) !important
    }

    .m8-fs-xl-5x {
        font-size: calc(1.625rem + 4.5vw) !important
    }

    .m8-fs-xl-5qx {
        font-size: calc(1.65rem + 4.8vw) !important
    }

    .m8-fs-xl-5hx {
        font-size: calc(1.675rem + 5.1vw) !important
    }

    .m8-fs-xl-5tx {
        font-size: calc(1.7rem + 5.4vw) !important
    }

    .m8-fs-xl-6x {
        font-size: calc(1.725rem + 5.7vw) !important
    }

    .m8-fs-xl-6qx {
        font-size: calc(1.75rem + 6vw) !important
    }

    .m8-fs-xl-6hx {
        font-size: calc(1.775rem + 6.3vw) !important
    }

    .m8-fs-xl-6tx {
        font-size: calc(1.8rem + 6.6vw) !important
    }

    .m8-fs-xl-7x {
        font-size: calc(1.825rem + 6.9vw) !important
    }

    .m8-fs-xl-7qx {
        font-size: calc(1.85rem + 7.2vw) !important
    }

    .m8-fs-xl-7hx {
        font-size: calc(1.875rem + 7.5vw) !important
    }

    .m8-fs-xl-7tx {
        font-size: calc(1.9rem + 7.8vw) !important
    }

    .m8-text-xl-start {
        text-align: left !important
    }

    .m8-text-xl-end {
        text-align: right !important
    }

    .m8-text-xl-center {
        text-align: center !important
    }

    .m8-min-w-xl-unset {
        min-width: unset !important
    }

    .m8-min-w-xl-25 {
        min-width: 25% !important
    }

    .m8-min-w-xl-50 {
        min-width: 50% !important
    }

    .m8-min-w-xl-75 {
        min-width: 75% !important
    }

    .m8-min-w-xl-100 {
        min-width: 100% !important
    }

    .m8-min-w-xl-auto {
        min-width: auto !important
    }

    .m8-min-w-xl-1px {
        min-width: 1px !important
    }

    .m8-min-w-xl-2px {
        min-width: 2px !important
    }

    .m8-min-w-xl-3px {
        min-width: 3px !important
    }

    .m8-min-w-xl-4px {
        min-width: 4px !important
    }

    .m8-min-w-xl-5px {
        min-width: 5px !important
    }

    .m8-min-w-xl-6px {
        min-width: 6px !important
    }

    .m8-min-w-xl-7px {
        min-width: 7px !important
    }

    .m8-min-w-xl-8px {
        min-width: 8px !important
    }

    .m8-min-w-xl-9px {
        min-width: 9px !important
    }

    .m8-min-w-xl-10px {
        min-width: 10px !important
    }

    .m8-min-w-xl-15px {
        min-width: 15px !important
    }

    .m8-min-w-xl-20px {
        min-width: 20px !important
    }

    .m8-min-w-xl-25px {
        min-width: 25px !important
    }

    .m8-min-w-xl-30px {
        min-width: 30px !important
    }

    .m8-min-w-xl-35px {
        min-width: 35px !important
    }

    .m8-min-w-xl-40px {
        min-width: 40px !important
    }

    .m8-min-w-xl-45px {
        min-width: 45px !important
    }

    .m8-min-w-xl-50px {
        min-width: 50px !important
    }

    .m8-min-w-xl-55px {
        min-width: 55px !important
    }

    .m8-min-w-xl-60px {
        min-width: 60px !important
    }

    .m8-min-w-xl-65px {
        min-width: 65px !important
    }

    .m8-min-w-xl-70px {
        min-width: 70px !important
    }

    .m8-min-w-xl-75px {
        min-width: 75px !important
    }

    .m8-min-w-xl-80px {
        min-width: 80px !important
    }

    .m8-min-w-xl-85px {
        min-width: 85px !important
    }

    .m8-min-w-xl-90px {
        min-width: 90px !important
    }

    .m8-min-w-xl-95px {
        min-width: 95px !important
    }

    .m8-min-w-xl-100px {
        min-width: 100px !important
    }

    .m8-min-w-xl-125px {
        min-width: 125px !important
    }

    .m8-min-w-xl-150px {
        min-width: 150px !important
    }

    .m8-min-w-xl-175px {
        min-width: 175px !important
    }

    .m8-min-w-xl-200px {
        min-width: 200px !important
    }

    .m8-min-w-xl-225px {
        min-width: 225px !important
    }

    .m8-min-w-xl-250px {
        min-width: 250px !important
    }

    .m8-min-w-xl-275px {
        min-width: 275px !important
    }

    .m8-min-w-xl-300px {
        min-width: 300px !important
    }

    .m8-min-w-xl-325px {
        min-width: 325px !important
    }

    .m8-min-w-xl-350px {
        min-width: 350px !important
    }

    .m8-min-w-xl-375px {
        min-width: 375px !important
    }

    .m8-min-w-xl-400px {
        min-width: 400px !important
    }

    .m8-min-w-xl-425px {
        min-width: 425px !important
    }

    .m8-min-w-xl-450px {
        min-width: 450px !important
    }

    .m8-min-w-xl-475px {
        min-width: 475px !important
    }

    .m8-min-w-xl-500px {
        min-width: 500px !important
    }

    .m8-min-w-xl-550px {
        min-width: 550px !important
    }

    .m8-min-w-xl-600px {
        min-width: 600px !important
    }

    .m8-min-w-xl-650px {
        min-width: 650px !important
    }

    .m8-min-w-xl-700px {
        min-width: 700px !important
    }

    .m8-min-w-xl-750px {
        min-width: 750px !important
    }

    .m8-min-w-xl-800px {
        min-width: 800px !important
    }

    .m8-min-w-xl-850px {
        min-width: 850px !important
    }

    .m8-min-w-xl-900px {
        min-width: 900px !important
    }

    .m8-min-w-xl-950px {
        min-width: 950px !important
    }

    .m8-min-w-xl-1000px {
        min-width: 1000px !important
    }

    .m8-min-h-xl-unset {
        min-height: unset !important
    }

    .m8-min-h-xl-25 {
        min-height: 25% !important
    }

    .m8-min-h-xl-50 {
        min-height: 50% !important
    }

    .m8-min-h-xl-75 {
        min-height: 75% !important
    }

    .m8-min-h-xl-100 {
        min-height: 100% !important
    }

    .m8-min-h-xl-auto {
        min-height: auto !important
    }

    .m8-min-h-xl-1px {
        min-height: 1px !important
    }

    .m8-min-h-xl-2px {
        min-height: 2px !important
    }

    .m8-min-h-xl-3px {
        min-height: 3px !important
    }

    .m8-min-h-xl-4px {
        min-height: 4px !important
    }

    .m8-min-h-xl-5px {
        min-height: 5px !important
    }

    .m8-min-h-xl-6px {
        min-height: 6px !important
    }

    .m8-min-h-xl-7px {
        min-height: 7px !important
    }

    .m8-min-h-xl-8px {
        min-height: 8px !important
    }

    .m8-min-h-xl-9px {
        min-height: 9px !important
    }

    .m8-min-h-xl-10px {
        min-height: 10px !important
    }

    .m8-min-h-xl-15px {
        min-height: 15px !important
    }

    .m8-min-h-xl-20px {
        min-height: 20px !important
    }

    .m8-min-h-xl-25px {
        min-height: 25px !important
    }

    .m8-min-h-xl-30px {
        min-height: 30px !important
    }

    .m8-min-h-xl-35px {
        min-height: 35px !important
    }

    .m8-min-h-xl-40px {
        min-height: 40px !important
    }

    .m8-min-h-xl-45px {
        min-height: 45px !important
    }

    .m8-min-h-xl-50px {
        min-height: 50px !important
    }

    .m8-min-h-xl-55px {
        min-height: 55px !important
    }

    .m8-min-h-xl-60px {
        min-height: 60px !important
    }

    .m8-min-h-xl-65px {
        min-height: 65px !important
    }

    .m8-min-h-xl-70px {
        min-height: 70px !important
    }

    .m8-min-h-xl-75px {
        min-height: 75px !important
    }

    .m8-min-h-xl-80px {
        min-height: 80px !important
    }

    .m8-min-h-xl-85px {
        min-height: 85px !important
    }

    .m8-min-h-xl-90px {
        min-height: 90px !important
    }

    .m8-min-h-xl-95px {
        min-height: 95px !important
    }

    .m8-min-h-xl-100px {
        min-height: 100px !important
    }

    .m8-min-h-xl-125px {
        min-height: 125px !important
    }

    .m8-min-h-xl-150px {
        min-height: 150px !important
    }

    .m8-min-h-xl-175px {
        min-height: 175px !important
    }

    .m8-min-h-xl-200px {
        min-height: 200px !important
    }

    .m8-min-h-xl-225px {
        min-height: 225px !important
    }

    .m8-min-h-xl-250px {
        min-height: 250px !important
    }

    .m8-min-h-xl-275px {
        min-height: 275px !important
    }

    .m8-min-h-xl-300px {
        min-height: 300px !important
    }

    .m8-min-h-xl-325px {
        min-height: 325px !important
    }

    .m8-min-h-xl-350px {
        min-height: 350px !important
    }

    .m8-min-h-xl-375px {
        min-height: 375px !important
    }

    .m8-min-h-xl-400px {
        min-height: 400px !important
    }

    .m8-min-h-xl-425px {
        min-height: 425px !important
    }

    .m8-min-h-xl-450px {
        min-height: 450px !important
    }

    .m8-min-h-xl-475px {
        min-height: 475px !important
    }

    .m8-min-h-xl-500px {
        min-height: 500px !important
    }

    .m8-min-h-xl-550px {
        min-height: 550px !important
    }

    .m8-min-h-xl-600px {
        min-height: 600px !important
    }

    .m8-min-h-xl-650px {
        min-height: 650px !important
    }

    .m8-min-h-xl-700px {
        min-height: 700px !important
    }

    .m8-min-h-xl-750px {
        min-height: 750px !important
    }

    .m8-min-h-xl-800px {
        min-height: 800px !important
    }

    .m8-min-h-xl-850px {
        min-height: 850px !important
    }

    .m8-min-h-xl-900px {
        min-height: 900px !important
    }

    .m8-min-h-xl-950px {
        min-height: 950px !important
    }

    .m8-min-h-xl-1000px {
        min-height: 1000px !important
    }
}

@media (min-width:1400px) {
    .m8-float-xxl-start {
        float: left !important
    }

    .m8-float-xxl-end {
        float: right !important
    }

    .m8-float-xxl-none {
        float: none !important
    }

    .m8-object-fit-xxl-contain {
        object-fit: contain !important
    }

    .m8-object-fit-xxl-cover {
        object-fit: cover !important
    }

    .m8-object-fit-xxl-fill {
        object-fit: fill !important
    }

    .m8-object-fit-xxl-scale {
        object-fit: scale-down !important
    }

    .m8-object-fit-xxl-none {
        object-fit: none !important
    }

    .m8-overflow-xxl-auto {
        overflow: auto !important
    }

    .m8-overflow-xxl-hidden {
        overflow: hidden !important
    }

    .m8-overflow-xxl-visible {
        overflow: visible !important
    }

    .m8-overflow-xxl-scroll {
        overflow: scroll !important
    }

    .m8-d-xxl-inline {
        display: inline !important
    }

    .m8-d-xxl-inline-block {
        display: inline-block !important
    }

    .m8-d-xxl-block {
        display: block !important
    }

    .m8-d-xxl-grid {
        display: grid !important
    }

    .m8-d-xxl-inline-grid {
        display: inline-grid !important
    }

    .m8-d-xxl-table {
        display: table !important
    }

    .m8-d-xxl-table-row {
        display: table-row !important
    }

    .m8-d-xxl-table-cell {
        display: table-cell !important
    }

    .m8-d-xxl-flex {
        display: flex !important
    }

    .m8-d-xxl-inline-flex {
        display: inline-flex !important
    }

    .m8-d-xxl-none {
        display: none !important
    }

    .m8-position-xxl-static {
        position: static !important
    }

    .m8-position-xxl-relative {
        position: relative !important
    }

    .m8-position-xxl-absolute {
        position: absolute !important
    }

    .m8-position-xxl-fixed {
        position: fixed !important
    }

    .m8-position-xxl-sticky {
        position: sticky !important
    }

    .m8-w-xxl-unset {
        width: unset !important
    }

    .m8-w-xxl-25 {
        width: 25% !important
    }

    .m8-w-xxl-50 {
        width: 50% !important
    }

    .m8-w-xxl-75 {
        width: 75% !important
    }

    .m8-w-xxl-100 {
        width: 100% !important
    }

    .m8-w-xxl-auto {
        width: auto !important
    }

    .m8-w-xxl-1px {
        width: 1px !important
    }

    .m8-w-xxl-2px {
        width: 2px !important
    }

    .m8-w-xxl-3px {
        width: 3px !important
    }

    .m8-w-xxl-4px {
        width: 4px !important
    }

    .m8-w-xxl-5px {
        width: 5px !important
    }

    .m8-w-xxl-6px {
        width: 6px !important
    }

    .m8-w-xxl-7px {
        width: 7px !important
    }

    .m8-w-xxl-8px {
        width: 8px !important
    }

    .m8-w-xxl-9px {
        width: 9px !important
    }

    .m8-w-xxl-10px {
        width: 10px !important
    }

    .m8-w-xxl-15px {
        width: 15px !important
    }

    .m8-w-xxl-20px {
        width: 20px !important
    }

    .m8-w-xxl-25px {
        width: 25px !important
    }

    .m8-w-xxl-30px {
        width: 30px !important
    }

    .m8-w-xxl-35px {
        width: 35px !important
    }

    .m8-w-xxl-40px {
        width: 40px !important
    }

    .m8-w-xxl-45px {
        width: 45px !important
    }

    .m8-w-xxl-50px {
        width: 50px !important
    }

    .m8-w-xxl-55px {
        width: 55px !important
    }

    .m8-w-xxl-60px {
        width: 60px !important
    }

    .m8-w-xxl-65px {
        width: 65px !important
    }

    .m8-w-xxl-70px {
        width: 70px !important
    }

    .m8-w-xxl-75px {
        width: 75px !important
    }

    .m8-w-xxl-80px {
        width: 80px !important
    }

    .m8-w-xxl-85px {
        width: 85px !important
    }

    .m8-w-xxl-90px {
        width: 90px !important
    }

    .m8-w-xxl-95px {
        width: 95px !important
    }

    .m8-w-xxl-100px {
        width: 100px !important
    }

    .m8-w-xxl-125px {
        width: 125px !important
    }

    .m8-w-xxl-150px {
        width: 150px !important
    }

    .m8-w-xxl-175px {
        width: 175px !important
    }

    .m8-w-xxl-200px {
        width: 200px !important
    }

    .m8-w-xxl-225px {
        width: 225px !important
    }

    .m8-w-xxl-250px {
        width: 250px !important
    }

    .m8-w-xxl-275px {
        width: 275px !important
    }

    .m8-w-xxl-300px {
        width: 300px !important
    }

    .m8-w-xxl-325px {
        width: 325px !important
    }

    .m8-w-xxl-350px {
        width: 350px !important
    }

    .m8-w-xxl-375px {
        width: 375px !important
    }

    .m8-w-xxl-400px {
        width: 400px !important
    }

    .m8-w-xxl-425px {
        width: 425px !important
    }

    .m8-w-xxl-450px {
        width: 450px !important
    }

    .m8-w-xxl-475px {
        width: 475px !important
    }

    .m8-w-xxl-500px {
        width: 500px !important
    }

    .m8-w-xxl-550px {
        width: 550px !important
    }

    .m8-w-xxl-600px {
        width: 600px !important
    }

    .m8-w-xxl-650px {
        width: 650px !important
    }

    .m8-w-xxl-700px {
        width: 700px !important
    }

    .m8-w-xxl-750px {
        width: 750px !important
    }

    .m8-w-xxl-800px {
        width: 800px !important
    }

    .m8-w-xxl-850px {
        width: 850px !important
    }

    .m8-w-xxl-900px {
        width: 900px !important
    }

    .m8-w-xxl-950px {
        width: 950px !important
    }

    .m8-w-xxl-1000px {
        width: 1000px !important
    }

    .m8-mw-xxl-unset {
        max-width: unset !important
    }

    .m8-mw-xxl-25 {
        max-width: 25% !important
    }

    .m8-mw-xxl-50 {
        max-width: 50% !important
    }

    .m8-mw-xxl-75 {
        max-width: 75% !important
    }

    .m8-mw-xxl-100 {
        max-width: 100% !important
    }

    .m8-mw-xxl-auto {
        max-width: auto !important
    }

    .m8-mw-xxl-1px {
        max-width: 1px !important
    }

    .m8-mw-xxl-2px {
        max-width: 2px !important
    }

    .m8-mw-xxl-3px {
        max-width: 3px !important
    }

    .m8-mw-xxl-4px {
        max-width: 4px !important
    }

    .m8-mw-xxl-5px {
        max-width: 5px !important
    }

    .m8-mw-xxl-6px {
        max-width: 6px !important
    }

    .m8-mw-xxl-7px {
        max-width: 7px !important
    }

    .m8-mw-xxl-8px {
        max-width: 8px !important
    }

    .m8-mw-xxl-9px {
        max-width: 9px !important
    }

    .m8-mw-xxl-10px {
        max-width: 10px !important
    }

    .m8-mw-xxl-15px {
        max-width: 15px !important
    }

    .m8-mw-xxl-20px {
        max-width: 20px !important
    }

    .m8-mw-xxl-25px {
        max-width: 25px !important
    }

    .m8-mw-xxl-30px {
        max-width: 30px !important
    }

    .m8-mw-xxl-35px {
        max-width: 35px !important
    }

    .m8-mw-xxl-40px {
        max-width: 40px !important
    }

    .m8-mw-xxl-45px {
        max-width: 45px !important
    }

    .m8-mw-xxl-50px {
        max-width: 50px !important
    }

    .m8-mw-xxl-55px {
        max-width: 55px !important
    }

    .m8-mw-xxl-60px {
        max-width: 60px !important
    }

    .m8-mw-xxl-65px {
        max-width: 65px !important
    }

    .m8-mw-xxl-70px {
        max-width: 70px !important
    }

    .m8-mw-xxl-75px {
        max-width: 75px !important
    }

    .m8-mw-xxl-80px {
        max-width: 80px !important
    }

    .m8-mw-xxl-85px {
        max-width: 85px !important
    }

    .m8-mw-xxl-90px {
        max-width: 90px !important
    }

    .m8-mw-xxl-95px {
        max-width: 95px !important
    }

    .m8-mw-xxl-100px {
        max-width: 100px !important
    }

    .m8-mw-xxl-125px {
        max-width: 125px !important
    }

    .m8-mw-xxl-150px {
        max-width: 150px !important
    }

    .m8-mw-xxl-175px {
        max-width: 175px !important
    }

    .m8-mw-xxl-200px {
        max-width: 200px !important
    }

    .m8-mw-xxl-225px {
        max-width: 225px !important
    }

    .m8-mw-xxl-250px {
        max-width: 250px !important
    }

    .m8-mw-xxl-275px {
        max-width: 275px !important
    }

    .m8-mw-xxl-300px {
        max-width: 300px !important
    }

    .m8-mw-xxl-325px {
        max-width: 325px !important
    }

    .m8-mw-xxl-350px {
        max-width: 350px !important
    }

    .m8-mw-xxl-375px {
        max-width: 375px !important
    }

    .m8-mw-xxl-400px {
        max-width: 400px !important
    }

    .m8-mw-xxl-425px {
        max-width: 425px !important
    }

    .m8-mw-xxl-450px {
        max-width: 450px !important
    }

    .m8-mw-xxl-475px {
        max-width: 475px !important
    }

    .m8-mw-xxl-500px {
        max-width: 500px !important
    }

    .m8-mw-xxl-550px {
        max-width: 550px !important
    }

    .m8-mw-xxl-600px {
        max-width: 600px !important
    }

    .m8-mw-xxl-650px {
        max-width: 650px !important
    }

    .m8-mw-xxl-700px {
        max-width: 700px !important
    }

    .m8-mw-xxl-750px {
        max-width: 750px !important
    }

    .m8-mw-xxl-800px {
        max-width: 800px !important
    }

    .m8-mw-xxl-850px {
        max-width: 850px !important
    }

    .m8-mw-xxl-900px {
        max-width: 900px !important
    }

    .m8-mw-xxl-950px {
        max-width: 950px !important
    }

    .m8-mw-xxl-1000px {
        max-width: 1000px !important
    }

    .m8-h-xxl-unset {
        height: unset !important
    }

    .m8-h-xxl-25 {
        height: 25% !important
    }

    .m8-h-xxl-50 {
        height: 50% !important
    }

    .m8-h-xxl-75 {
        height: 75% !important
    }

    .m8-h-xxl-100 {
        height: 100% !important
    }

    .m8-h-xxl-auto {
        height: auto !important
    }

    .m8-h-xxl-1px {
        height: 1px !important
    }

    .m8-h-xxl-2px {
        height: 2px !important
    }

    .m8-h-xxl-3px {
        height: 3px !important
    }

    .m8-h-xxl-4px {
        height: 4px !important
    }

    .m8-h-xxl-5px {
        height: 5px !important
    }

    .m8-h-xxl-6px {
        height: 6px !important
    }

    .m8-h-xxl-7px {
        height: 7px !important
    }

    .m8-h-xxl-8px {
        height: 8px !important
    }

    .m8-h-xxl-9px {
        height: 9px !important
    }

    .m8-h-xxl-10px {
        height: 10px !important
    }

    .m8-h-xxl-15px {
        height: 15px !important
    }

    .m8-h-xxl-20px {
        height: 20px !important
    }

    .m8-h-xxl-25px {
        height: 25px !important
    }

    .m8-h-xxl-30px {
        height: 30px !important
    }

    .m8-h-xxl-35px {
        height: 35px !important
    }

    .m8-h-xxl-40px {
        height: 40px !important
    }

    .m8-h-xxl-45px {
        height: 45px !important
    }

    .m8-h-xxl-50px {
        height: 50px !important
    }

    .m8-h-xxl-55px {
        height: 55px !important
    }

    .m8-h-xxl-60px {
        height: 60px !important
    }

    .m8-h-xxl-65px {
        height: 65px !important
    }

    .m8-h-xxl-70px {
        height: 70px !important
    }

    .m8-h-xxl-75px {
        height: 75px !important
    }

    .m8-h-xxl-80px {
        height: 80px !important
    }

    .m8-h-xxl-85px {
        height: 85px !important
    }

    .m8-h-xxl-90px {
        height: 90px !important
    }

    .m8-h-xxl-95px {
        height: 95px !important
    }

    .m8-h-xxl-100px {
        height: 100px !important
    }

    .m8-h-xxl-125px {
        height: 125px !important
    }

    .m8-h-xxl-150px {
        height: 150px !important
    }

    .m8-h-xxl-175px {
        height: 175px !important
    }

    .m8-h-xxl-200px {
        height: 200px !important
    }

    .m8-h-xxl-225px {
        height: 225px !important
    }

    .m8-h-xxl-250px {
        height: 250px !important
    }

    .m8-h-xxl-275px {
        height: 275px !important
    }

    .m8-h-xxl-300px {
        height: 300px !important
    }

    .m8-h-xxl-325px {
        height: 325px !important
    }

    .m8-h-xxl-350px {
        height: 350px !important
    }

    .m8-h-xxl-375px {
        height: 375px !important
    }

    .m8-h-xxl-400px {
        height: 400px !important
    }

    .m8-h-xxl-425px {
        height: 425px !important
    }

    .m8-h-xxl-450px {
        height: 450px !important
    }

    .m8-h-xxl-475px {
        height: 475px !important
    }

    .m8-h-xxl-500px {
        height: 500px !important
    }

    .m8-h-xxl-550px {
        height: 550px !important
    }

    .m8-h-xxl-600px {
        height: 600px !important
    }

    .m8-h-xxl-650px {
        height: 650px !important
    }

    .m8-h-xxl-700px {
        height: 700px !important
    }

    .m8-h-xxl-750px {
        height: 750px !important
    }

    .m8-h-xxl-800px {
        height: 800px !important
    }

    .m8-h-xxl-850px {
        height: 850px !important
    }

    .m8-h-xxl-900px {
        height: 900px !important
    }

    .m8-h-xxl-950px {
        height: 950px !important
    }

    .m8-h-xxl-1000px {
        height: 1000px !important
    }

    .m8-mh-xxl-unset {
        max-height: unset !important
    }

    .m8-mh-xxl-25 {
        max-height: 25% !important
    }

    .m8-mh-xxl-50 {
        max-height: 50% !important
    }

    .m8-mh-xxl-75 {
        max-height: 75% !important
    }

    .m8-mh-xxl-100 {
        max-height: 100% !important
    }

    .m8-mh-xxl-auto {
        max-height: auto !important
    }

    .m8-mh-xxl-1px {
        max-height: 1px !important
    }

    .m8-mh-xxl-2px {
        max-height: 2px !important
    }

    .m8-mh-xxl-3px {
        max-height: 3px !important
    }

    .m8-mh-xxl-4px {
        max-height: 4px !important
    }

    .m8-mh-xxl-5px {
        max-height: 5px !important
    }

    .m8-mh-xxl-6px {
        max-height: 6px !important
    }

    .m8-mh-xxl-7px {
        max-height: 7px !important
    }

    .m8-mh-xxl-8px {
        max-height: 8px !important
    }

    .m8-mh-xxl-9px {
        max-height: 9px !important
    }

    .m8-mh-xxl-10px {
        max-height: 10px !important
    }

    .m8-mh-xxl-15px {
        max-height: 15px !important
    }

    .m8-mh-xxl-20px {
        max-height: 20px !important
    }

    .m8-mh-xxl-25px {
        max-height: 25px !important
    }

    .m8-mh-xxl-30px {
        max-height: 30px !important
    }

    .m8-mh-xxl-35px {
        max-height: 35px !important
    }

    .m8-mh-xxl-40px {
        max-height: 40px !important
    }

    .m8-mh-xxl-45px {
        max-height: 45px !important
    }

    .m8-mh-xxl-50px {
        max-height: 50px !important
    }

    .m8-mh-xxl-55px {
        max-height: 55px !important
    }

    .m8-mh-xxl-60px {
        max-height: 60px !important
    }

    .m8-mh-xxl-65px {
        max-height: 65px !important
    }

    .m8-mh-xxl-70px {
        max-height: 70px !important
    }

    .m8-mh-xxl-75px {
        max-height: 75px !important
    }

    .m8-mh-xxl-80px {
        max-height: 80px !important
    }

    .m8-mh-xxl-85px {
        max-height: 85px !important
    }

    .m8-mh-xxl-90px {
        max-height: 90px !important
    }

    .m8-mh-xxl-95px {
        max-height: 95px !important
    }

    .m8-mh-xxl-100px {
        max-height: 100px !important
    }

    .m8-mh-xxl-125px {
        max-height: 125px !important
    }

    .m8-mh-xxl-150px {
        max-height: 150px !important
    }

    .m8-mh-xxl-175px {
        max-height: 175px !important
    }

    .m8-mh-xxl-200px {
        max-height: 200px !important
    }

    .m8-mh-xxl-225px {
        max-height: 225px !important
    }

    .m8-mh-xxl-250px {
        max-height: 250px !important
    }

    .m8-mh-xxl-275px {
        max-height: 275px !important
    }

    .m8-mh-xxl-300px {
        max-height: 300px !important
    }

    .m8-mh-xxl-325px {
        max-height: 325px !important
    }

    .m8-mh-xxl-350px {
        max-height: 350px !important
    }

    .m8-mh-xxl-375px {
        max-height: 375px !important
    }

    .m8-mh-xxl-400px {
        max-height: 400px !important
    }

    .m8-mh-xxl-425px {
        max-height: 425px !important
    }

    .m8-mh-xxl-450px {
        max-height: 450px !important
    }

    .m8-mh-xxl-475px {
        max-height: 475px !important
    }

    .m8-mh-xxl-500px {
        max-height: 500px !important
    }

    .m8-mh-xxl-550px {
        max-height: 550px !important
    }

    .m8-mh-xxl-600px {
        max-height: 600px !important
    }

    .m8-mh-xxl-650px {
        max-height: 650px !important
    }

    .m8-mh-xxl-700px {
        max-height: 700px !important
    }

    .m8-mh-xxl-750px {
        max-height: 750px !important
    }

    .m8-mh-xxl-800px {
        max-height: 800px !important
    }

    .m8-mh-xxl-850px {
        max-height: 850px !important
    }

    .m8-mh-xxl-900px {
        max-height: 900px !important
    }

    .m8-mh-xxl-950px {
        max-height: 950px !important
    }

    .m8-mh-xxl-1000px {
        max-height: 1000px !important
    }

    .m8-flex-xxl-fill {
        flex: 1 1 auto !important
    }

    .m8-flex-xxl-row {
        flex-direction: row !important
    }

    .m8-flex-xxl-column {
        flex-direction: column !important
    }

    .m8-flex-xxl-row-reverse {
        flex-direction: row-reverse !important
    }

    .m8-flex-xxl-column-reverse {
        flex-direction: column-reverse !important
    }

    .m8-flex-xxl-grow-0 {
        flex-grow: 0 !important
    }

    .m8-flex-xxl-grow-1 {
        flex-grow: 1 !important
    }

    .m8-flex-xxl-shrink-0 {
        flex-shrink: 0 !important
    }

    .m8-flex-xxl-shrink-1 {
        flex-shrink: 1 !important
    }

    .m8-flex-xxl-wrap {
        flex-wrap: wrap !important
    }

    .m8-flex-xxl-nowrap {
        flex-wrap: nowrap !important
    }

    .m8-flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .m8-justify-content-xxl-start {
        justify-content: flex-start !important
    }

    .m8-justify-content-xxl-end {
        justify-content: flex-end !important
    }

    .m8-justify-content-xxl-center {
        justify-content: center !important
    }

    .m8-justify-content-xxl-between {
        justify-content: space-between !important
    }

    .m8-justify-content-xxl-around {
        justify-content: space-around !important
    }

    .m8-justify-content-xxl-evenly {
        justify-content: space-evenly !important
    }

    .m8-align-items-xxl-start {
        align-items: flex-start !important
    }

    .m8-align-items-xxl-end {
        align-items: flex-end !important
    }

    .m8-align-items-xxl-center {
        align-items: center !important
    }

    .m8-align-items-xxl-baseline {
        align-items: baseline !important
    }

    .m8-align-items-xxl-stretch {
        align-items: stretch !important
    }

    .m8-align-content-xxl-start {
        align-content: flex-start !important
    }

    .m8-align-content-xxl-end {
        align-content: flex-end !important
    }

    .m8-align-content-xxl-center {
        align-content: center !important
    }

    .m8-align-content-xxl-between {
        align-content: space-between !important
    }

    .m8-align-content-xxl-around {
        align-content: space-around !important
    }

    .m8-align-content-xxl-stretch {
        align-content: stretch !important
    }

    .m8-align-self-xxl-auto {
        align-self: auto !important
    }

    .m8-align-self-xxl-start {
        align-self: flex-start !important
    }

    .m8-align-self-xxl-end {
        align-self: flex-end !important
    }

    .m8-align-self-xxl-center {
        align-self: center !important
    }

    .m8-align-self-xxl-baseline {
        align-self: baseline !important
    }

    .m8-align-self-xxl-stretch {
        align-self: stretch !important
    }

    .m8-order-xxl-first {
        order: -1 !important
    }

    .m8-order-xxl-0 {
        order: 0 !important
    }

    .m8-order-xxl-1 {
        order: 1 !important
    }

    .m8-order-xxl-2 {
        order: 2 !important
    }

    .m8-order-xxl-3 {
        order: 3 !important
    }

    .m8-order-xxl-4 {
        order: 4 !important
    }

    .m8-order-xxl-5 {
        order: 5 !important
    }

    .m8-order-xxl-last {
        order: 6 !important
    }

    .m8-m-xxl-0 {
        margin: 0 !important
    }

    .m8-m-xxl-1 {
        margin: .25rem !important
    }

    .m8-m-xxl-2 {
        margin: .5rem !important
    }

    .m8-m-xxl-3 {
        margin: .75rem !important
    }

    .m8-m-xxl-4 {
        margin: 1rem !important
    }

    .m8-m-xxl-5 {
        margin: 1.25rem !important
    }

    .m8-m-xxl-6 {
        margin: 1.5rem !important
    }

    .m8-m-xxl-7 {
        margin: 1.75rem !important
    }

    .m8-m-xxl-8 {
        margin: 2rem !important
    }

    .m8-m-xxl-9 {
        margin: 2.25rem !important
    }

    .m8-m-xxl-10 {
        margin: 2.5rem !important
    }

    .m8-m-xxl-11 {
        margin: 2.75rem !important
    }

    .m8-m-xxl-12 {
        margin: 3rem !important
    }

    .m8-m-xxl-13 {
        margin: 3.25rem !important
    }

    .m8-m-xxl-14 {
        margin: 3.5rem !important
    }

    .m8-m-xxl-15 {
        margin: 3.75rem !important
    }

    .m8-m-xxl-16 {
        margin: 4rem !important
    }

    .m8-m-xxl-17 {
        margin: 4.25rem !important
    }

    .m8-m-xxl-18 {
        margin: 4.5rem !important
    }

    .m8-m-xxl-19 {
        margin: 4.75rem !important
    }

    .m8-m-xxl-20 {
        margin: 5rem !important
    }

    .m8-m-xxl-auto {
        margin: auto !important
    }

    .m8-mx-xxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .m8-mx-xxl-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .m8-mx-xxl-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .m8-mx-xxl-3 {
        margin-right: .75rem !important;
        margin-left: .75rem !important
    }

    .m8-mx-xxl-4 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .m8-mx-xxl-5 {
        margin-right: 1.25rem !important;
        margin-left: 1.25rem !important
    }

    .m8-mx-xxl-6 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .m8-mx-xxl-7 {
        margin-right: 1.75rem !important;
        margin-left: 1.75rem !important
    }

    .m8-mx-xxl-8 {
        margin-right: 2rem !important;
        margin-left: 2rem !important
    }

    .m8-mx-xxl-9 {
        margin-right: 2.25rem !important;
        margin-left: 2.25rem !important
    }

    .m8-mx-xxl-10 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important
    }

    .m8-mx-xxl-11 {
        margin-right: 2.75rem !important;
        margin-left: 2.75rem !important
    }

    .m8-mx-xxl-12 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .m8-mx-xxl-13 {
        margin-right: 3.25rem !important;
        margin-left: 3.25rem !important
    }

    .m8-mx-xxl-14 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important
    }

    .m8-mx-xxl-15 {
        margin-right: 3.75rem !important;
        margin-left: 3.75rem !important
    }

    .m8-mx-xxl-16 {
        margin-right: 4rem !important;
        margin-left: 4rem !important
    }

    .m8-mx-xxl-17 {
        margin-right: 4.25rem !important;
        margin-left: 4.25rem !important
    }

    .m8-mx-xxl-18 {
        margin-right: 4.5rem !important;
        margin-left: 4.5rem !important
    }

    .m8-mx-xxl-19 {
        margin-right: 4.75rem !important;
        margin-left: 4.75rem !important
    }

    .m8-mx-xxl-20 {
        margin-right: 5rem !important;
        margin-left: 5rem !important
    }

    .m8-mx-xxl-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .m8-my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .m8-my-xxl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .m8-my-xxl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .m8-my-xxl-3 {
        margin-top: .75rem !important;
        margin-bottom: .75rem !important
    }

    .m8-my-xxl-4 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .m8-my-xxl-5 {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important
    }

    .m8-my-xxl-6 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .m8-my-xxl-7 {
        margin-top: 1.75rem !important;
        margin-bottom: 1.75rem !important
    }

    .m8-my-xxl-8 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important
    }

    .m8-my-xxl-9 {
        margin-top: 2.25rem !important;
        margin-bottom: 2.25rem !important
    }

    .m8-my-xxl-10 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important
    }

    .m8-my-xxl-11 {
        margin-top: 2.75rem !important;
        margin-bottom: 2.75rem !important
    }

    .m8-my-xxl-12 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .m8-my-xxl-13 {
        margin-top: 3.25rem !important;
        margin-bottom: 3.25rem !important
    }

    .m8-my-xxl-14 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important
    }

    .m8-my-xxl-15 {
        margin-top: 3.75rem !important;
        margin-bottom: 3.75rem !important
    }

    .m8-my-xxl-16 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important
    }

    .m8-my-xxl-17 {
        margin-top: 4.25rem !important;
        margin-bottom: 4.25rem !important
    }

    .m8-my-xxl-18 {
        margin-top: 4.5rem !important;
        margin-bottom: 4.5rem !important
    }

    .m8-my-xxl-19 {
        margin-top: 4.75rem !important;
        margin-bottom: 4.75rem !important
    }

    .m8-my-xxl-20 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important
    }

    .m8-my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .m8-mt-xxl-0 {
        margin-top: 0 !important
    }

    .m8-mt-xxl-1 {
        margin-top: .25rem !important
    }

    .m8-mt-xxl-2 {
        margin-top: .5rem !important
    }

    .m8-mt-xxl-3 {
        margin-top: .75rem !important
    }

    .m8-mt-xxl-4 {
        margin-top: 1rem !important
    }

    .m8-mt-xxl-5 {
        margin-top: 1.25rem !important
    }

    .m8-mt-xxl-6 {
        margin-top: 1.5rem !important
    }

    .m8-mt-xxl-7 {
        margin-top: 1.75rem !important
    }

    .m8-mt-xxl-8 {
        margin-top: 2rem !important
    }

    .m8-mt-xxl-9 {
        margin-top: 2.25rem !important
    }

    .m8-mt-xxl-10 {
        margin-top: 2.5rem !important
    }

    .m8-mt-xxl-11 {
        margin-top: 2.75rem !important
    }

    .m8-mt-xxl-12 {
        margin-top: 3rem !important
    }

    .m8-mt-xxl-13 {
        margin-top: 3.25rem !important
    }

    .m8-mt-xxl-14 {
        margin-top: 3.5rem !important
    }

    .m8-mt-xxl-15 {
        margin-top: 3.75rem !important
    }

    .m8-mt-xxl-16 {
        margin-top: 4rem !important
    }

    .m8-mt-xxl-17 {
        margin-top: 4.25rem !important
    }

    .m8-mt-xxl-18 {
        margin-top: 4.5rem !important
    }

    .m8-mt-xxl-19 {
        margin-top: 4.75rem !important
    }

    .m8-mt-xxl-20 {
        margin-top: 5rem !important
    }

    .m8-mt-xxl-auto {
        margin-top: auto !important
    }

    .m8-me-xxl-0 {
        margin-right: 0 !important
    }

    .m8-me-xxl-1 {
        margin-right: .25rem !important
    }

    .m8-me-xxl-2 {
        margin-right: .5rem !important
    }

    .m8-me-xxl-3 {
        margin-right: .75rem !important
    }

    .m8-me-xxl-4 {
        margin-right: 1rem !important
    }

    .m8-me-xxl-5 {
        margin-right: 1.25rem !important
    }

    .m8-me-xxl-6 {
        margin-right: 1.5rem !important
    }

    .m8-me-xxl-7 {
        margin-right: 1.75rem !important
    }

    .m8-me-xxl-8 {
        margin-right: 2rem !important
    }

    .m8-me-xxl-9 {
        margin-right: 2.25rem !important
    }

    .m8-me-xxl-10 {
        margin-right: 2.5rem !important
    }

    .m8-me-xxl-11 {
        margin-right: 2.75rem !important
    }

    .m8-me-xxl-12 {
        margin-right: 3rem !important
    }

    .m8-me-xxl-13 {
        margin-right: 3.25rem !important
    }

    .m8-me-xxl-14 {
        margin-right: 3.5rem !important
    }

    .m8-me-xxl-15 {
        margin-right: 3.75rem !important
    }

    .m8-me-xxl-16 {
        margin-right: 4rem !important
    }

    .m8-me-xxl-17 {
        margin-right: 4.25rem !important
    }

    .m8-me-xxl-18 {
        margin-right: 4.5rem !important
    }

    .m8-me-xxl-19 {
        margin-right: 4.75rem !important
    }

    .m8-me-xxl-20 {
        margin-right: 5rem !important
    }

    .m8-me-xxl-auto {
        margin-right: auto !important
    }

    .m8-mb-xxl-0 {
        margin-bottom: 0 !important
    }

    .m8-mb-xxl-1 {
        margin-bottom: .25rem !important
    }

    .m8-mb-xxl-2 {
        margin-bottom: .5rem !important
    }

    .m8-mb-xxl-3 {
        margin-bottom: .75rem !important
    }

    .m8-mb-xxl-4 {
        margin-bottom: 1rem !important
    }

    .m8-mb-xxl-5 {
        margin-bottom: 1.25rem !important
    }

    .m8-mb-xxl-6 {
        margin-bottom: 1.5rem !important
    }

    .m8-mb-xxl-7 {
        margin-bottom: 1.75rem !important
    }

    .m8-mb-xxl-8 {
        margin-bottom: 2rem !important
    }

    .m8-mb-xxl-9 {
        margin-bottom: 2.25rem !important
    }

    .m8-mb-xxl-10 {
        margin-bottom: 2.5rem !important
    }

    .m8-mb-xxl-11 {
        margin-bottom: 2.75rem !important
    }

    .m8-mb-xxl-12 {
        margin-bottom: 3rem !important
    }

    .m8-mb-xxl-13 {
        margin-bottom: 3.25rem !important
    }

    .m8-mb-xxl-14 {
        margin-bottom: 3.5rem !important
    }

    .m8-mb-xxl-15 {
        margin-bottom: 3.75rem !important
    }

    .m8-mb-xxl-16 {
        margin-bottom: 4rem !important
    }

    .m8-mb-xxl-17 {
        margin-bottom: 4.25rem !important
    }

    .m8-mb-xxl-18 {
        margin-bottom: 4.5rem !important
    }

    .m8-mb-xxl-19 {
        margin-bottom: 4.75rem !important
    }

    .m8-mb-xxl-20 {
        margin-bottom: 5rem !important
    }

    .m8-mb-xxl-auto {
        margin-bottom: auto !important
    }

    .m8-ms-xxl-0 {
        margin-left: 0 !important
    }

    .m8-ms-xxl-1 {
        margin-left: .25rem !important
    }

    .m8-ms-xxl-2 {
        margin-left: .5rem !important
    }

    .m8-ms-xxl-3 {
        margin-left: .75rem !important
    }

    .m8-ms-xxl-4 {
        margin-left: 1rem !important
    }

    .m8-ms-xxl-5 {
        margin-left: 1.25rem !important
    }

    .m8-ms-xxl-6 {
        margin-left: 1.5rem !important
    }

    .m8-ms-xxl-7 {
        margin-left: 1.75rem !important
    }

    .m8-ms-xxl-8 {
        margin-left: 2rem !important
    }

    .m8-ms-xxl-9 {
        margin-left: 2.25rem !important
    }

    .m8-ms-xxl-10 {
        margin-left: 2.5rem !important
    }

    .m8-ms-xxl-11 {
        margin-left: 2.75rem !important
    }

    .m8-ms-xxl-12 {
        margin-left: 3rem !important
    }

    .m8-ms-xxl-13 {
        margin-left: 3.25rem !important
    }

    .m8-ms-xxl-14 {
        margin-left: 3.5rem !important
    }

    .m8-ms-xxl-15 {
        margin-left: 3.75rem !important
    }

    .m8-ms-xxl-16 {
        margin-left: 4rem !important
    }

    .m8-ms-xxl-17 {
        margin-left: 4.25rem !important
    }

    .m8-ms-xxl-18 {
        margin-left: 4.5rem !important
    }

    .m8-ms-xxl-19 {
        margin-left: 4.75rem !important
    }

    .m8-ms-xxl-20 {
        margin-left: 5rem !important
    }

    .m8-ms-xxl-auto {
        margin-left: auto !important
    }

    .m8-m-xxl-n1 {
        margin: -.25rem !important
    }

    .m8-m-xxl-n2 {
        margin: -.5rem !important
    }

    .m8-m-xxl-n3 {
        margin: -.75rem !important
    }

    .m8-m-xxl-n4 {
        margin: -1rem !important
    }

    .m8-m-xxl-n5 {
        margin: -1.25rem !important
    }

    .m8-m-xxl-n6 {
        margin: -1.5rem !important
    }

    .m8-m-xxl-n7 {
        margin: -1.75rem !important
    }

    .m8-m-xxl-n8 {
        margin: -2rem !important
    }

    .m8-m-xxl-n9 {
        margin: -2.25rem !important
    }

    .m8-m-xxl-n10 {
        margin: -2.5rem !important
    }

    .m8-m-xxl-n11 {
        margin: -2.75rem !important
    }

    .m8-m-xxl-n12 {
        margin: -3rem !important
    }

    .m8-m-xxl-n13 {
        margin: -3.25rem !important
    }

    .m8-m-xxl-n14 {
        margin: -3.5rem !important
    }

    .m8-m-xxl-n15 {
        margin: -3.75rem !important
    }

    .m8-m-xxl-n16 {
        margin: -4rem !important
    }

    .m8-m-xxl-n17 {
        margin: -4.25rem !important
    }

    .m8-m-xxl-n18 {
        margin: -4.5rem !important
    }

    .m8-m-xxl-n19 {
        margin: -4.75rem !important
    }

    .m8-m-xxl-n20 {
        margin: -5rem !important
    }

    .m8-mx-xxl-n1 {
        margin-right: -.25rem !important;
        margin-left: -.25rem !important
    }

    .m8-mx-xxl-n2 {
        margin-right: -.5rem !important;
        margin-left: -.5rem !important
    }

    .m8-mx-xxl-n3 {
        margin-right: -.75rem !important;
        margin-left: -.75rem !important
    }

    .m8-mx-xxl-n4 {
        margin-right: -1rem !important;
        margin-left: -1rem !important
    }

    .m8-mx-xxl-n5 {
        margin-right: -1.25rem !important;
        margin-left: -1.25rem !important
    }

    .m8-mx-xxl-n6 {
        margin-right: -1.5rem !important;
        margin-left: -1.5rem !important
    }

    .m8-mx-xxl-n7 {
        margin-right: -1.75rem !important;
        margin-left: -1.75rem !important
    }

    .m8-mx-xxl-n8 {
        margin-right: -2rem !important;
        margin-left: -2rem !important
    }

    .m8-mx-xxl-n9 {
        margin-right: -2.25rem !important;
        margin-left: -2.25rem !important
    }

    .m8-mx-xxl-n10 {
        margin-right: -2.5rem !important;
        margin-left: -2.5rem !important
    }

    .m8-mx-xxl-n11 {
        margin-right: -2.75rem !important;
        margin-left: -2.75rem !important
    }

    .m8-mx-xxl-n12 {
        margin-right: -3rem !important;
        margin-left: -3rem !important
    }

    .m8-mx-xxl-n13 {
        margin-right: -3.25rem !important;
        margin-left: -3.25rem !important
    }

    .m8-mx-xxl-n14 {
        margin-right: -3.5rem !important;
        margin-left: -3.5rem !important
    }

    .m8-mx-xxl-n15 {
        margin-right: -3.75rem !important;
        margin-left: -3.75rem !important
    }

    .m8-mx-xxl-n16 {
        margin-right: -4rem !important;
        margin-left: -4rem !important
    }

    .m8-mx-xxl-n17 {
        margin-right: -4.25rem !important;
        margin-left: -4.25rem !important
    }

    .m8-mx-xxl-n18 {
        margin-right: -4.5rem !important;
        margin-left: -4.5rem !important
    }

    .m8-mx-xxl-n19 {
        margin-right: -4.75rem !important;
        margin-left: -4.75rem !important
    }

    .m8-mx-xxl-n20 {
        margin-right: -5rem !important;
        margin-left: -5rem !important
    }

    .m8-my-xxl-n1 {
        margin-top: -.25rem !important;
        margin-bottom: -.25rem !important
    }

    .m8-my-xxl-n2 {
        margin-top: -.5rem !important;
        margin-bottom: -.5rem !important
    }

    .m8-my-xxl-n3 {
        margin-top: -.75rem !important;
        margin-bottom: -.75rem !important
    }

    .m8-my-xxl-n4 {
        margin-top: -1rem !important;
        margin-bottom: -1rem !important
    }

    .m8-my-xxl-n5 {
        margin-top: -1.25rem !important;
        margin-bottom: -1.25rem !important
    }

    .m8-my-xxl-n6 {
        margin-top: -1.5rem !important;
        margin-bottom: -1.5rem !important
    }

    .m8-my-xxl-n7 {
        margin-top: -1.75rem !important;
        margin-bottom: -1.75rem !important
    }

    .m8-my-xxl-n8 {
        margin-top: -2rem !important;
        margin-bottom: -2rem !important
    }

    .m8-my-xxl-n9 {
        margin-top: -2.25rem !important;
        margin-bottom: -2.25rem !important
    }

    .m8-my-xxl-n10 {
        margin-top: -2.5rem !important;
        margin-bottom: -2.5rem !important
    }

    .m8-my-xxl-n11 {
        margin-top: -2.75rem !important;
        margin-bottom: -2.75rem !important
    }

    .m8-my-xxl-n12 {
        margin-top: -3rem !important;
        margin-bottom: -3rem !important
    }

    .m8-my-xxl-n13 {
        margin-top: -3.25rem !important;
        margin-bottom: -3.25rem !important
    }

    .m8-my-xxl-n14 {
        margin-top: -3.5rem !important;
        margin-bottom: -3.5rem !important
    }

    .m8-my-xxl-n15 {
        margin-top: -3.75rem !important;
        margin-bottom: -3.75rem !important
    }

    .m8-my-xxl-n16 {
        margin-top: -4rem !important;
        margin-bottom: -4rem !important
    }

    .m8-my-xxl-n17 {
        margin-top: -4.25rem !important;
        margin-bottom: -4.25rem !important
    }

    .m8-my-xxl-n18 {
        margin-top: -4.5rem !important;
        margin-bottom: -4.5rem !important
    }

    .m8-my-xxl-n19 {
        margin-top: -4.75rem !important;
        margin-bottom: -4.75rem !important
    }

    .m8-my-xxl-n20 {
        margin-top: -5rem !important;
        margin-bottom: -5rem !important
    }

    .m8-mt-xxl-n1 {
        margin-top: -.25rem !important
    }

    .m8-mt-xxl-n2 {
        margin-top: -.5rem !important
    }

    .m8-mt-xxl-n3 {
        margin-top: -.75rem !important
    }

    .m8-mt-xxl-n4 {
        margin-top: -1rem !important
    }

    .m8-mt-xxl-n5 {
        margin-top: -1.25rem !important
    }

    .m8-mt-xxl-n6 {
        margin-top: -1.5rem !important
    }

    .m8-mt-xxl-n7 {
        margin-top: -1.75rem !important
    }

    .m8-mt-xxl-n8 {
        margin-top: -2rem !important
    }

    .m8-mt-xxl-n9 {
        margin-top: -2.25rem !important
    }

    .m8-mt-xxl-n10 {
        margin-top: -2.5rem !important
    }

    .m8-mt-xxl-n11 {
        margin-top: -2.75rem !important
    }

    .m8-mt-xxl-n12 {
        margin-top: -3rem !important
    }

    .m8-mt-xxl-n13 {
        margin-top: -3.25rem !important
    }

    .m8-mt-xxl-n14 {
        margin-top: -3.5rem !important
    }

    .m8-mt-xxl-n15 {
        margin-top: -3.75rem !important
    }

    .m8-mt-xxl-n16 {
        margin-top: -4rem !important
    }

    .m8-mt-xxl-n17 {
        margin-top: -4.25rem !important
    }

    .m8-mt-xxl-n18 {
        margin-top: -4.5rem !important
    }

    .m8-mt-xxl-n19 {
        margin-top: -4.75rem !important
    }

    .m8-mt-xxl-n20 {
        margin-top: -5rem !important
    }

    .m8-me-xxl-n1 {
        margin-right: -.25rem !important
    }

    .m8-me-xxl-n2 {
        margin-right: -.5rem !important
    }

    .m8-me-xxl-n3 {
        margin-right: -.75rem !important
    }

    .m8-me-xxl-n4 {
        margin-right: -1rem !important
    }

    .m8-me-xxl-n5 {
        margin-right: -1.25rem !important
    }

    .m8-me-xxl-n6 {
        margin-right: -1.5rem !important
    }

    .m8-me-xxl-n7 {
        margin-right: -1.75rem !important
    }

    .m8-me-xxl-n8 {
        margin-right: -2rem !important
    }

    .m8-me-xxl-n9 {
        margin-right: -2.25rem !important
    }

    .m8-me-xxl-n10 {
        margin-right: -2.5rem !important
    }

    .m8-me-xxl-n11 {
        margin-right: -2.75rem !important
    }

    .m8-me-xxl-n12 {
        margin-right: -3rem !important
    }

    .m8-me-xxl-n13 {
        margin-right: -3.25rem !important
    }

    .m8-me-xxl-n14 {
        margin-right: -3.5rem !important
    }

    .m8-me-xxl-n15 {
        margin-right: -3.75rem !important
    }

    .m8-me-xxl-n16 {
        margin-right: -4rem !important
    }

    .m8-me-xxl-n17 {
        margin-right: -4.25rem !important
    }

    .m8-me-xxl-n18 {
        margin-right: -4.5rem !important
    }

    .m8-me-xxl-n19 {
        margin-right: -4.75rem !important
    }

    .m8-me-xxl-n20 {
        margin-right: -5rem !important
    }

    .m8-mb-xxl-n1 {
        margin-bottom: -.25rem !important
    }

    .m8-mb-xxl-n2 {
        margin-bottom: -.5rem !important
    }

    .m8-mb-xxl-n3 {
        margin-bottom: -.75rem !important
    }

    .m8-mb-xxl-n4 {
        margin-bottom: -1rem !important
    }

    .m8-mb-xxl-n5 {
        margin-bottom: -1.25rem !important
    }

    .m8-mb-xxl-n6 {
        margin-bottom: -1.5rem !important
    }

    .m8-mb-xxl-n7 {
        margin-bottom: -1.75rem !important
    }

    .m8-mb-xxl-n8 {
        margin-bottom: -2rem !important
    }

    .m8-mb-xxl-n9 {
        margin-bottom: -2.25rem !important
    }

    .m8-mb-xxl-n10 {
        margin-bottom: -2.5rem !important
    }

    .m8-mb-xxl-n11 {
        margin-bottom: -2.75rem !important
    }

    .m8-mb-xxl-n12 {
        margin-bottom: -3rem !important
    }

    .m8-mb-xxl-n13 {
        margin-bottom: -3.25rem !important
    }

    .m8-mb-xxl-n14 {
        margin-bottom: -3.5rem !important
    }

    .m8-mb-xxl-n15 {
        margin-bottom: -3.75rem !important
    }

    .m8-mb-xxl-n16 {
        margin-bottom: -4rem !important
    }

    .m8-mb-xxl-n17 {
        margin-bottom: -4.25rem !important
    }

    .m8-mb-xxl-n18 {
        margin-bottom: -4.5rem !important
    }

    .m8-mb-xxl-n19 {
        margin-bottom: -4.75rem !important
    }

    .m8-mb-xxl-n20 {
        margin-bottom: -5rem !important
    }

    .m8-ms-xxl-n1 {
        margin-left: -.25rem !important
    }

    .m8-ms-xxl-n2 {
        margin-left: -.5rem !important
    }

    .m8-ms-xxl-n3 {
        margin-left: -.75rem !important
    }

    .m8-ms-xxl-n4 {
        margin-left: -1rem !important
    }

    .m8-ms-xxl-n5 {
        margin-left: -1.25rem !important
    }

    .m8-ms-xxl-n6 {
        margin-left: -1.5rem !important
    }

    .m8-ms-xxl-n7 {
        margin-left: -1.75rem !important
    }

    .m8-ms-xxl-n8 {
        margin-left: -2rem !important
    }

    .m8-ms-xxl-n9 {
        margin-left: -2.25rem !important
    }

    .m8-ms-xxl-n10 {
        margin-left: -2.5rem !important
    }

    .m8-ms-xxl-n11 {
        margin-left: -2.75rem !important
    }

    .m8-ms-xxl-n12 {
        margin-left: -3rem !important
    }

    .m8-ms-xxl-n13 {
        margin-left: -3.25rem !important
    }

    .m8-ms-xxl-n14 {
        margin-left: -3.5rem !important
    }

    .m8-ms-xxl-n15 {
        margin-left: -3.75rem !important
    }

    .m8-ms-xxl-n16 {
        margin-left: -4rem !important
    }

    .m8-ms-xxl-n17 {
        margin-left: -4.25rem !important
    }

    .m8-ms-xxl-n18 {
        margin-left: -4.5rem !important
    }

    .m8-ms-xxl-n19 {
        margin-left: -4.75rem !important
    }

    .m8-ms-xxl-n20 {
        margin-left: -5rem !important
    }

    .m8-p-xxl-0 {
        padding: 0 !important
    }

    .m8-p-xxl-1 {
        padding: .25rem !important
    }

    .m8-p-xxl-2 {
        padding: .5rem !important
    }

    .m8-p-xxl-3 {
        padding: .75rem !important
    }

    .m8-p-xxl-4 {
        padding: 1rem !important
    }

    .m8-p-xxl-5 {
        padding: 1.25rem !important
    }

    .m8-p-xxl-6 {
        padding: 1.5rem !important
    }

    .m8-p-xxl-7 {
        padding: 1.75rem !important
    }

    .m8-p-xxl-8 {
        padding: 2rem !important
    }

    .m8-p-xxl-9 {
        padding: 2.25rem !important
    }

    .m8-p-xxl-10 {
        padding: 2.5rem !important
    }

    .m8-p-xxl-11 {
        padding: 2.75rem !important
    }

    .m8-p-xxl-12 {
        padding: 3rem !important
    }

    .m8-p-xxl-13 {
        padding: 3.25rem !important
    }

    .m8-p-xxl-14 {
        padding: 3.5rem !important
    }

    .m8-p-xxl-15 {
        padding: 3.75rem !important
    }

    .m8-p-xxl-16 {
        padding: 4rem !important
    }

    .m8-p-xxl-17 {
        padding: 4.25rem !important
    }

    .m8-p-xxl-18 {
        padding: 4.5rem !important
    }

    .m8-p-xxl-19 {
        padding: 4.75rem !important
    }

    .m8-p-xxl-20 {
        padding: 5rem !important
    }

    .m8-px-xxl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .m8-px-xxl-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .m8-px-xxl-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .m8-px-xxl-3 {
        padding-right: .75rem !important;
        padding-left: .75rem !important
    }

    .m8-px-xxl-4 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .m8-px-xxl-5 {
        padding-right: 1.25rem !important;
        padding-left: 1.25rem !important
    }

    .m8-px-xxl-6 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .m8-px-xxl-7 {
        padding-right: 1.75rem !important;
        padding-left: 1.75rem !important
    }

    .m8-px-xxl-8 {
        padding-right: 2rem !important;
        padding-left: 2rem !important
    }

    .m8-px-xxl-9 {
        padding-right: 2.25rem !important;
        padding-left: 2.25rem !important
    }

    .m8-px-xxl-10 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important
    }

    .m8-px-xxl-11 {
        padding-right: 2.75rem !important;
        padding-left: 2.75rem !important
    }

    .m8-px-xxl-12 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .m8-px-xxl-13 {
        padding-right: 3.25rem !important;
        padding-left: 3.25rem !important
    }

    .m8-px-xxl-14 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important
    }

    .m8-px-xxl-15 {
        padding-right: 3.75rem !important;
        padding-left: 3.75rem !important
    }

    .m8-px-xxl-16 {
        padding-right: 4rem !important;
        padding-left: 4rem !important
    }

    .m8-px-xxl-17 {
        padding-right: 4.25rem !important;
        padding-left: 4.25rem !important
    }

    .m8-px-xxl-18 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !important
    }

    .m8-px-xxl-19 {
        padding-right: 4.75rem !important;
        padding-left: 4.75rem !important
    }

    .m8-px-xxl-20 {
        padding-right: 5rem !important;
        padding-left: 5rem !important
    }

    .m8-py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .m8-py-xxl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .m8-py-xxl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .m8-py-xxl-3 {
        padding-top: .75rem !important;
        padding-bottom: .75rem !important
    }

    .m8-py-xxl-4 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .m8-py-xxl-5 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important
    }

    .m8-py-xxl-6 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .m8-py-xxl-7 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important
    }

    .m8-py-xxl-8 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important
    }

    .m8-py-xxl-9 {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important
    }

    .m8-py-xxl-10 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important
    }

    .m8-py-xxl-11 {
        padding-top: 2.75rem !important;
        padding-bottom: 2.75rem !important
    }

    .m8-py-xxl-12 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .m8-py-xxl-13 {
        padding-top: 3.25rem !important;
        padding-bottom: 3.25rem !important
    }

    .m8-py-xxl-14 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important
    }

    .m8-py-xxl-15 {
        padding-top: 3.75rem !important;
        padding-bottom: 3.75rem !important
    }

    .m8-py-xxl-16 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important
    }

    .m8-py-xxl-17 {
        padding-top: 4.25rem !important;
        padding-bottom: 4.25rem !important
    }

    .m8-py-xxl-18 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important
    }

    .m8-py-xxl-19 {
        padding-top: 4.75rem !important;
        padding-bottom: 4.75rem !important
    }

    .m8-py-xxl-20 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important
    }

    .m8-pt-xxl-0 {
        padding-top: 0 !important
    }

    .m8-pt-xxl-1 {
        padding-top: .25rem !important
    }

    .m8-pt-xxl-2 {
        padding-top: .5rem !important
    }

    .m8-pt-xxl-3 {
        padding-top: .75rem !important
    }

    .m8-pt-xxl-4 {
        padding-top: 1rem !important
    }

    .m8-pt-xxl-5 {
        padding-top: 1.25rem !important
    }

    .m8-pt-xxl-6 {
        padding-top: 1.5rem !important
    }

    .m8-pt-xxl-7 {
        padding-top: 1.75rem !important
    }

    .m8-pt-xxl-8 {
        padding-top: 2rem !important
    }

    .m8-pt-xxl-9 {
        padding-top: 2.25rem !important
    }

    .m8-pt-xxl-10 {
        padding-top: 2.5rem !important
    }

    .m8-pt-xxl-11 {
        padding-top: 2.75rem !important
    }

    .m8-pt-xxl-12 {
        padding-top: 3rem !important
    }

    .m8-pt-xxl-13 {
        padding-top: 3.25rem !important
    }

    .m8-pt-xxl-14 {
        padding-top: 3.5rem !important
    }

    .m8-pt-xxl-15 {
        padding-top: 3.75rem !important
    }

    .m8-pt-xxl-16 {
        padding-top: 4rem !important
    }

    .m8-pt-xxl-17 {
        padding-top: 4.25rem !important
    }

    .m8-pt-xxl-18 {
        padding-top: 4.5rem !important
    }

    .m8-pt-xxl-19 {
        padding-top: 4.75rem !important
    }

    .m8-pt-xxl-20 {
        padding-top: 5rem !important
    }

    .m8-pe-xxl-0 {
        padding-right: 0 !important
    }

    .m8-pe-xxl-1 {
        padding-right: .25rem !important
    }

    .m8-pe-xxl-2 {
        padding-right: .5rem !important
    }

    .m8-pe-xxl-3 {
        padding-right: .75rem !important
    }

    .m8-pe-xxl-4 {
        padding-right: 1rem !important
    }

    .m8-pe-xxl-5 {
        padding-right: 1.25rem !important
    }

    .m8-pe-xxl-6 {
        padding-right: 1.5rem !important
    }

    .m8-pe-xxl-7 {
        padding-right: 1.75rem !important
    }

    .m8-pe-xxl-8 {
        padding-right: 2rem !important
    }

    .m8-pe-xxl-9 {
        padding-right: 2.25rem !important
    }

    .m8-pe-xxl-10 {
        padding-right: 2.5rem !important
    }

    .m8-pe-xxl-11 {
        padding-right: 2.75rem !important
    }

    .m8-pe-xxl-12 {
        padding-right: 3rem !important
    }

    .m8-pe-xxl-13 {
        padding-right: 3.25rem !important
    }

    .m8-pe-xxl-14 {
        padding-right: 3.5rem !important
    }

    .m8-pe-xxl-15 {
        padding-right: 3.75rem !important
    }

    .m8-pe-xxl-16 {
        padding-right: 4rem !important
    }

    .m8-pe-xxl-17 {
        padding-right: 4.25rem !important
    }

    .m8-pe-xxl-18 {
        padding-right: 4.5rem !important
    }

    .m8-pe-xxl-19 {
        padding-right: 4.75rem !important
    }

    .m8-pe-xxl-20 {
        padding-right: 5rem !important
    }

    .m8-pb-xxl-0 {
        padding-bottom: 0 !important
    }

    .m8-pb-xxl-1 {
        padding-bottom: .25rem !important
    }

    .m8-pb-xxl-2 {
        padding-bottom: .5rem !important
    }

    .m8-pb-xxl-3 {
        padding-bottom: .75rem !important
    }

    .m8-pb-xxl-4 {
        padding-bottom: 1rem !important
    }

    .m8-pb-xxl-5 {
        padding-bottom: 1.25rem !important
    }

    .m8-pb-xxl-6 {
        padding-bottom: 1.5rem !important
    }

    .m8-pb-xxl-7 {
        padding-bottom: 1.75rem !important
    }

    .m8-pb-xxl-8 {
        padding-bottom: 2rem !important
    }

    .m8-pb-xxl-9 {
        padding-bottom: 2.25rem !important
    }

    .m8-pb-xxl-10 {
        padding-bottom: 2.5rem !important
    }

    .m8-pb-xxl-11 {
        padding-bottom: 2.75rem !important
    }

    .m8-pb-xxl-12 {
        padding-bottom: 3rem !important
    }

    .m8-pb-xxl-13 {
        padding-bottom: 3.25rem !important
    }

    .m8-pb-xxl-14 {
        padding-bottom: 3.5rem !important
    }

    .m8-pb-xxl-15 {
        padding-bottom: 3.75rem !important
    }

    .m8-pb-xxl-16 {
        padding-bottom: 4rem !important
    }

    .m8-pb-xxl-17 {
        padding-bottom: 4.25rem !important
    }

    .m8-pb-xxl-18 {
        padding-bottom: 4.5rem !important
    }

    .m8-pb-xxl-19 {
        padding-bottom: 4.75rem !important
    }

    .m8-pb-xxl-20 {
        padding-bottom: 5rem !important
    }

    .m8-ps-xxl-0 {
        padding-left: 0 !important
    }

    .m8-ps-xxl-1 {
        padding-left: .25rem !important
    }

    .m8-ps-xxl-2 {
        padding-left: .5rem !important
    }

    .m8-ps-xxl-3 {
        padding-left: .75rem !important
    }

    .m8-ps-xxl-4 {
        padding-left: 1rem !important
    }

    .m8-ps-xxl-5 {
        padding-left: 1.25rem !important
    }

    .m8-ps-xxl-6 {
        padding-left: 1.5rem !important
    }

    .m8-ps-xxl-7 {
        padding-left: 1.75rem !important
    }

    .m8-ps-xxl-8 {
        padding-left: 2rem !important
    }

    .m8-ps-xxl-9 {
        padding-left: 2.25rem !important
    }

    .m8-ps-xxl-10 {
        padding-left: 2.5rem !important
    }

    .m8-ps-xxl-11 {
        padding-left: 2.75rem !important
    }

    .m8-ps-xxl-12 {
        padding-left: 3rem !important
    }

    .m8-ps-xxl-13 {
        padding-left: 3.25rem !important
    }

    .m8-ps-xxl-14 {
        padding-left: 3.5rem !important
    }

    .m8-ps-xxl-15 {
        padding-left: 3.75rem !important
    }

    .m8-ps-xxl-16 {
        padding-left: 4rem !important
    }

    .m8-ps-xxl-17 {
        padding-left: 4.25rem !important
    }

    .m8-ps-xxl-18 {
        padding-left: 4.5rem !important
    }

    .m8-ps-xxl-19 {
        padding-left: 4.75rem !important
    }

    .m8-ps-xxl-20 {
        padding-left: 5rem !important
    }

    .m8-gap-xxl-0 {
        gap: 0 !important
    }

    .m8-gap-xxl-1 {
        gap: .25rem !important
    }

    .m8-gap-xxl-2 {
        gap: .5rem !important
    }

    .m8-gap-xxl-3 {
        gap: .75rem !important
    }

    .m8-gap-xxl-4 {
        gap: 1rem !important
    }

    .m8-gap-xxl-5 {
        gap: 1.25rem !important
    }

    .m8-gap-xxl-6 {
        gap: 1.5rem !important
    }

    .m8-gap-xxl-7 {
        gap: 1.75rem !important
    }

    .m8-gap-xxl-8 {
        gap: 2rem !important
    }

    .m8-gap-xxl-9 {
        gap: 2.25rem !important
    }

    .m8-gap-xxl-10 {
        gap: 2.5rem !important
    }

    .m8-gap-xxl-11 {
        gap: 2.75rem !important
    }

    .m8-gap-xxl-12 {
        gap: 3rem !important
    }

    .m8-gap-xxl-13 {
        gap: 3.25rem !important
    }

    .m8-gap-xxl-14 {
        gap: 3.5rem !important
    }

    .m8-gap-xxl-15 {
        gap: 3.75rem !important
    }

    .m8-gap-xxl-16 {
        gap: 4rem !important
    }

    .m8-gap-xxl-17 {
        gap: 4.25rem !important
    }

    .m8-gap-xxl-18 {
        gap: 4.5rem !important
    }

    .m8-gap-xxl-19 {
        gap: 4.75rem !important
    }

    .m8-gap-xxl-20 {
        gap: 5rem !important
    }

    .m8-row-gap-xxl-0 {
        row-gap: 0 !important
    }

    .m8-row-gap-xxl-1 {
        row-gap: .25rem !important
    }

    .m8-row-gap-xxl-2 {
        row-gap: .5rem !important
    }

    .m8-row-gap-xxl-3 {
        row-gap: .75rem !important
    }

    .m8-row-gap-xxl-4 {
        row-gap: 1rem !important
    }

    .m8-row-gap-xxl-5 {
        row-gap: 1.25rem !important
    }

    .m8-row-gap-xxl-6 {
        row-gap: 1.5rem !important
    }

    .m8-row-gap-xxl-7 {
        row-gap: 1.75rem !important
    }

    .m8-row-gap-xxl-8 {
        row-gap: 2rem !important
    }

    .m8-row-gap-xxl-9 {
        row-gap: 2.25rem !important
    }

    .m8-row-gap-xxl-10 {
        row-gap: 2.5rem !important
    }

    .m8-row-gap-xxl-11 {
        row-gap: 2.75rem !important
    }

    .m8-row-gap-xxl-12 {
        row-gap: 3rem !important
    }

    .m8-row-gap-xxl-13 {
        row-gap: 3.25rem !important
    }

    .m8-row-gap-xxl-14 {
        row-gap: 3.5rem !important
    }

    .m8-row-gap-xxl-15 {
        row-gap: 3.75rem !important
    }

    .m8-row-gap-xxl-16 {
        row-gap: 4rem !important
    }

    .m8-row-gap-xxl-17 {
        row-gap: 4.25rem !important
    }

    .m8-row-gap-xxl-18 {
        row-gap: 4.5rem !important
    }

    .m8-row-gap-xxl-19 {
        row-gap: 4.75rem !important
    }

    .m8-row-gap-xxl-20 {
        row-gap: 5rem !important
    }

    .m8-column-gap-xxl-0 {
        column-gap: 0 !important
    }

    .m8-column-gap-xxl-1 {
        column-gap: .25rem !important
    }

    .m8-column-gap-xxl-2 {
        column-gap: .5rem !important
    }

    .m8-column-gap-xxl-3 {
        column-gap: .75rem !important
    }

    .m8-column-gap-xxl-4 {
        column-gap: 1rem !important
    }

    .m8-column-gap-xxl-5 {
        column-gap: 1.25rem !important
    }

    .m8-column-gap-xxl-6 {
        column-gap: 1.5rem !important
    }

    .m8-column-gap-xxl-7 {
        column-gap: 1.75rem !important
    }

    .m8-column-gap-xxl-8 {
        column-gap: 2rem !important
    }

    .m8-column-gap-xxl-9 {
        column-gap: 2.25rem !important
    }

    .m8-column-gap-xxl-10 {
        column-gap: 2.5rem !important
    }

    .m8-column-gap-xxl-11 {
        column-gap: 2.75rem !important
    }

    .m8-column-gap-xxl-12 {
        column-gap: 3rem !important
    }

    .m8-column-gap-xxl-13 {
        column-gap: 3.25rem !important
    }

    .m8-column-gap-xxl-14 {
        column-gap: 3.5rem !important
    }

    .m8-column-gap-xxl-15 {
        column-gap: 3.75rem !important
    }

    .m8-column-gap-xxl-16 {
        column-gap: 4rem !important
    }

    .m8-column-gap-xxl-17 {
        column-gap: 4.25rem !important
    }

    .m8-column-gap-xxl-18 {
        column-gap: 4.5rem !important
    }

    .m8-column-gap-xxl-19 {
        column-gap: 4.75rem !important
    }

    .m8-column-gap-xxl-20 {
        column-gap: 5rem !important
    }

    .m8-fs-xxl-1 {
        font-size: calc(1.3rem + .6vw) !important
    }

    .m8-fs-xxl-2 {
        font-size: calc(1.275rem + .3vw) !important
    }

    .m8-fs-xxl-3 {
        font-size: calc(1.26rem + .12vw) !important
    }

    .m8-fs-xxl-4 {
        font-size: 1.25rem !important
    }

    .m8-fs-xxl-5 {
        font-size: 1.15rem !important
    }

    .m8-fs-xxl-6 {
        font-size: 1.075rem !important
    }

    .m8-fs-xxl-7 {
        font-size: .95rem !important
    }

    .m8-fs-xxl-8 {
        font-size: .85rem !important
    }

    .m8-fs-xxl-9 {
        font-size: .75rem !important
    }

    .m8-fs-xxl-10 {
        font-size: .5rem !important
    }

    .m8-fs-xxl-sm {
        font-size: .95rem !important
    }

    .m8-fs-xxl-base {
        font-size: 1rem !important
    }

    .m8-fs-xxl-lg {
        font-size: 1.075rem !important
    }

    .m8-fs-xxl-xl {
        font-size: 1.21rem !important
    }

    .m8-fs-xxl-fluid {
        font-size: 100% !important
    }

    .m8-fs-xxl-2x {
        font-size: calc(1.325rem + .9vw) !important
    }

    .m8-fs-xxl-2qx {
        font-size: calc(1.35rem + 1.2vw) !important
    }

    .m8-fs-xxl-2hx {
        font-size: calc(1.375rem + 1.5vw) !important
    }

    .m8-fs-xxl-2tx {
        font-size: calc(1.4rem + 1.8vw) !important
    }

    .m8-fs-xxl-3x {
        font-size: calc(1.425rem + 2.1vw) !important
    }

    .m8-fs-xxl-3qx {
        font-size: calc(1.45rem + 2.4vw) !important
    }

    .m8-fs-xxl-3hx {
        font-size: calc(1.475rem + 2.7vw) !important
    }

    .m8-fs-xxl-3tx {
        font-size: calc(1.5rem + 3vw) !important
    }

    .m8-fs-xxl-4x {
        font-size: calc(1.525rem + 3.3vw) !important
    }

    .m8-fs-xxl-4qx {
        font-size: calc(1.55rem + 3.6vw) !important
    }

    .m8-fs-xxl-4hx {
        font-size: calc(1.575rem + 3.9vw) !important
    }

    .m8-fs-xxl-4tx {
        font-size: calc(1.6rem + 4.2vw) !important
    }

    .m8-fs-xxl-5x {
        font-size: calc(1.625rem + 4.5vw) !important
    }

    .m8-fs-xxl-5qx {
        font-size: calc(1.65rem + 4.8vw) !important
    }

    .m8-fs-xxl-5hx {
        font-size: calc(1.675rem + 5.1vw) !important
    }

    .m8-fs-xxl-5tx {
        font-size: calc(1.7rem + 5.4vw) !important
    }

    .m8-fs-xxl-6x {
        font-size: calc(1.725rem + 5.7vw) !important
    }

    .m8-fs-xxl-6qx {
        font-size: calc(1.75rem + 6vw) !important
    }

    .m8-fs-xxl-6hx {
        font-size: calc(1.775rem + 6.3vw) !important
    }

    .m8-fs-xxl-6tx {
        font-size: calc(1.8rem + 6.6vw) !important
    }

    .m8-fs-xxl-7x {
        font-size: calc(1.825rem + 6.9vw) !important
    }

    .m8-fs-xxl-7qx {
        font-size: calc(1.85rem + 7.2vw) !important
    }

    .m8-fs-xxl-7hx {
        font-size: calc(1.875rem + 7.5vw) !important
    }

    .m8-fs-xxl-7tx {
        font-size: calc(1.9rem + 7.8vw) !important
    }

    .m8-text-xxl-start {
        text-align: left !important
    }

    .m8-text-xxl-end {
        text-align: right !important
    }

    .m8-text-xxl-center {
        text-align: center !important
    }

    .m8-min-w-xxl-unset {
        min-width: unset !important
    }

    .m8-min-w-xxl-25 {
        min-width: 25% !important
    }

    .m8-min-w-xxl-50 {
        min-width: 50% !important
    }

    .m8-min-w-xxl-75 {
        min-width: 75% !important
    }

    .m8-min-w-xxl-100 {
        min-width: 100% !important
    }

    .m8-min-w-xxl-auto {
        min-width: auto !important
    }

    .m8-min-w-xxl-1px {
        min-width: 1px !important
    }

    .m8-min-w-xxl-2px {
        min-width: 2px !important
    }

    .m8-min-w-xxl-3px {
        min-width: 3px !important
    }

    .m8-min-w-xxl-4px {
        min-width: 4px !important
    }

    .m8-min-w-xxl-5px {
        min-width: 5px !important
    }

    .m8-min-w-xxl-6px {
        min-width: 6px !important
    }

    .m8-min-w-xxl-7px {
        min-width: 7px !important
    }

    .m8-min-w-xxl-8px {
        min-width: 8px !important
    }

    .m8-min-w-xxl-9px {
        min-width: 9px !important
    }

    .m8-min-w-xxl-10px {
        min-width: 10px !important
    }

    .m8-min-w-xxl-15px {
        min-width: 15px !important
    }

    .m8-min-w-xxl-20px {
        min-width: 20px !important
    }

    .m8-min-w-xxl-25px {
        min-width: 25px !important
    }

    .m8-min-w-xxl-30px {
        min-width: 30px !important
    }

    .m8-min-w-xxl-35px {
        min-width: 35px !important
    }

    .m8-min-w-xxl-40px {
        min-width: 40px !important
    }

    .m8-min-w-xxl-45px {
        min-width: 45px !important
    }

    .m8-min-w-xxl-50px {
        min-width: 50px !important
    }

    .m8-min-w-xxl-55px {
        min-width: 55px !important
    }

    .m8-min-w-xxl-60px {
        min-width: 60px !important
    }

    .m8-min-w-xxl-65px {
        min-width: 65px !important
    }

    .m8-min-w-xxl-70px {
        min-width: 70px !important
    }

    .m8-min-w-xxl-75px {
        min-width: 75px !important
    }

    .m8-min-w-xxl-80px {
        min-width: 80px !important
    }

    .m8-min-w-xxl-85px {
        min-width: 85px !important
    }

    .m8-min-w-xxl-90px {
        min-width: 90px !important
    }

    .m8-min-w-xxl-95px {
        min-width: 95px !important
    }

    .m8-min-w-xxl-100px {
        min-width: 100px !important
    }

    .m8-min-w-xxl-125px {
        min-width: 125px !important
    }

    .m8-min-w-xxl-150px {
        min-width: 150px !important
    }

    .m8-min-w-xxl-175px {
        min-width: 175px !important
    }

    .m8-min-w-xxl-200px {
        min-width: 200px !important
    }

    .m8-min-w-xxl-225px {
        min-width: 225px !important
    }

    .m8-min-w-xxl-250px {
        min-width: 250px !important
    }

    .m8-min-w-xxl-275px {
        min-width: 275px !important
    }

    .m8-min-w-xxl-300px {
        min-width: 300px !important
    }

    .m8-min-w-xxl-325px {
        min-width: 325px !important
    }

    .m8-min-w-xxl-350px {
        min-width: 350px !important
    }

    .m8-min-w-xxl-375px {
        min-width: 375px !important
    }

    .m8-min-w-xxl-400px {
        min-width: 400px !important
    }

    .m8-min-w-xxl-425px {
        min-width: 425px !important
    }

    .m8-min-w-xxl-450px {
        min-width: 450px !important
    }

    .m8-min-w-xxl-475px {
        min-width: 475px !important
    }

    .m8-min-w-xxl-500px {
        min-width: 500px !important
    }

    .m8-min-w-xxl-550px {
        min-width: 550px !important
    }

    .m8-min-w-xxl-600px {
        min-width: 600px !important
    }

    .m8-min-w-xxl-650px {
        min-width: 650px !important
    }

    .m8-min-w-xxl-700px {
        min-width: 700px !important
    }

    .m8-min-w-xxl-750px {
        min-width: 750px !important
    }

    .m8-min-w-xxl-800px {
        min-width: 800px !important
    }

    .m8-min-w-xxl-850px {
        min-width: 850px !important
    }

    .m8-min-w-xxl-900px {
        min-width: 900px !important
    }

    .m8-min-w-xxl-950px {
        min-width: 950px !important
    }

    .m8-min-w-xxl-1000px {
        min-width: 1000px !important
    }

    .m8-min-h-xxl-unset {
        min-height: unset !important
    }

    .m8-min-h-xxl-25 {
        min-height: 25% !important
    }

    .m8-min-h-xxl-50 {
        min-height: 50% !important
    }

    .m8-min-h-xxl-75 {
        min-height: 75% !important
    }

    .m8-min-h-xxl-100 {
        min-height: 100% !important
    }

    .m8-min-h-xxl-auto {
        min-height: auto !important
    }

    .m8-min-h-xxl-1px {
        min-height: 1px !important
    }

    .m8-min-h-xxl-2px {
        min-height: 2px !important
    }

    .m8-min-h-xxl-3px {
        min-height: 3px !important
    }

    .m8-min-h-xxl-4px {
        min-height: 4px !important
    }

    .m8-min-h-xxl-5px {
        min-height: 5px !important
    }

    .m8-min-h-xxl-6px {
        min-height: 6px !important
    }

    .m8-min-h-xxl-7px {
        min-height: 7px !important
    }

    .m8-min-h-xxl-8px {
        min-height: 8px !important
    }

    .m8-min-h-xxl-9px {
        min-height: 9px !important
    }

    .m8-min-h-xxl-10px {
        min-height: 10px !important
    }

    .m8-min-h-xxl-15px {
        min-height: 15px !important
    }

    .m8-min-h-xxl-20px {
        min-height: 20px !important
    }

    .m8-min-h-xxl-25px {
        min-height: 25px !important
    }

    .m8-min-h-xxl-30px {
        min-height: 30px !important
    }

    .m8-min-h-xxl-35px {
        min-height: 35px !important
    }

    .m8-min-h-xxl-40px {
        min-height: 40px !important
    }

    .m8-min-h-xxl-45px {
        min-height: 45px !important
    }

    .m8-min-h-xxl-50px {
        min-height: 50px !important
    }

    .m8-min-h-xxl-55px {
        min-height: 55px !important
    }

    .m8-min-h-xxl-60px {
        min-height: 60px !important
    }

    .m8-min-h-xxl-65px {
        min-height: 65px !important
    }

    .m8-min-h-xxl-70px {
        min-height: 70px !important
    }

    .m8-min-h-xxl-75px {
        min-height: 75px !important
    }

    .m8-min-h-xxl-80px {
        min-height: 80px !important
    }

    .m8-min-h-xxl-85px {
        min-height: 85px !important
    }

    .m8-min-h-xxl-90px {
        min-height: 90px !important
    }

    .m8-min-h-xxl-95px {
        min-height: 95px !important
    }

    .m8-min-h-xxl-100px {
        min-height: 100px !important
    }

    .m8-min-h-xxl-125px {
        min-height: 125px !important
    }

    .m8-min-h-xxl-150px {
        min-height: 150px !important
    }

    .m8-min-h-xxl-175px {
        min-height: 175px !important
    }

    .m8-min-h-xxl-200px {
        min-height: 200px !important
    }

    .m8-min-h-xxl-225px {
        min-height: 225px !important
    }

    .m8-min-h-xxl-250px {
        min-height: 250px !important
    }

    .m8-min-h-xxl-275px {
        min-height: 275px !important
    }

    .m8-min-h-xxl-300px {
        min-height: 300px !important
    }

    .m8-min-h-xxl-325px {
        min-height: 325px !important
    }

    .m8-min-h-xxl-350px {
        min-height: 350px !important
    }

    .m8-min-h-xxl-375px {
        min-height: 375px !important
    }

    .m8-min-h-xxl-400px {
        min-height: 400px !important
    }

    .m8-min-h-xxl-425px {
        min-height: 425px !important
    }

    .m8-min-h-xxl-450px {
        min-height: 450px !important
    }

    .m8-min-h-xxl-475px {
        min-height: 475px !important
    }

    .m8-min-h-xxl-500px {
        min-height: 500px !important
    }

    .m8-min-h-xxl-550px {
        min-height: 550px !important
    }

    .m8-min-h-xxl-600px {
        min-height: 600px !important
    }

    .m8-min-h-xxl-650px {
        min-height: 650px !important
    }

    .m8-min-h-xxl-700px {
        min-height: 700px !important
    }

    .m8-min-h-xxl-750px {
        min-height: 750px !important
    }

    .m8-min-h-xxl-800px {
        min-height: 800px !important
    }

    .m8-min-h-xxl-850px {
        min-height: 850px !important
    }

    .m8-min-h-xxl-900px {
        min-height: 900px !important
    }

    .m8-min-h-xxl-950px {
        min-height: 950px !important
    }

    .m8-min-h-xxl-1000px {
        min-height: 1000px !important
    }
}

@media (min-width:1200px) {
    .m8-fs-1 {
        font-size: 1.75rem !important
    }

    .m8-fs-2 {
        font-size: 1.5rem !important
    }

    .m8-fs-3 {
        font-size: 1.35rem !important
    }

    .m8-fs-2x {
        font-size: 2rem !important
    }

    .m8-fs-2qx {
        font-size: 2.25rem !important
    }

    .m8-fs-2hx {
        font-size: 2.5rem !important
    }

    .m8-fs-2tx {
        font-size: 2.75rem !important
    }

    .m8-fs-3x {
        font-size: 3rem !important
    }

    .m8-fs-3qx {
        font-size: 3.25rem !important
    }

    .m8-fs-3hx {
        font-size: 3.5rem !important
    }

    .m8-fs-3tx {
        font-size: 3.75rem !important
    }

    .m8-fs-4x {
        font-size: 4rem !important
    }

    .m8-fs-4qx {
        font-size: 4.25rem !important
    }

    .m8-fs-4hx {
        font-size: 4.5rem !important
    }

    .m8-fs-4tx {
        font-size: 4.75rem !important
    }

    .m8-fs-5x {
        font-size: 5rem !important
    }

    .m8-fs-5qx {
        font-size: 5.25rem !important
    }

    .m8-fs-5hx {
        font-size: 5.5rem !important
    }

    .m8-fs-5tx {
        font-size: 5.75rem !important
    }

    .m8-fs-6x {
        font-size: 6rem !important
    }

    .m8-fs-6qx {
        font-size: 6.25rem !important
    }

    .m8-fs-6hx {
        font-size: 6.5rem !important
    }

    .m8-fs-6tx {
        font-size: 6.75rem !important
    }

    .m8-fs-7x {
        font-size: 7rem !important
    }

    .m8-fs-7qx {
        font-size: 7.25rem !important
    }

    .m8-fs-7hx {
        font-size: 7.5rem !important
    }

    .m8-fs-7tx {
        font-size: 7.75rem !important
    }

    .m8-fs-sm-1 {
        font-size: 1.75rem !important
    }

    .m8-fs-sm-2 {
        font-size: 1.5rem !important
    }

    .m8-fs-sm-3 {
        font-size: 1.35rem !important
    }

    .m8-fs-sm-2x {
        font-size: 2rem !important
    }

    .m8-fs-sm-2qx {
        font-size: 2.25rem !important
    }

    .m8-fs-sm-2hx {
        font-size: 2.5rem !important
    }

    .m8-fs-sm-2tx {
        font-size: 2.75rem !important
    }

    .m8-fs-sm-3x {
        font-size: 3rem !important
    }

    .m8-fs-sm-3qx {
        font-size: 3.25rem !important
    }

    .m8-fs-sm-3hx {
        font-size: 3.5rem !important
    }

    .m8-fs-sm-3tx {
        font-size: 3.75rem !important
    }

    .m8-fs-sm-4x {
        font-size: 4rem !important
    }

    .m8-fs-sm-4qx {
        font-size: 4.25rem !important
    }

    .m8-fs-sm-4hx {
        font-size: 4.5rem !important
    }

    .m8-fs-sm-4tx {
        font-size: 4.75rem !important
    }

    .m8-fs-sm-5x {
        font-size: 5rem !important
    }

    .m8-fs-sm-5qx {
        font-size: 5.25rem !important
    }

    .m8-fs-sm-5hx {
        font-size: 5.5rem !important
    }

    .m8-fs-sm-5tx {
        font-size: 5.75rem !important
    }

    .m8-fs-sm-6x {
        font-size: 6rem !important
    }

    .m8-fs-sm-6qx {
        font-size: 6.25rem !important
    }

    .m8-fs-sm-6hx {
        font-size: 6.5rem !important
    }

    .m8-fs-sm-6tx {
        font-size: 6.75rem !important
    }

    .m8-fs-sm-7x {
        font-size: 7rem !important
    }

    .m8-fs-sm-7qx {
        font-size: 7.25rem !important
    }

    .m8-fs-sm-7hx {
        font-size: 7.5rem !important
    }

    .m8-fs-sm-7tx {
        font-size: 7.75rem !important
    }

    .m8-fs-md-1 {
        font-size: 1.75rem !important
    }

    .m8-fs-md-2 {
        font-size: 1.5rem !important
    }

    .m8-fs-md-3 {
        font-size: 1.35rem !important
    }

    .m8-fs-md-2x {
        font-size: 2rem !important
    }

    .m8-fs-md-2qx {
        font-size: 2.25rem !important
    }

    .m8-fs-md-2hx {
        font-size: 2.5rem !important
    }

    .m8-fs-md-2tx {
        font-size: 2.75rem !important
    }

    .m8-fs-md-3x {
        font-size: 3rem !important
    }

    .m8-fs-md-3qx {
        font-size: 3.25rem !important
    }

    .m8-fs-md-3hx {
        font-size: 3.5rem !important
    }

    .m8-fs-md-3tx {
        font-size: 3.75rem !important
    }

    .m8-fs-md-4x {
        font-size: 4rem !important
    }

    .m8-fs-md-4qx {
        font-size: 4.25rem !important
    }

    .m8-fs-md-4hx {
        font-size: 4.5rem !important
    }

    .m8-fs-md-4tx {
        font-size: 4.75rem !important
    }

    .m8-fs-md-5x {
        font-size: 5rem !important
    }

    .m8-fs-md-5qx {
        font-size: 5.25rem !important
    }

    .m8-fs-md-5hx {
        font-size: 5.5rem !important
    }

    .m8-fs-md-5tx {
        font-size: 5.75rem !important
    }

    .m8-fs-md-6x {
        font-size: 6rem !important
    }

    .m8-fs-md-6qx {
        font-size: 6.25rem !important
    }

    .m8-fs-md-6hx {
        font-size: 6.5rem !important
    }

    .m8-fs-md-6tx {
        font-size: 6.75rem !important
    }

    .m8-fs-md-7x {
        font-size: 7rem !important
    }

    .m8-fs-md-7qx {
        font-size: 7.25rem !important
    }

    .m8-fs-md-7hx {
        font-size: 7.5rem !important
    }

    .m8-fs-md-7tx {
        font-size: 7.75rem !important
    }

    .m8-fs-lg-1 {
        font-size: 1.75rem !important
    }

    .m8-fs-lg-2 {
        font-size: 1.5rem !important
    }

    .m8-fs-lg-3 {
        font-size: 1.35rem !important
    }

    .m8-fs-lg-2x {
        font-size: 2rem !important
    }

    .m8-fs-lg-2qx {
        font-size: 2.25rem !important
    }

    .m8-fs-lg-2hx {
        font-size: 2.5rem !important
    }

    .m8-fs-lg-2tx {
        font-size: 2.75rem !important
    }

    .m8-fs-lg-3x {
        font-size: 3rem !important
    }

    .m8-fs-lg-3qx {
        font-size: 3.25rem !important
    }

    .m8-fs-lg-3hx {
        font-size: 3.5rem !important
    }

    .m8-fs-lg-3tx {
        font-size: 3.75rem !important
    }

    .m8-fs-lg-4x {
        font-size: 4rem !important
    }

    .m8-fs-lg-4qx {
        font-size: 4.25rem !important
    }

    .m8-fs-lg-4hx {
        font-size: 4.5rem !important
    }

    .m8-fs-lg-4tx {
        font-size: 4.75rem !important
    }

    .m8-fs-lg-5x {
        font-size: 5rem !important
    }

    .m8-fs-lg-5qx {
        font-size: 5.25rem !important
    }

    .m8-fs-lg-5hx {
        font-size: 5.5rem !important
    }

    .m8-fs-lg-5tx {
        font-size: 5.75rem !important
    }

    .m8-fs-lg-6x {
        font-size: 6rem !important
    }

    .m8-fs-lg-6qx {
        font-size: 6.25rem !important
    }

    .m8-fs-lg-6hx {
        font-size: 6.5rem !important
    }

    .m8-fs-lg-6tx {
        font-size: 6.75rem !important
    }

    .m8-fs-lg-7x {
        font-size: 7rem !important
    }

    .m8-fs-lg-7qx {
        font-size: 7.25rem !important
    }

    .m8-fs-lg-7hx {
        font-size: 7.5rem !important
    }

    .m8-fs-lg-7tx {
        font-size: 7.75rem !important
    }
}

@media print {
    .m8-d-print-inline {
        display: inline !important
    }

    .m8-d-print-inline-block {
        display: inline-block !important
    }

    .m8-d-print-block {
        display: block !important
    }

    .m8-d-print-grid {
        display: grid !important
    }

    .m8-d-print-inline-grid {
        display: inline-grid !important
    }

    .m8-d-print-table {
        display: table !important
    }

    .m8-d-print-table-row {
        display: table-row !important
    }

    .m8-d-print-table-cell {
        display: table-cell !important
    }

    .m8-d-print-flex {
        display: flex !important
    }

    .m8-d-print-inline-flex {
        display: inline-flex !important
    }

    .m8-d-print-none {
        display: none !important
    }
}

.m8-position-static {
    position: static !important
}

.m8-position-relative {
    position: relative !important
}

.m8-position-absolute {
    position: absolute !important
}

.m8-position-fixed {
    position: fixed !important
}

.m8-position-sticky {
    position: sticky !important
}

.m8-top-0 {
    top: 0 !important
}

.m8-top-25 {
    top: 25% !important
}

.m8-top-50 {
    top: 50% !important
}

.m8-top-75 {
    top: 75% !important
}

.m8-top-100 {
    top: 100% !important
}

.m8-bottom-0 {
    bottom: 0 !important
}

.m8-bottom-25 {
    bottom: 25% !important
}

.m8-bottom-50 {
    bottom: 50% !important
}

.m8-bottom-75 {
    bottom: 75% !important
}

.m8-bottom-100 {
    bottom: 100% !important
}

.m8-start-0 {
    left: 0 !important
}

.m8-start-25 {
    left: 25% !important
}

.m8-start-50 {
    left: 50% !important
}

.m8-start-75 {
    left: 75% !important
}

.m8-start-100 {
    left: 100% !important
}

.m8-end-0 {
    right: 0 !important
}

.m8-end-25 {
    right: 25% !important
}

.m8-end-50 {
    right: 50% !important
}

.m8-end-75 {
    right: 75% !important
}

.m8-end-100 {
    right: 100% !important
}

.m8-translate-middle {
    transform: translate(-50%, -50%) !important
}

.m8-translate-middle-x {
    transform: translateX(-50%) !important
}

.m8-translate-middle-y {
    transform: translateY(-50%) !important
}

.m8-bg-opacity-10 {
    --bs-bg-opacity: 0.1
}

.m8-bg-opacity-25 {
    --bs-bg-opacity: 0.25
}

.m8-bg-opacity-50 {
    --bs-bg-opacity: 0.5
}

.m8-bg-opacity-75 {
    --bs-bg-opacity: 0.75
}

.m8-bg-opacity-100 {
    --bs-bg-opacity: 1
}

.m8-bg-white {
    --bg-rgb-color: var(--white-bg-rgb);
    background-color: #fff !important
}

.m8-bg-black {
    --bg-rgb-color: var(--black-bg-rgb);
    background-color: #000 !important
}

.m8-bg-body {
    --bg-rgb-color: var(--body-bg-rgb);
    background-color: var(--body-bg) !important
}

.m8-bg-hover-body {
    cursor: pointer
}

.m8-bg-hover-body:hover {
    background-color: var(--body-bg) !important
}

.m8-bg-active-body.active {
    background-color: var(--body-bg) !important
}

.m8-bg-state-body {
    cursor: pointer
}

.m8-bg-state-body.active,
.m8-bg-state-body:hover {
    background-color: var(--body-bg) !important
}

.m8-bg-hover-white {
    cursor: pointer
}

.m8-bg-hover-white:hover {
    --bg-rgb-color: var(--white-bg-rgb);
    background-color: #fff !important
}

.m8-bg-active-white.active {
    --bg-rgb-color: var(--white-bg-rgb);
    background-color: #fff !important
}

.m8-bg-state-white {
    cursor: pointer
}

.m8-bg-state-white.active,
.m8-bg-state-white:hover {
    --bg-rgb-color: var(--white-bg-rgb);
    background-color: #fff !important
}

.m8-bg-light-light {
    background-color: var(--light-light) !important
}

.m8-bg-light {
    --bg-rgb-color: var(--light-rgb);
    background-color: var(--light) !important
}

.m8-bg-light-active {
    --bg-rgb-color: var(--light-active-rgb);
    background-color: var(--light-active) !important
}

.m8-bg-hover-light-light {
    cursor: pointer
}

.m8-bg-hover-light-light:hover {
    background-color: var(--light-light) !important
}

.m8-bg-state-light-light {
    cursor: pointer
}

.m8-bg-state-light-light.active,
.m8-bg-state-light-light:hover {
    background-color: var(--light-light) !important
}

.m8-bg-hover-light {
    cursor: pointer
}

.m8-bg-hover-light:hover {
    background-color: var(--light) !important
}

.m8-bg-active-light.active {
    background-color: var(--light) !important
}

.m8-bg-state-light {
    cursor: pointer
}

.m8-bg-state-light.active,
.m8-bg-state-light:hover {
    background-color: var(--light) !important
}

.m8-bg-light-primary {
    background-color: var(--primary-light) !important
}

.m8-bg-primary {
    --bg-rgb-color: var(--primary-rgb);
    background-color: var(--primary) !important
}

.m8-bg-primary-active {
    --bg-rgb-color: var(--primary-active-rgb);
    background-color: var(--primary-active) !important
}

.m8-bg-hover-light-primary {
    cursor: pointer
}

.m8-bg-hover-light-primary:hover {
    background-color: var(--primary-light) !important
}

.m8-bg-state-light-primary {
    cursor: pointer
}

.m8-bg-state-light-primary.active,
.m8-bg-state-light-primary:hover {
    background-color: var(--primary-light) !important
}

.m8-bg-hover-primary {
    cursor: pointer
}

.m8-bg-hover-primary:hover {
    background-color: var(--primary) !important
}

.m8-bg-active-primary.active {
    background-color: var(--primary) !important
}

.m8-bg-state-primary {
    cursor: pointer
}

.m8-bg-state-primary.active,
.m8-bg-state-primary:hover {
    background-color: var(--primary) !important
}

.m8-bg-light-secondary {
    background-color: var(--secondary-light) !important
}

.m8-bg-secondary {
    --bg-rgb-color: var(--secondary-rgb);
    background-color: var(--secondary) !important
}

.m8-bg-secondary-active {
    --bg-rgb-color: var(--secondary-active-rgb);
    background-color: var(--secondary-active) !important
}

.m8-bg-hover-light-secondary {
    cursor: pointer
}

.m8-bg-hover-light-secondary:hover {
    background-color: var(--secondary-light) !important
}

.m8-bg-state-light-secondary {
    cursor: pointer
}

.m8-bg-state-light-secondary.active,
.m8-bg-state-light-secondary:hover {
    background-color: var(--secondary-light) !important
}

.m8-bg-hover-secondary {
    cursor: pointer
}

.m8-bg-hover-secondary:hover {
    background-color: var(--secondary) !important
}

.m8-bg-active-secondary.active {
    background-color: var(--secondary) !important
}

.m8-bg-state-secondary {
    cursor: pointer
}

.m8-bg-state-secondary.active,
.m8-bg-state-secondary:hover {
    background-color: var(--secondary) !important
}

.m8-bg-light-success {
    background-color: var(--success-light) !important
}

.m8-bg-success {
    --bg-rgb-color: var(--success-rgb);
    background-color: var(--success) !important
}

.m8-bg-success-active {
    --bg-rgb-color: var(--success-active-rgb);
    background-color: var(--success-active) !important
}

.m8-bg-hover-light-success {
    cursor: pointer
}

.m8-bg-hover-light-success:hover {
    background-color: var(--success-light) !important
}

.m8-bg-state-light-success {
    cursor: pointer
}

.m8-bg-state-light-success.active,
.m8-bg-state-light-success:hover {
    background-color: var(--success-light) !important
}

.m8-bg-hover-success {
    cursor: pointer
}

.m8-bg-hover-success:hover {
    background-color: var(--success) !important
}

.m8-bg-active-success.active {
    background-color: var(--success) !important
}

.m8-bg-state-success {
    cursor: pointer
}

.m8-bg-state-success.active,
.m8-bg-state-success:hover {
    background-color: var(--success) !important
}

.m8-bg-light-info {
    background-color: var(--info-light) !important
}

.m8-bg-info {
    --bg-rgb-color: var(--info-rgb);
    background-color: var(--info) !important
}

.m8-bg-info-active {
    --bg-rgb-color: var(--info-active-rgb);
    background-color: var(--info-active) !important
}

.m8-bg-hover-light-info {
    cursor: pointer
}

.m8-bg-hover-light-info:hover {
    background-color: var(--info-light) !important
}

.m8-bg-state-light-info {
    cursor: pointer
}

.m8-bg-state-light-info.active,
.m8-bg-state-light-info:hover {
    background-color: var(--info-light) !important
}

.m8-bg-hover-info {
    cursor: pointer
}

.m8-bg-hover-info:hover {
    background-color: var(--info) !important
}

.m8-bg-active-info.active {
    background-color: var(--info) !important
}

.m8-bg-state-info {
    cursor: pointer
}

.m8-bg-state-info.active,
.m8-bg-state-info:hover {
    background-color: var(--info) !important
}

.m8-bg-light-warning {
    background-color: var(--warning-light) !important
}

.m8-bg-warning {
    --bg-rgb-color: var(--warning-rgb);
    background-color: var(--warning) !important
}

.m8-bg-warning-active {
    --bg-rgb-color: var(--warning-active-rgb);
    background-color: var(--warning-active) !important
}

.m8-bg-hover-light-warning {
    cursor: pointer
}

.m8-bg-hover-light-warning:hover {
    background-color: var(--warning-light) !important
}

.m8-bg-state-light-warning {
    cursor: pointer
}

.m8-bg-state-light-warning.active,
.m8-bg-state-light-warning:hover {
    background-color: var(--warning-light) !important
}

.m8-bg-hover-warning {
    cursor: pointer
}

.m8-bg-hover-warning:hover {
    background-color: var(--warning) !important
}

.m8-bg-active-warning.active {
    background-color: var(--warning) !important
}

.m8-bg-state-warning {
    cursor: pointer
}

.m8-bg-state-warning.active,
.m8-bg-state-warning:hover {
    background-color: var(--warning) !important
}

.m8-bg-light-danger {
    background-color: var(--danger-light) !important
}

.m8-bg-danger {
    --bg-rgb-color: var(--danger-rgb);
    background-color: var(--danger) !important
}

.m8-bg-danger-active {
    --bg-rgb-color: var(--danger-active-rgb);
    background-color: var(--danger-active) !important
}

.m8-bg-hover-light-danger {
    cursor: pointer
}

.m8-bg-hover-light-danger:hover {
    background-color: var(--danger-light) !important
}

.m8-bg-state-light-danger {
    cursor: pointer
}

.m8-bg-state-light-danger.active,
.m8-bg-state-light-danger:hover {
    background-color: var(--danger-light) !important
}

.m8-bg-hover-danger {
    cursor: pointer
}

.m8-bg-hover-danger:hover {
    background-color: var(--danger) !important
}

.m8-bg-active-danger.active {
    background-color: var(--danger) !important
}

.m8-bg-state-danger {
    cursor: pointer
}

.m8-bg-state-danger.active,
.m8-bg-state-danger:hover {
    background-color: var(--danger) !important
}

.m8-bg-light-dark {
    background-color: var(--dark-light) !important
}

.m8-bg-dark {
    --bg-rgb-color: var(--dark-rgb);
    background-color: var(--dark) !important
}

.m8-bg-dark-active {
    --bg-rgb-color: var(--dark-active-rgb);
    background-color: var(--dark-active) !important
}

.m8-bg-hover-light-dark {
    cursor: pointer
}

.m8-bg-hover-light-dark:hover {
    background-color: var(--dark-light) !important
}

.m8-bg-state-light-dark {
    cursor: pointer
}

.m8-bg-state-light-dark.active,
.m8-bg-state-light-dark:hover {
    background-color: var(--dark-light) !important
}

.m8-bg-hover-dark {
    cursor: pointer
}

.m8-bg-hover-dark:hover {
    background-color: var(--dark) !important
}

.m8-bg-active-dark.active {
    background-color: var(--dark) !important
}

.m8-bg-state-dark {
    cursor: pointer
}

.m8-bg-state-dark.active,
.m8-bg-state-dark:hover {
    background-color: var(--dark) !important
}

.m8-bg-gray-100 {
    --bg-rgb-color: var(--gray-100-rgb);
    background-color: var(--gray-100)
}

.m8-bg-hover-gray-100:hover {
    --bg-rgb-color: var(--gray-100-rgb);
    background-color: var(--gray-100)
}

.m8-bg-gray-100i {
    --bg-rgb-color: var(--gray-100-rgb);
    background-color: var(--gray-100) !important
}

.m8-bg-gray-200 {
    --bg-rgb-color: var(--gray-200-rgb);
    background-color: var(--gray-200)
}

.m8-bg-hover-gray-200:hover {
    --bg-rgb-color: var(--gray-200-rgb);
    background-color: var(--gray-200)
}

.m8-bg-gray-200i {
    --bg-rgb-color: var(--gray-200-rgb);
    background-color: var(--gray-200) !important
}

.m8-bg-gray-300 {
    --bg-rgb-color: var(--gray-300-rgb);
    background-color: var(--gray-300)
}

.m8-bg-hover-gray-300:hover {
    --bg-rgb-color: var(--gray-300-rgb);
    background-color: var(--gray-300)
}

.m8-bg-gray-300i {
    --bg-rgb-color: var(--gray-300-rgb);
    background-color: var(--gray-300) !important
}

.m8-bg-gray-400 {
    --bg-rgb-color: var(--gray-400-rgb);
    background-color: var(--gray-400)
}

.m8-bg-hover-gray-400:hover {
    --bg-rgb-color: var(--gray-400-rgb);
    background-color: var(--gray-400)
}

.m8-bg-gray-400i {
    --bg-rgb-color: var(--gray-400-rgb);
    background-color: var(--gray-400) !important
}

.m8-bg-gray-500 {
    --bg-rgb-color: var(--gray-500-rgb);
    background-color: var(--gray-500)
}

.m8-bg-hover-gray-500:hover {
    --bg-rgb-color: var(--gray-500-rgb);
    background-color: var(--gray-500)
}

.m8-bg-gray-500i {
    --bg-rgb-color: var(--gray-500-rgb);
    background-color: var(--gray-500) !important
}

.m8-bg-gray-600 {
    --bg-rgb-color: var(--gray-600-rgb);
    background-color: var(--gray-600)
}

.m8-bg-hover-gray-600:hover {
    --bg-rgb-color: var(--gray-600-rgb);
    background-color: var(--gray-600)
}

.m8-bg-gray-600i {
    --bg-rgb-color: var(--gray-600-rgb);
    background-color: var(--gray-600) !important
}

.m8-bg-gray-700 {
    --bg-rgb-color: var(--gray-700-rgb);
    background-color: var(--gray-700)
}

.m8-bg-hover-gray-700:hover {
    --bg-rgb-color: var(--gray-700-rgb);
    background-color: var(--gray-700)
}

.m8-bg-gray-700i {
    --bg-rgb-color: var(--gray-700-rgb);
    background-color: var(--gray-700) !important
}

.m8-bg-gray-800 {
    --bg-rgb-color: var(--gray-800-rgb);
    background-color: var(--gray-800)
}

.m8-bg-hover-gray-800:hover {
    --bg-rgb-color: var(--gray-800-rgb);
    background-color: var(--gray-800)
}

.m8-bg-gray-800i {
    --bg-rgb-color: var(--gray-800-rgb);
    background-color: var(--gray-800) !important
}

.m8-bg-gray-900 {
    --bg-rgb-color: var(--gray-900-rgb);
    background-color: var(--gray-900)
}

.m8-bg-hover-gray-900:hover {
    --bg-rgb-color: var(--gray-900-rgb);
    background-color: var(--gray-900)
}

.m8-bg-gray-900i {
    --bg-rgb-color: var(--gray-900-rgb);
    background-color: var(--gray-900) !important
}

.m8-bg-opacity-0 {
    background-color: rgba(var(--bg-rgb-color), 0) !important
}

.m8-bg-hover-opacity-0:hover {
    background-color: rgba(var(--bg-rgb-color), 0) !important
}

.m8-bg-active-opacity-0.active {
    background-color: rgba(var(--bg-rgb-color), 0) !important
}

.m8-bg-state-opacity-0 .active,
.m8-bg-state-opacity-0:hover {
    background-color: rgba(var(--bg-rgb-color), 0) !important
}

.m8-bg-opacity-5 {
    background-color: rgba(var(--bg-rgb-color), .05) !important
}

.m8-bg-hover-opacity-5:hover {
    background-color: rgba(var(--bg-rgb-color), .05) !important
}

.m8-bg-active-opacity-5.active {
    background-color: rgba(var(--bg-rgb-color), .05) !important
}

.m8-bg-state-opacity-5 .active,
.m8-bg-state-opacity-5:hover {
    background-color: rgba(var(--bg-rgb-color), .05) !important
}

.m8-bg-opacity-10 {
    background-color: rgba(var(--bg-rgb-color), .1) !important
}

.m8-bg-hover-opacity-10:hover {
    background-color: rgba(var(--bg-rgb-color), .1) !important
}

.m8-bg-active-opacity-10.active {
    background-color: rgba(var(--bg-rgb-color), .1) !important
}

.m8-bg-state-opacity-10 .active,
.m8-bg-state-opacity-10:hover {
    background-color: rgba(var(--bg-rgb-color), .1) !important
}

.m8-bg-opacity-15 {
    background-color: rgba(var(--bg-rgb-color), .15) !important
}

.m8-bg-hover-opacity-15:hover {
    background-color: rgba(var(--bg-rgb-color), .15) !important
}

.m8-bg-active-opacity-15.active {
    background-color: rgba(var(--bg-rgb-color), .15) !important
}

.m8-bg-state-opacity-15 .active,
.m8-bg-state-opacity-15:hover {
    background-color: rgba(var(--bg-rgb-color), .15) !important
}

.m8-bg-opacity-20 {
    background-color: rgba(var(--bg-rgb-color), .2) !important
}

.m8-bg-hover-opacity-20:hover {
    background-color: rgba(var(--bg-rgb-color), .2) !important
}

.m8-bg-active-opacity-20.active {
    background-color: rgba(var(--bg-rgb-color), .2) !important
}

.m8-bg-state-opacity-20 .active,
.m8-bg-state-opacity-20:hover {
    background-color: rgba(var(--bg-rgb-color), .2) !important
}

.m8-bg-opacity-25 {
    background-color: rgba(var(--bg-rgb-color), .25) !important
}

.m8-bg-hover-opacity-25:hover {
    background-color: rgba(var(--bg-rgb-color), .25) !important
}

.m8-bg-active-opacity-25.active {
    background-color: rgba(var(--bg-rgb-color), .25) !important
}

.m8-bg-state-opacity-25 .active,
.m8-bg-state-opacity-25:hover {
    background-color: rgba(var(--bg-rgb-color), .25) !important
}

.m8-bg-opacity-50 {
    background-color: rgba(var(--bg-rgb-color), .5) !important
}

.m8-bg-hover-opacity-50:hover {
    background-color: rgba(var(--bg-rgb-color), .5) !important
}

.m8-bg-active-opacity-50.active {
    background-color: rgba(var(--bg-rgb-color), .5) !important
}

.m8-bg-state-opacity-50 .active,
.m8-bg-state-opacity-50:hover {
    background-color: rgba(var(--bg-rgb-color), .5) !important
}

.m8-bg-opacity-75 {
    background-color: rgba(var(--bg-rgb-color), .75) !important
}

.m8-bg-hover-opacity-75:hover {
    background-color: rgba(var(--bg-rgb-color), .75) !important
}

.m8-bg-active-opacity-75.active {
    background-color: rgba(var(--bg-rgb-color), .75) !important
}

.m8-bg-state-opacity-75 .active,
.m8-bg-state-opacity-75:hover {
    background-color: rgba(var(--bg-rgb-color), .75) !important
}

.m8-bg-opacity-100 {
    background-color: rgba(var(--bg-rgb-color), 1) !important
}

.m8-bg-hover-opacity-100:hover {
    background-color: rgba(var(--bg-rgb-color), 1) !important
}

.m8-bg-active-opacity-100.active {
    background-color: rgba(var(--bg-rgb-color), 1) !important
}

.m8-bg-state-opacity-100 .active,
.m8-bg-state-opacity-100:hover {
    background-color: rgba(var(--bg-rgb-color), 1) !important
}

.m8-bgi-no-repeat {
    background-repeat: no-repeat
}

.m8-bgi-position-y-top {
    background-position-y: top
}

.m8-bgi-position-y-bottom {
    background-position-y: bottom
}

.m8-bgi-position-y-center {
    background-position-y: center
}

.m8-bgi-position-x-start {
    background-position-x: left
}

.m8-bgi-position-x-end {
    background-position-x: right
}

.m8-bgi-position-x-center {
    background-position-x: center
}

.m8-bgi-position-top {
    background-position: 0 top
}

.m8-bgi-position-bottom {
    background-position: 0 bottom
}

.m8-bgi-position-center {
    background-position: center
}

.m8-bgi-size-auto {
    background-size: auto
}

.m8-bgi-size-cover {
    background-size: cover
}

.m8-bgi-size-contain {
    background-size: contain
}

.m8-bgi-attachment-fixed {
    background-attachment: fixed
}

.m8-bgi-attachment-scroll {
    background-attachment: scroll
}

@media (min-width:576px) {
    .m8-bgi-size-sm-auto {
        background-size: auto
    }

    .m8-bgi-size-sm-cover {
        background-size: cover
    }

    .m8-bgi-size-sm-contain {
        background-size: contain
    }

    .m8-bgi-attachment-sm-fixed {
        background-attachment: fixed
    }

    .m8-bgi-attachment-sm-scroll {
        background-attachment: scroll
    }
}

@media (min-width:768px) {
    .m8-bgi-size-md-auto {
        background-size: auto
    }

    .m8-bgi-size-md-cover {
        background-size: cover
    }

    .m8-bgi-size-md-contain {
        background-size: contain
    }

    .m8-bgi-attachment-md-fixed {
        background-attachment: fixed
    }

    .m8-bgi-attachment-md-scroll {
        background-attachment: scroll
    }
}

@media (min-width:992px) {
    .m8-bgi-size-lg-auto {
        background-size: auto
    }

    .m8-bgi-size-lg-cover {
        background-size: cover
    }

    .m8-bgi-size-lg-contain {
        background-size: contain
    }

    .m8-bgi-attachment-lg-fixed {
        background-attachment: fixed
    }

    .m8-bgi-attachment-lg-scroll {
        background-attachment: scroll
    }
}

@media (min-width:1200px) {
    .m8-bgi-size-xl-auto {
        background-size: auto
    }

    .m8-bgi-size-xl-cover {
        background-size: cover
    }

    .m8-bgi-size-xl-contain {
        background-size: contain
    }

    .m8-bgi-attachment-xl-fixed {
        background-attachment: fixed
    }

    .m8-bgi-attachment-xl-scroll {
        background-attachment: scroll
    }
}

@media (min-width:1400px) {
    .m8-bgi-size-xxl-auto {
        background-size: auto
    }

    .m8-bgi-size-xxl-cover {
        background-size: cover
    }

    .m8-bgi-size-xxl-contain {
        background-size: contain
    }

    .m8-bgi-attachment-xxl-fixed {
        background-attachment: fixed
    }

    .m8-bgi-attachment-xxl-scroll {
        background-attachment: scroll
    }
}




.m8-w-unset {
    width: unset !important
}

.m8-w-25 {
    width: 25% !important
}

.m8-w-50 {
    width: 50% !important
}

.m8-w-75 {
    width: 75% !important
}

.m8-w-100 {
    width: 100% !important
}

.m8-w-auto {
    width: auto !important
}

.m8-w-1px {
    width: 1px !important
}

.m8-w-2px {
    width: 2px !important
}

.m8-w-3px {
    width: 3px !important
}

.m8-w-4px {
    width: 4px !important
}

.m8-w-5px {
    width: 5px !important
}

.m8-w-6px {
    width: 6px !important
}

.m8-w-7px {
    width: 7px !important
}

.m8-w-8px {
    width: 8px !important
}

.m8-w-9px {
    width: 9px !important
}

.m8-w-10px {
    width: 10px !important
}

.m8-w-12px {
    width: 12px !important
}

.m8-w-15px {
    width: 15px !important
}

.m8-w-20px {
    width: 20px !important
}

.m8-w-25px {
    width: 25px !important
}

.m8-w-30px {
    width: 30px !important
}

.m8-w-35px {
    width: 35px !important
}

.m8-w-40px {
    width: 40px !important
}

.m8-w-45px {
    width: 45px !important
}

.m8-w-50px {
    width: 50px !important
}

.m8-w-55px {
    width: 55px !important
}

.m8-w-60px {
    width: 60px !important
}

.m8-w-65px {
    width: 65px !important
}

.m8-w-70px {
    width: 70px !important
}

.m8-w-75px {
    width: 75px !important
}

.m8-w-80px {
    width: 80px !important
}

.m8-w-85px {
    width: 85px !important
}

.m8-w-90px {
    width: 90px !important
}

.m8-w-95px {
    width: 95px !important
}

.m8-w-100px {
    width: 100px !important
}

.m8-w-125px {
    width: 125px !important
}

.m8-w-150px {
    width: 150px !important
}

.m8-w-175px {
    width: 175px !important
}

.m8-w-200px {
    width: 200px !important
}

.m8-w-225px {
    width: 225px !important
}

.m8-w-250px {
    width: 250px !important
}

.m8-w-275px {
    width: 275px !important
}

.m8-w-300px {
    width: 300px !important
}

.m8-w-325px {
    width: 325px !important
}

.m8-w-350px {
    width: 350px !important
}

.m8-w-375px {
    width: 375px !important
}

.m8-w-400px {
    width: 400px !important
}

.m8-w-425px {
    width: 425px !important
}

.m8-w-450px {
    width: 450px !important
}

.m8-w-475px {
    width: 475px !important
}

.m8-w-500px {
    width: 500px !important
}

.m8-w-550px {
    width: 550px !important
}

.m8-w-600px {
    width: 600px !important
}

.m8-w-650px {
    width: 650px !important
}

.m8-w-700px {
    width: 700px !important
}

.m8-w-750px {
    width: 750px !important
}

.m8-w-800px {
    width: 800px !important
}

.m8-w-850px {
    width: 850px !important
}

.m8-w-900px {
    width: 900px !important
}

.m8-w-950px {
    width: 950px !important
}

.m8-w-1000px {
    width: 1000px !important
}

.m8-mw-unset {
    max-width: unset !important
}

.m8-mw-25 {
    max-width: 25% !important
}

.m8-mw-50 {
    max-width: 50% !important
}

.m8-mw-75 {
    max-width: 75% !important
}

.m8-mw-100 {
    max-width: 100% !important
}

.m8-mw-auto {
    max-width: auto !important
}

.m8-mw-1px {
    max-width: 1px !important
}

.m8-mw-2px {
    max-width: 2px !important
}

.m8-mw-3px {
    max-width: 3px !important
}

.m8-mw-4px {
    max-width: 4px !important
}

.m8-mw-5px {
    max-width: 5px !important
}

.m8-mw-6px {
    max-width: 6px !important
}

.m8-mw-7px {
    max-width: 7px !important
}

.m8-mw-8px {
    max-width: 8px !important
}

.m8-mw-9px {
    max-width: 9px !important
}

.m8-mw-10px {
    max-width: 10px !important
}

.m8-mw-15px {
    max-width: 15px !important
}

.m8-mw-20px {
    max-width: 20px !important
}

.m8-mw-25px {
    max-width: 25px !important
}

.m8-mw-30px {
    max-width: 30px !important
}

.m8-mw-35px {
    max-width: 35px !important
}

.m8-mw-40px {
    max-width: 40px !important
}

.m8-mw-45px {
    max-width: 45px !important
}

.m8-mw-50px {
    max-width: 50px !important
}

.m8-mw-55px {
    max-width: 55px !important
}

.m8-mw-60px {
    max-width: 60px !important
}

.m8-mw-65px {
    max-width: 65px !important
}

.m8-mw-70px {
    max-width: 70px !important
}

.m8-mw-75px {
    max-width: 75px !important
}

.m8-mw-80px {
    max-width: 80px !important
}

.m8-mw-85px {
    max-width: 85px !important
}

.m8-mw-90px {
    max-width: 90px !important
}

.m8-mw-95px {
    max-width: 95px !important
}

.m8-mw-100px {
    max-width: 100px !important
}

.m8-mw-125px {
    max-width: 125px !important
}

.m8-mw-150px {
    max-width: 150px !important
}

.m8-mw-175px {
    max-width: 175px !important
}

.m8-mw-200px {
    max-width: 200px !important
}

.m8-mw-225px {
    max-width: 225px !important
}

.m8-mw-250px {
    max-width: 250px !important
}

.m8-mw-275px {
    max-width: 275px !important
}

.m8-mw-300px {
    max-width: 300px !important
}

.m8-mw-325px {
    max-width: 325px !important
}

.m8-mw-350px {
    max-width: 350px !important
}

.m8-mw-375px {
    max-width: 375px !important
}

.m8-mw-400px {
    max-width: 400px !important
}

.m8-mw-425px {
    max-width: 425px !important
}

.m8-mw-450px {
    max-width: 450px !important
}

.m8-mw-475px {
    max-width: 475px !important
}

.m8-mw-500px {
    max-width: 500px !important
}

.m8-mw-550px {
    max-width: 550px !important
}

.m8-mw-600px {
    max-width: 600px !important
}

.m8-mw-650px {
    max-width: 650px !important
}

.m8-mw-700px {
    max-width: 700px !important
}

.m8-mw-750px {
    max-width: 750px !important
}

.m8-mw-800px {
    max-width: 800px !important
}

.m8-mw-850px {
    max-width: 850px !important
}

.m8-mw-900px {
    max-width: 900px !important
}

.m8-mw-950px {
    max-width: 950px !important
}

.m8-mw-1000px {
    max-width: 1000px !important
}

.m8-vw-100 {
    width: 100vw !important
}

.m8-min-vw-100 {
    min-width: 100vw !important
}

.m8-h-unset {
    height: unset !important
}

.m8-h-25 {
    height: 25% !important
}

.m8-h-50 {
    height: 50% !important
}

.m8-h-75 {
    height: 75% !important
}

.m8-h-100 {
    height: 100% !important
}

.m8-h-auto {
    height: auto !important
}

.m8-h-1px {
    height: 1px !important
}

.m8-h-2px {
    height: 2px !important
}

.m8-h-3px {
    height: 3px !important
}

.m8-h-4px {
    height: 4px !important
}

.m8-h-5px {
    height: 5px !important
}

.m8-h-6px {
    height: 6px !important
}

.m8-h-7px {
    height: 7px !important
}

.m8-h-8px {
    height: 8px !important
}

.m8-h-9px {
    height: 9px !important
}

.m8-h-10px {
    height: 10px !important
}

.m8-h-12px {
    height: 12px !important
}

.m8-h-15px {
    height: 15px !important
}

.m8-h-20px {
    height: 20px !important
}

.m8-h-25px {
    height: 25px !important
}

.m8-h-30px {
    height: 30px !important
}

.m8-h-35px {
    height: 35px !important
}

.m8-h-40px {
    height: 40px !important
}

.m8-h-45px {
    height: 45px !important
}

.m8-h-50px {
    height: 50px !important
}

.m8-h-55px {
    height: 55px !important
}

.m8-h-60px {
    height: 60px !important
}

.m8-h-65px {
    height: 65px !important
}

.m8-h-70px {
    height: 70px !important
}

.m8-h-75px {
    height: 75px !important
}

.m8-h-80px {
    height: 80px !important
}

.m8-h-85px {
    height: 85px !important
}

.m8-h-90px {
    height: 90px !important
}

.m8-h-95px {
    height: 95px !important
}

.m8-h-100px {
    height: 100px !important
}

.m8-h-125px {
    height: 125px !important
}

.m8-h-130px {
    height: 130px !important
}

.m8-h-150px {
    height: 150px !important
}

.m8-h-175px {
    height: 175px !important
}

.m8-h-200px {
    height: 200px !important
}

.m8-h-225px {
    height: 225px !important
}

.m8-h-250px {
    height: 250px !important
}

.m8-h-275px {
    height: 275px !important
}

.m8-h-300px {
    height: 300px !important
}

.m8-h-325px {
    height: 325px !important
}

.m8-h-350px {
    height: 350px !important
}

.m8-h-375px {
    height: 375px !important
}

.m8-h-400px {
    height: 400px !important
}

.m8-h-425px {
    height: 425px !important
}

.m8-h-450px {
    height: 450px !important
}

.m8-h-475px {
    height: 475px !important
}

.m8-h-500px {
    height: 500px !important
}

.m8-h-550px {
    height: 550px !important
}

.m8-h-600px {
    height: 600px !important
}

.m8-h-650px {
    height: 650px !important
}

.m8-h-700px {
    height: 700px !important
}

.m8-h-750px {
    height: 750px !important
}

.m8-h-800px {
    height: 800px !important
}

.m8-h-850px {
    height: 850px !important
}

.m8-h-900px {
    height: 900px !important
}

.m8-h-950px {
    height: 950px !important
}

.m8-h-1000px {
    height: 1000px !important
}

.m8-mh-unset {
    max-height: unset !important
}

.m8-mh-25 {
    max-height: 25% !important
}

.m8-mh-50 {
    max-height: 50% !important
}

.m8-mh-75 {
    max-height: 75% !important
}

.m8-mh-100 {
    max-height: 100% !important
}

.m8-mh-auto {
    max-height: auto !important
}

.m8-mh-1px {
    max-height: 1px !important
}

.m8-mh-2px {
    max-height: 2px !important
}

.m8-mh-3px {
    max-height: 3px !important
}

.m8-mh-4px {
    max-height: 4px !important
}

.m8-mh-5px {
    max-height: 5px !important
}

.m8-mh-6px {
    max-height: 6px !important
}

.m8-mh-7px {
    max-height: 7px !important
}

.m8-mh-8px {
    max-height: 8px !important
}

.m8-mh-9px {
    max-height: 9px !important
}

.m8-mh-10px {
    max-height: 10px !important
}

.m8-mh-15px {
    max-height: 15px !important
}

.m8-mh-20px {
    max-height: 20px !important
}

.m8-mh-25px {
    max-height: 25px !important
}

.m8-mh-30px {
    max-height: 30px !important
}

.m8-mh-35px {
    max-height: 35px !important
}

.m8-mh-40px {
    max-height: 40px !important
}

.m8-mh-45px {
    max-height: 45px !important
}

.m8-mh-50px {
    max-height: 50px !important
}

.m8-mh-55px {
    max-height: 55px !important
}

.m8-mh-60px {
    max-height: 60px !important
}

.m8-mh-65px {
    max-height: 65px !important
}

.m8-mh-70px {
    max-height: 70px !important
}

.m8-mh-75px {
    max-height: 75px !important
}

.m8-mh-80px {
    max-height: 80px !important
}

.m8-mh-85px {
    max-height: 85px !important
}

.m8-mh-90px {
    max-height: 90px !important
}

.m8-mh-95px {
    max-height: 95px !important
}

.m8-mh-100px {
    max-height: 100px !important
}

.m8-mh-125px {
    max-height: 125px !important
}

.m8-mh-150px {
    max-height: 150px !important
}

.m8-mh-175px {
    max-height: 175px !important
}

.m8-mh-200px {
    max-height: 200px !important
}

.m8-mh-225px {
    max-height: 225px !important
}

.m8-mh-250px {
    max-height: 250px !important
}

.m8-mh-275px {
    max-height: 275px !important
}

.m8-mh-300px {
    max-height: 300px !important
}

.m8-mh-325px {
    max-height: 325px !important
}

.m8-mh-350px {
    max-height: 350px !important
}

.m8-mh-375px {
    max-height: 375px !important
}

.m8-mh-400px {
    max-height: 400px !important
}

.m8-mh-425px {
    max-height: 425px !important
}

.m8-mh-450px {
    max-height: 450px !important
}

.m8-mh-475px {
    max-height: 475px !important
}

.m8-mh-500px {
    max-height: 500px !important
}

.m8-mh-550px {
    max-height: 550px !important
}

.m8-mh-600px {
    max-height: 600px !important
}

.m8-mh-650px {
    max-height: 650px !important
}

.m8-mh-700px {
    max-height: 700px !important
}

.m8-mh-750px {
    max-height: 750px !important
}

.m8-mh-800px {
    max-height: 800px !important
}

.m8-mh-850px {
    max-height: 850px !important
}

.m8-mh-900px {
    max-height: 900px !important
}

.m8-mh-950px {
    max-height: 950px !important
}

.m8-mh-1000px {
    max-height: 1000px !important
}

.m8-vh-100 {
    height: 100vh !important
}

.m8-min-vh-100 {
    min-height: 100vh !important
}

.m8-flex-fill {
    flex: 1 1 auto !important
}

.m8-flex-row {
    flex-direction: row !important
}

.m8-flex-column {
    flex-direction: column !important
}

.m8-flex-row-reverse {
    flex-direction: row-reverse !important
}

.m8-flex-column-reverse {
    flex-direction: column-reverse !important
}

.m8-flex-grow-0 {
    flex-grow: 0 !important
}

.m8-flex-grow-1 {
    flex-grow: 1 !important
}

.m8-flex-shrink-0 {
    flex-shrink: 0 !important
}

.m8-flex-shrink-1 {
    flex-shrink: 1 !important
}

.m8-flex-wrap {
    flex-wrap: wrap !important
}

.m8-flex-nowrap {
    flex-wrap: nowrap !important
}

.m8-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.m8-justify-content-start {
    justify-content: flex-start !important
}

.m8-justify-content-end {
    justify-content: flex-end !important
}

.m8-justify-content-center {
    justify-content: center !important
}

.m8-justify-content-between {
    justify-content: space-between !important
}

.m8-justify-content-around {
    justify-content: space-around !important
}

.m8-justify-content-evenly {
    justify-content: space-evenly !important
}

.m8-align-items-start {
    align-items: flex-start !important
}

.m8-align-items-end {
    align-items: flex-end !important
}

.m8-align-items-center {
    align-items: center !important
}

.m8-align-items-baseline {
    align-items: baseline !important
}

.m8-align-items-stretch {
    align-items: stretch !important
}

.m8-align-content-start {
    align-content: flex-start !important
}

.m8-align-content-end {
    align-content: flex-end !important
}

.m8-align-content-center {
    align-content: center !important
}

.m8-align-content-between {
    align-content: space-between !important
}

.m8-align-content-around {
    align-content: space-around !important
}

.m8-align-content-stretch {
    align-content: stretch !important
}

.m8-align-self-auto {
    align-self: auto !important
}

.m8-align-self-start {
    align-self: flex-start !important
}

.m8-align-self-end {
    align-self: flex-end !important
}

.m8-align-self-center {
    align-self: center !important
}

.m8-align-self-baseline {
    align-self: baseline !important
}

.m8-align-self-stretch {
    align-self: stretch !important
}

.m8-order-first {
    order: -1 !important
}

.m8-order-0 {
    order: 0 !important
}

.m8-order-1 {
    order: 1 !important
}

.m8-order-2 {
    order: 2 !important
}

.m8-order-3 {
    order: 3 !important
}

.m8-order-4 {
    order: 4 !important
}

.m8-order-5 {
    order: 5 !important
}

.m8-order-last {
    order: 6 !important
}

.m8-m-0 {
    margin: 0 !important
}

.m8-m-1 {
    margin: .25rem !important
}

.m8-m-2 {
    margin: .5rem !important
}

.m8-m-3 {
    margin: .75rem !important
}

.m8-m-4 {
    margin: 1rem !important
}

.m8-m-5 {
    margin: 1.25rem !important
}

.m8-m-6 {
    margin: 1.5rem !important
}

.m8-m-7 {
    margin: 1.75rem !important
}

.m8-m-8 {
    margin: 2rem !important
}

.m8-m-9 {
    margin: 2.25rem !important
}

.m8-m-10 {
    margin: 2.5rem !important
}

.m8-m-11 {
    margin: 2.75rem !important
}

.m8-m-12 {
    margin: 3rem !important
}

.m8-m-13 {
    margin: 3.25rem !important
}

.m8-m-14 {
    margin: 3.5rem !important
}

.m8-m-15 {
    margin: 3.75rem !important
}

.m8-m-16 {
    margin: 4rem !important
}

.m8-m-17 {
    margin: 4.25rem !important
}

.m8-m-18 {
    margin: 4.5rem !important
}

.m8-m-19 {
    margin: 4.75rem !important
}

.m8-m-20 {
    margin: 5rem !important
}

.m8-m-auto {
    margin: auto !important
}

.m8-mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.m8-mx-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
}

.m8-mx-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
}

.m8-mx-3 {
    margin-right: .75rem !important;
    margin-left: .75rem !important
}

.m8-mx-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
}

.m8-mx-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important
}

.m8-mx-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
}

.m8-mx-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important
}

.m8-mx-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important
}

.m8-mx-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important
}

.m8-mx-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important
}

.m8-mx-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important
}

.m8-mx-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
}

.m8-mx-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important
}

.m8-mx-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important
}

.m8-mx-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important
}

.m8-mx-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important
}

.m8-mx-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important
}

.m8-mx-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important
}

.m8-mx-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important
}

.m8-mx-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !important
}

.m8-mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

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

.m8-my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
}

.m8-my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.m8-my-3 {
    margin-top: .75rem !important;
    margin-bottom: .75rem !important
}

.m8-my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.m8-my-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important
}

.m8-my-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.m8-my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important
}

.m8-my-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important
}

.m8-my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important
}

.m8-my-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important
}

.m8-my-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important
}

.m8-my-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.m8-my-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important
}

.m8-my-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important
}

.m8-my-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important
}

.m8-my-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important
}

.m8-my-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important
}

.m8-my-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important
}

.m8-my-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important
}

.m8-my-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important
}

.m8-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.m8-mt-0 {
    margin-top: 0 !important
}

.m8-mt-1 {
    margin-top: .25rem !important
}

.m8-mt-2 {
    margin-top: .5rem !important
}

.m8-mt-3 {
    margin-top: .75rem !important
}

.m8-mt-4 {
    margin-top: 1rem !important
}

.m8-mt-5 {
    margin-top: 1.25rem !important
}

.m8-mt-6 {
    margin-top: 1.5rem !important
}

.m8-mt-7 {
    margin-top: 1.75rem !important
}

.m8-mt-8 {
    margin-top: 2rem !important
}

.m8-mt-9 {
    margin-top: 2.25rem !important
}

.m8-mt-10 {
    margin-top: 2.5rem !important
}

.m8-mt-11 {
    margin-top: 2.75rem !important
}

.m8-mt-12 {
    margin-top: 3rem !important
}

.m8-mt-13 {
    margin-top: 3.25rem !important
}

.m8-mt-14 {
    margin-top: 3.5rem !important
}

.m8-mt-15 {
    margin-top: 3.75rem !important
}

.m8-mt-16 {
    margin-top: 4rem !important
}

.m8-mt-17 {
    margin-top: 4.25rem !important
}

.m8-mt-18 {
    margin-top: 4.5rem !important
}

.m8-mt-19 {
    margin-top: 4.75rem !important
}

.m8-mt-20 {
    margin-top: 5rem !important
}

.m8-mt-auto {
    margin-top: auto !important
}

.m8-me-0 {
    margin-right: 0 !important
}

.m8-me-1 {
    margin-right: .25rem !important
}

.m8-me-2 {
    margin-right: .5rem !important
}

.m8-me-3 {
    margin-right: .75rem !important
}

.m8-me-4 {
    margin-right: 1rem !important
}

.m8-me-5 {
    margin-right: 1.25rem !important
}

.m8-me-6 {
    margin-right: 1.5rem !important
}

.m8-me-7 {
    margin-right: 1.75rem !important
}

.m8-me-8 {
    margin-right: 2rem !important
}

.m8-me-9 {
    margin-right: 2.25rem !important
}

.m8-me-10 {
    margin-right: 2.5rem !important
}

.m8-me-11 {
    margin-right: 2.75rem !important
}

.m8-me-12 {
    margin-right: 3rem !important
}

.m8-me-13 {
    margin-right: 3.25rem !important
}

.m8-me-14 {
    margin-right: 3.5rem !important
}

.m8-me-15 {
    margin-right: 3.75rem !important
}

.m8-me-16 {
    margin-right: 4rem !important
}

.m8-me-17 {
    margin-right: 4.25rem !important
}

.m8-me-18 {
    margin-right: 4.5rem !important
}

.m8-me-19 {
    margin-right: 4.75rem !important
}

.m8-me-20 {
    margin-right: 5rem !important
}

.m8-me-auto {
    margin-right: auto !important
}

.m8-mb-0 {
    margin-bottom: 0 !important
}

.m8-mb-1 {
    margin-bottom: .25rem !important
}

.m8-mb-2 {
    margin-bottom: .5rem !important
}

.m8-mb-3 {
    margin-bottom: .75rem !important
}

.m8-mb-4 {
    margin-bottom: 1rem !important
}

.m8-mb-5 {
    margin-bottom: 1.25rem !important
}

.m8-mb-6 {
    margin-bottom: 1.5rem !important
}

.m8-mb-7 {
    margin-bottom: 1.75rem !important
}

.m8-mb-8 {
    margin-bottom: 2rem !important
}

.m8-mb-9 {
    margin-bottom: 2.25rem !important
}

.m8-mb-10 {
    margin-bottom: 2.5rem !important
}

.m8-mb-11 {
    margin-bottom: 2.75rem !important
}

.m8-mb-12 {
    margin-bottom: 3rem !important
}

.m8-mb-13 {
    margin-bottom: 3.25rem !important
}

.m8-mb-14 {
    margin-bottom: 3.5rem !important
}

.m8-mb-15 {
    margin-bottom: 3.75rem !important
}

.m8-mb-16 {
    margin-bottom: 4rem !important
}

.m8-mb-17 {
    margin-bottom: 4.25rem !important
}

.m8-mb-18 {
    margin-bottom: 4.5rem !important
}

.m8-mb-19 {
    margin-bottom: 4.75rem !important
}

.m8-mb-20 {
    margin-bottom: 5rem !important
}

.m8-mb-auto {
    margin-bottom: auto !important
}

.m8-ms-0 {
    margin-left: 0 !important
}

.m8-ms-1 {
    margin-left: .25rem !important
}

.m8-ms-2 {
    margin-left: .5rem !important
}

.m8-ms-3 {
    margin-left: .75rem !important
}

.m8-ms-4 {
    margin-left: 1rem !important
}

.m8-ms-5 {
    margin-left: 1.25rem !important
}

.m8-ms-6 {
    margin-left: 1.5rem !important
}

.m8-ms-7 {
    margin-left: 1.75rem !important
}

.m8-ms-8 {
    margin-left: 2rem !important
}

.m8-ms-9 {
    margin-left: 2.25rem !important
}

.m8-ms-10 {
    margin-left: 2.5rem !important
}

.m8-ms-11 {
    margin-left: 2.75rem !important
}

.m8-ms-12 {
    margin-left: 3rem !important
}

.m8-ms-13 {
    margin-left: 3.25rem !important
}

.m8-ms-14 {
    margin-left: 3.5rem !important
}

.m8-ms-15 {
    margin-left: 3.75rem !important
}

.m8-ms-16 {
    margin-left: 4rem !important
}

.m8-ms-17 {
    margin-left: 4.25rem !important
}

.m8-ms-18 {
    margin-left: 4.5rem !important
}

.m8-ms-19 {
    margin-left: 4.75rem !important
}

.m8-ms-20 {
    margin-left: 5rem !important
}

.m8-ms-auto {
    margin-left: auto !important
}

.m8-m-n1 {
    margin: -.25rem !important
}

.m8-m-n2 {
    margin: -.5rem !important
}

.m8-m-n3 {
    margin: -.75rem !important
}

.m8-m-n4 {
    margin: -1rem !important
}

.m8-m-n5 {
    margin: -1.25rem !important
}

.m8-m-n6 {
    margin: -1.5rem !important
}

.m8-m-n7 {
    margin: -1.75rem !important
}

.m8-m-n8 {
    margin: -2rem !important
}

.m8-m-n9 {
    margin: -2.25rem !important
}

.m8-m-n10 {
    margin: -2.5rem !important
}

.m8-m-n11 {
    margin: -2.75rem !important
}

.m8-m-n12 {
    margin: -3rem !important
}

.m8-m-n13 {
    margin: -3.25rem !important
}

.m8-m-n14 {
    margin: -3.5rem !important
}

.m8-m-n15 {
    margin: -3.75rem !important
}

.m8-m-n16 {
    margin: -4rem !important
}

.m8-m-n17 {
    margin: -4.25rem !important
}

.m8-m-n18 {
    margin: -4.5rem !important
}

.m8-m-n19 {
    margin: -4.75rem !important
}

.m8-m-n20 {
    margin: -5rem !important
}

.m8-mx-n1 {
    margin-right: -.25rem !important;
    margin-left: -.25rem !important
}

.m8-mx-n2 {
    margin-right: -.5rem !important;
    margin-left: -.5rem !important
}

.m8-mx-n3 {
    margin-right: -.75rem !important;
    margin-left: -.75rem !important
}

.m8-mx-n4 {
    margin-right: -1rem !important;
    margin-left: -1rem !important
}

.m8-mx-n5 {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important
}

.m8-mx-n6 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important
}

.m8-mx-n7 {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important
}

.m8-mx-n8 {
    margin-right: -2rem !important;
    margin-left: -2rem !important
}

.m8-mx-n9 {
    margin-right: -2.25rem !important;
    margin-left: -2.25rem !important
}

.m8-mx-n10 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important
}

.m8-mx-n11 {
    margin-right: -2.75rem !important;
    margin-left: -2.75rem !important
}

.m8-mx-n12 {
    margin-right: -3rem !important;
    margin-left: -3rem !important
}

.m8-mx-n13 {
    margin-right: -3.25rem !important;
    margin-left: -3.25rem !important
}

.m8-mx-n14 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important
}

.m8-mx-n15 {
    margin-right: -3.75rem !important;
    margin-left: -3.75rem !important
}

.m8-mx-n16 {
    margin-right: -4rem !important;
    margin-left: -4rem !important
}

.m8-mx-n17 {
    margin-right: -4.25rem !important;
    margin-left: -4.25rem !important
}

.m8-mx-n18 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important
}

.m8-mx-n19 {
    margin-right: -4.75rem !important;
    margin-left: -4.75rem !important
}

.m8-mx-n20 {
    margin-right: -5rem !important;
    margin-left: -5rem !important
}

.m8-my-n1 {
    margin-top: -.25rem !important;
    margin-bottom: -.25rem !important
}

.m8-my-n2 {
    margin-top: -.5rem !important;
    margin-bottom: -.5rem !important
}

.m8-my-n3 {
    margin-top: -.75rem !important;
    margin-bottom: -.75rem !important
}

.m8-my-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important
}

.m8-my-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important
}

.m8-my-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important
}

.m8-my-n7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important
}

.m8-my-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important
}

.m8-my-n9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important
}

.m8-my-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important
}

.m8-my-n11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important
}

.m8-my-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important
}

.m8-my-n13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important
}

.m8-my-n14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important
}

.m8-my-n15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important
}

.m8-my-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important
}

.m8-my-n17 {
    margin-top: -4.25rem !important;
    margin-bottom: -4.25rem !important
}

.m8-my-n18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important
}

.m8-my-n19 {
    margin-top: -4.75rem !important;
    margin-bottom: -4.75rem !important
}

.m8-my-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important
}

.m8-mt-n1 {
    margin-top: -.25rem !important
}

.m8-mt-n2 {
    margin-top: -.5rem !important
}

.m8-mt-n3 {
    margin-top: -.75rem !important
}

.m8-mt-n4 {
    margin-top: -1rem !important
}

.m8-mt-n5 {
    margin-top: -1.25rem !important
}

.m8-mt-n6 {
    margin-top: -1.5rem !important
}

.m8-mt-n7 {
    margin-top: -1.75rem !important
}

.m8-mt-n8 {
    margin-top: -2rem !important
}

.m8-mt-n9 {
    margin-top: -2.25rem !important
}

.m8-mt-n10 {
    margin-top: -2.5rem !important
}

.m8-mt-n11 {
    margin-top: -2.75rem !important
}

.m8-mt-n12 {
    margin-top: -3rem !important
}

.m8-mt-n13 {
    margin-top: -3.25rem !important
}

.m8-mt-n14 {
    margin-top: -3.5rem !important
}

.m8-mt-n15 {
    margin-top: -3.75rem !important
}

.m8-mt-n16 {
    margin-top: -4rem !important
}

.m8-mt-n17 {
    margin-top: -4.25rem !important
}

.m8-mt-n18 {
    margin-top: -4.5rem !important
}

.m8-mt-n19 {
    margin-top: -4.75rem !important
}

.m8-mt-n20 {
    margin-top: -5rem !important
}

.m8-me-n1 {
    margin-right: -.25rem !important
}

.m8-me-n2 {
    margin-right: -.5rem !important
}

.m8-me-n3 {
    margin-right: -.75rem !important
}

.m8-me-n4 {
    margin-right: -1rem !important
}

.m8-me-n5 {
    margin-right: -1.25rem !important
}

.m8-me-n6 {
    margin-right: -1.5rem !important
}

.m8-me-n7 {
    margin-right: -1.75rem !important
}

.m8-me-n8 {
    margin-right: -2rem !important
}

.m8-me-n9 {
    margin-right: -2.25rem !important
}

.m8-me-n10 {
    margin-right: -2.5rem !important
}

.m8-me-n11 {
    margin-right: -2.75rem !important
}

.m8-me-n12 {
    margin-right: -3rem !important
}

.m8-me-n13 {
    margin-right: -3.25rem !important
}

.m8-me-n14 {
    margin-right: -3.5rem !important
}

.m8-me-n15 {
    margin-right: -3.75rem !important
}

.m8-me-n16 {
    margin-right: -4rem !important
}

.m8-me-n17 {
    margin-right: -4.25rem !important
}

.m8-me-n18 {
    margin-right: -4.5rem !important
}

.m8-me-n19 {
    margin-right: -4.75rem !important
}

.m8-me-n20 {
    margin-right: -5rem !important
}

.m8-mb-n1 {
    margin-bottom: -.25rem !important
}

.m8-mb-n2 {
    margin-bottom: -.5rem !important
}

.m8-mb-n3 {
    margin-bottom: -.75rem !important
}

.m8-mb-n4 {
    margin-bottom: -1rem !important
}

.m8-mb-n5 {
    margin-bottom: -1.25rem !important
}

.m8-mb-n6 {
    margin-bottom: -1.5rem !important
}

.m8-mb-n7 {
    margin-bottom: -1.75rem !important
}

.m8-mb-n8 {
    margin-bottom: -2rem !important
}

.m8-mb-n9 {
    margin-bottom: -2.25rem !important
}

.m8-mb-n10 {
    margin-bottom: -2.5rem !important
}

.m8-mb-n11 {
    margin-bottom: -2.75rem !important
}

.m8-mb-n12 {
    margin-bottom: -3rem !important
}

.m8-mb-n13 {
    margin-bottom: -3.25rem !important
}

.m8-mb-n14 {
    margin-bottom: -3.5rem !important
}

.m8-mb-n15 {
    margin-bottom: -3.75rem !important
}

.m8-mb-n16 {
    margin-bottom: -4rem !important
}

.m8-mb-n17 {
    margin-bottom: -4.25rem !important
}

.m8-mb-n18 {
    margin-bottom: -4.5rem !important
}

.m8-mb-n19 {
    margin-bottom: -4.75rem !important
}

.m8-mb-n20 {
    margin-bottom: -5rem !important
}

.m8-ms-n1 {
    margin-left: -.25rem !important
}

.m8-ms-n2 {
    margin-left: -.5rem !important
}

.m8-ms-n3 {
    margin-left: -.75rem !important
}

.m8-ms-n4 {
    margin-left: -1rem !important
}

.m8-ms-n5 {
    margin-left: -1.25rem !important
}

.m8-ms-n6 {
    margin-left: -1.5rem !important
}

.m8-ms-n7 {
    margin-left: -1.75rem !important
}

.m8-ms-n8 {
    margin-left: -2rem !important
}

.m8-ms-n9 {
    margin-left: -2.25rem !important
}

.m8-ms-n10 {
    margin-left: -2.5rem !important
}

.m8-ms-n11 {
    margin-left: -2.75rem !important
}

.m8-ms-n12 {
    margin-left: -3rem !important
}

.m8-ms-n13 {
    margin-left: -3.25rem !important
}

.m8-ms-n14 {
    margin-left: -3.5rem !important
}

.m8-ms-n15 {
    margin-left: -3.75rem !important
}

.m8-ms-n16 {
    margin-left: -4rem !important
}

.m8-ms-n17 {
    margin-left: -4.25rem !important
}

.m8-ms-n18 {
    margin-left: -4.5rem !important
}

.m8-ms-n19 {
    margin-left: -4.75rem !important
}

.m8-ms-n20 {
    margin-left: -5rem !important
}

.m8-p-0 {
    padding: 0 !important
}

.m8-p-1 {
    padding: .25rem !important
}

.m8-p-2 {
    padding: .5rem !important
}

.m8-p-3 {
    padding: .75rem !important
}

.m8-p-4 {
    padding: 1rem !important
}

.m8-p-5 {
    padding: 1.25rem !important
}

.m8-p-6 {
    padding: 1.5rem !important
}

.m8-p-7 {
    padding: 1.75rem !important
}

.m8-p-8 {
    padding: 2rem !important
}

.m8-p-9 {
    padding: 2.25rem !important
}

.m8-p-10 {
    padding: 2.5rem !important
}

.m8-p-11 {
    padding: 2.75rem !important
}

.m8-p-12 {
    padding: 3rem !important
}

.m8-p-13 {
    padding: 3.25rem !important
}

.m8-p-14 {
    padding: 3.5rem !important
}

.m8-p-15 {
    padding: 3.75rem !important
}

.m8-p-16 {
    padding: 4rem !important
}

.m8-p-17 {
    padding: 4.25rem !important
}

.m8-p-18 {
    padding: 4.5rem !important
}

.m8-p-19 {
    padding: 4.75rem !important
}

.m8-p-20 {
    padding: 5rem !important
}

.m8-px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.m8-px-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
}

.m8-px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.m8-px-3 {
    padding-right: .75rem !important;
    padding-left: .75rem !important
}

.m8-px-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.m8-px-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important
}

.m8-px-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.m8-px-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important
}

.m8-px-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important
}

.m8-px-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important
}

.m8-px-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important
}

.m8-px-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important
}

.m8-px-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.m8-px-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important
}

.m8-px-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important
}

.m8-px-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important
}

.m8-px-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important
}

.m8-px-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important
}

.m8-px-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important
}

.m8-px-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important
}

.m8-px-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important
}

.m8-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.m8-py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.m8-py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.m8-py-3 {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important
}

.m8-py-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.m8-py-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important
}

.m8-py-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.m8-py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important
}

.m8-py-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important
}

.m8-py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important
}

.m8-py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important
}

.m8-py-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important
}

.m8-py-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.m8-py-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important
}

.m8-py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important
}

.m8-py-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important
}

.m8-py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important
}

.m8-py-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important
}

.m8-py-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important
}

.m8-py-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important
}

.m8-py-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important
}

.m8-pt-0 {
    padding-top: 0 !important
}

.m8-pt-1 {
    padding-top: .25rem !important
}

.m8-pt-2 {
    padding-top: .5rem !important
}

.m8-pt-3 {
    padding-top: .75rem !important
}

.m8-pt-4 {
    padding-top: 1rem !important
}

.m8-pt-5 {
    padding-top: 1.25rem !important
}

.m8-pt-6 {
    padding-top: 1.5rem !important
}

.m8-pt-7 {
    padding-top: 1.75rem !important
}

.m8-pt-8 {
    padding-top: 2rem !important
}

.m8-pt-9 {
    padding-top: 2.25rem !important
}

.m8-pt-10 {
    padding-top: 2.5rem !important
}

.m8-pt-11 {
    padding-top: 2.75rem !important
}

.m8-pt-12 {
    padding-top: 3rem !important
}

.m8-pt-13 {
    padding-top: 3.25rem !important
}

.m8-pt-14 {
    padding-top: 3.5rem !important
}

.m8-pt-15 {
    padding-top: 3.75rem !important
}

.m8-pt-16 {
    padding-top: 4rem !important
}

.m8-pt-17 {
    padding-top: 4.25rem !important
}

.m8-pt-18 {
    padding-top: 4.5rem !important
}

.m8-pt-19 {
    padding-top: 4.75rem !important
}

.m8-pt-20 {
    padding-top: 5rem !important
}

.m8-pe-0 {
    padding-right: 0 !important
}

.m8-pe-1 {
    padding-right: .25rem !important
}

.m8-pe-2 {
    padding-right: .5rem !important
}

.m8-pe-3 {
    padding-right: .75rem !important
}

.m8-pe-4 {
    padding-right: 1rem !important
}

.m8-pe-5 {
    padding-right: 1.25rem !important
}

.m8-pe-6 {
    padding-right: 1.5rem !important
}

.m8-pe-7 {
    padding-right: 1.75rem !important
}

.m8-pe-8 {
    padding-right: 2rem !important
}

.m8-pe-9 {
    padding-right: 2.25rem !important
}

.m8-pe-10 {
    padding-right: 2.5rem !important
}

.m8-pe-11 {
    padding-right: 2.75rem !important
}

.m8-pe-12 {
    padding-right: 3rem !important
}

.m8-pe-13 {
    padding-right: 3.25rem !important
}

.m8-pe-14 {
    padding-right: 3.5rem !important
}

.m8-pe-15 {
    padding-right: 3.75rem !important
}

.m8-pe-16 {
    padding-right: 4rem !important
}

.m8-pe-17 {
    padding-right: 4.25rem !important
}

.m8-pe-18 {
    padding-right: 4.5rem !important
}

.m8-pe-19 {
    padding-right: 4.75rem !important
}

.m8-pe-20 {
    padding-right: 5rem !important
}

.m8-pb-0 {
    padding-bottom: 0 !important
}

.m8-pb-1 {
    padding-bottom: .25rem !important
}

.m8-pb-2 {
    padding-bottom: .5rem !important
}

.m8-pb-3 {
    padding-bottom: .75rem !important
}

.m8-pb-4 {
    padding-bottom: 1rem !important
}

.m8-pb-5 {
    padding-bottom: 1.25rem !important
}

.m8-pb-6 {
    padding-bottom: 1.5rem !important
}

.m8-pb-7 {
    padding-bottom: 1.75rem !important
}

.m8-pb-8 {
    padding-bottom: 2rem !important
}

.m8-pb-9 {
    padding-bottom: 2.25rem !important
}

.m8-pb-10 {
    padding-bottom: 2.5rem !important
}

.m8-pb-11 {
    padding-bottom: 2.75rem !important
}

.m8-pb-12 {
    padding-bottom: 3rem !important
}

.m8-pb-13 {
    padding-bottom: 3.25rem !important
}

.m8-pb-14 {
    padding-bottom: 3.5rem !important
}

.m8-pb-15 {
    padding-bottom: 3.75rem !important
}

.m8-pb-16 {
    padding-bottom: 4rem !important
}

.m8-pb-17 {
    padding-bottom: 4.25rem !important
}

.m8-pb-18 {
    padding-bottom: 4.5rem !important
}

.m8-pb-19 {
    padding-bottom: 4.75rem !important
}

.m8-pb-20 {
    padding-bottom: 5rem !important
}

.m8-ps-0 {
    padding-left: 0 !important
}

.m8-ps-1 {
    padding-left: .25rem !important
}

.m8-ps-2 {
    padding-left: .5rem !important
}

.m8-ps-3 {
    padding-left: .75rem !important
}

.m8-ps-4 {
    padding-left: 1rem !important
}

.m8-ps-5 {
    padding-left: 1.25rem !important
}

.m8-ps-6 {
    padding-left: 1.5rem !important
}

.m8-ps-7 {
    padding-left: 1.75rem !important
}

.m8-ps-8 {
    padding-left: 2rem !important
}

.m8-ps-9 {
    padding-left: 2.25rem !important
}

.m8-ps-10 {
    padding-left: 2.5rem !important
}

.m8-ps-11 {
    padding-left: 2.75rem !important
}

.m8-ps-12 {
    padding-left: 3rem !important
}

.m8-ps-13 {
    padding-left: 3.25rem !important
}

.m8-ps-14 {
    padding-left: 3.5rem !important
}

.m8-ps-15 {
    padding-left: 3.75rem !important
}

.m8-ps-16 {
    padding-left: 4rem !important
}

.m8-ps-17 {
    padding-left: 4.25rem !important
}

.m8-ps-18 {
    padding-left: 4.5rem !important
}

.m8-ps-19 {
    padding-left: 4.75rem !important
}

.m8-ps-20 {
    padding-left: 5rem !important
}

.m8-gap-0 {
    gap: 0 !important
}

.m8-gap-1 {
    gap: .25rem !important
}

.m8-gap-2 {
    gap: .5rem !important
}

.m8-gap-3 {
    gap: .75rem !important
}

.m8-gap-4 {
    gap: 1rem !important
}

.m8-gap-5 {
    gap: 1.25rem !important
}

.m8-gap-6 {
    gap: 1.5rem !important
}

.m8-gap-7 {
    gap: 1.75rem !important
}

.m8-gap-8 {
    gap: 2rem !important
}

.m8-gap-9 {
    gap: 2.25rem !important
}

.m8-gap-10 {
    gap: 2.5rem !important
}

.m8-gap-11 {
    gap: 2.75rem !important
}

.m8-gap-12 {
    gap: 3rem !important
}

.m8-gap-13 {
    gap: 3.25rem !important
}

.m8-gap-14 {
    gap: 3.5rem !important
}

.m8-gap-15 {
    gap: 3.75rem !important
}

.m8-gap-16 {
    gap: 4rem !important
}

.m8-gap-17 {
    gap: 4.25rem !important
}

.m8-gap-18 {
    gap: 4.5rem !important
}

.m8-gap-19 {
    gap: 4.75rem !important
}

.m8-gap-20 {
    gap: 5rem !important
}

.m8-row-gap-0 {
    row-gap: 0 !important
}

.m8-row-gap-1 {
    row-gap: .25rem !important
}

.m8-row-gap-2 {
    row-gap: .5rem !important
}

.m8-row-gap-3 {
    row-gap: .75rem !important
}

.m8-row-gap-4 {
    row-gap: 1rem !important
}

.m8-row-gap-5 {
    row-gap: 1.25rem !important
}

.m8-row-gap-6 {
    row-gap: 1.5rem !important
}

.m8-row-gap-7 {
    row-gap: 1.75rem !important
}

.m8-row-gap-8 {
    row-gap: 2rem !important
}

.m8-row-gap-9 {
    row-gap: 2.25rem !important
}

.m8-row-gap-10 {
    row-gap: 2.5rem !important
}

.m8-row-gap-11 {
    row-gap: 2.75rem !important
}

.m8-row-gap-12 {
    row-gap: 3rem !important
}

.m8-row-gap-13 {
    row-gap: 3.25rem !important
}

.m8-row-gap-14 {
    row-gap: 3.5rem !important
}

.m8-row-gap-15 {
    row-gap: 3.75rem !important
}

.m8-row-gap-16 {
    row-gap: 4rem !important
}

.m8-row-gap-17 {
    row-gap: 4.25rem !important
}

.m8-row-gap-18 {
    row-gap: 4.5rem !important
}

.m8-row-gap-19 {
    row-gap: 4.75rem !important
}

.m8-row-gap-20 {
    row-gap: 5rem !important
}

.m8-column-gap-0 {
    column-gap: 0 !important
}

.m8-column-gap-1 {
    column-gap: .25rem !important
}

.m8-column-gap-2 {
    column-gap: .5rem !important
}

.m8-column-gap-3 {
    column-gap: .75rem !important
}

.m8-column-gap-4 {
    column-gap: 1rem !important
}

.m8-column-gap-5 {
    column-gap: 1.25rem !important
}

.m8-column-gap-6 {
    column-gap: 1.5rem !important
}

.m8-column-gap-7 {
    column-gap: 1.75rem !important
}

.m8-column-gap-8 {
    column-gap: 2rem !important
}

.m8-column-gap-9 {
    column-gap: 2.25rem !important
}

.m8-column-gap-10 {
    column-gap: 2.5rem !important
}

.m8-column-gap-11 {
    column-gap: 2.75rem !important
}

.m8-column-gap-12 {
    column-gap: 3rem !important
}

.m8-column-gap-13 {
    column-gap: 3.25rem !important
}

.m8-column-gap-14 {
    column-gap: 3.5rem !important
}

.m8-column-gap-15 {
    column-gap: 3.75rem !important
}

.m8-column-gap-16 {
    column-gap: 4rem !important
}

.m8-column-gap-17 {
    column-gap: 4.25rem !important
}

.m8-column-gap-18 {
    column-gap: 4.5rem !important
}

.m8-column-gap-19 {
    column-gap: 4.75rem !important
}

.m8-column-gap-20 {
    column-gap: 5rem !important
}

.m8-font-monospace {
    font-family: var(--font-monospace) !important
}

.m8-fs-1 {
    font-size: calc(1.3rem + .6vw) !important
}

.m8-fs-2 {
    font-size: calc(1.275rem + .3vw) !important
}

.m8-fs-3 {
    font-size: calc(1.26rem + .12vw) !important
}

.m8-fs-4 {
    font-size: 1.25rem !important
}

.m8-fs-5 {
    font-size: 1.15rem !important
}

.m8-fs-6 {
    font-size: 1.075rem !important
}

.m8-fs-7 {
    font-size: .95rem !important
}

.m8-fs-8 {
    font-size: .85rem !important
}

.m8-fs-9 {
    font-size: .75rem !important
}

.m8-fs-10 {
    font-size: .5rem !important
}

.m8-fs-sm {
    font-size: .95rem !important
}

.m8-fs-base {
    font-size: 1rem !important
}

.m8-fs-lg {
    font-size: 1.075rem !important
}

.m8-fs-xl {
    font-size: 1.21rem !important
}

.m8-fs-fluid {
    font-size: 100% !important
}

.m8-fs-2x {
    font-size: calc(1.325rem + .9vw) !important
}

.m8-fs-2qx {
    font-size: calc(1.35rem + 1.2vw) !important
}

.m8-fs-2hx {
    font-size: calc(1.375rem + 1.5vw) !important
}

.m8-fs-2tx {
    font-size: calc(1.4rem + 1.8vw) !important
}

.m8-fs-3x {
    font-size: calc(1.425rem + 2.1vw) !important
}

.m8-fs-3qx {
    font-size: calc(1.45rem + 2.4vw) !important
}

.m8-fs-3hx {
    font-size: calc(1.475rem + 2.7vw) !important
}

.m8-fs-3tx {
    font-size: calc(1.5rem + 3vw) !important
}

.m8-fs-4x {
    font-size: calc(1.525rem + 3.3vw) !important
}

.m8-fs-4qx {
    font-size: calc(1.55rem + 3.6vw) !important
}

.m8-fs-4hx {
    font-size: calc(1.575rem + 3.9vw) !important
}

.m8-fs-4tx {
    font-size: calc(1.6rem + 4.2vw) !important
}

.m8-fs-5x {
    font-size: calc(1.625rem + 4.5vw) !important
}

.m8-fs-5qx {
    font-size: calc(1.65rem + 4.8vw) !important
}

.m8-fs-5hx {
    font-size: calc(1.675rem + 5.1vw) !important
}

.m8-fs-5tx {
    font-size: calc(1.7rem + 5.4vw) !important
}

.m8-fs-6x {
    font-size: calc(1.725rem + 5.7vw) !important
}

.m8-fs-6qx {
    font-size: calc(1.75rem + 6vw) !important
}

.m8-fs-6hx {
    font-size: calc(1.775rem + 6.3vw) !important
}

.m8-fs-6tx {
    font-size: calc(1.8rem + 6.6vw) !important
}

.m8-fs-7x {
    font-size: calc(1.825rem + 6.9vw) !important
}

.m8-fs-7qx {
    font-size: calc(1.85rem + 7.2vw) !important
}

.m8-fs-7hx {
    font-size: calc(1.875rem + 7.5vw) !important
}

.m8-fs-7tx {
    font-size: calc(1.9rem + 7.8vw) !important
}

.m8-fst-italic {
    font-style: italic !important
}

.m8-fst-normal {
    font-style: normal !important
}

.m8-fw-lighter {
    font-weight: lighter !important
}

.m8-fw-light {
    font-weight: 300 !important
}

.m8-fw-normal {
    font-weight: 400 !important
}

.m8-fw-medium {
    font-weight: 500 !important
}

.m8-fw-semibold {
    font-weight: 500 !important
}

.m8-fw-bold {
    font-weight: 600 !important
}

.m8-fw-bolder {
    font-weight: 700 !important
}

.m8-lh-0 {
    line-height: 0 !important
}

.m8-lh-08 {
    line-height: 0.9 !important
}

.m8-lh-1 {
    line-height: 1 !important
}

.m8-lh-sm {
    line-height: 1.25 !important
}

.m8-lh-base {
    line-height: 1.5 !important
}

.m8-lh-lg {
    line-height: 1.75 !important
}

.m8-lh-xl {
    line-height: 2 !important
}

.m8-lh-xxl {
    line-height: 2.25 !important
}


.m8-d-inline {
    display: inline !important
}

.m8-d-inline-block {
    display: inline-block !important
}

.m8-d-block {
    display: block !important
}

.m8-d-grid {
    display: grid !important
}

.m8-d-inline-grid {
    display: inline-grid !important
}

.m8-d-table {
    display: table !important
}

.m8-d-table-row {
    display: table-row !important
}

.m8-d-table-cell {
    display: table-cell !important
}

.m8-d-flex {
    display: flex !important
}

.m8-d-inline-flex {
    display: inline-flex !important
}

.m8-d-none {
    display: none !important
}


.m8-symbol {
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    border-radius: .475rem
}

.m8-symbol .m8-symbol-label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: var(--symbol-label-color);
    background-color: var(--symbol-label-bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: .475rem
}

.m8-symbol .m8-symbol-label:after {
    border-radius: .475rem
}

.m8-symbol .m8-symbol-badge {
    position: absolute;
    border-radius: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) !important
}

.m8-symbol>img {
    width: 100%;
    flex-shrink: 0;
    display: inline-block;
    border-radius: .475rem
}

.m8-symbol.m8-symbol-square,
.m8-symbol.m8-symbol-square .m8-symbol-label,
.m8-symbol.m8-symbol-square>img {
    border-radius: 0 !important
}

.m8-symbol.m8-symbol-circle,
.m8-symbol.m8-symbol-circle .m8-symbol-label,
.m8-symbol.m8-symbol-circle>img {
    border-radius: 50%
}

.m8-symbol.m8-symbol-circle .m8-symbol-label:after,
.m8-symbol.m8-symbol-circle:after,
.m8-symbol.m8-symbol-circle>img:after {
    border-radius: 50%
}

.m8-symbol>img {
    width: 50px;
    height: 50px
}

.m8-symbol .m8-symbol-label {
    width: 50px;
    height: 50px
}

.m8-symbol.m8-symbol-fixed .m8-symbol-label {
    width: 50px;
    height: 50px
}

.m8-symbol.m8-symbol-fixed>img {
    width: 50px;
    height: 50px;
    max-width: none
}

.m8-symbol.m8-symbol-2by3 .m8-symbol-label {
    height: 50px;
    width: 75px
}

.m8-symbol.m8-symbol-2by3>img {
    height: 50px;
    width: 75px;
    max-width: none
}

.m8-symbol.m8-symbol-20px>img {
    width: 20px;
    height: 20px
}

.m8-symbol.m8-symbol-20px .m8-symbol-label {
    width: 20px;
    height: 20px
}

.m8-symbol.m8-symbol-20px.m8-symbol-fixed .m8-symbol-label {
    width: 20px;
    height: 20px
}

.m8-symbol.m8-symbol-20px.m8-symbol-fixed>img {
    width: 20px;
    height: 20px;
    max-width: none
}

.m8-symbol.m8-symbol-20px.m8-symbol-2by3 .m8-symbol-label {
    height: 20px;
    width: 30px
}

.m8-symbol.m8-symbol-20px.m8-symbol-2by3>img {
    height: 20px;
    width: 30px;
    max-width: none
}

.m8-symbol.m8-symbol-25px>img {
    width: 25px;
    height: 25px
}

.m8-symbol.m8-symbol-25px .m8-symbol-label {
    width: 25px;
    height: 25px
}

.m8-symbol.m8-symbol-25px.m8-symbol-fixed .m8-symbol-label {
    width: 25px;
    height: 25px
}

.m8-symbol.m8-symbol-25px.m8-symbol-fixed>img {
    width: 25px;
    height: 25px;
    max-width: none
}

.m8-symbol.m8-symbol-25px.m8-symbol-2by3 .m8-symbol-label {
    height: 25px;
    width: 37.5px
}

.m8-symbol.m8-symbol-25px.m8-symbol-2by3>img {
    height: 25px;
    width: 37.5px;
    max-width: none
}

.m8-symbol.m8-symbol-30px>img {
    width: 30px;
    height: 30px
}

.m8-symbol.m8-symbol-30px .m8-symbol-label {
    width: 30px;
    height: 30px
}

.m8-symbol.m8-symbol-30px.m8-symbol-fixed .m8-symbol-label {
    width: 30px;
    height: 30px
}

.m8-symbol.m8-symbol-30px.m8-symbol-fixed>img {
    width: 30px;
    height: 30px;
    max-width: none
}

.m8-symbol.m8-symbol-30px.m8-symbol-2by3 .m8-symbol-label {
    height: 30px;
    width: 45px
}

.m8-symbol.m8-symbol-30px.m8-symbol-2by3>img {
    height: 30px;
    width: 45px;
    max-width: none
}

.m8-symbol.m8-symbol-35px>img {
    width: 35px;
    height: 35px
}

.m8-symbol.m8-symbol-35px .m8-symbol-label {
    width: 35px;
    height: 35px
}

.m8-symbol.m8-symbol-35px.m8-symbol-fixed .m8-symbol-label {
    width: 35px;
    height: 35px
}

.m8-symbol.m8-symbol-35px.m8-symbol-fixed>img {
    width: 35px;
    height: 35px;
    max-width: none
}

.m8-symbol.m8-symbol-35px.m8-symbol-2by3 .m8-symbol-label {
    height: 35px;
    width: 52.5px
}

.m8-symbol.m8-symbol-35px.m8-symbol-2by3>img {
    height: 35px;
    width: 52.5px;
    max-width: none
}

.m8-symbol.m8-symbol-40px>img {
    width: 40px;
    height: 40px
}

.m8-symbol.m8-symbol-40px .m8-symbol-label {
    width: 40px;
    height: 40px
}

.m8-symbol.m8-symbol-40px.m8-symbol-fixed .m8-symbol-label {
    width: 40px;
    height: 40px
}

.m8-symbol.m8-symbol-40px.m8-symbol-fixed>img {
    width: 40px;
    height: 40px;
    max-width: none
}

.m8-symbol.m8-symbol-40px.m8-symbol-2by3 .m8-symbol-label {
    height: 40px;
    width: 60px
}

.m8-symbol.m8-symbol-40px.m8-symbol-2by3>img {
    height: 40px;
    width: 60px;
    max-width: none
}

.m8-symbol.m8-symbol-45px>img {
    width: 45px;
    height: 45px
}

.m8-symbol.m8-symbol-45px .m8-symbol-label {
    width: 45px;
    height: 45px
}

.m8-symbol.m8-symbol-45px.m8-symbol-fixed .m8-symbol-label {
    width: 45px;
    height: 45px
}

.m8-symbol.m8-symbol-45px.m8-symbol-fixed>img {
    width: 45px;
    height: 45px;
    max-width: none
}

.m8-symbol.m8-symbol-45px.m8-symbol-2by3 .m8-symbol-label {
    height: 45px;
    width: 67.5px
}

.m8-symbol.m8-symbol-45px.m8-symbol-2by3>img {
    height: 45px;
    width: 67.5px;
    max-width: none
}

.m8-symbol.m8-symbol-50px>img {
    width: 50px;
    height: 50px
}

.m8-symbol.m8-symbol-50px .m8-symbol-label {
    width: 50px;
    height: 50px
}

.m8-symbol.m8-symbol-50px.m8-symbol-fixed .m8-symbol-label {
    width: 50px;
    height: 50px
}

.m8-symbol.m8-symbol-50px.m8-symbol-fixed>img {
    width: 50px;
    height: 50px;
    max-width: none
}

.m8-symbol.m8-symbol-50px.m8-symbol-2by3 .m8-symbol-label {
    height: 50px;
    width: 75px
}

.m8-symbol.m8-symbol-50px.m8-symbol-2by3>img {
    height: 50px;
    width: 75px;
    max-width: none
}

.m8-symbol.m8-symbol-55px>img {
    width: 55px;
    height: 55px
}

.m8-symbol.m8-symbol-55px .m8-symbol-label {
    width: 55px;
    height: 55px
}

.m8-symbol.m8-symbol-55px.m8-symbol-fixed .m8-symbol-label {
    width: 55px;
    height: 55px
}

.m8-symbol.m8-symbol-55px.m8-symbol-fixed>img {
    width: 55px;
    height: 55px;
    max-width: none
}

.m8-symbol.m8-symbol-55px.m8-symbol-2by3 .m8-symbol-label {
    height: 55px;
    width: 82.5px
}

.m8-symbol.m8-symbol-55px.m8-symbol-2by3>img {
    height: 55px;
    width: 82.5px;
    max-width: none
}

.m8-symbol.m8-symbol-60px>img {
    width: 60px;
    height: 60px
}

.m8-symbol.m8-symbol-60px .m8-symbol-label {
    width: 60px;
    height: 60px
}

.m8-symbol.m8-symbol-60px.m8-symbol-fixed .m8-symbol-label {
    width: 60px;
    height: 60px
}

.m8-symbol.m8-symbol-60px.m8-symbol-fixed>img {
    width: 60px;
    height: 60px;
    max-width: none
}

.m8-symbol.m8-symbol-60px.m8-symbol-2by3 .m8-symbol-label {
    height: 60px;
    width: 90px
}

.m8-symbol.m8-symbol-60px.m8-symbol-2by3>img {
    height: 60px;
    width: 90px;
    max-width: none
}

.m8-symbol.m8-symbol-65px>img {
    width: 65px;
    height: 65px
}

.m8-symbol.m8-symbol-65px .m8-symbol-label {
    width: 65px;
    height: 65px
}

.m8-symbol.m8-symbol-65px.m8-symbol-fixed .m8-symbol-label {
    width: 65px;
    height: 65px
}

.m8-symbol.m8-symbol-65px.m8-symbol-fixed>img {
    width: 65px;
    height: 65px;
    max-width: none
}

.m8-symbol.m8-symbol-65px.m8-symbol-2by3 .m8-symbol-label {
    height: 65px;
    width: 97.5px
}

.m8-symbol.m8-symbol-65px.m8-symbol-2by3>img {
    height: 65px;
    width: 97.5px;
    max-width: none
}

.m8-symbol.m8-symbol-70px>img {
    width: 70px;
    height: 70px
}

.m8-symbol.m8-symbol-70px .m8-symbol-label {
    width: 70px;
    height: 70px
}

.m8-symbol.m8-symbol-70px.m8-symbol-fixed .m8-symbol-label {
    width: 70px;
    height: 70px
}

.m8-symbol.m8-symbol-70px.m8-symbol-fixed>img {
    width: 70px;
    height: 70px;
    max-width: none
}

.m8-symbol.m8-symbol-70px.m8-symbol-2by3 .m8-symbol-label {
    height: 70px;
    width: 105px
}

.m8-symbol.m8-symbol-70px.m8-symbol-2by3>img {
    height: 70px;
    width: 105px;
    max-width: none
}

.m8-symbol.m8-symbol-75px>img {
    width: 75px;
    height: 75px
}

.m8-symbol.m8-symbol-75px .m8-symbol-label {
    width: 75px;
    height: 75px
}

.m8-symbol.m8-symbol-75px.m8-symbol-fixed .m8-symbol-label {
    width: 75px;
    height: 75px
}

.m8-symbol.m8-symbol-75px.m8-symbol-fixed>img {
    width: 75px;
    height: 75px;
    max-width: none
}

.m8-symbol.m8-symbol-75px.m8-symbol-2by3 .m8-symbol-label {
    height: 75px;
    width: 112.5px
}

.m8-symbol.m8-symbol-75px.m8-symbol-2by3>img {
    height: 75px;
    width: 112.5px;
    max-width: none
}

.m8-symbol.m8-symbol-90px>img {
    width: 90px;
    height: 90px
}

.m8-symbol.m8-symbol-90px .m8-symbol-label {
    width: 90px;
    height: 90px
}

.m8-symbol.m8-symbol-90px.m8-symbol-fixed .m8-symbol-label {
    width: 90px;
    height: 90px
}

.m8-symbol.m8-symbol-90px.m8-symbol-fixed>img {
    width: 90px;
    height: 90px;
    max-width: none
}

.m8-symbol.m8-symbol-90px.m8-symbol-2by3 .m8-symbol-label {
    height: 90px;
    width: 135px
}

.m8-symbol.m8-symbol-90px.m8-symbol-2by3>img {
    height: 90px;
    width: 135px;
    max-width: none
}

.m8-symbol.m8-symbol-100px>img {
    width: 100px;
    height: 100px
}

.m8-symbol.m8-symbol-100px .m8-symbol-label {
    width: 100px;
    height: 100px
}

.m8-symbol.m8-symbol-100px.m8-symbol-fixed .m8-symbol-label {
    width: 100px;
    height: 100px
}

.m8-symbol.m8-symbol-100px.m8-symbol-fixed>img {
    width: 100px;
    height: 100px;
    max-width: none
}

.m8-symbol.m8-symbol-100px.m8-symbol-2by3 .m8-symbol-label {
    height: 100px;
    width: 150px
}

.m8-symbol.m8-symbol-100px.m8-symbol-2by3>img {
    height: 100px;
    width: 150px;
    max-width: none
}

.m8-symbol.m8-symbol-125px>img {
    width: 125px;
    height: 125px
}

.m8-symbol.m8-symbol-125px .m8-symbol-label {
    width: 125px;
    height: 125px
}

.m8-symbol.m8-symbol-125px.m8-symbol-fixed .m8-symbol-label {
    width: 125px;
    height: 125px
}

.m8-symbol.m8-symbol-125px.m8-symbol-fixed>img {
    width: 125px;
    height: 125px;
    max-width: none
}

.m8-symbol.m8-symbol-125px.m8-symbol-2by3 .m8-symbol-label {
    height: 125px;
    width: 187.5px
}

.m8-symbol.m8-symbol-125px.m8-symbol-2by3>img {
    height: 125px;
    width: 187.5px;
    max-width: none
}

.m8-symbol.m8-symbol-150px>img {
    width: 150px;
    height: 150px
}

.m8-symbol.m8-symbol-150px .m8-symbol-label {
    width: 150px;
    height: 150px
}

.m8-symbol.m8-symbol-150px.m8-symbol-fixed .m8-symbol-label {
    width: 150px;
    height: 150px
}

.m8-symbol.m8-symbol-150px.m8-symbol-fixed>img {
    width: 150px;
    height: 150px;
    max-width: none
}

.m8-symbol.m8-symbol-150px.m8-symbol-2by3 .m8-symbol-label {
    height: 150px;
    width: 225px
}

.m8-symbol.m8-symbol-150px.m8-symbol-2by3>img {
    height: 150px;
    width: 225px;
    max-width: none
}

.m8-symbol.m8-symbol-160px>img {
    width: 160px;
    height: 160px
}

.m8-symbol.m8-symbol-160px .m8-symbol-label {
    width: 160px;
    height: 160px
}

.m8-symbol.m8-symbol-160px.m8-symbol-fixed .m8-symbol-label {
    width: 160px;
    height: 160px
}

.m8-symbol.m8-symbol-160px.m8-symbol-fixed>img {
    width: 160px;
    height: 160px;
    max-width: none
}

.m8-symbol.m8-symbol-160px.m8-symbol-2by3 .m8-symbol-label {
    height: 160px;
    width: 240px
}

.m8-symbol.m8-symbol-160px.m8-symbol-2by3>img {
    height: 160px;
    width: 240px;
    max-width: none
}

.m8-symbol.m8-symbol-175px>img {
    width: 175px;
    height: 175px
}

.m8-symbol.m8-symbol-175px .m8-symbol-label {
    width: 175px;
    height: 175px
}

.m8-symbol.m8-symbol-175px.m8-symbol-fixed .m8-symbol-label {
    width: 175px;
    height: 175px
}

.m8-symbol.m8-symbol-175px.m8-symbol-fixed>img {
    width: 175px;
    height: 175px;
    max-width: none
}

.m8-symbol.m8-symbol-175px.m8-symbol-2by3 .m8-symbol-label {
    height: 175px;
    width: 262.5px
}

.m8-symbol.m8-symbol-175px.m8-symbol-2by3>img {
    height: 175px;
    width: 262.5px;
    max-width: none
}

.m8-symbol.m8-symbol-200px>img {
    width: 200px;
    height: 200px
}

.m8-symbol.m8-symbol-200px .m8-symbol-label {
    width: 200px;
    height: 200px
}

.m8-symbol.m8-symbol-200px.m8-symbol-fixed .m8-symbol-label {
    width: 200px;
    height: 200px
}

.m8-symbol.m8-symbol-200px.m8-symbol-fixed>img {
    width: 200px;
    height: 200px;
    max-width: none
}

.m8-symbol.m8-symbol-200px.m8-symbol-2by3 .m8-symbol-label {
    height: 200px;
    width: 300px
}

.m8-symbol.m8-symbol-200px.m8-symbol-2by3>img {
    height: 200px;
    width: 300px;
    max-width: none
}

@media (min-width:576px) {
    .m8-symbol.m8-symbol-sm-20px>img {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-sm-20px .m8-symbol-label {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-sm-20px.m8-symbol-fixed .m8-symbol-label {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-sm-20px.m8-symbol-fixed>img {
        width: 20px;
        height: 20px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-20px.m8-symbol-2by3 .m8-symbol-label {
        height: 20px;
        width: 30px
    }

    .m8-symbol.m8-symbol-sm-20px.m8-symbol-2by3>img {
        height: 20px;
        width: 30px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-25px>img {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-sm-25px .m8-symbol-label {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-sm-25px.m8-symbol-fixed .m8-symbol-label {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-sm-25px.m8-symbol-fixed>img {
        width: 25px;
        height: 25px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-25px.m8-symbol-2by3 .m8-symbol-label {
        height: 25px;
        width: 37.5px
    }

    .m8-symbol.m8-symbol-sm-25px.m8-symbol-2by3>img {
        height: 25px;
        width: 37.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-30px>img {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-sm-30px .m8-symbol-label {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-sm-30px.m8-symbol-fixed .m8-symbol-label {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-sm-30px.m8-symbol-fixed>img {
        width: 30px;
        height: 30px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-30px.m8-symbol-2by3 .m8-symbol-label {
        height: 30px;
        width: 45px
    }

    .m8-symbol.m8-symbol-sm-30px.m8-symbol-2by3>img {
        height: 30px;
        width: 45px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-35px>img {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-sm-35px .m8-symbol-label {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-sm-35px.m8-symbol-fixed .m8-symbol-label {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-sm-35px.m8-symbol-fixed>img {
        width: 35px;
        height: 35px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-35px.m8-symbol-2by3 .m8-symbol-label {
        height: 35px;
        width: 52.5px
    }

    .m8-symbol.m8-symbol-sm-35px.m8-symbol-2by3>img {
        height: 35px;
        width: 52.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-40px>img {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-sm-40px .m8-symbol-label {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-sm-40px.m8-symbol-fixed .m8-symbol-label {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-sm-40px.m8-symbol-fixed>img {
        width: 40px;
        height: 40px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-40px.m8-symbol-2by3 .m8-symbol-label {
        height: 40px;
        width: 60px
    }

    .m8-symbol.m8-symbol-sm-40px.m8-symbol-2by3>img {
        height: 40px;
        width: 60px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-45px>img {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-sm-45px .m8-symbol-label {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-sm-45px.m8-symbol-fixed .m8-symbol-label {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-sm-45px.m8-symbol-fixed>img {
        width: 45px;
        height: 45px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-45px.m8-symbol-2by3 .m8-symbol-label {
        height: 45px;
        width: 67.5px
    }

    .m8-symbol.m8-symbol-sm-45px.m8-symbol-2by3>img {
        height: 45px;
        width: 67.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-50px>img {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-sm-50px .m8-symbol-label {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-sm-50px.m8-symbol-fixed .m8-symbol-label {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-sm-50px.m8-symbol-fixed>img {
        width: 50px;
        height: 50px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-50px.m8-symbol-2by3 .m8-symbol-label {
        height: 50px;
        width: 75px
    }

    .m8-symbol.m8-symbol-sm-50px.m8-symbol-2by3>img {
        height: 50px;
        width: 75px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-55px>img {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-sm-55px .m8-symbol-label {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-sm-55px.m8-symbol-fixed .m8-symbol-label {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-sm-55px.m8-symbol-fixed>img {
        width: 55px;
        height: 55px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-55px.m8-symbol-2by3 .m8-symbol-label {
        height: 55px;
        width: 82.5px
    }

    .m8-symbol.m8-symbol-sm-55px.m8-symbol-2by3>img {
        height: 55px;
        width: 82.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-60px>img {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-sm-60px .m8-symbol-label {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-sm-60px.m8-symbol-fixed .m8-symbol-label {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-sm-60px.m8-symbol-fixed>img {
        width: 60px;
        height: 60px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-60px.m8-symbol-2by3 .m8-symbol-label {
        height: 60px;
        width: 90px
    }

    .m8-symbol.m8-symbol-sm-60px.m8-symbol-2by3>img {
        height: 60px;
        width: 90px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-65px>img {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-sm-65px .m8-symbol-label {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-sm-65px.m8-symbol-fixed .m8-symbol-label {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-sm-65px.m8-symbol-fixed>img {
        width: 65px;
        height: 65px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-65px.m8-symbol-2by3 .m8-symbol-label {
        height: 65px;
        width: 97.5px
    }

    .m8-symbol.m8-symbol-sm-65px.m8-symbol-2by3>img {
        height: 65px;
        width: 97.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-70px>img {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-sm-70px .m8-symbol-label {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-sm-70px.m8-symbol-fixed .m8-symbol-label {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-sm-70px.m8-symbol-fixed>img {
        width: 70px;
        height: 70px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-70px.m8-symbol-2by3 .m8-symbol-label {
        height: 70px;
        width: 105px
    }

    .m8-symbol.m8-symbol-sm-70px.m8-symbol-2by3>img {
        height: 70px;
        width: 105px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-75px>img {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-sm-75px .m8-symbol-label {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-sm-75px.m8-symbol-fixed .m8-symbol-label {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-sm-75px.m8-symbol-fixed>img {
        width: 75px;
        height: 75px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-75px.m8-symbol-2by3 .m8-symbol-label {
        height: 75px;
        width: 112.5px
    }

    .m8-symbol.m8-symbol-sm-75px.m8-symbol-2by3>img {
        height: 75px;
        width: 112.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-90px>img {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-sm-90px .m8-symbol-label {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-sm-90px.m8-symbol-fixed .m8-symbol-label {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-sm-90px.m8-symbol-fixed>img {
        width: 90px;
        height: 90px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-90px.m8-symbol-2by3 .m8-symbol-label {
        height: 90px;
        width: 135px
    }

    .m8-symbol.m8-symbol-sm-90px.m8-symbol-2by3>img {
        height: 90px;
        width: 135px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-100px>img {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-sm-100px .m8-symbol-label {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-sm-100px.m8-symbol-fixed .m8-symbol-label {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-sm-100px.m8-symbol-fixed>img {
        width: 100px;
        height: 100px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-100px.m8-symbol-2by3 .m8-symbol-label {
        height: 100px;
        width: 150px
    }

    .m8-symbol.m8-symbol-sm-100px.m8-symbol-2by3>img {
        height: 100px;
        width: 150px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-125px>img {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-sm-125px .m8-symbol-label {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-sm-125px.m8-symbol-fixed .m8-symbol-label {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-sm-125px.m8-symbol-fixed>img {
        width: 125px;
        height: 125px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-125px.m8-symbol-2by3 .m8-symbol-label {
        height: 125px;
        width: 187.5px
    }

    .m8-symbol.m8-symbol-sm-125px.m8-symbol-2by3>img {
        height: 125px;
        width: 187.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-150px>img {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-sm-150px .m8-symbol-label {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-sm-150px.m8-symbol-fixed .m8-symbol-label {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-sm-150px.m8-symbol-fixed>img {
        width: 150px;
        height: 150px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-150px.m8-symbol-2by3 .m8-symbol-label {
        height: 150px;
        width: 225px
    }

    .m8-symbol.m8-symbol-sm-150px.m8-symbol-2by3>img {
        height: 150px;
        width: 225px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-160px>img {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-sm-160px .m8-symbol-label {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-sm-160px.m8-symbol-fixed .m8-symbol-label {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-sm-160px.m8-symbol-fixed>img {
        width: 160px;
        height: 160px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-160px.m8-symbol-2by3 .m8-symbol-label {
        height: 160px;
        width: 240px
    }

    .m8-symbol.m8-symbol-sm-160px.m8-symbol-2by3>img {
        height: 160px;
        width: 240px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-175px>img {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-sm-175px .m8-symbol-label {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-sm-175px.m8-symbol-fixed .m8-symbol-label {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-sm-175px.m8-symbol-fixed>img {
        width: 175px;
        height: 175px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-175px.m8-symbol-2by3 .m8-symbol-label {
        height: 175px;
        width: 262.5px
    }

    .m8-symbol.m8-symbol-sm-175px.m8-symbol-2by3>img {
        height: 175px;
        width: 262.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-200px>img {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-sm-200px .m8-symbol-label {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-sm-200px.m8-symbol-fixed .m8-symbol-label {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-sm-200px.m8-symbol-fixed>img {
        width: 200px;
        height: 200px;
        max-width: none
    }

    .m8-symbol.m8-symbol-sm-200px.m8-symbol-2by3 .m8-symbol-label {
        height: 200px;
        width: 300px
    }

    .m8-symbol.m8-symbol-sm-200px.m8-symbol-2by3>img {
        height: 200px;
        width: 300px;
        max-width: none
    }
}

@media (min-width:768px) {
    .m8-symbol.m8-symbol-md-20px>img {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-md-20px .m8-symbol-label {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-md-20px.m8-symbol-fixed .m8-symbol-label {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-md-20px.m8-symbol-fixed>img {
        width: 20px;
        height: 20px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-20px.m8-symbol-2by3 .m8-symbol-label {
        height: 20px;
        width: 30px
    }

    .m8-symbol.m8-symbol-md-20px.m8-symbol-2by3>img {
        height: 20px;
        width: 30px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-25px>img {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-md-25px .m8-symbol-label {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-md-25px.m8-symbol-fixed .m8-symbol-label {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-md-25px.m8-symbol-fixed>img {
        width: 25px;
        height: 25px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-25px.m8-symbol-2by3 .m8-symbol-label {
        height: 25px;
        width: 37.5px
    }

    .m8-symbol.m8-symbol-md-25px.m8-symbol-2by3>img {
        height: 25px;
        width: 37.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-30px>img {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-md-30px .m8-symbol-label {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-md-30px.m8-symbol-fixed .m8-symbol-label {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-md-30px.m8-symbol-fixed>img {
        width: 30px;
        height: 30px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-30px.m8-symbol-2by3 .m8-symbol-label {
        height: 30px;
        width: 45px
    }

    .m8-symbol.m8-symbol-md-30px.m8-symbol-2by3>img {
        height: 30px;
        width: 45px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-35px>img {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-md-35px .m8-symbol-label {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-md-35px.m8-symbol-fixed .m8-symbol-label {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-md-35px.m8-symbol-fixed>img {
        width: 35px;
        height: 35px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-35px.m8-symbol-2by3 .m8-symbol-label {
        height: 35px;
        width: 52.5px
    }

    .m8-symbol.m8-symbol-md-35px.m8-symbol-2by3>img {
        height: 35px;
        width: 52.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-40px>img {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-md-40px .m8-symbol-label {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-md-40px.m8-symbol-fixed .m8-symbol-label {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-md-40px.m8-symbol-fixed>img {
        width: 40px;
        height: 40px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-40px.m8-symbol-2by3 .m8-symbol-label {
        height: 40px;
        width: 60px
    }

    .m8-symbol.m8-symbol-md-40px.m8-symbol-2by3>img {
        height: 40px;
        width: 60px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-45px>img {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-md-45px .m8-symbol-label {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-md-45px.m8-symbol-fixed .m8-symbol-label {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-md-45px.m8-symbol-fixed>img {
        width: 45px;
        height: 45px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-45px.m8-symbol-2by3 .m8-symbol-label {
        height: 45px;
        width: 67.5px
    }

    .m8-symbol.m8-symbol-md-45px.m8-symbol-2by3>img {
        height: 45px;
        width: 67.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-50px>img {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-md-50px .m8-symbol-label {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-md-50px.m8-symbol-fixed .m8-symbol-label {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-md-50px.m8-symbol-fixed>img {
        width: 50px;
        height: 50px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-50px.m8-symbol-2by3 .m8-symbol-label {
        height: 50px;
        width: 75px
    }

    .m8-symbol.m8-symbol-md-50px.m8-symbol-2by3>img {
        height: 50px;
        width: 75px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-55px>img {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-md-55px .m8-symbol-label {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-md-55px.m8-symbol-fixed .m8-symbol-label {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-md-55px.m8-symbol-fixed>img {
        width: 55px;
        height: 55px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-55px.m8-symbol-2by3 .m8-symbol-label {
        height: 55px;
        width: 82.5px
    }

    .m8-symbol.m8-symbol-md-55px.m8-symbol-2by3>img {
        height: 55px;
        width: 82.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-60px>img {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-md-60px .m8-symbol-label {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-md-60px.m8-symbol-fixed .m8-symbol-label {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-md-60px.m8-symbol-fixed>img {
        width: 60px;
        height: 60px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-60px.m8-symbol-2by3 .m8-symbol-label {
        height: 60px;
        width: 90px
    }

    .m8-symbol.m8-symbol-md-60px.m8-symbol-2by3>img {
        height: 60px;
        width: 90px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-65px>img {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-md-65px .m8-symbol-label {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-md-65px.m8-symbol-fixed .m8-symbol-label {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-md-65px.m8-symbol-fixed>img {
        width: 65px;
        height: 65px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-65px.m8-symbol-2by3 .m8-symbol-label {
        height: 65px;
        width: 97.5px
    }

    .m8-symbol.m8-symbol-md-65px.m8-symbol-2by3>img {
        height: 65px;
        width: 97.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-70px>img {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-md-70px .m8-symbol-label {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-md-70px.m8-symbol-fixed .m8-symbol-label {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-md-70px.m8-symbol-fixed>img {
        width: 70px;
        height: 70px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-70px.m8-symbol-2by3 .m8-symbol-label {
        height: 70px;
        width: 105px
    }

    .m8-symbol.m8-symbol-md-70px.m8-symbol-2by3>img {
        height: 70px;
        width: 105px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-75px>img {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-md-75px .m8-symbol-label {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-md-75px.m8-symbol-fixed .m8-symbol-label {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-md-75px.m8-symbol-fixed>img {
        width: 75px;
        height: 75px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-75px.m8-symbol-2by3 .m8-symbol-label {
        height: 75px;
        width: 112.5px
    }

    .m8-symbol.m8-symbol-md-75px.m8-symbol-2by3>img {
        height: 75px;
        width: 112.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-90px>img {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-md-90px .m8-symbol-label {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-md-90px.m8-symbol-fixed .m8-symbol-label {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-md-90px.m8-symbol-fixed>img {
        width: 90px;
        height: 90px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-90px.m8-symbol-2by3 .m8-symbol-label {
        height: 90px;
        width: 135px
    }

    .m8-symbol.m8-symbol-md-90px.m8-symbol-2by3>img {
        height: 90px;
        width: 135px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-100px>img {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-md-100px .m8-symbol-label {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-md-100px.m8-symbol-fixed .m8-symbol-label {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-md-100px.m8-symbol-fixed>img {
        width: 100px;
        height: 100px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-100px.m8-symbol-2by3 .m8-symbol-label {
        height: 100px;
        width: 150px
    }

    .m8-symbol.m8-symbol-md-100px.m8-symbol-2by3>img {
        height: 100px;
        width: 150px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-125px>img {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-md-125px .m8-symbol-label {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-md-125px.m8-symbol-fixed .m8-symbol-label {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-md-125px.m8-symbol-fixed>img {
        width: 125px;
        height: 125px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-125px.m8-symbol-2by3 .m8-symbol-label {
        height: 125px;
        width: 187.5px
    }

    .m8-symbol.m8-symbol-md-125px.m8-symbol-2by3>img {
        height: 125px;
        width: 187.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-150px>img {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-md-150px .m8-symbol-label {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-md-150px.m8-symbol-fixed .m8-symbol-label {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-md-150px.m8-symbol-fixed>img {
        width: 150px;
        height: 150px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-150px.m8-symbol-2by3 .m8-symbol-label {
        height: 150px;
        width: 225px
    }

    .m8-symbol.m8-symbol-md-150px.m8-symbol-2by3>img {
        height: 150px;
        width: 225px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-160px>img {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-md-160px .m8-symbol-label {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-md-160px.m8-symbol-fixed .m8-symbol-label {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-md-160px.m8-symbol-fixed>img {
        width: 160px;
        height: 160px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-160px.m8-symbol-2by3 .m8-symbol-label {
        height: 160px;
        width: 240px
    }

    .m8-symbol.m8-symbol-md-160px.m8-symbol-2by3>img {
        height: 160px;
        width: 240px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-175px>img {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-md-175px .m8-symbol-label {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-md-175px.m8-symbol-fixed .m8-symbol-label {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-md-175px.m8-symbol-fixed>img {
        width: 175px;
        height: 175px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-175px.m8-symbol-2by3 .m8-symbol-label {
        height: 175px;
        width: 262.5px
    }

    .m8-symbol.m8-symbol-md-175px.m8-symbol-2by3>img {
        height: 175px;
        width: 262.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-200px>img {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-md-200px .m8-symbol-label {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-md-200px.m8-symbol-fixed .m8-symbol-label {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-md-200px.m8-symbol-fixed>img {
        width: 200px;
        height: 200px;
        max-width: none
    }

    .m8-symbol.m8-symbol-md-200px.m8-symbol-2by3 .m8-symbol-label {
        height: 200px;
        width: 300px
    }

    .m8-symbol.m8-symbol-md-200px.m8-symbol-2by3>img {
        height: 200px;
        width: 300px;
        max-width: none
    }
}

@media (min-width:992px) {
    .m8-symbol.m8-symbol-lg-20px>img {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-lg-20px .m8-symbol-label {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-lg-20px.m8-symbol-fixed .m8-symbol-label {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-lg-20px.m8-symbol-fixed>img {
        width: 20px;
        height: 20px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-20px.m8-symbol-2by3 .m8-symbol-label {
        height: 20px;
        width: 30px
    }

    .m8-symbol.m8-symbol-lg-20px.m8-symbol-2by3>img {
        height: 20px;
        width: 30px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-25px>img {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-lg-25px .m8-symbol-label {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-lg-25px.m8-symbol-fixed .m8-symbol-label {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-lg-25px.m8-symbol-fixed>img {
        width: 25px;
        height: 25px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-25px.m8-symbol-2by3 .m8-symbol-label {
        height: 25px;
        width: 37.5px
    }

    .m8-symbol.m8-symbol-lg-25px.m8-symbol-2by3>img {
        height: 25px;
        width: 37.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-30px>img {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-lg-30px .m8-symbol-label {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-lg-30px.m8-symbol-fixed .m8-symbol-label {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-lg-30px.m8-symbol-fixed>img {
        width: 30px;
        height: 30px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-30px.m8-symbol-2by3 .m8-symbol-label {
        height: 30px;
        width: 45px
    }

    .m8-symbol.m8-symbol-lg-30px.m8-symbol-2by3>img {
        height: 30px;
        width: 45px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-35px>img {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-lg-35px .m8-symbol-label {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-lg-35px.m8-symbol-fixed .m8-symbol-label {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-lg-35px.m8-symbol-fixed>img {
        width: 35px;
        height: 35px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-35px.m8-symbol-2by3 .m8-symbol-label {
        height: 35px;
        width: 52.5px
    }

    .m8-symbol.m8-symbol-lg-35px.m8-symbol-2by3>img {
        height: 35px;
        width: 52.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-40px>img {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-lg-40px .m8-symbol-label {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-lg-40px.m8-symbol-fixed .m8-symbol-label {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-lg-40px.m8-symbol-fixed>img {
        width: 40px;
        height: 40px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-40px.m8-symbol-2by3 .m8-symbol-label {
        height: 40px;
        width: 60px
    }

    .m8-symbol.m8-symbol-lg-40px.m8-symbol-2by3>img {
        height: 40px;
        width: 60px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-45px>img {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-lg-45px .m8-symbol-label {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-lg-45px.m8-symbol-fixed .m8-symbol-label {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-lg-45px.m8-symbol-fixed>img {
        width: 45px;
        height: 45px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-45px.m8-symbol-2by3 .m8-symbol-label {
        height: 45px;
        width: 67.5px
    }

    .m8-symbol.m8-symbol-lg-45px.m8-symbol-2by3>img {
        height: 45px;
        width: 67.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-50px>img {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-lg-50px .m8-symbol-label {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-lg-50px.m8-symbol-fixed .m8-symbol-label {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-lg-50px.m8-symbol-fixed>img {
        width: 50px;
        height: 50px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-50px.m8-symbol-2by3 .m8-symbol-label {
        height: 50px;
        width: 75px
    }

    .m8-symbol.m8-symbol-lg-50px.m8-symbol-2by3>img {
        height: 50px;
        width: 75px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-55px>img {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-lg-55px .m8-symbol-label {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-lg-55px.m8-symbol-fixed .m8-symbol-label {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-lg-55px.m8-symbol-fixed>img {
        width: 55px;
        height: 55px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-55px.m8-symbol-2by3 .m8-symbol-label {
        height: 55px;
        width: 82.5px
    }

    .m8-symbol.m8-symbol-lg-55px.m8-symbol-2by3>img {
        height: 55px;
        width: 82.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-60px>img {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-lg-60px .m8-symbol-label {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-lg-60px.m8-symbol-fixed .m8-symbol-label {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-lg-60px.m8-symbol-fixed>img {
        width: 60px;
        height: 60px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-60px.m8-symbol-2by3 .m8-symbol-label {
        height: 60px;
        width: 90px
    }

    .m8-symbol.m8-symbol-lg-60px.m8-symbol-2by3>img {
        height: 60px;
        width: 90px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-65px>img {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-lg-65px .m8-symbol-label {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-lg-65px.m8-symbol-fixed .m8-symbol-label {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-lg-65px.m8-symbol-fixed>img {
        width: 65px;
        height: 65px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-65px.m8-symbol-2by3 .m8-symbol-label {
        height: 65px;
        width: 97.5px
    }

    .m8-symbol.m8-symbol-lg-65px.m8-symbol-2by3>img {
        height: 65px;
        width: 97.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-70px>img {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-lg-70px .m8-symbol-label {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-lg-70px.m8-symbol-fixed .m8-symbol-label {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-lg-70px.m8-symbol-fixed>img {
        width: 70px;
        height: 70px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-70px.m8-symbol-2by3 .m8-symbol-label {
        height: 70px;
        width: 105px
    }

    .m8-symbol.m8-symbol-lg-70px.m8-symbol-2by3>img {
        height: 70px;
        width: 105px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-75px>img {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-lg-75px .m8-symbol-label {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-lg-75px.m8-symbol-fixed .m8-symbol-label {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-lg-75px.m8-symbol-fixed>img {
        width: 75px;
        height: 75px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-75px.m8-symbol-2by3 .m8-symbol-label {
        height: 75px;
        width: 112.5px
    }

    .m8-symbol.m8-symbol-lg-75px.m8-symbol-2by3>img {
        height: 75px;
        width: 112.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-90px>img {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-lg-90px .m8-symbol-label {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-lg-90px.m8-symbol-fixed .m8-symbol-label {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-lg-90px.m8-symbol-fixed>img {
        width: 90px;
        height: 90px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-90px.m8-symbol-2by3 .m8-symbol-label {
        height: 90px;
        width: 135px
    }

    .m8-symbol.m8-symbol-lg-90px.m8-symbol-2by3>img {
        height: 90px;
        width: 135px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-100px>img {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-lg-100px .m8-symbol-label {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-lg-100px.m8-symbol-fixed .m8-symbol-label {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-lg-100px.m8-symbol-fixed>img {
        width: 100px;
        height: 100px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-100px.m8-symbol-2by3 .m8-symbol-label {
        height: 100px;
        width: 150px
    }

    .m8-symbol.m8-symbol-lg-100px.m8-symbol-2by3>img {
        height: 100px;
        width: 150px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-125px>img {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-lg-125px .m8-symbol-label {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-lg-125px.m8-symbol-fixed .m8-symbol-label {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-lg-125px.m8-symbol-fixed>img {
        width: 125px;
        height: 125px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-125px.m8-symbol-2by3 .m8-symbol-label {
        height: 125px;
        width: 187.5px
    }

    .m8-symbol.m8-symbol-lg-125px.m8-symbol-2by3>img {
        height: 125px;
        width: 187.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-150px>img {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-lg-150px .m8-symbol-label {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-lg-150px.m8-symbol-fixed .m8-symbol-label {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-lg-150px.m8-symbol-fixed>img {
        width: 150px;
        height: 150px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-150px.m8-symbol-2by3 .m8-symbol-label {
        height: 150px;
        width: 225px
    }

    .m8-symbol.m8-symbol-lg-150px.m8-symbol-2by3>img {
        height: 150px;
        width: 225px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-160px>img {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-lg-160px .m8-symbol-label {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-lg-160px.m8-symbol-fixed .m8-symbol-label {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-lg-160px.m8-symbol-fixed>img {
        width: 160px;
        height: 160px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-160px.m8-symbol-2by3 .m8-symbol-label {
        height: 160px;
        width: 240px
    }

    .m8-symbol.m8-symbol-lg-160px.m8-symbol-2by3>img {
        height: 160px;
        width: 240px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-175px>img {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-lg-175px .m8-symbol-label {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-lg-175px.m8-symbol-fixed .m8-symbol-label {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-lg-175px.m8-symbol-fixed>img {
        width: 175px;
        height: 175px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-175px.m8-symbol-2by3 .m8-symbol-label {
        height: 175px;
        width: 262.5px
    }

    .m8-symbol.m8-symbol-lg-175px.m8-symbol-2by3>img {
        height: 175px;
        width: 262.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-200px>img {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-lg-200px .m8-symbol-label {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-lg-200px.m8-symbol-fixed .m8-symbol-label {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-lg-200px.m8-symbol-fixed>img {
        width: 200px;
        height: 200px;
        max-width: none
    }

    .m8-symbol.m8-symbol-lg-200px.m8-symbol-2by3 .m8-symbol-label {
        height: 200px;
        width: 300px
    }

    .m8-symbol.m8-symbol-lg-200px.m8-symbol-2by3>img {
        height: 200px;
        width: 300px;
        max-width: none
    }
}

@media (min-width:1200px) {
    .m8-symbol.m8-symbol-xl-20px>img {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-xl-20px .m8-symbol-label {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-xl-20px.m8-symbol-fixed .m8-symbol-label {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-xl-20px.m8-symbol-fixed>img {
        width: 20px;
        height: 20px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-20px.m8-symbol-2by3 .m8-symbol-label {
        height: 20px;
        width: 30px
    }

    .m8-symbol.m8-symbol-xl-20px.m8-symbol-2by3>img {
        height: 20px;
        width: 30px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-25px>img {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-xl-25px .m8-symbol-label {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-xl-25px.m8-symbol-fixed .m8-symbol-label {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-xl-25px.m8-symbol-fixed>img {
        width: 25px;
        height: 25px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-25px.m8-symbol-2by3 .m8-symbol-label {
        height: 25px;
        width: 37.5px
    }

    .m8-symbol.m8-symbol-xl-25px.m8-symbol-2by3>img {
        height: 25px;
        width: 37.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-30px>img {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-xl-30px .m8-symbol-label {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-xl-30px.m8-symbol-fixed .m8-symbol-label {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-xl-30px.m8-symbol-fixed>img {
        width: 30px;
        height: 30px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-30px.m8-symbol-2by3 .m8-symbol-label {
        height: 30px;
        width: 45px
    }

    .m8-symbol.m8-symbol-xl-30px.m8-symbol-2by3>img {
        height: 30px;
        width: 45px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-35px>img {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-xl-35px .m8-symbol-label {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-xl-35px.m8-symbol-fixed .m8-symbol-label {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-xl-35px.m8-symbol-fixed>img {
        width: 35px;
        height: 35px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-35px.m8-symbol-2by3 .m8-symbol-label {
        height: 35px;
        width: 52.5px
    }

    .m8-symbol.m8-symbol-xl-35px.m8-symbol-2by3>img {
        height: 35px;
        width: 52.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-40px>img {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-xl-40px .m8-symbol-label {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-xl-40px.m8-symbol-fixed .m8-symbol-label {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-xl-40px.m8-symbol-fixed>img {
        width: 40px;
        height: 40px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-40px.m8-symbol-2by3 .m8-symbol-label {
        height: 40px;
        width: 60px
    }

    .m8-symbol.m8-symbol-xl-40px.m8-symbol-2by3>img {
        height: 40px;
        width: 60px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-45px>img {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-xl-45px .m8-symbol-label {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-xl-45px.m8-symbol-fixed .m8-symbol-label {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-xl-45px.m8-symbol-fixed>img {
        width: 45px;
        height: 45px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-45px.m8-symbol-2by3 .m8-symbol-label {
        height: 45px;
        width: 67.5px
    }

    .m8-symbol.m8-symbol-xl-45px.m8-symbol-2by3>img {
        height: 45px;
        width: 67.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-50px>img {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-xl-50px .m8-symbol-label {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-xl-50px.m8-symbol-fixed .m8-symbol-label {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-xl-50px.m8-symbol-fixed>img {
        width: 50px;
        height: 50px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-50px.m8-symbol-2by3 .m8-symbol-label {
        height: 50px;
        width: 75px
    }

    .m8-symbol.m8-symbol-xl-50px.m8-symbol-2by3>img {
        height: 50px;
        width: 75px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-55px>img {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-xl-55px .m8-symbol-label {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-xl-55px.m8-symbol-fixed .m8-symbol-label {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-xl-55px.m8-symbol-fixed>img {
        width: 55px;
        height: 55px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-55px.m8-symbol-2by3 .m8-symbol-label {
        height: 55px;
        width: 82.5px
    }

    .m8-symbol.m8-symbol-xl-55px.m8-symbol-2by3>img {
        height: 55px;
        width: 82.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-60px>img {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-xl-60px .m8-symbol-label {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-xl-60px.m8-symbol-fixed .m8-symbol-label {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-xl-60px.m8-symbol-fixed>img {
        width: 60px;
        height: 60px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-60px.m8-symbol-2by3 .m8-symbol-label {
        height: 60px;
        width: 90px
    }

    .m8-symbol.m8-symbol-xl-60px.m8-symbol-2by3>img {
        height: 60px;
        width: 90px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-65px>img {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-xl-65px .m8-symbol-label {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-xl-65px.m8-symbol-fixed .m8-symbol-label {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-xl-65px.m8-symbol-fixed>img {
        width: 65px;
        height: 65px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-65px.m8-symbol-2by3 .m8-symbol-label {
        height: 65px;
        width: 97.5px
    }

    .m8-symbol.m8-symbol-xl-65px.m8-symbol-2by3>img {
        height: 65px;
        width: 97.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-70px>img {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-xl-70px .m8-symbol-label {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-xl-70px.m8-symbol-fixed .m8-symbol-label {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-xl-70px.m8-symbol-fixed>img {
        width: 70px;
        height: 70px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-70px.m8-symbol-2by3 .m8-symbol-label {
        height: 70px;
        width: 105px
    }

    .m8-symbol.m8-symbol-xl-70px.m8-symbol-2by3>img {
        height: 70px;
        width: 105px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-75px>img {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-xl-75px .m8-symbol-label {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-xl-75px.m8-symbol-fixed .m8-symbol-label {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-xl-75px.m8-symbol-fixed>img {
        width: 75px;
        height: 75px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-75px.m8-symbol-2by3 .m8-symbol-label {
        height: 75px;
        width: 112.5px
    }

    .m8-symbol.m8-symbol-xl-75px.m8-symbol-2by3>img {
        height: 75px;
        width: 112.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-90px>img {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-xl-90px .m8-symbol-label {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-xl-90px.m8-symbol-fixed .m8-symbol-label {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-xl-90px.m8-symbol-fixed>img {
        width: 90px;
        height: 90px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-90px.m8-symbol-2by3 .m8-symbol-label {
        height: 90px;
        width: 135px
    }

    .m8-symbol.m8-symbol-xl-90px.m8-symbol-2by3>img {
        height: 90px;
        width: 135px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-100px>img {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-xl-100px .m8-symbol-label {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-xl-100px.m8-symbol-fixed .m8-symbol-label {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-xl-100px.m8-symbol-fixed>img {
        width: 100px;
        height: 100px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-100px.m8-symbol-2by3 .m8-symbol-label {
        height: 100px;
        width: 150px
    }

    .m8-symbol.m8-symbol-xl-100px.m8-symbol-2by3>img {
        height: 100px;
        width: 150px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-125px>img {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-xl-125px .m8-symbol-label {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-xl-125px.m8-symbol-fixed .m8-symbol-label {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-xl-125px.m8-symbol-fixed>img {
        width: 125px;
        height: 125px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-125px.m8-symbol-2by3 .m8-symbol-label {
        height: 125px;
        width: 187.5px
    }

    .m8-symbol.m8-symbol-xl-125px.m8-symbol-2by3>img {
        height: 125px;
        width: 187.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-150px>img {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-xl-150px .m8-symbol-label {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-xl-150px.m8-symbol-fixed .m8-symbol-label {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-xl-150px.m8-symbol-fixed>img {
        width: 150px;
        height: 150px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-150px.m8-symbol-2by3 .m8-symbol-label {
        height: 150px;
        width: 225px
    }

    .m8-symbol.m8-symbol-xl-150px.m8-symbol-2by3>img {
        height: 150px;
        width: 225px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-160px>img {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-xl-160px .m8-symbol-label {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-xl-160px.m8-symbol-fixed .m8-symbol-label {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-xl-160px.m8-symbol-fixed>img {
        width: 160px;
        height: 160px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-160px.m8-symbol-2by3 .m8-symbol-label {
        height: 160px;
        width: 240px
    }

    .m8-symbol.m8-symbol-xl-160px.m8-symbol-2by3>img {
        height: 160px;
        width: 240px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-175px>img {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-xl-175px .m8-symbol-label {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-xl-175px.m8-symbol-fixed .m8-symbol-label {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-xl-175px.m8-symbol-fixed>img {
        width: 175px;
        height: 175px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-175px.m8-symbol-2by3 .m8-symbol-label {
        height: 175px;
        width: 262.5px
    }

    .m8-symbol.m8-symbol-xl-175px.m8-symbol-2by3>img {
        height: 175px;
        width: 262.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-200px>img {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-xl-200px .m8-symbol-label {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-xl-200px.m8-symbol-fixed .m8-symbol-label {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-xl-200px.m8-symbol-fixed>img {
        width: 200px;
        height: 200px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xl-200px.m8-symbol-2by3 .m8-symbol-label {
        height: 200px;
        width: 300px
    }

    .m8-symbol.m8-symbol-xl-200px.m8-symbol-2by3>img {
        height: 200px;
        width: 300px;
        max-width: none
    }
}

@media (min-width:1400px) {
    .m8-symbol.m8-symbol-xxl-20px>img {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-xxl-20px .m8-symbol-label {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-xxl-20px.m8-symbol-fixed .m8-symbol-label {
        width: 20px;
        height: 20px
    }

    .m8-symbol.m8-symbol-xxl-20px.m8-symbol-fixed>img {
        width: 20px;
        height: 20px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-20px.m8-symbol-2by3 .m8-symbol-label {
        height: 20px;
        width: 30px
    }

    .m8-symbol.m8-symbol-xxl-20px.m8-symbol-2by3>img {
        height: 20px;
        width: 30px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-25px>img {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-xxl-25px .m8-symbol-label {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-xxl-25px.m8-symbol-fixed .m8-symbol-label {
        width: 25px;
        height: 25px
    }

    .m8-symbol.m8-symbol-xxl-25px.m8-symbol-fixed>img {
        width: 25px;
        height: 25px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-25px.m8-symbol-2by3 .m8-symbol-label {
        height: 25px;
        width: 37.5px
    }

    .m8-symbol.m8-symbol-xxl-25px.m8-symbol-2by3>img {
        height: 25px;
        width: 37.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-30px>img {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-xxl-30px .m8-symbol-label {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-xxl-30px.m8-symbol-fixed .m8-symbol-label {
        width: 30px;
        height: 30px
    }

    .m8-symbol.m8-symbol-xxl-30px.m8-symbol-fixed>img {
        width: 30px;
        height: 30px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-30px.m8-symbol-2by3 .m8-symbol-label {
        height: 30px;
        width: 45px
    }

    .m8-symbol.m8-symbol-xxl-30px.m8-symbol-2by3>img {
        height: 30px;
        width: 45px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-35px>img {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-xxl-35px .m8-symbol-label {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-xxl-35px.m8-symbol-fixed .m8-symbol-label {
        width: 35px;
        height: 35px
    }

    .m8-symbol.m8-symbol-xxl-35px.m8-symbol-fixed>img {
        width: 35px;
        height: 35px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-35px.m8-symbol-2by3 .m8-symbol-label {
        height: 35px;
        width: 52.5px
    }

    .m8-symbol.m8-symbol-xxl-35px.m8-symbol-2by3>img {
        height: 35px;
        width: 52.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-40px>img {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-xxl-40px .m8-symbol-label {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-xxl-40px.m8-symbol-fixed .m8-symbol-label {
        width: 40px;
        height: 40px
    }

    .m8-symbol.m8-symbol-xxl-40px.m8-symbol-fixed>img {
        width: 40px;
        height: 40px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-40px.m8-symbol-2by3 .m8-symbol-label {
        height: 40px;
        width: 60px
    }

    .m8-symbol.m8-symbol-xxl-40px.m8-symbol-2by3>img {
        height: 40px;
        width: 60px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-45px>img {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-xxl-45px .m8-symbol-label {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-xxl-45px.m8-symbol-fixed .m8-symbol-label {
        width: 45px;
        height: 45px
    }

    .m8-symbol.m8-symbol-xxl-45px.m8-symbol-fixed>img {
        width: 45px;
        height: 45px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-45px.m8-symbol-2by3 .m8-symbol-label {
        height: 45px;
        width: 67.5px
    }

    .m8-symbol.m8-symbol-xxl-45px.m8-symbol-2by3>img {
        height: 45px;
        width: 67.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-50px>img {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-xxl-50px .m8-symbol-label {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-xxl-50px.m8-symbol-fixed .m8-symbol-label {
        width: 50px;
        height: 50px
    }

    .m8-symbol.m8-symbol-xxl-50px.m8-symbol-fixed>img {
        width: 50px;
        height: 50px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-50px.m8-symbol-2by3 .m8-symbol-label {
        height: 50px;
        width: 75px
    }

    .m8-symbol.m8-symbol-xxl-50px.m8-symbol-2by3>img {
        height: 50px;
        width: 75px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-55px>img {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-xxl-55px .m8-symbol-label {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-xxl-55px.m8-symbol-fixed .m8-symbol-label {
        width: 55px;
        height: 55px
    }

    .m8-symbol.m8-symbol-xxl-55px.m8-symbol-fixed>img {
        width: 55px;
        height: 55px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-55px.m8-symbol-2by3 .m8-symbol-label {
        height: 55px;
        width: 82.5px
    }

    .m8-symbol.m8-symbol-xxl-55px.m8-symbol-2by3>img {
        height: 55px;
        width: 82.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-60px>img {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-xxl-60px .m8-symbol-label {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-xxl-60px.m8-symbol-fixed .m8-symbol-label {
        width: 60px;
        height: 60px
    }

    .m8-symbol.m8-symbol-xxl-60px.m8-symbol-fixed>img {
        width: 60px;
        height: 60px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-60px.m8-symbol-2by3 .m8-symbol-label {
        height: 60px;
        width: 90px
    }

    .m8-symbol.m8-symbol-xxl-60px.m8-symbol-2by3>img {
        height: 60px;
        width: 90px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-65px>img {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-xxl-65px .m8-symbol-label {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-xxl-65px.m8-symbol-fixed .m8-symbol-label {
        width: 65px;
        height: 65px
    }

    .m8-symbol.m8-symbol-xxl-65px.m8-symbol-fixed>img {
        width: 65px;
        height: 65px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-65px.m8-symbol-2by3 .m8-symbol-label {
        height: 65px;
        width: 97.5px
    }

    .m8-symbol.m8-symbol-xxl-65px.m8-symbol-2by3>img {
        height: 65px;
        width: 97.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-70px>img {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-xxl-70px .m8-symbol-label {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-xxl-70px.m8-symbol-fixed .m8-symbol-label {
        width: 70px;
        height: 70px
    }

    .m8-symbol.m8-symbol-xxl-70px.m8-symbol-fixed>img {
        width: 70px;
        height: 70px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-70px.m8-symbol-2by3 .m8-symbol-label {
        height: 70px;
        width: 105px
    }

    .m8-symbol.m8-symbol-xxl-70px.m8-symbol-2by3>img {
        height: 70px;
        width: 105px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-75px>img {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-xxl-75px .m8-symbol-label {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-xxl-75px.m8-symbol-fixed .m8-symbol-label {
        width: 75px;
        height: 75px
    }

    .m8-symbol.m8-symbol-xxl-75px.m8-symbol-fixed>img {
        width: 75px;
        height: 75px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-75px.m8-symbol-2by3 .m8-symbol-label {
        height: 75px;
        width: 112.5px
    }

    .m8-symbol.m8-symbol-xxl-75px.m8-symbol-2by3>img {
        height: 75px;
        width: 112.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-90px>img {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-xxl-90px .m8-symbol-label {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-xxl-90px.m8-symbol-fixed .m8-symbol-label {
        width: 90px;
        height: 90px
    }

    .m8-symbol.m8-symbol-xxl-90px.m8-symbol-fixed>img {
        width: 90px;
        height: 90px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-90px.m8-symbol-2by3 .m8-symbol-label {
        height: 90px;
        width: 135px
    }

    .m8-symbol.m8-symbol-xxl-90px.m8-symbol-2by3>img {
        height: 90px;
        width: 135px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-100px>img {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-xxl-100px .m8-symbol-label {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-xxl-100px.m8-symbol-fixed .m8-symbol-label {
        width: 100px;
        height: 100px
    }

    .m8-symbol.m8-symbol-xxl-100px.m8-symbol-fixed>img {
        width: 100px;
        height: 100px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-100px.m8-symbol-2by3 .m8-symbol-label {
        height: 100px;
        width: 150px
    }

    .m8-symbol.m8-symbol-xxl-100px.m8-symbol-2by3>img {
        height: 100px;
        width: 150px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-125px>img {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-xxl-125px .m8-symbol-label {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-xxl-125px.m8-symbol-fixed .m8-symbol-label {
        width: 125px;
        height: 125px
    }

    .m8-symbol.m8-symbol-xxl-125px.m8-symbol-fixed>img {
        width: 125px;
        height: 125px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-125px.m8-symbol-2by3 .m8-symbol-label {
        height: 125px;
        width: 187.5px
    }

    .m8-symbol.m8-symbol-xxl-125px.m8-symbol-2by3>img {
        height: 125px;
        width: 187.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-150px>img {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-xxl-150px .m8-symbol-label {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-xxl-150px.m8-symbol-fixed .m8-symbol-label {
        width: 150px;
        height: 150px
    }

    .m8-symbol.m8-symbol-xxl-150px.m8-symbol-fixed>img {
        width: 150px;
        height: 150px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-150px.m8-symbol-2by3 .m8-symbol-label {
        height: 150px;
        width: 225px
    }

    .m8-symbol.m8-symbol-xxl-150px.m8-symbol-2by3>img {
        height: 150px;
        width: 225px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-160px>img {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-xxl-160px .m8-symbol-label {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-xxl-160px.m8-symbol-fixed .m8-symbol-label {
        width: 160px;
        height: 160px
    }

    .m8-symbol.m8-symbol-xxl-160px.m8-symbol-fixed>img {
        width: 160px;
        height: 160px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-160px.m8-symbol-2by3 .m8-symbol-label {
        height: 160px;
        width: 240px
    }

    .m8-symbol.m8-symbol-xxl-160px.m8-symbol-2by3>img {
        height: 160px;
        width: 240px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-175px>img {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-xxl-175px .m8-symbol-label {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-xxl-175px.m8-symbol-fixed .m8-symbol-label {
        width: 175px;
        height: 175px
    }

    .m8-symbol.m8-symbol-xxl-175px.m8-symbol-fixed>img {
        width: 175px;
        height: 175px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-175px.m8-symbol-2by3 .m8-symbol-label {
        height: 175px;
        width: 262.5px
    }

    .m8-symbol.m8-symbol-xxl-175px.m8-symbol-2by3>img {
        height: 175px;
        width: 262.5px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-200px>img {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-xxl-200px .m8-symbol-label {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-xxl-200px.m8-symbol-fixed .m8-symbol-label {
        width: 200px;
        height: 200px
    }

    .m8-symbol.m8-symbol-xxl-200px.m8-symbol-fixed>img {
        width: 200px;
        height: 200px;
        max-width: none
    }

    .m8-symbol.m8-symbol-xxl-200px.m8-symbol-2by3 .m8-symbol-label {
        height: 200px;
        width: 300px
    }

    .m8-symbol.m8-symbol-xxl-200px.m8-symbol-2by3>img {
        height: 200px;
        width: 300px;
        max-width: none
    }
}

.m8-symbol-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 10px
}

.m8-symbol-group .m8-symbol {
    position: relative;
    z-index: 0;
    margin-left: -10px;
    transition: all .3s ease
}

.m8-symbol-group .m8-symbol:hover {
    transition: all .3s ease;
    z-index: 1
}

.m8-symbol-group .m8-symbol-badge {
    border: 2px solid var(--body-bg)
}

.m8-symbol-group .m8-symbol-label {
    position: relative
}

.m8-symbol-group .m8-symbol-label:after {
    display: block;
    content: " ";
    border-radius: inherit;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border: 2px solid var(--symbol-border-color);
    -webkit-background-clip: padding-box;
    background-clip: padding-box
}

.m8-symbol-group.m8-symbol-hover .m8-symbol {
    cursor: pointer
}


.m8-pagination {
    --pagination-padding-x: 0.75rem;
    --pagination-padding-y: 0.375rem;
    --pagination-font-size: 1.075rem;
    --pagination-color: var(--gray-700);
    --pagination-bg: transparent;
    --pagination-border-width: 0;
    --pagination-border-color: transparent;
    --pagination-border-radius: 0.475rem;
    --pagination-hover-color: var(--component-hover-color);
    --pagination-hover-bg: var(--component-hover-bg);
    --pagination-hover-border-color: transparent;
    --pagination-focus-color: var(--component-hover-color);
    --pagination-focus-bg: var(--component-hover-bg);
    --pagination-focus-box-shadow: none;
    --pagination-active-color: var(--component-active-color);
    --pagination-active-bg: var(--component-active-bg);
    --pagination-active-border-color: transparent;
    --pagination-disabled-color: var(--gray-400);
    --pagination-disabled-bg: transparent;
    --pagination-disabled-border-color: transparent;
    display: flex;
    padding-left: 0;
    list-style: none
}

.m8-page-link {
    position: relative;
    display: block;
    padding: var(--pagination-padding-y) var(--pagination-padding-x);
    font-size: var(--pagination-font-size);
    color: var(--pagination-color);
    background-color: var(--pagination-bg);
    border: var(--pagination-border-width) solid var(--pagination-border-color);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .m8-page-link {
        transition: none
    }
}

.m8-page-link:hover {
    z-index: 2;
    color: var(--pagination-hover-color);
    background-color: var(--pagination-hover-bg);
    border-color: var(--pagination-hover-border-color)
}

.m8-page-link:focus {
    z-index: 3;
    color: var(--pagination-focus-color);
    background-color: var(--pagination-focus-bg);
    outline: 0;
    box-shadow: var(--pagination-focus-box-shadow)
}

.active>.m8-page-link,
.m8-page-link.active {
    z-index: 3;
    color: var(--pagination-active-color);
    background-color: var(--pagination-active-bg);
    border-color: var(--pagination-active-border-color)
}

.disabled>.m8-page-link,
.m8-page-link.disabled {
    color: var(--pagination-disabled-color);
    pointer-events: none;
    background-color: var(--pagination-disabled-bg);
    border-color: var(--pagination-disabled-border-color)
}

.m8-page-item:not(:first-child) .m8-page-link {
    margin-left: calc(0 * -1)
}

.m8-page-item:first-child .m8-page-link {
    border-top-left-radius: var(--pagination-border-radius);
    border-bottom-left-radius: var(--pagination-border-radius)
}

.m8-page-item:last-child .m8-page-link {
    border-top-right-radius: var(--pagination-border-radius);
    border-bottom-right-radius: var(--pagination-border-radius)
}

.m8-pagination-lg {
    --pagination-padding-x: 1.5rem;
    --pagination-padding-y: 0.75rem;
    --pagination-font-size: 1.075rem;
    --pagination-border-radius: var(--border-radius-lg)
}

.m8-pagination-sm {
    --pagination-padding-x: 0.5rem;
    --pagination-padding-y: 0.25rem;
    --pagination-font-size: 0.95rem;
    --pagination-border-radius: var(--border-radius-sm)
}

.m8-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0
}

.m8-pagination.m8-pagination-circle .m8-page-link {
    border-radius: 50%
}

.m8-pagination.m8-pagination-outline .m8-page-link {
    border: 1px solid var(--border-color)
}

.m8-pagination.m8-pagination-outline .m8-page-item.active .m8-page-link,
.m8-pagination.m8-pagination-outline .m8-page-item:hover:not(.disabled) .m8-page-link {
    border-color: var(--primary-light)
}

.m8-page-item {
    margin-right: .5rem
}

.m8-page-item:last-child {
    margin-right: 0
}

.m8-page-item .m8-page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .475rem;
    height: 2.5rem;
    min-width: 2.5rem;
    font-weight: 500;
    font-size: 1.075rem
}

.m8-page-item .m8-page-link i {
    font-size: .85rem
}

.m8-page-item .m8-page-link .next,
.m8-page-item .m8-page-link .previous {
    display: block;
    height: .875rem;
    width: .875rem
}

.m8-page-item .m8-page-link .first {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-700);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-700%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-700%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e")
}

.m8-page-item .m8-page-link .previous {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-700);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-700%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-700%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e")
}

.m8-page-item .m8-page-link .next {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-700);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-700%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-700%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-page-item .m8-page-link .last {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-700);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-700%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-700%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-page-item:focus .m8-page-link {
    color: var(--pagination-focus-color)
}

.m8-page-item:focus .m8-page-link .svg-icon,
.m8-page-item:focus .m8-page-link i {
    color: var(--pagination-focus-color)
}

.m8-page-item:focus .m8-page-link .previous {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--pagination-focus-color);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-focus-color%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-focus-color%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e")
}

.m8-page-item:focus .m8-page-link .next {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--pagination-focus-color);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-focus-color%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-focus-color%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-page-item:hover:not(.active):not(.offset):not(.disabled) .m8-page-link {
    color: var(--pagination-hover-color)
}

.m8-page-item:hover:not(.active):not(.offset):not(.disabled) .m8-page-link.m8-page-text {
    background-color: transparent
}

.m8-page-item:hover:not(.active):not(.offset):not(.disabled) .m8-page-link .svg-icon,
.m8-page-item:hover:not(.active):not(.offset):not(.disabled) .m8-page-link i {
    color: var(--pagination-hover-color)
}

.m8-page-item:hover:not(.active):not(.offset):not(.disabled) .m8-page-link .previous {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--pagination-hover-color);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-hover-color%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-hover-color%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e")
}

.m8-page-item:hover:not(.active):not(.offset):not(.disabled) .m8-page-link .next {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--pagination-hover-color);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-hover-color%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-hover-color%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-page-item.active .m8-page-link {
    color: var(--pagination-active-color)
}

.m8-page-item.active .m8-page-link.m8-page-text {
    background-color: transparent
}

.m8-page-item.active .m8-page-link .svg-icon,
.m8-page-item.active .m8-page-link i {
    color: var(--pagination-active-color)
}

.m8-page-item.active .m8-page-link .previous {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--pagination-active-color);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-active-color%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-active-color%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e")
}

.m8-page-item.active .m8-page-link .next {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--pagination-active-color);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-active-color%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-active-color%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-page-item.disabled .m8-page-link {
    color: var(--pagination-disabled-color)
}

.m8-page-item.disabled .m8-page-link .svg-icon,
.m8-page-item.disabled .m8-page-link i {
    color: var(--pagination-disabled-color)
}

.m8-page-item.disabled .m8-page-link .previous {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--pagination-disabled-color);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-disabled-color%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-disabled-color%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e")
}

.m8-page-item.disabled .m8-page-link .next {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--pagination-disabled-color);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-disabled-color%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--pagination-disabled-color%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

@media (max-width:991.98px) {
    .m8-page-item {
        margin-right: .25rem
    }

    .m8-page-item:last-child {
        margin-right: 0
    }
}

.m8-separator {
    display: block;
    height: 0;
    border-bottom: 1px solid var(--border-color)
}

.m8-separator.m8-separator-dotted {
    border-bottom-style: dotted;
    border-bottom-color: var(--border-dashed-color)
}

.m8-separator.m8-separator-dashed {
    border-bottom-style: dashed;
    border-bottom-color: var(--border-dashed-color)
}

.m8-separator.m8-separator-content {
    display: flex;
    align-items: center;
    border-bottom: 0;
    text-align: center
}

.m8-separator.m8-separator-content::after,
.m8-separator.m8-separator-content::before {
    content: " ";
    width: 50%;
    border-bottom: 1px solid var(--border-color)
}

.m8-separator.m8-separator-content::before {
    margin-right: 1.25rem
}

.m8-separator.m8-separator-content::after {
    margin-left: 1.25rem
}

.m8-separator.m8-separator-content.m8-separator-dotted::after,
.m8-separator.m8-separator-content.m8-separator-dotted::before {
    border-bottom-style: dotted;
    border-bottom-color: var(--border-dashed-color)
}

.m8-separator.m8-separator-content.m8-separator-dashed::after,
.m8-separator.m8-separator-content.m8-separator-dashed::before {
    border-bottom-style: dashed;
    border-bottom-color: var(--border-dashed-color)
}

.m8-separator.m8-separator-content.m8-border-light::after,
.m8-separator.m8-separator-content.m8-border-light::before {
    border-color: #f9f9f9 !important
}

.m8-separator.m8-separator-content.m8-border-primary::after,
.m8-separator.m8-separator-content.m8-border-primary::before {
    border-color: #1b84ff !important
}

.m8-separator.m8-separator-content.m8-border-secondary::after,
.m8-separator.m8-separator-content.m8-border-secondary::before {
    border-color: #f1f1f4 !important
}

.m8-separator.m8-separator-content.m8-border-success::after,
.m8-separator.m8-separator-content.m8-border-success::before {
    border-color: #17c653 !important
}

.m8-separator.m8-separator-content.m8-border-info::after,
.m8-separator.m8-separator-content.m8-border-info::before {
    border-color: #7239ea !important
}

.m8-separator.m8-separator-content.m8-border-warning::after,
.m8-separator.m8-separator-content.m8-border-warning::before {
    border-color: #f6c000 !important
}

.m8-separator.m8-separator-content.m8-border-danger::after,
.m8-separator.m8-separator-content.m8-border-danger::before {
    border-color: #f8285a !important
}

.m8-separator.m8-separator-content.m8-border-dark::after,
.m8-separator.m8-separator-content.m8-border-dark::before {
    border-color: #1e2129 !important
}


.m8-btn {
    --btn-color: var(--body-color);
    outline: 0 !important
}

.m8-btn:not(.m8-btn-shadow):not(.m8-shadow):not(.m8-shadow-sm):not(.m8-shadow-lg):not(.m8-shadow-xs) {
    box-shadow: none
}

.m8-btn:not(.m8-btn-outline):not(.m8-btn-dashed):not(.m8-btn-bordered):not(.m8-border-hover):not(.m8-border-active):not(.m8-btn-flush):not(.m8-btn-icon):not(.m8-btn-hover-outline) {
    border: 0;
    padding: calc(.775rem + 1px) calc(1.5rem + 1px)
}

.m8-btn-group-lg>.m8-btn:not(.m8-btn-outline):not(.m8-btn-dashed):not(.m8-btn-bordered):not(.m8-border-hover):not(.m8-border-active):not(.m8-btn-flush):not(.m8-btn-icon):not(.m8-btn-hover-outline),
.m8-btn:not(.m8-btn-outline):not(.m8-btn-dashed):not(.m8-btn-bordered):not(.m8-border-hover):not(.m8-border-active):not(.m8-btn-flush):not(.m8-btn-icon):not(.m8-btn-hover-outline).m8-btn-lg {
    padding: calc(.825rem + 1px) calc(1.75rem + 1px)
}

.m8-btn-group-sm>.m8-btn:not(.m8-btn-outline):not(.m8-btn-dashed):not(.m8-btn-bordered):not(.m8-border-hover):not(.m8-border-active):not(.m8-btn-flush):not(.m8-btn-icon):not(.m8-btn-hover-outline),
.m8-btn:not(.m8-btn-outline):not(.m8-btn-dashed):not(.m8-btn-bordered):not(.m8-border-hover):not(.m8-border-active):not(.m8-btn-flush):not(.m8-btn-icon):not(.m8-btn-hover-outline).m8-btn-sm {
    padding: calc(.55rem + 1px) calc(1rem + 1px)
}

.m8-btn.m8-btn-link {
    border: 0;
    border-radius: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-decoration: none;
    font-weight: 500
}

.m8-btn.m8-btn-outline:not(.m8-btn-outline-dashed) {
    border: 1px solid var(--gray-300)
}

.m8-btn.m8-btn-outline-dashed {
    border: 1px dashed var(--gray-300)
}

.m8-btn.m8-btn-flush {
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    cursor: pointer;
    background-color: transparent;
    outline: 0 !important;
    margin: 0;
    padding: 0
}

.m8-btn.m8-btn-flex {
    display: inline-flex;
    align-items: center
}

.m8-btn.m8-btn-trim-start {
    justify-content: flex-start !important;
    padding-left: 0 !important
}

.m8-btn.m8-btn-trim-end {
    justify-content: flex-end !important;
    padding-right: 0 !important
}

.m8-btn-reset {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    user-select: none;
    outline: 0
}

.m8-btn>i {
    display: inline-flex;
    font-size: 1rem;
    padding-right: .35rem;
    vertical-align: middle
}

.m8-btn.m8-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: calc(1.5em + 1.55rem + 2px);
    width: calc(1.5em + 1.55rem + 2px);
    line-height: 1
}

.m8-btn.m8-btn-icon i {
    padding-right: 0
}

.m8-btn.m8-btn-icon:not(.m8-btn-outline):not(.m8-btn-dashed):not(.m8-border-hover):not(.m8-border-active):not(.m8-btn-flush) {
    border: 0
}

.m8-btn-group-sm>.m8-btn.m8-btn-icon,
.m8-btn.m8-btn-icon.m8-btn-sm {
    height: calc(1.5em + 1.1rem + 2px);
    width: calc(1.5em + 1.1rem + 2px)
}

.m8-btn-group-lg>.m8-btn.m8-btn-icon,
.m8-btn.m8-btn-icon.m8-btn-lg {
    height: calc(1.5em + 1.65rem + 2px);
    width: calc(1.5em + 1.65rem + 2px)
}

.m8-btn.m8-btn-icon.m8-btn-circle {
    border-radius: 50%
}

.m8-btn.m8-btn-outline.m8-btn-outline-dashed {
    border-width: 1px;
    border-style: dashed
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-dashed,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-dashed,
.m8-btn.m8-btn-outline.m8-btn-outline-dashed.active,
.m8-btn.m8-btn-outline.m8-btn-outline-dashed.show,
.m8-btn.m8-btn-outline.m8-btn-outline-dashed:active:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-dashed:focus:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-dashed:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-outline.m8-btn-outline-dashed {
    border-color: var(--primary)
}

.m8-btn.m8-btn-hover-outline {
    border-width: 1px;
    border-style: solid
}

.m8-btn-check:active+.m8-btn.m8-btn-hover-outline,
.m8-btn-check:checked+.m8-btn.m8-btn-hover-outline,
.m8-btn.m8-btn-hover-outline.active,
.m8-btn.m8-btn-hover-outline.show,
.m8-btn.m8-btn-hover-outline:active:not(.m8-btn-active),
.m8-btn.m8-btn-hover-outline:focus:not(.m8-btn-active),
.m8-btn.m8-btn-hover-outline:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-hover-outline {
    border-color: var(--gray-300)
}

.m8-btn.m8-btn-light {
    color: var(--light-inverse);
    border-color: var(--light);
    background-color: var(--light)
}

.m8-btn.m8-btn-light .svg-icon,
.m8-btn.m8-btn-light i {
    color: var(--light-inverse)
}

.m8-btn.m8-btn-light.dropdown-toggle:after {
    color: var(--light-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-light,
.m8-btn-check:checked+.m8-btn.m8-btn-light,
.m8-btn.m8-btn-light.active,
.m8-btn.m8-btn-light.show,
.m8-btn.m8-btn-light:active:not(.m8-btn-active),
.m8-btn.m8-btn-light:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light {
    color: var(--light-inverse);
    border-color: var(--light-active);
    background-color: var(--light-active) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light i,
.m8-btn-check:checked+.m8-btn.m8-btn-light .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light i,
.m8-btn.m8-btn-light.active .svg-icon,
.m8-btn.m8-btn-light.active i,
.m8-btn.m8-btn-light.show .svg-icon,
.m8-btn.m8-btn-light.show i,
.m8-btn.m8-btn-light:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light .svg-icon,
.show>.m8-btn.m8-btn-light i {
    color: var(--light-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-light.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light.dropdown-toggle:after,
.m8-btn.m8-btn-light.active.dropdown-toggle:after,
.m8-btn.m8-btn-light.show.dropdown-toggle:after,
.m8-btn.m8-btn-light:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light.dropdown-toggle:after {
    color: var(--light-inverse)
}

.m8-btn.m8-btn-light-light {
    color: var(--light);
    border-color: var(--light-light);
    background-color: var(--light-light)
}

.m8-btn.m8-btn-light-light .svg-icon,
.m8-btn.m8-btn-light-light i {
    color: var(--light)
}

.m8-btn.m8-btn-light-light.dropdown-toggle:after {
    color: var(--light)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-light,
.m8-btn-check:checked+.m8-btn.m8-btn-light-light,
.m8-btn.m8-btn-light-light.active,
.m8-btn.m8-btn-light-light.show,
.m8-btn.m8-btn-light-light:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-light:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-light:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-light {
    color: var(--light-inverse);
    border-color: var(--light);
    background-color: var(--light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-light .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-light i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-light .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-light i,
.m8-btn.m8-btn-light-light.active .svg-icon,
.m8-btn.m8-btn-light-light.active i,
.m8-btn.m8-btn-light-light.show .svg-icon,
.m8-btn.m8-btn-light-light.show i,
.m8-btn.m8-btn-light-light:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-light:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-light:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-light:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-light:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-light:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-light .svg-icon,
.show>.m8-btn.m8-btn-light-light i {
    color: var(--light-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-light.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-light.dropdown-toggle:after,
.m8-btn.m8-btn-light-light.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-light.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-light:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-light:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-light:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-light.dropdown-toggle:after {
    color: var(--light-inverse)
}

.m8-btn.m8-btn-bg-light {
    border-color: var(--light);
    background-color: var(--light)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light,
.m8-btn.m8-btn-active-light.active,
.m8-btn.m8-btn-active-light.show,
.m8-btn.m8-btn-active-light:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-light:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-light:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-light {
    color: var(--light-inverse);
    border-color: var(--light);
    background-color: var(--light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-light i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light i,
.m8-btn.m8-btn-active-light.active .svg-icon,
.m8-btn.m8-btn-active-light.active i,
.m8-btn.m8-btn-active-light.show .svg-icon,
.m8-btn.m8-btn-active-light.show i,
.m8-btn.m8-btn-active-light:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-light .svg-icon,
.show>.m8-btn.m8-btn-active-light i {
    color: var(--light-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light.dropdown-toggle:after,
.m8-btn.m8-btn-active-light.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-light.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-light:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-light.dropdown-toggle:after {
    color: var(--light-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-light,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-light,
.m8-btn.m8-btn-active-light-light.active,
.m8-btn.m8-btn-active-light-light.show,
.m8-btn.m8-btn-active-light-light:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-light:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-light:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-light-light {
    color: var(--light);
    border-color: var(--light-light);
    background-color: var(--light-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-light .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-light-light i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-light .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-light i,
.m8-btn.m8-btn-active-light-light.active .svg-icon,
.m8-btn.m8-btn-active-light-light.active i,
.m8-btn.m8-btn-active-light-light.show .svg-icon,
.m8-btn.m8-btn-active-light-light.show i,
.m8-btn.m8-btn-active-light-light:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-light:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-light:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-light:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-light:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-light:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-light-light .svg-icon,
.show>.m8-btn.m8-btn-active-light-light i {
    color: var(--light)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-light.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-light.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-light.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-light.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-light:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-light:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-light:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-light-light.dropdown-toggle:after {
    color: var(--light)
}

.m8-btn.m8-btn-outline.m8-btn-outline-light {
    color: var(--light);
    border-color: var(--light);
    background-color: transparent
}

.m8-btn.m8-btn-outline.m8-btn-outline-light .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-light i {
    color: var(--light)
}

.m8-btn.m8-btn-outline.m8-btn-outline-light.dropdown-toggle:after {
    color: var(--light)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-light,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-light,
.m8-btn.m8-btn-outline.m8-btn-outline-light.active,
.m8-btn.m8-btn-outline.m8-btn-outline-light.show,
.m8-btn.m8-btn-outline.m8-btn-outline-light:active:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-light:focus:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-light:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-outline.m8-btn-outline-light {
    color: var(--light-active);
    border-color: var(--light);
    background-color: var(--light-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-light .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-light i,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-light .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-light i,
.m8-btn.m8-btn-outline.m8-btn-outline-light.active .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-light.active i,
.m8-btn.m8-btn-outline.m8-btn-outline-light.show .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-light.show i,
.m8-btn.m8-btn-outline.m8-btn-outline-light:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-light:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-light:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-light:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-light:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-light:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-light .svg-icon,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-light i {
    color: var(--light-active)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-light.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-light.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-light.active.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-light.show.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-light:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-light:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-light:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-light.dropdown-toggle:after {
    color: var(--light-active)
}

.m8-btn.m8-btn-primary {
    color: var(--primary-inverse);
    border-color: var(--primary);
    background-color: var(--primary)
}

.m8-btn.m8-btn-primary .svg-icon,
.m8-btn.m8-btn-primary i {
    color: var(--primary-inverse)
}

.m8-btn.m8-btn-primary.dropdown-toggle:after {
    color: var(--primary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-primary,
.m8-btn-check:checked+.m8-btn.m8-btn-primary,
.m8-btn.m8-btn-primary.active,
.m8-btn.m8-btn-primary.show,
.m8-btn.m8-btn-primary:active:not(.m8-btn-active),
.m8-btn.m8-btn-primary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-primary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-primary {
    color: var(--primary-inverse);
    border-color: var(--primary-active);
    background-color: var(--primary-active) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-primary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-primary i,
.m8-btn-check:checked+.m8-btn.m8-btn-primary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-primary i,
.m8-btn.m8-btn-primary.active .svg-icon,
.m8-btn.m8-btn-primary.active i,
.m8-btn.m8-btn-primary.show .svg-icon,
.m8-btn.m8-btn-primary.show i,
.m8-btn.m8-btn-primary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-primary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-primary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-primary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-primary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-primary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-primary .svg-icon,
.show>.m8-btn.m8-btn-primary i {
    color: var(--primary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-primary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-primary.dropdown-toggle:after,
.m8-btn.m8-btn-primary.active.dropdown-toggle:after,
.m8-btn.m8-btn-primary.show.dropdown-toggle:after,
.m8-btn.m8-btn-primary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-primary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-primary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-primary.dropdown-toggle:after {
    color: var(--primary-inverse)
}

.m8-btn.m8-btn-light-primary {
    color: var(--primary);
    border-color: var(--primary-light);
    background-color: var(--primary-light)
}

.m8-btn.m8-btn-light-primary .svg-icon,
.m8-btn.m8-btn-light-primary i {
    color: var(--primary)
}

.m8-btn.m8-btn-light-primary.dropdown-toggle:after {
    color: var(--primary)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-primary,
.m8-btn-check:checked+.m8-btn.m8-btn-light-primary,
.m8-btn.m8-btn-light-primary.active,
.m8-btn.m8-btn-light-primary.show,
.m8-btn.m8-btn-light-primary:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-primary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-primary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-primary {
    color: var(--primary-inverse);
    border-color: var(--primary);
    background-color: var(--primary) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-primary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-primary i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-primary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-primary i,
.m8-btn.m8-btn-light-primary.active .svg-icon,
.m8-btn.m8-btn-light-primary.active i,
.m8-btn.m8-btn-light-primary.show .svg-icon,
.m8-btn.m8-btn-light-primary.show i,
.m8-btn.m8-btn-light-primary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-primary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-primary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-primary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-primary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-primary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-primary .svg-icon,
.show>.m8-btn.m8-btn-light-primary i {
    color: var(--primary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-primary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-primary.dropdown-toggle:after,
.m8-btn.m8-btn-light-primary.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-primary.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-primary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-primary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-primary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-primary.dropdown-toggle:after {
    color: var(--primary-inverse)
}

.m8-btn.m8-btn-bg-primary {
    border-color: var(--primary);
    background-color: var(--primary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-primary,
.m8-btn-check:checked+.m8-btn.m8-btn-active-primary,
.m8-btn.m8-btn-active-primary.active,
.m8-btn.m8-btn-active-primary.show,
.m8-btn.m8-btn-active-primary:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-primary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-primary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-primary {
    color: var(--primary-inverse);
    border-color: var(--primary);
    background-color: var(--primary) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-primary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-primary i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-primary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-primary i,
.m8-btn.m8-btn-active-primary.active .svg-icon,
.m8-btn.m8-btn-active-primary.active i,
.m8-btn.m8-btn-active-primary.show .svg-icon,
.m8-btn.m8-btn-active-primary.show i,
.m8-btn.m8-btn-active-primary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-primary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-primary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-primary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-primary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-primary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-primary .svg-icon,
.show>.m8-btn.m8-btn-active-primary i {
    color: var(--primary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-primary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-primary.dropdown-toggle:after,
.m8-btn.m8-btn-active-primary.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-primary.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-primary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-primary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-primary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-primary.dropdown-toggle:after {
    color: var(--primary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-primary,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-primary,
.m8-btn.m8-btn-active-light-primary.active,
.m8-btn.m8-btn-active-light-primary.show,
.m8-btn.m8-btn-active-light-primary:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-primary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-primary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-light-primary {
    color: var(--primary);
    border-color: var(--primary-light);
    background-color: var(--primary-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-primary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-light-primary i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-primary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-primary i,
.m8-btn.m8-btn-active-light-primary.active .svg-icon,
.m8-btn.m8-btn-active-light-primary.active i,
.m8-btn.m8-btn-active-light-primary.show .svg-icon,
.m8-btn.m8-btn-active-light-primary.show i,
.m8-btn.m8-btn-active-light-primary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-primary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-primary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-primary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-primary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-primary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-light-primary .svg-icon,
.show>.m8-btn.m8-btn-active-light-primary i {
    color: var(--primary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-primary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-primary.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-primary.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-primary.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-primary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-primary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-primary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-light-primary.dropdown-toggle:after {
    color: var(--primary)
}

.m8-btn.m8-btn-outline.m8-btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent
}

.m8-btn.m8-btn-outline.m8-btn-outline-primary .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-primary i {
    color: var(--primary)
}

.m8-btn.m8-btn-outline.m8-btn-outline-primary.dropdown-toggle:after {
    color: var(--primary)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-primary,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-primary,
.m8-btn.m8-btn-outline.m8-btn-outline-primary.active,
.m8-btn.m8-btn-outline.m8-btn-outline-primary.show,
.m8-btn.m8-btn-outline.m8-btn-outline-primary:active:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-primary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-primary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-outline.m8-btn-outline-primary {
    color: var(--primary-active);
    border-color: var(--primary);
    background-color: var(--primary-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-primary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-primary i,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-primary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-primary i,
.m8-btn.m8-btn-outline.m8-btn-outline-primary.active .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-primary.active i,
.m8-btn.m8-btn-outline.m8-btn-outline-primary.show .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-primary.show i,
.m8-btn.m8-btn-outline.m8-btn-outline-primary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-primary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-primary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-primary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-primary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-primary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-primary .svg-icon,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-primary i {
    color: var(--primary-active)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-primary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-primary.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-primary.active.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-primary.show.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-primary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-primary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-primary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-primary.dropdown-toggle:after {
    color: var(--primary-active)
}

.m8-btn.m8-btn-secondary {
    color: var(--secondary-inverse);
    border-color: var(--secondary);
    background-color: var(--secondary)
}

.m8-btn.m8-btn-secondary .svg-icon,
.m8-btn.m8-btn-secondary i {
    color: var(--secondary-inverse)
}

.m8-btn.m8-btn-secondary.dropdown-toggle:after {
    color: var(--secondary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-secondary,
.m8-btn-check:checked+.m8-btn.m8-btn-secondary,
.m8-btn.m8-btn-secondary.active,
.m8-btn.m8-btn-secondary.show,
.m8-btn.m8-btn-secondary:active:not(.m8-btn-active),
.m8-btn.m8-btn-secondary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-secondary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-secondary {
    color: var(--secondary-inverse);
    border-color: var(--secondary-active);
    background-color: var(--secondary-active) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-secondary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-secondary i,
.m8-btn-check:checked+.m8-btn.m8-btn-secondary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-secondary i,
.m8-btn.m8-btn-secondary.active .svg-icon,
.m8-btn.m8-btn-secondary.active i,
.m8-btn.m8-btn-secondary.show .svg-icon,
.m8-btn.m8-btn-secondary.show i,
.m8-btn.m8-btn-secondary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-secondary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-secondary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-secondary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-secondary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-secondary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-secondary .svg-icon,
.show>.m8-btn.m8-btn-secondary i {
    color: var(--secondary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-secondary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-secondary.dropdown-toggle:after,
.m8-btn.m8-btn-secondary.active.dropdown-toggle:after,
.m8-btn.m8-btn-secondary.show.dropdown-toggle:after,
.m8-btn.m8-btn-secondary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-secondary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-secondary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-secondary.dropdown-toggle:after {
    color: var(--secondary-inverse)
}

.m8-btn.m8-btn-light-secondary {
    color: var(--secondary-inverse);
    border-color: var(--secondary-light);
    background-color: var(--secondary-light)
}

.m8-btn.m8-btn-light-secondary .svg-icon,
.m8-btn.m8-btn-light-secondary i {
    color: var(--secondary-inverse)
}

.m8-btn.m8-btn-light-secondary.dropdown-toggle:after {
    color: var(--secondary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-secondary,
.m8-btn-check:checked+.m8-btn.m8-btn-light-secondary,
.m8-btn.m8-btn-light-secondary.active,
.m8-btn.m8-btn-light-secondary.show,
.m8-btn.m8-btn-light-secondary:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-secondary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-secondary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-secondary {
    color: var(--secondary-inverse);
    border-color: var(--secondary);
    background-color: var(--secondary) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-secondary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-secondary i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-secondary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-secondary i,
.m8-btn.m8-btn-light-secondary.active .svg-icon,
.m8-btn.m8-btn-light-secondary.active i,
.m8-btn.m8-btn-light-secondary.show .svg-icon,
.m8-btn.m8-btn-light-secondary.show i,
.m8-btn.m8-btn-light-secondary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-secondary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-secondary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-secondary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-secondary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-secondary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-secondary .svg-icon,
.show>.m8-btn.m8-btn-light-secondary i {
    color: var(--secondary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-secondary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-secondary.dropdown-toggle:after,
.m8-btn.m8-btn-light-secondary.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-secondary.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-secondary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-secondary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-secondary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-secondary.dropdown-toggle:after {
    color: var(--secondary-inverse)
}

.m8-btn.m8-btn-bg-secondary {
    border-color: var(--secondary);
    background-color: var(--secondary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-secondary,
.m8-btn-check:checked+.m8-btn.m8-btn-active-secondary,
.m8-btn.m8-btn-active-secondary.active,
.m8-btn.m8-btn-active-secondary.show,
.m8-btn.m8-btn-active-secondary:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-secondary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-secondary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-secondary {
    color: var(--secondary-inverse);
    border-color: var(--secondary);
    background-color: var(--secondary) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-secondary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-secondary i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-secondary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-secondary i,
.m8-btn.m8-btn-active-secondary.active .svg-icon,
.m8-btn.m8-btn-active-secondary.active i,
.m8-btn.m8-btn-active-secondary.show .svg-icon,
.m8-btn.m8-btn-active-secondary.show i,
.m8-btn.m8-btn-active-secondary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-secondary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-secondary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-secondary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-secondary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-secondary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-secondary .svg-icon,
.show>.m8-btn.m8-btn-active-secondary i {
    color: var(--secondary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-secondary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-secondary.dropdown-toggle:after,
.m8-btn.m8-btn-active-secondary.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-secondary.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-secondary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-secondary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-secondary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-secondary.dropdown-toggle:after {
    color: var(--secondary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-secondary,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-secondary,
.m8-btn.m8-btn-active-light-secondary.active,
.m8-btn.m8-btn-active-light-secondary.show,
.m8-btn.m8-btn-active-light-secondary:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-secondary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-secondary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-light-secondary {
    color: var(--secondary-inverse);
    border-color: var(--secondary-light);
    background-color: var(--secondary-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-secondary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-light-secondary i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-secondary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-secondary i,
.m8-btn.m8-btn-active-light-secondary.active .svg-icon,
.m8-btn.m8-btn-active-light-secondary.active i,
.m8-btn.m8-btn-active-light-secondary.show .svg-icon,
.m8-btn.m8-btn-active-light-secondary.show i,
.m8-btn.m8-btn-active-light-secondary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-secondary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-secondary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-secondary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-secondary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-secondary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-light-secondary .svg-icon,
.show>.m8-btn.m8-btn-active-light-secondary i {
    color: var(--secondary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-secondary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-secondary.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-secondary.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-secondary.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-secondary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-secondary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-secondary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-light-secondary.dropdown-toggle:after {
    color: var(--secondary-inverse)
}

.m8-btn.m8-btn-outline.m8-btn-outline-secondary {
    color: var(--secondary-inverse);
    border-color: var(--secondary-inverse);
    background-color: transparent
}

.m8-btn.m8-btn-outline.m8-btn-outline-secondary .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary i {
    color: var(--secondary-inverse)
}

.m8-btn.m8-btn-outline.m8-btn-outline-secondary.dropdown-toggle:after {
    color: var(--secondary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-secondary,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-secondary,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary.active,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary.show,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary:active:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-secondary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-secondary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-outline.m8-btn-outline-secondary {
    color: var(--secondary-inverse);
    border-color: var(--secondary-inverse);
    background-color: var(--secondary-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-secondary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-secondary i,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-secondary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-secondary i,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary.active .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary.active i,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary.show .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary.show i,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-secondary .svg-icon,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-secondary i {
    color: var(--secondary-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-secondary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-secondary.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary.active.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary.show.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-secondary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-secondary.dropdown-toggle:after {
    color: var(--secondary-inverse)
}

.m8-btn.m8-btn-success {
    color: var(--success-inverse);
    border-color: var(--success);
    background-color: var(--success)
}

.m8-btn.m8-btn-success .svg-icon,
.m8-btn.m8-btn-success i {
    color: var(--success-inverse)
}

.m8-btn.m8-btn-success.dropdown-toggle:after {
    color: var(--success-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-success,
.m8-btn-check:checked+.m8-btn.m8-btn-success,
.m8-btn.m8-btn-success.active,
.m8-btn.m8-btn-success.show,
.m8-btn.m8-btn-success:active:not(.m8-btn-active),
.m8-btn.m8-btn-success:focus:not(.m8-btn-active),
.m8-btn.m8-btn-success:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-success {
    color: var(--success-inverse);
    border-color: var(--success-active);
    background-color: var(--success-active) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-success .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-success i,
.m8-btn-check:checked+.m8-btn.m8-btn-success .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-success i,
.m8-btn.m8-btn-success.active .svg-icon,
.m8-btn.m8-btn-success.active i,
.m8-btn.m8-btn-success.show .svg-icon,
.m8-btn.m8-btn-success.show i,
.m8-btn.m8-btn-success:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-success:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-success:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-success:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-success:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-success:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-success .svg-icon,
.show>.m8-btn.m8-btn-success i {
    color: var(--success-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-success.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-success.dropdown-toggle:after,
.m8-btn.m8-btn-success.active.dropdown-toggle:after,
.m8-btn.m8-btn-success.show.dropdown-toggle:after,
.m8-btn.m8-btn-success:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-success:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-success:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-success.dropdown-toggle:after {
    color: var(--success-inverse)
}

.m8-btn.m8-btn-light-success {
    color: var(--success);
    border-color: var(--success-light);
    background-color: var(--success-light)
}

.m8-btn.m8-btn-light-success .svg-icon,
.m8-btn.m8-btn-light-success i {
    color: var(--success)
}

.m8-btn.m8-btn-light-success.dropdown-toggle:after {
    color: var(--success)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-success,
.m8-btn-check:checked+.m8-btn.m8-btn-light-success,
.m8-btn.m8-btn-light-success.active,
.m8-btn.m8-btn-light-success.show,
.m8-btn.m8-btn-light-success:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-success:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-success:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-success {
    color: var(--success-inverse);
    border-color: var(--success);
    background-color: var(--success) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-success .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-success i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-success .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-success i,
.m8-btn.m8-btn-light-success.active .svg-icon,
.m8-btn.m8-btn-light-success.active i,
.m8-btn.m8-btn-light-success.show .svg-icon,
.m8-btn.m8-btn-light-success.show i,
.m8-btn.m8-btn-light-success:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-success:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-success:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-success:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-success:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-success:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-success .svg-icon,
.show>.m8-btn.m8-btn-light-success i {
    color: var(--success-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-success.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-success.dropdown-toggle:after,
.m8-btn.m8-btn-light-success.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-success.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-success:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-success:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-success:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-success.dropdown-toggle:after {
    color: var(--success-inverse)
}

.m8-btn.m8-btn-bg-success {
    border-color: var(--success);
    background-color: var(--success)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-success,
.m8-btn-check:checked+.m8-btn.m8-btn-active-success,
.m8-btn.m8-btn-active-success.active,
.m8-btn.m8-btn-active-success.show,
.m8-btn.m8-btn-active-success:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-success:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-success:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-success {
    color: var(--success-inverse);
    border-color: var(--success);
    background-color: var(--success) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-success .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-success i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-success .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-success i,
.m8-btn.m8-btn-active-success.active .svg-icon,
.m8-btn.m8-btn-active-success.active i,
.m8-btn.m8-btn-active-success.show .svg-icon,
.m8-btn.m8-btn-active-success.show i,
.m8-btn.m8-btn-active-success:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-success:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-success:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-success:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-success:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-success:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-success .svg-icon,
.show>.m8-btn.m8-btn-active-success i {
    color: var(--success-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-success.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-success.dropdown-toggle:after,
.m8-btn.m8-btn-active-success.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-success.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-success:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-success:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-success:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-success.dropdown-toggle:after {
    color: var(--success-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-success,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-success,
.m8-btn.m8-btn-active-light-success.active,
.m8-btn.m8-btn-active-light-success.show,
.m8-btn.m8-btn-active-light-success:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-success:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-success:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-light-success {
    color: var(--success);
    border-color: var(--success-light);
    background-color: var(--success-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-success .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-light-success i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-success .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-success i,
.m8-btn.m8-btn-active-light-success.active .svg-icon,
.m8-btn.m8-btn-active-light-success.active i,
.m8-btn.m8-btn-active-light-success.show .svg-icon,
.m8-btn.m8-btn-active-light-success.show i,
.m8-btn.m8-btn-active-light-success:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-success:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-success:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-success:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-success:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-success:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-light-success .svg-icon,
.show>.m8-btn.m8-btn-active-light-success i {
    color: var(--success)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-success.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-success.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-success.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-success.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-success:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-success:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-success:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-light-success.dropdown-toggle:after {
    color: var(--success)
}

.m8-btn.m8-btn-outline.m8-btn-outline-success {
    color: var(--success);
    border-color: var(--success);
    background-color: transparent
}

.m8-btn.m8-btn-outline.m8-btn-outline-success .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-success i {
    color: var(--success)
}

.m8-btn.m8-btn-outline.m8-btn-outline-success.dropdown-toggle:after {
    color: var(--success)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-success,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-success,
.m8-btn.m8-btn-outline.m8-btn-outline-success.active,
.m8-btn.m8-btn-outline.m8-btn-outline-success.show,
.m8-btn.m8-btn-outline.m8-btn-outline-success:active:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-success:focus:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-success:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-outline.m8-btn-outline-success {
    color: var(--success-active);
    border-color: var(--success);
    background-color: var(--success-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-success .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-success i,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-success .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-success i,
.m8-btn.m8-btn-outline.m8-btn-outline-success.active .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-success.active i,
.m8-btn.m8-btn-outline.m8-btn-outline-success.show .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-success.show i,
.m8-btn.m8-btn-outline.m8-btn-outline-success:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-success:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-success:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-success:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-success:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-success:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-success .svg-icon,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-success i {
    color: var(--success-active)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-success.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-success.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-success.active.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-success.show.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-success:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-success:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-success:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-success.dropdown-toggle:after {
    color: var(--success-active)
}

.m8-btn.m8-btn-info {
    color: var(--info-inverse);
    border-color: var(--info);
    background-color: var(--info)
}

.m8-btn.m8-btn-info .svg-icon,
.m8-btn.m8-btn-info i {
    color: var(--info-inverse)
}

.m8-btn.m8-btn-info.dropdown-toggle:after {
    color: var(--info-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-info,
.m8-btn-check:checked+.m8-btn.m8-btn-info,
.m8-btn.m8-btn-info.active,
.m8-btn.m8-btn-info.show,
.m8-btn.m8-btn-info:active:not(.m8-btn-active),
.m8-btn.m8-btn-info:focus:not(.m8-btn-active),
.m8-btn.m8-btn-info:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-info {
    color: var(--info-inverse);
    border-color: var(--info-active);
    background-color: var(--info-active) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-info .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-info i,
.m8-btn-check:checked+.m8-btn.m8-btn-info .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-info i,
.m8-btn.m8-btn-info.active .svg-icon,
.m8-btn.m8-btn-info.active i,
.m8-btn.m8-btn-info.show .svg-icon,
.m8-btn.m8-btn-info.show i,
.m8-btn.m8-btn-info:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-info:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-info:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-info:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-info:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-info:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-info .svg-icon,
.show>.m8-btn.m8-btn-info i {
    color: var(--info-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-info.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-info.dropdown-toggle:after,
.m8-btn.m8-btn-info.active.dropdown-toggle:after,
.m8-btn.m8-btn-info.show.dropdown-toggle:after,
.m8-btn.m8-btn-info:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-info:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-info:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-info.dropdown-toggle:after {
    color: var(--info-inverse)
}

.m8-btn.m8-btn-light-info {
    color: var(--info);
    border-color: var(--info-light);
    background-color: var(--info-light)
}

.m8-btn.m8-btn-light-info .svg-icon,
.m8-btn.m8-btn-light-info i {
    color: var(--info)
}

.m8-btn.m8-btn-light-info.dropdown-toggle:after {
    color: var(--info)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-info,
.m8-btn-check:checked+.m8-btn.m8-btn-light-info,
.m8-btn.m8-btn-light-info.active,
.m8-btn.m8-btn-light-info.show,
.m8-btn.m8-btn-light-info:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-info:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-info:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-info {
    color: var(--info-inverse);
    border-color: var(--info);
    background-color: var(--info) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-info .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-info i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-info .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-info i,
.m8-btn.m8-btn-light-info.active .svg-icon,
.m8-btn.m8-btn-light-info.active i,
.m8-btn.m8-btn-light-info.show .svg-icon,
.m8-btn.m8-btn-light-info.show i,
.m8-btn.m8-btn-light-info:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-info:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-info:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-info:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-info:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-info:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-info .svg-icon,
.show>.m8-btn.m8-btn-light-info i {
    color: var(--info-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-info.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-info.dropdown-toggle:after,
.m8-btn.m8-btn-light-info.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-info.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-info:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-info:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-info:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-info.dropdown-toggle:after {
    color: var(--info-inverse)
}

.m8-btn.m8-btn-bg-info {
    border-color: var(--info);
    background-color: var(--info)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-info,
.m8-btn-check:checked+.m8-btn.m8-btn-active-info,
.m8-btn.m8-btn-active-info.active,
.m8-btn.m8-btn-active-info.show,
.m8-btn.m8-btn-active-info:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-info:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-info:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-info {
    color: var(--info-inverse);
    border-color: var(--info);
    background-color: var(--info) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-info .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-info i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-info .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-info i,
.m8-btn.m8-btn-active-info.active .svg-icon,
.m8-btn.m8-btn-active-info.active i,
.m8-btn.m8-btn-active-info.show .svg-icon,
.m8-btn.m8-btn-active-info.show i,
.m8-btn.m8-btn-active-info:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-info:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-info:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-info:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-info:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-info:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-info .svg-icon,
.show>.m8-btn.m8-btn-active-info i {
    color: var(--info-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-info.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-info.dropdown-toggle:after,
.m8-btn.m8-btn-active-info.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-info.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-info:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-info:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-info:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-info.dropdown-toggle:after {
    color: var(--info-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-info,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-info,
.m8-btn.m8-btn-active-light-info.active,
.m8-btn.m8-btn-active-light-info.show,
.m8-btn.m8-btn-active-light-info:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-info:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-info:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-light-info {
    color: var(--info);
    border-color: var(--info-light);
    background-color: var(--info-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-info .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-light-info i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-info .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-info i,
.m8-btn.m8-btn-active-light-info.active .svg-icon,
.m8-btn.m8-btn-active-light-info.active i,
.m8-btn.m8-btn-active-light-info.show .svg-icon,
.m8-btn.m8-btn-active-light-info.show i,
.m8-btn.m8-btn-active-light-info:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-info:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-info:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-info:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-info:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-info:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-light-info .svg-icon,
.show>.m8-btn.m8-btn-active-light-info i {
    color: var(--info)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-info.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-info.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-info.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-info.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-info:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-info:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-info:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-light-info.dropdown-toggle:after {
    color: var(--info)
}

.m8-btn.m8-btn-outline.m8-btn-outline-info {
    color: var(--info);
    border-color: var(--info);
    background-color: transparent
}

.m8-btn.m8-btn-outline.m8-btn-outline-info .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-info i {
    color: var(--info)
}

.m8-btn.m8-btn-outline.m8-btn-outline-info.dropdown-toggle:after {
    color: var(--info)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-info,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-info,
.m8-btn.m8-btn-outline.m8-btn-outline-info.active,
.m8-btn.m8-btn-outline.m8-btn-outline-info.show,
.m8-btn.m8-btn-outline.m8-btn-outline-info:active:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-info:focus:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-info:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-outline.m8-btn-outline-info {
    color: var(--info-active);
    border-color: var(--info);
    background-color: var(--info-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-info .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-info i,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-info .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-info i,
.m8-btn.m8-btn-outline.m8-btn-outline-info.active .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-info.active i,
.m8-btn.m8-btn-outline.m8-btn-outline-info.show .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-info.show i,
.m8-btn.m8-btn-outline.m8-btn-outline-info:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-info:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-info:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-info:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-info:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-info:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-info .svg-icon,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-info i {
    color: var(--info-active)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-info.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-info.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-info.active.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-info.show.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-info:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-info:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-info:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-info.dropdown-toggle:after {
    color: var(--info-active)
}

.m8-btn.m8-btn-warning {
    color: var(--warning-inverse);
    border-color: var(--warning);
    background-color: var(--warning)
}

.m8-btn.m8-btn-warning .svg-icon,
.m8-btn.m8-btn-warning i {
    color: var(--warning-inverse)
}

.m8-btn.m8-btn-warning.dropdown-toggle:after {
    color: var(--warning-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-warning,
.m8-btn-check:checked+.m8-btn.m8-btn-warning,
.m8-btn.m8-btn-warning.active,
.m8-btn.m8-btn-warning.show,
.m8-btn.m8-btn-warning:active:not(.m8-btn-active),
.m8-btn.m8-btn-warning:focus:not(.m8-btn-active),
.m8-btn.m8-btn-warning:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-warning {
    color: var(--warning-inverse);
    border-color: var(--warning-active);
    background-color: var(--warning-active) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-warning .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-warning i,
.m8-btn-check:checked+.m8-btn.m8-btn-warning .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-warning i,
.m8-btn.m8-btn-warning.active .svg-icon,
.m8-btn.m8-btn-warning.active i,
.m8-btn.m8-btn-warning.show .svg-icon,
.m8-btn.m8-btn-warning.show i,
.m8-btn.m8-btn-warning:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-warning:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-warning:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-warning:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-warning:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-warning:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-warning .svg-icon,
.show>.m8-btn.m8-btn-warning i {
    color: var(--warning-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-warning.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-warning.dropdown-toggle:after,
.m8-btn.m8-btn-warning.active.dropdown-toggle:after,
.m8-btn.m8-btn-warning.show.dropdown-toggle:after,
.m8-btn.m8-btn-warning:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-warning:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-warning:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-warning.dropdown-toggle:after {
    color: var(--warning-inverse)
}

.m8-btn.m8-btn-light-warning {
    color: var(--warning);
    border-color: var(--warning-light);
    background-color: var(--warning-light)
}

.m8-btn.m8-btn-light-warning .svg-icon,
.m8-btn.m8-btn-light-warning i {
    color: var(--warning)
}

.m8-btn.m8-btn-light-warning.dropdown-toggle:after {
    color: var(--warning)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-warning,
.m8-btn-check:checked+.m8-btn.m8-btn-light-warning,
.m8-btn.m8-btn-light-warning.active,
.m8-btn.m8-btn-light-warning.show,
.m8-btn.m8-btn-light-warning:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-warning:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-warning:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-warning {
    color: var(--warning-inverse);
    border-color: var(--warning);
    background-color: var(--warning) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-warning .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-warning i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-warning .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-warning i,
.m8-btn.m8-btn-light-warning.active .svg-icon,
.m8-btn.m8-btn-light-warning.active i,
.m8-btn.m8-btn-light-warning.show .svg-icon,
.m8-btn.m8-btn-light-warning.show i,
.m8-btn.m8-btn-light-warning:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-warning:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-warning:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-warning:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-warning:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-warning:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-warning .svg-icon,
.show>.m8-btn.m8-btn-light-warning i {
    color: var(--warning-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-warning.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-warning.dropdown-toggle:after,
.m8-btn.m8-btn-light-warning.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-warning.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-warning:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-warning:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-warning:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-warning.dropdown-toggle:after {
    color: var(--warning-inverse)
}

.m8-btn.m8-btn-bg-warning {
    border-color: var(--warning);
    background-color: var(--warning)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-warning,
.m8-btn-check:checked+.m8-btn.m8-btn-active-warning,
.m8-btn.m8-btn-active-warning.active,
.m8-btn.m8-btn-active-warning.show,
.m8-btn.m8-btn-active-warning:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-warning:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-warning:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-warning {
    color: var(--warning-inverse);
    border-color: var(--warning);
    background-color: var(--warning) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-warning .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-warning i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-warning .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-warning i,
.m8-btn.m8-btn-active-warning.active .svg-icon,
.m8-btn.m8-btn-active-warning.active i,
.m8-btn.m8-btn-active-warning.show .svg-icon,
.m8-btn.m8-btn-active-warning.show i,
.m8-btn.m8-btn-active-warning:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-warning:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-warning:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-warning:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-warning:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-warning:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-warning .svg-icon,
.show>.m8-btn.m8-btn-active-warning i {
    color: var(--warning-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-warning.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-warning.dropdown-toggle:after,
.m8-btn.m8-btn-active-warning.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-warning.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-warning:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-warning:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-warning:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-warning.dropdown-toggle:after {
    color: var(--warning-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-warning,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-warning,
.m8-btn.m8-btn-active-light-warning.active,
.m8-btn.m8-btn-active-light-warning.show,
.m8-btn.m8-btn-active-light-warning:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-warning:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-warning:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-light-warning {
    color: var(--warning);
    border-color: var(--warning-light);
    background-color: var(--warning-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-warning .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-light-warning i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-warning .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-warning i,
.m8-btn.m8-btn-active-light-warning.active .svg-icon,
.m8-btn.m8-btn-active-light-warning.active i,
.m8-btn.m8-btn-active-light-warning.show .svg-icon,
.m8-btn.m8-btn-active-light-warning.show i,
.m8-btn.m8-btn-active-light-warning:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-warning:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-warning:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-warning:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-warning:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-warning:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-light-warning .svg-icon,
.show>.m8-btn.m8-btn-active-light-warning i {
    color: var(--warning)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-warning.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-warning.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-warning.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-warning.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-warning:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-warning:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-warning:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-light-warning.dropdown-toggle:after {
    color: var(--warning)
}

.m8-btn.m8-btn-outline.m8-btn-outline-warning {
    color: var(--warning);
    border-color: var(--warning);
    background-color: transparent
}

.m8-btn.m8-btn-outline.m8-btn-outline-warning .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-warning i {
    color: var(--warning)
}

.m8-btn.m8-btn-outline.m8-btn-outline-warning.dropdown-toggle:after {
    color: var(--warning)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-warning,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-warning,
.m8-btn.m8-btn-outline.m8-btn-outline-warning.active,
.m8-btn.m8-btn-outline.m8-btn-outline-warning.show,
.m8-btn.m8-btn-outline.m8-btn-outline-warning:active:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-warning:focus:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-warning:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-outline.m8-btn-outline-warning {
    color: var(--warning-active);
    border-color: var(--warning);
    background-color: var(--warning-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-warning .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-warning i,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-warning .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-warning i,
.m8-btn.m8-btn-outline.m8-btn-outline-warning.active .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-warning.active i,
.m8-btn.m8-btn-outline.m8-btn-outline-warning.show .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-warning.show i,
.m8-btn.m8-btn-outline.m8-btn-outline-warning:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-warning:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-warning:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-warning:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-warning:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-warning:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-warning .svg-icon,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-warning i {
    color: var(--warning-active)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-warning.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-warning.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-warning.active.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-warning.show.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-warning:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-warning:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-warning:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-warning.dropdown-toggle:after {
    color: var(--warning-active)
}

.m8-btn.m8-btn-danger {
    color: var(--danger-inverse);
    border-color: var(--danger);
    background-color: var(--danger)
}

.m8-btn.m8-btn-danger .svg-icon,
.m8-btn.m8-btn-danger i {
    color: var(--danger-inverse)
}

.m8-btn.m8-btn-danger.dropdown-toggle:after {
    color: var(--danger-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-danger,
.m8-btn-check:checked+.m8-btn.m8-btn-danger,
.m8-btn.m8-btn-danger.active,
.m8-btn.m8-btn-danger.show,
.m8-btn.m8-btn-danger:active:not(.m8-btn-active),
.m8-btn.m8-btn-danger:focus:not(.m8-btn-active),
.m8-btn.m8-btn-danger:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-danger {
    color: var(--danger-inverse);
    border-color: var(--danger-active);
    background-color: var(--danger-active) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-danger .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-danger i,
.m8-btn-check:checked+.m8-btn.m8-btn-danger .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-danger i,
.m8-btn.m8-btn-danger.active .svg-icon,
.m8-btn.m8-btn-danger.active i,
.m8-btn.m8-btn-danger.show .svg-icon,
.m8-btn.m8-btn-danger.show i,
.m8-btn.m8-btn-danger:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-danger:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-danger:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-danger:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-danger:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-danger:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-danger .svg-icon,
.show>.m8-btn.m8-btn-danger i {
    color: var(--danger-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-danger.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-danger.dropdown-toggle:after,
.m8-btn.m8-btn-danger.active.dropdown-toggle:after,
.m8-btn.m8-btn-danger.show.dropdown-toggle:after,
.m8-btn.m8-btn-danger:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-danger:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-danger:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-danger.dropdown-toggle:after {
    color: var(--danger-inverse)
}

.m8-btn.m8-btn-light-danger {
    color: var(--danger);
    border-color: var(--danger-light);
    background-color: var(--danger-light)
}

.m8-btn.m8-btn-light-danger .svg-icon,
.m8-btn.m8-btn-light-danger i {
    color: var(--danger)
}

.m8-btn.m8-btn-light-danger.dropdown-toggle:after {
    color: var(--danger)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-danger,
.m8-btn-check:checked+.m8-btn.m8-btn-light-danger,
.m8-btn.m8-btn-light-danger.active,
.m8-btn.m8-btn-light-danger.show,
.m8-btn.m8-btn-light-danger:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-danger:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-danger:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-danger {
    color: var(--danger-inverse);
    border-color: var(--danger);
    background-color: var(--danger) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-danger .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-danger i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-danger .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-danger i,
.m8-btn.m8-btn-light-danger.active .svg-icon,
.m8-btn.m8-btn-light-danger.active i,
.m8-btn.m8-btn-light-danger.show .svg-icon,
.m8-btn.m8-btn-light-danger.show i,
.m8-btn.m8-btn-light-danger:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-danger:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-danger:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-danger:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-danger:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-danger:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-danger .svg-icon,
.show>.m8-btn.m8-btn-light-danger i {
    color: var(--danger-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-danger.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-danger.dropdown-toggle:after,
.m8-btn.m8-btn-light-danger.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-danger.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-danger:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-danger:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-danger:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-danger.dropdown-toggle:after {
    color: var(--danger-inverse)
}

.m8-btn.m8-btn-bg-danger {
    border-color: var(--danger);
    background-color: var(--danger)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-danger,
.m8-btn-check:checked+.m8-btn.m8-btn-active-danger,
.m8-btn.m8-btn-active-danger.active,
.m8-btn.m8-btn-active-danger.show,
.m8-btn.m8-btn-active-danger:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-danger:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-danger:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-danger {
    color: var(--danger-inverse);
    border-color: var(--danger);
    background-color: var(--danger) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-danger .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-danger i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-danger .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-danger i,
.m8-btn.m8-btn-active-danger.active .svg-icon,
.m8-btn.m8-btn-active-danger.active i,
.m8-btn.m8-btn-active-danger.show .svg-icon,
.m8-btn.m8-btn-active-danger.show i,
.m8-btn.m8-btn-active-danger:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-danger:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-danger:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-danger:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-danger:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-danger:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-danger .svg-icon,
.show>.m8-btn.m8-btn-active-danger i {
    color: var(--danger-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-danger.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-danger.dropdown-toggle:after,
.m8-btn.m8-btn-active-danger.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-danger.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-danger:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-danger:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-danger:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-danger.dropdown-toggle:after {
    color: var(--danger-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-danger,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-danger,
.m8-btn.m8-btn-active-light-danger.active,
.m8-btn.m8-btn-active-light-danger.show,
.m8-btn.m8-btn-active-light-danger:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-danger:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-danger:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-light-danger {
    color: var(--danger);
    border-color: var(--danger-light);
    background-color: var(--danger-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-danger .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-light-danger i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-danger .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-danger i,
.m8-btn.m8-btn-active-light-danger.active .svg-icon,
.m8-btn.m8-btn-active-light-danger.active i,
.m8-btn.m8-btn-active-light-danger.show .svg-icon,
.m8-btn.m8-btn-active-light-danger.show i,
.m8-btn.m8-btn-active-light-danger:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-danger:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-danger:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-danger:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-danger:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-danger:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-light-danger .svg-icon,
.show>.m8-btn.m8-btn-active-light-danger i {
    color: var(--danger)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-danger.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-danger.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-danger.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-danger.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-danger:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-danger:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-danger:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-light-danger.dropdown-toggle:after {
    color: var(--danger)
}

.m8-btn.m8-btn-outline.m8-btn-outline-danger {
    color: var(--danger);
    border-color: var(--danger);
    background-color: transparent
}

.m8-btn.m8-btn-outline.m8-btn-outline-danger .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-danger i {
    color: var(--danger)
}

.m8-btn.m8-btn-outline.m8-btn-outline-danger.dropdown-toggle:after {
    color: var(--danger)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-danger,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-danger,
.m8-btn.m8-btn-outline.m8-btn-outline-danger.active,
.m8-btn.m8-btn-outline.m8-btn-outline-danger.show,
.m8-btn.m8-btn-outline.m8-btn-outline-danger:active:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-danger:focus:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-danger:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-outline.m8-btn-outline-danger {
    color: var(--danger-active);
    border-color: var(--danger);
    background-color: var(--danger-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-danger .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-danger i,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-danger .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-danger i,
.m8-btn.m8-btn-outline.m8-btn-outline-danger.active .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-danger.active i,
.m8-btn.m8-btn-outline.m8-btn-outline-danger.show .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-danger.show i,
.m8-btn.m8-btn-outline.m8-btn-outline-danger:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-danger:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-danger:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-danger:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-danger:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-danger:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-danger .svg-icon,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-danger i {
    color: var(--danger-active)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-danger.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-danger.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-danger.active.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-danger.show.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-danger:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-danger:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-danger:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-danger.dropdown-toggle:after {
    color: var(--danger-active)
}

.m8-btn.m8-btn-dark {
    color: var(--dark-inverse);
    border-color: var(--dark);
    background-color: var(--dark)
}

.m8-btn.m8-btn-dark .svg-icon,
.m8-btn.m8-btn-dark i {
    color: var(--dark-inverse)
}

.m8-btn.m8-btn-dark.dropdown-toggle:after {
    color: var(--dark-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-dark,
.m8-btn-check:checked+.m8-btn.m8-btn-dark,
.m8-btn.m8-btn-dark.active,
.m8-btn.m8-btn-dark.show,
.m8-btn.m8-btn-dark:active:not(.m8-btn-active),
.m8-btn.m8-btn-dark:focus:not(.m8-btn-active),
.m8-btn.m8-btn-dark:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-dark {
    color: var(--dark-inverse);
    border-color: var(--dark-active);
    background-color: var(--dark-active) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-dark .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-dark i,
.m8-btn-check:checked+.m8-btn.m8-btn-dark .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-dark i,
.m8-btn.m8-btn-dark.active .svg-icon,
.m8-btn.m8-btn-dark.active i,
.m8-btn.m8-btn-dark.show .svg-icon,
.m8-btn.m8-btn-dark.show i,
.m8-btn.m8-btn-dark:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-dark:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-dark:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-dark:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-dark:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-dark:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-dark .svg-icon,
.show>.m8-btn.m8-btn-dark i {
    color: var(--dark-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-dark.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-dark.dropdown-toggle:after,
.m8-btn.m8-btn-dark.active.dropdown-toggle:after,
.m8-btn.m8-btn-dark.show.dropdown-toggle:after,
.m8-btn.m8-btn-dark:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-dark:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-dark:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-dark.dropdown-toggle:after {
    color: var(--dark-inverse)
}

.m8-btn.m8-btn-light-dark {
    color: var(--dark);
    border-color: var(--dark-light);
    background-color: var(--dark-light)
}

.m8-btn.m8-btn-light-dark .svg-icon,
.m8-btn.m8-btn-light-dark i {
    color: var(--dark)
}

.m8-btn.m8-btn-light-dark.dropdown-toggle:after {
    color: var(--dark)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-dark,
.m8-btn-check:checked+.m8-btn.m8-btn-light-dark,
.m8-btn.m8-btn-light-dark.active,
.m8-btn.m8-btn-light-dark.show,
.m8-btn.m8-btn-light-dark:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-dark:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-dark:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-dark {
    color: var(--dark-inverse);
    border-color: var(--dark);
    background-color: var(--dark) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-dark .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-dark i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-dark .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-dark i,
.m8-btn.m8-btn-light-dark.active .svg-icon,
.m8-btn.m8-btn-light-dark.active i,
.m8-btn.m8-btn-light-dark.show .svg-icon,
.m8-btn.m8-btn-light-dark.show i,
.m8-btn.m8-btn-light-dark:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-dark:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-dark:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-dark:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-dark:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-dark:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-dark .svg-icon,
.show>.m8-btn.m8-btn-light-dark i {
    color: var(--dark-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-light-dark.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-dark.dropdown-toggle:after,
.m8-btn.m8-btn-light-dark.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-dark.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-dark:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-dark:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-dark:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-dark.dropdown-toggle:after {
    color: var(--dark-inverse)
}

.m8-btn.m8-btn-bg-dark {
    border-color: var(--dark);
    background-color: var(--dark)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-dark,
.m8-btn-check:checked+.m8-btn.m8-btn-active-dark,
.m8-btn.m8-btn-active-dark.active,
.m8-btn.m8-btn-active-dark.show,
.m8-btn.m8-btn-active-dark:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-dark:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-dark:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-dark {
    color: var(--dark-inverse);
    border-color: var(--dark);
    background-color: var(--dark) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-dark .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-dark i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-dark .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-dark i,
.m8-btn.m8-btn-active-dark.active .svg-icon,
.m8-btn.m8-btn-active-dark.active i,
.m8-btn.m8-btn-active-dark.show .svg-icon,
.m8-btn.m8-btn-active-dark.show i,
.m8-btn.m8-btn-active-dark:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-dark:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-dark:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-dark:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-dark:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-dark:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-dark .svg-icon,
.show>.m8-btn.m8-btn-active-dark i {
    color: var(--dark-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-dark.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-dark.dropdown-toggle:after,
.m8-btn.m8-btn-active-dark.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-dark.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-dark:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-dark:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-dark:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-dark.dropdown-toggle:after {
    color: var(--dark-inverse)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-dark,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-dark,
.m8-btn.m8-btn-active-light-dark.active,
.m8-btn.m8-btn-active-light-dark.show,
.m8-btn.m8-btn-active-light-dark:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-dark:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-light-dark:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-light-dark {
    color: var(--dark);
    border-color: var(--dark-light);
    background-color: var(--dark-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-dark .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-light-dark i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-dark .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-dark i,
.m8-btn.m8-btn-active-light-dark.active .svg-icon,
.m8-btn.m8-btn-active-light-dark.active i,
.m8-btn.m8-btn-active-light-dark.show .svg-icon,
.m8-btn.m8-btn-active-light-dark.show i,
.m8-btn.m8-btn-active-light-dark:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-dark:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-dark:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-dark:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-light-dark:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-light-dark:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-light-dark .svg-icon,
.show>.m8-btn.m8-btn-active-light-dark i {
    color: var(--dark)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-light-dark.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-light-dark.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-dark.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-dark.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-light-dark:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-dark:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-light-dark:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-light-dark.dropdown-toggle:after {
    color: var(--dark)
}

.m8-btn.m8-btn-outline.m8-btn-outline-dark {
    color: var(--dark);
    border-color: var(--dark);
    background-color: transparent
}

.m8-btn.m8-btn-outline.m8-btn-outline-dark .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-dark i {
    color: var(--dark)
}

.m8-btn.m8-btn-outline.m8-btn-outline-dark.dropdown-toggle:after {
    color: var(--dark)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-dark,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-dark,
.m8-btn.m8-btn-outline.m8-btn-outline-dark.active,
.m8-btn.m8-btn-outline.m8-btn-outline-dark.show,
.m8-btn.m8-btn-outline.m8-btn-outline-dark:active:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-dark:focus:not(.m8-btn-active),
.m8-btn.m8-btn-outline.m8-btn-outline-dark:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-outline.m8-btn-outline-dark {
    color: var(--dark-active);
    border-color: var(--dark);
    background-color: var(--dark-light) !important
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-dark .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-dark i,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-dark .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-dark i,
.m8-btn.m8-btn-outline.m8-btn-outline-dark.active .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-dark.active i,
.m8-btn.m8-btn-outline.m8-btn-outline-dark.show .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-dark.show i,
.m8-btn.m8-btn-outline.m8-btn-outline-dark:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-dark:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-dark:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-dark:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-outline.m8-btn-outline-dark:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-outline.m8-btn-outline-dark:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-dark .svg-icon,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-dark i {
    color: var(--dark-active)
}

.m8-btn-check:active+.m8-btn.m8-btn-outline.m8-btn-outline-dark.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-outline.m8-btn-outline-dark.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-dark.active.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-dark.show.dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-dark:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-dark:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-outline.m8-btn-outline-dark:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-outline.m8-btn-outline-dark.dropdown-toggle:after {
    color: var(--dark-active)
}

.m8-btn.m8-btn-color-white {
    color: var(--text-white)
}

.m8-btn.m8-btn-color-white .svg-icon,
.m8-btn.m8-btn-color-white i {
    color: var(--text-white)
}

.m8-btn.m8-btn-color-white.dropdown-toggle:after {
    color: var(--text-white)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-white,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-white,
.m8-btn.m8-btn-active-color-white.active,
.m8-btn.m8-btn-active-color-white.show,
.m8-btn.m8-btn-active-color-white:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-white:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-white:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-white {
    color: var(--text-white)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-white .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-white i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-white .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-white i,
.m8-btn.m8-btn-active-color-white.active .svg-icon,
.m8-btn.m8-btn-active-color-white.active i,
.m8-btn.m8-btn-active-color-white.show .svg-icon,
.m8-btn.m8-btn-active-color-white.show i,
.m8-btn.m8-btn-active-color-white:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-white:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-white:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-white:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-white:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-white:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-white .svg-icon,
.show>.m8-btn.m8-btn-active-color-white i {
    color: var(--text-white)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-white.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-white.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-white.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-white.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-white:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-white:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-white:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-white.dropdown-toggle:after {
    color: var(--text-white)
}

.m8-btn.m8-btn-icon-white .svg-icon,
.m8-btn.m8-btn-icon-white i {
    color: var(--text-white)
}

.m8-btn.m8-btn-icon-white.dropdown-toggle:after {
    color: var(--text-white)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-white .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-white i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-white .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-white i,
.m8-btn.m8-btn-active-icon-white.active .svg-icon,
.m8-btn.m8-btn-active-icon-white.active i,
.m8-btn.m8-btn-active-icon-white.show .svg-icon,
.m8-btn.m8-btn-active-icon-white.show i,
.m8-btn.m8-btn-active-icon-white:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-white:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-white:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-white:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-white:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-white:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-white .svg-icon,
.show>.m8-btn.m8-btn-active-icon-white i {
    color: var(--text-white)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-white.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-white.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-white.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-white.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-white:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-white:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-white:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-white.dropdown-toggle:after {
    color: var(--text-white)
}

.m8-btn.m8-btn-text-white {
    color: var(--text-white)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-white,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-white,
.m8-btn.m8-btn-active-text-white.active,
.m8-btn.m8-btn-active-text-white.show,
.m8-btn.m8-btn-active-text-white:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-white:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-white:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-white {
    color: var(--text-white)
}

.m8-btn.m8-btn-color-primary {
    color: var(--text-primary)
}

.m8-btn.m8-btn-color-primary .svg-icon,
.m8-btn.m8-btn-color-primary i {
    color: var(--text-primary)
}

.m8-btn.m8-btn-color-primary.dropdown-toggle:after {
    color: var(--text-primary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-primary,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-primary,
.m8-btn.m8-btn-active-color-primary.active,
.m8-btn.m8-btn-active-color-primary.show,
.m8-btn.m8-btn-active-color-primary:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-primary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-primary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-primary {
    color: var(--text-primary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-primary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-primary i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-primary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-primary i,
.m8-btn.m8-btn-active-color-primary.active .svg-icon,
.m8-btn.m8-btn-active-color-primary.active i,
.m8-btn.m8-btn-active-color-primary.show .svg-icon,
.m8-btn.m8-btn-active-color-primary.show i,
.m8-btn.m8-btn-active-color-primary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-primary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-primary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-primary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-primary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-primary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-primary .svg-icon,
.show>.m8-btn.m8-btn-active-color-primary i {
    color: var(--text-primary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-primary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-primary.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-primary.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-primary.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-primary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-primary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-primary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-primary.dropdown-toggle:after {
    color: var(--text-primary)
}

.m8-btn.m8-btn-icon-primary .svg-icon,
.m8-btn.m8-btn-icon-primary i {
    color: var(--text-primary)
}

.m8-btn.m8-btn-icon-primary.dropdown-toggle:after {
    color: var(--text-primary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-primary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-primary i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-primary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-primary i,
.m8-btn.m8-btn-active-icon-primary.active .svg-icon,
.m8-btn.m8-btn-active-icon-primary.active i,
.m8-btn.m8-btn-active-icon-primary.show .svg-icon,
.m8-btn.m8-btn-active-icon-primary.show i,
.m8-btn.m8-btn-active-icon-primary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-primary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-primary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-primary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-primary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-primary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-primary .svg-icon,
.show>.m8-btn.m8-btn-active-icon-primary i {
    color: var(--text-primary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-primary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-primary.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-primary.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-primary.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-primary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-primary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-primary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-primary.dropdown-toggle:after {
    color: var(--text-primary)
}

.m8-btn.m8-btn-text-primary {
    color: var(--text-primary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-primary,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-primary,
.m8-btn.m8-btn-active-text-primary.active,
.m8-btn.m8-btn-active-text-primary.show,
.m8-btn.m8-btn-active-text-primary:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-primary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-primary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-primary {
    color: var(--text-primary)
}

.m8-btn.m8-btn-color-secondary {
    color: var(--text-secondary)
}

.m8-btn.m8-btn-color-secondary .svg-icon,
.m8-btn.m8-btn-color-secondary i {
    color: var(--text-secondary)
}

.m8-btn.m8-btn-color-secondary.dropdown-toggle:after {
    color: var(--text-secondary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-secondary,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-secondary,
.m8-btn.m8-btn-active-color-secondary.active,
.m8-btn.m8-btn-active-color-secondary.show,
.m8-btn.m8-btn-active-color-secondary:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-secondary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-secondary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-secondary {
    color: var(--text-secondary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-secondary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-secondary i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-secondary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-secondary i,
.m8-btn.m8-btn-active-color-secondary.active .svg-icon,
.m8-btn.m8-btn-active-color-secondary.active i,
.m8-btn.m8-btn-active-color-secondary.show .svg-icon,
.m8-btn.m8-btn-active-color-secondary.show i,
.m8-btn.m8-btn-active-color-secondary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-secondary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-secondary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-secondary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-secondary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-secondary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-secondary .svg-icon,
.show>.m8-btn.m8-btn-active-color-secondary i {
    color: var(--text-secondary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-secondary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-secondary.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-secondary.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-secondary.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-secondary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-secondary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-secondary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-secondary.dropdown-toggle:after {
    color: var(--text-secondary)
}

.m8-btn.m8-btn-icon-secondary .svg-icon,
.m8-btn.m8-btn-icon-secondary i {
    color: var(--text-secondary)
}

.m8-btn.m8-btn-icon-secondary.dropdown-toggle:after {
    color: var(--text-secondary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-secondary .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-secondary i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-secondary .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-secondary i,
.m8-btn.m8-btn-active-icon-secondary.active .svg-icon,
.m8-btn.m8-btn-active-icon-secondary.active i,
.m8-btn.m8-btn-active-icon-secondary.show .svg-icon,
.m8-btn.m8-btn-active-icon-secondary.show i,
.m8-btn.m8-btn-active-icon-secondary:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-secondary:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-secondary:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-secondary:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-secondary:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-secondary:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-secondary .svg-icon,
.show>.m8-btn.m8-btn-active-icon-secondary i {
    color: var(--text-secondary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-secondary.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-secondary.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-secondary.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-secondary.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-secondary:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-secondary:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-secondary:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-secondary.dropdown-toggle:after {
    color: var(--text-secondary)
}

.m8-btn.m8-btn-text-secondary {
    color: var(--text-secondary)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-secondary,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-secondary,
.m8-btn.m8-btn-active-text-secondary.active,
.m8-btn.m8-btn-active-text-secondary.show,
.m8-btn.m8-btn-active-text-secondary:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-secondary:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-secondary:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-secondary {
    color: var(--text-secondary)
}

.m8-btn.m8-btn-color-light {
    color: var(--text-light)
}

.m8-btn.m8-btn-color-light .svg-icon,
.m8-btn.m8-btn-color-light i {
    color: var(--text-light)
}

.m8-btn.m8-btn-color-light.dropdown-toggle:after {
    color: var(--text-light)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-light,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-light,
.m8-btn.m8-btn-active-color-light.active,
.m8-btn.m8-btn-active-color-light.show,
.m8-btn.m8-btn-active-color-light:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-light:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-light:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-light {
    color: var(--text-light)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-light .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-light i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-light .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-light i,
.m8-btn.m8-btn-active-color-light.active .svg-icon,
.m8-btn.m8-btn-active-color-light.active i,
.m8-btn.m8-btn-active-color-light.show .svg-icon,
.m8-btn.m8-btn-active-color-light.show i,
.m8-btn.m8-btn-active-color-light:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-light:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-light:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-light:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-light:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-light:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-light .svg-icon,
.show>.m8-btn.m8-btn-active-color-light i {
    color: var(--text-light)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-light.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-light.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-light.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-light.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-light:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-light:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-light:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-light.dropdown-toggle:after {
    color: var(--text-light)
}

.m8-btn.m8-btn-icon-light .svg-icon,
.m8-btn.m8-btn-icon-light i {
    color: var(--text-light)
}

.m8-btn.m8-btn-icon-light.dropdown-toggle:after {
    color: var(--text-light)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-light .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-light i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-light .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-light i,
.m8-btn.m8-btn-active-icon-light.active .svg-icon,
.m8-btn.m8-btn-active-icon-light.active i,
.m8-btn.m8-btn-active-icon-light.show .svg-icon,
.m8-btn.m8-btn-active-icon-light.show i,
.m8-btn.m8-btn-active-icon-light:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-light:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-light:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-light:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-light:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-light:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-light .svg-icon,
.show>.m8-btn.m8-btn-active-icon-light i {
    color: var(--text-light)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-light.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-light.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-light.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-light.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-light:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-light:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-light:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-light.dropdown-toggle:after {
    color: var(--text-light)
}

.m8-btn.m8-btn-text-light {
    color: var(--text-light)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-light,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-light,
.m8-btn.m8-btn-active-text-light.active,
.m8-btn.m8-btn-active-text-light.show,
.m8-btn.m8-btn-active-text-light:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-light:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-light:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-light {
    color: var(--text-light)
}

.m8-btn.m8-btn-color-success {
    color: var(--text-success)
}

.m8-btn.m8-btn-color-success .svg-icon,
.m8-btn.m8-btn-color-success i {
    color: var(--text-success)
}

.m8-btn.m8-btn-color-success.dropdown-toggle:after {
    color: var(--text-success)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-success,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-success,
.m8-btn.m8-btn-active-color-success.active,
.m8-btn.m8-btn-active-color-success.show,
.m8-btn.m8-btn-active-color-success:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-success:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-success:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-success {
    color: var(--text-success)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-success .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-success i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-success .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-success i,
.m8-btn.m8-btn-active-color-success.active .svg-icon,
.m8-btn.m8-btn-active-color-success.active i,
.m8-btn.m8-btn-active-color-success.show .svg-icon,
.m8-btn.m8-btn-active-color-success.show i,
.m8-btn.m8-btn-active-color-success:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-success:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-success:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-success:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-success:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-success:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-success .svg-icon,
.show>.m8-btn.m8-btn-active-color-success i {
    color: var(--text-success)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-success.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-success.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-success.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-success.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-success:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-success:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-success:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-success.dropdown-toggle:after {
    color: var(--text-success)
}

.m8-btn.m8-btn-icon-success .svg-icon,
.m8-btn.m8-btn-icon-success i {
    color: var(--text-success)
}

.m8-btn.m8-btn-icon-success.dropdown-toggle:after {
    color: var(--text-success)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-success .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-success i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-success .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-success i,
.m8-btn.m8-btn-active-icon-success.active .svg-icon,
.m8-btn.m8-btn-active-icon-success.active i,
.m8-btn.m8-btn-active-icon-success.show .svg-icon,
.m8-btn.m8-btn-active-icon-success.show i,
.m8-btn.m8-btn-active-icon-success:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-success:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-success:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-success:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-success:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-success:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-success .svg-icon,
.show>.m8-btn.m8-btn-active-icon-success i {
    color: var(--text-success)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-success.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-success.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-success.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-success.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-success:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-success:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-success:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-success.dropdown-toggle:after {
    color: var(--text-success)
}

.m8-btn.m8-btn-text-success {
    color: var(--text-success)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-success,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-success,
.m8-btn.m8-btn-active-text-success.active,
.m8-btn.m8-btn-active-text-success.show,
.m8-btn.m8-btn-active-text-success:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-success:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-success:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-success {
    color: var(--text-success)
}

.m8-btn.m8-btn-color-info {
    color: var(--text-info)
}

.m8-btn.m8-btn-color-info .svg-icon,
.m8-btn.m8-btn-color-info i {
    color: var(--text-info)
}

.m8-btn.m8-btn-color-info.dropdown-toggle:after {
    color: var(--text-info)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-info,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-info,
.m8-btn.m8-btn-active-color-info.active,
.m8-btn.m8-btn-active-color-info.show,
.m8-btn.m8-btn-active-color-info:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-info:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-info:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-info {
    color: var(--text-info)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-info .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-info i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-info .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-info i,
.m8-btn.m8-btn-active-color-info.active .svg-icon,
.m8-btn.m8-btn-active-color-info.active i,
.m8-btn.m8-btn-active-color-info.show .svg-icon,
.m8-btn.m8-btn-active-color-info.show i,
.m8-btn.m8-btn-active-color-info:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-info:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-info:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-info:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-info:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-info:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-info .svg-icon,
.show>.m8-btn.m8-btn-active-color-info i {
    color: var(--text-info)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-info.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-info.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-info.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-info.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-info:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-info:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-info:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-info.dropdown-toggle:after {
    color: var(--text-info)
}

.m8-btn.m8-btn-icon-info .svg-icon,
.m8-btn.m8-btn-icon-info i {
    color: var(--text-info)
}

.m8-btn.m8-btn-icon-info.dropdown-toggle:after {
    color: var(--text-info)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-info .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-info i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-info .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-info i,
.m8-btn.m8-btn-active-icon-info.active .svg-icon,
.m8-btn.m8-btn-active-icon-info.active i,
.m8-btn.m8-btn-active-icon-info.show .svg-icon,
.m8-btn.m8-btn-active-icon-info.show i,
.m8-btn.m8-btn-active-icon-info:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-info:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-info:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-info:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-info:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-info:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-info .svg-icon,
.show>.m8-btn.m8-btn-active-icon-info i {
    color: var(--text-info)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-info.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-info.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-info.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-info.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-info:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-info:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-info:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-info.dropdown-toggle:after {
    color: var(--text-info)
}

.m8-btn.m8-btn-text-info {
    color: var(--text-info)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-info,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-info,
.m8-btn.m8-btn-active-text-info.active,
.m8-btn.m8-btn-active-text-info.show,
.m8-btn.m8-btn-active-text-info:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-info:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-info:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-info {
    color: var(--text-info)
}

.m8-btn.m8-btn-color-warning {
    color: var(--text-warning)
}

.m8-btn.m8-btn-color-warning .svg-icon,
.m8-btn.m8-btn-color-warning i {
    color: var(--text-warning)
}

.m8-btn.m8-btn-color-warning.dropdown-toggle:after {
    color: var(--text-warning)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-warning,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-warning,
.m8-btn.m8-btn-active-color-warning.active,
.m8-btn.m8-btn-active-color-warning.show,
.m8-btn.m8-btn-active-color-warning:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-warning:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-warning:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-warning {
    color: var(--text-warning)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-warning .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-warning i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-warning .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-warning i,
.m8-btn.m8-btn-active-color-warning.active .svg-icon,
.m8-btn.m8-btn-active-color-warning.active i,
.m8-btn.m8-btn-active-color-warning.show .svg-icon,
.m8-btn.m8-btn-active-color-warning.show i,
.m8-btn.m8-btn-active-color-warning:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-warning:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-warning:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-warning:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-warning:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-warning:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-warning .svg-icon,
.show>.m8-btn.m8-btn-active-color-warning i {
    color: var(--text-warning)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-warning.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-warning.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-warning.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-warning.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-warning:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-warning:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-warning:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-warning.dropdown-toggle:after {
    color: var(--text-warning)
}

.m8-btn.m8-btn-icon-warning .svg-icon,
.m8-btn.m8-btn-icon-warning i {
    color: var(--text-warning)
}

.m8-btn.m8-btn-icon-warning.dropdown-toggle:after {
    color: var(--text-warning)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-warning .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-warning i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-warning .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-warning i,
.m8-btn.m8-btn-active-icon-warning.active .svg-icon,
.m8-btn.m8-btn-active-icon-warning.active i,
.m8-btn.m8-btn-active-icon-warning.show .svg-icon,
.m8-btn.m8-btn-active-icon-warning.show i,
.m8-btn.m8-btn-active-icon-warning:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-warning:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-warning:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-warning:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-warning:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-warning:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-warning .svg-icon,
.show>.m8-btn.m8-btn-active-icon-warning i {
    color: var(--text-warning)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-warning.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-warning.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-warning.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-warning.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-warning:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-warning:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-warning:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-warning.dropdown-toggle:after {
    color: var(--text-warning)
}

.m8-btn.m8-btn-text-warning {
    color: var(--text-warning)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-warning,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-warning,
.m8-btn.m8-btn-active-text-warning.active,
.m8-btn.m8-btn-active-text-warning.show,
.m8-btn.m8-btn-active-text-warning:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-warning:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-warning:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-warning {
    color: var(--text-warning)
}

.m8-btn.m8-btn-color-danger {
    color: var(--text-danger)
}

.m8-btn.m8-btn-color-danger .svg-icon,
.m8-btn.m8-btn-color-danger i {
    color: var(--text-danger)
}

.m8-btn.m8-btn-color-danger.dropdown-toggle:after {
    color: var(--text-danger)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-danger,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-danger,
.m8-btn.m8-btn-active-color-danger.active,
.m8-btn.m8-btn-active-color-danger.show,
.m8-btn.m8-btn-active-color-danger:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-danger:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-danger:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-danger {
    color: var(--text-danger)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-danger .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-danger i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-danger .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-danger i,
.m8-btn.m8-btn-active-color-danger.active .svg-icon,
.m8-btn.m8-btn-active-color-danger.active i,
.m8-btn.m8-btn-active-color-danger.show .svg-icon,
.m8-btn.m8-btn-active-color-danger.show i,
.m8-btn.m8-btn-active-color-danger:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-danger:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-danger:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-danger:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-danger:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-danger:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-danger .svg-icon,
.show>.m8-btn.m8-btn-active-color-danger i {
    color: var(--text-danger)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-danger.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-danger.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-danger.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-danger.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-danger:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-danger:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-danger:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-danger.dropdown-toggle:after {
    color: var(--text-danger)
}

.m8-btn.m8-btn-icon-danger .svg-icon,
.m8-btn.m8-btn-icon-danger i {
    color: var(--text-danger)
}

.m8-btn.m8-btn-icon-danger.dropdown-toggle:after {
    color: var(--text-danger)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-danger .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-danger i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-danger .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-danger i,
.m8-btn.m8-btn-active-icon-danger.active .svg-icon,
.m8-btn.m8-btn-active-icon-danger.active i,
.m8-btn.m8-btn-active-icon-danger.show .svg-icon,
.m8-btn.m8-btn-active-icon-danger.show i,
.m8-btn.m8-btn-active-icon-danger:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-danger:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-danger:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-danger:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-danger:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-danger:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-danger .svg-icon,
.show>.m8-btn.m8-btn-active-icon-danger i {
    color: var(--text-danger)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-danger.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-danger.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-danger.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-danger.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-danger:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-danger:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-danger:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-danger.dropdown-toggle:after {
    color: var(--text-danger)
}

.m8-btn.m8-btn-text-danger {
    color: var(--text-danger)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-danger,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-danger,
.m8-btn.m8-btn-active-text-danger.active,
.m8-btn.m8-btn-active-text-danger.show,
.m8-btn.m8-btn-active-text-danger:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-danger:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-danger:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-danger {
    color: var(--text-danger)
}

.m8-btn.m8-btn-color-dark {
    color: var(--text-dark)
}

.m8-btn.m8-btn-color-dark .svg-icon,
.m8-btn.m8-btn-color-dark i {
    color: var(--text-dark)
}

.m8-btn.m8-btn-color-dark.dropdown-toggle:after {
    color: var(--text-dark)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-dark,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-dark,
.m8-btn.m8-btn-active-color-dark.active,
.m8-btn.m8-btn-active-color-dark.show,
.m8-btn.m8-btn-active-color-dark:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-dark:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-dark:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-dark {
    color: var(--text-dark)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-dark .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-dark i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-dark .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-dark i,
.m8-btn.m8-btn-active-color-dark.active .svg-icon,
.m8-btn.m8-btn-active-color-dark.active i,
.m8-btn.m8-btn-active-color-dark.show .svg-icon,
.m8-btn.m8-btn-active-color-dark.show i,
.m8-btn.m8-btn-active-color-dark:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-dark:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-dark:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-dark:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-dark:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-dark:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-dark .svg-icon,
.show>.m8-btn.m8-btn-active-color-dark i {
    color: var(--text-dark)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-dark.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-dark.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-dark.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-dark.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-dark:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-dark:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-dark:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-dark.dropdown-toggle:after {
    color: var(--text-dark)
}

.m8-btn.m8-btn-icon-dark .svg-icon,
.m8-btn.m8-btn-icon-dark i {
    color: var(--text-dark)
}

.m8-btn.m8-btn-icon-dark.dropdown-toggle:after {
    color: var(--text-dark)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-dark .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-dark i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-dark .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-dark i,
.m8-btn.m8-btn-active-icon-dark.active .svg-icon,
.m8-btn.m8-btn-active-icon-dark.active i,
.m8-btn.m8-btn-active-icon-dark.show .svg-icon,
.m8-btn.m8-btn-active-icon-dark.show i,
.m8-btn.m8-btn-active-icon-dark:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-dark:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-dark:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-dark:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-dark:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-dark:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-dark .svg-icon,
.show>.m8-btn.m8-btn-active-icon-dark i {
    color: var(--text-dark)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-dark.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-dark.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-dark.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-dark.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-dark:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-dark:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-dark:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-dark.dropdown-toggle:after {
    color: var(--text-dark)
}

.m8-btn.m8-btn-text-dark {
    color: var(--text-dark)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-dark,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-dark,
.m8-btn.m8-btn-active-text-dark.active,
.m8-btn.m8-btn-active-text-dark.show,
.m8-btn.m8-btn-active-text-dark:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-dark:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-dark:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-dark {
    color: var(--text-dark)
}

.m8-btn.m8-btn-color-muted {
    color: var(--text-muted)
}

.m8-btn.m8-btn-color-muted .svg-icon,
.m8-btn.m8-btn-color-muted i {
    color: var(--text-muted)
}

.m8-btn.m8-btn-color-muted.dropdown-toggle:after {
    color: var(--text-muted)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-muted,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-muted,
.m8-btn.m8-btn-active-color-muted.active,
.m8-btn.m8-btn-active-color-muted.show,
.m8-btn.m8-btn-active-color-muted:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-muted:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-muted:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-muted {
    color: var(--text-muted)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-muted .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-muted i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-muted .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-muted i,
.m8-btn.m8-btn-active-color-muted.active .svg-icon,
.m8-btn.m8-btn-active-color-muted.active i,
.m8-btn.m8-btn-active-color-muted.show .svg-icon,
.m8-btn.m8-btn-active-color-muted.show i,
.m8-btn.m8-btn-active-color-muted:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-muted:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-muted:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-muted:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-muted:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-muted:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-muted .svg-icon,
.show>.m8-btn.m8-btn-active-color-muted i {
    color: var(--text-muted)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-muted.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-muted.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-muted.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-muted.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-muted:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-muted:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-muted:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-muted.dropdown-toggle:after {
    color: var(--text-muted)
}

.m8-btn.m8-btn-icon-muted .svg-icon,
.m8-btn.m8-btn-icon-muted i {
    color: var(--text-muted)
}

.m8-btn.m8-btn-icon-muted.dropdown-toggle:after {
    color: var(--text-muted)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-muted .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-muted i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-muted .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-muted i,
.m8-btn.m8-btn-active-icon-muted.active .svg-icon,
.m8-btn.m8-btn-active-icon-muted.active i,
.m8-btn.m8-btn-active-icon-muted.show .svg-icon,
.m8-btn.m8-btn-active-icon-muted.show i,
.m8-btn.m8-btn-active-icon-muted:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-muted:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-muted:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-muted:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-muted:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-muted:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-muted .svg-icon,
.show>.m8-btn.m8-btn-active-icon-muted i {
    color: var(--text-muted)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-muted.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-muted.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-muted.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-muted.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-muted:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-muted:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-muted:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-muted.dropdown-toggle:after {
    color: var(--text-muted)
}

.m8-btn.m8-btn-text-muted {
    color: var(--text-muted)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-muted,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-muted,
.m8-btn.m8-btn-active-text-muted.active,
.m8-btn.m8-btn-active-text-muted.show,
.m8-btn.m8-btn-active-text-muted:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-muted:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-muted:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-muted {
    color: var(--text-muted)
}

.m8-btn.m8-btn-color-gray-100 {
    color: var(--text-gray-100)
}

.m8-btn.m8-btn-color-gray-100 .svg-icon,
.m8-btn.m8-btn-color-gray-100 i {
    color: var(--text-gray-100)
}

.m8-btn.m8-btn-color-gray-100.dropdown-toggle:after {
    color: var(--text-gray-100)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-100,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-100,
.m8-btn.m8-btn-active-color-gray-100.active,
.m8-btn.m8-btn-active-color-gray-100.show,
.m8-btn.m8-btn-active-color-gray-100:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-100:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-100:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-gray-100 {
    color: var(--text-gray-100)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-100 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-100 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-100 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-100 i,
.m8-btn.m8-btn-active-color-gray-100.active .svg-icon,
.m8-btn.m8-btn-active-color-gray-100.active i,
.m8-btn.m8-btn-active-color-gray-100.show .svg-icon,
.m8-btn.m8-btn-active-color-gray-100.show i,
.m8-btn.m8-btn-active-color-gray-100:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-100:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-100:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-100:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-100:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-100:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-gray-100 .svg-icon,
.show>.m8-btn.m8-btn-active-color-gray-100 i {
    color: var(--text-gray-100)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-100.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-100.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-100.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-100.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-100:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-100:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-100:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-gray-100.dropdown-toggle:after {
    color: var(--text-gray-100)
}

.m8-btn.m8-btn-icon-gray-100 .svg-icon,
.m8-btn.m8-btn-icon-gray-100 i {
    color: var(--text-gray-100)
}

.m8-btn.m8-btn-icon-gray-100.dropdown-toggle:after {
    color: var(--text-gray-100)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-100 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-100 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-100 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-100 i,
.m8-btn.m8-btn-active-icon-gray-100.active .svg-icon,
.m8-btn.m8-btn-active-icon-gray-100.active i,
.m8-btn.m8-btn-active-icon-gray-100.show .svg-icon,
.m8-btn.m8-btn-active-icon-gray-100.show i,
.m8-btn.m8-btn-active-icon-gray-100:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-100:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-100:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-100:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-100:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-100:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-gray-100 .svg-icon,
.show>.m8-btn.m8-btn-active-icon-gray-100 i {
    color: var(--text-gray-100)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-100.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-100.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-100.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-100.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-100:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-100:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-100:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-gray-100.dropdown-toggle:after {
    color: var(--text-gray-100)
}

.m8-btn.m8-btn-text-gray-100 {
    color: var(--text-gray-100)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-gray-100,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-gray-100,
.m8-btn.m8-btn-active-text-gray-100.active,
.m8-btn.m8-btn-active-text-gray-100.show,
.m8-btn.m8-btn-active-text-gray-100:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-100:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-100:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-gray-100 {
    color: var(--text-gray-100)
}

.m8-btn.m8-btn-color-gray-200 {
    color: var(--text-gray-200)
}

.m8-btn.m8-btn-color-gray-200 .svg-icon,
.m8-btn.m8-btn-color-gray-200 i {
    color: var(--text-gray-200)
}

.m8-btn.m8-btn-color-gray-200.dropdown-toggle:after {
    color: var(--text-gray-200)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-200,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-200,
.m8-btn.m8-btn-active-color-gray-200.active,
.m8-btn.m8-btn-active-color-gray-200.show,
.m8-btn.m8-btn-active-color-gray-200:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-200:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-200:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-gray-200 {
    color: var(--text-gray-200)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-200 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-200 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-200 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-200 i,
.m8-btn.m8-btn-active-color-gray-200.active .svg-icon,
.m8-btn.m8-btn-active-color-gray-200.active i,
.m8-btn.m8-btn-active-color-gray-200.show .svg-icon,
.m8-btn.m8-btn-active-color-gray-200.show i,
.m8-btn.m8-btn-active-color-gray-200:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-200:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-200:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-200:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-200:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-200:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-gray-200 .svg-icon,
.show>.m8-btn.m8-btn-active-color-gray-200 i {
    color: var(--text-gray-200)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-200.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-200.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-200.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-200.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-200:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-200:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-200:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-gray-200.dropdown-toggle:after {
    color: var(--text-gray-200)
}

.m8-btn.m8-btn-icon-gray-200 .svg-icon,
.m8-btn.m8-btn-icon-gray-200 i {
    color: var(--text-gray-200)
}

.m8-btn.m8-btn-icon-gray-200.dropdown-toggle:after {
    color: var(--text-gray-200)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-200 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-200 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-200 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-200 i,
.m8-btn.m8-btn-active-icon-gray-200.active .svg-icon,
.m8-btn.m8-btn-active-icon-gray-200.active i,
.m8-btn.m8-btn-active-icon-gray-200.show .svg-icon,
.m8-btn.m8-btn-active-icon-gray-200.show i,
.m8-btn.m8-btn-active-icon-gray-200:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-200:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-200:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-200:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-200:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-200:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-gray-200 .svg-icon,
.show>.m8-btn.m8-btn-active-icon-gray-200 i {
    color: var(--text-gray-200)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-200.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-200.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-200.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-200.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-200:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-200:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-200:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-gray-200.dropdown-toggle:after {
    color: var(--text-gray-200)
}

.m8-btn.m8-btn-text-gray-200 {
    color: var(--text-gray-200)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-gray-200,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-gray-200,
.m8-btn.m8-btn-active-text-gray-200.active,
.m8-btn.m8-btn-active-text-gray-200.show,
.m8-btn.m8-btn-active-text-gray-200:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-200:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-200:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-gray-200 {
    color: var(--text-gray-200)
}

.m8-btn.m8-btn-color-gray-300 {
    color: var(--text-gray-300)
}

.m8-btn.m8-btn-color-gray-300 .svg-icon,
.m8-btn.m8-btn-color-gray-300 i {
    color: var(--text-gray-300)
}

.m8-btn.m8-btn-color-gray-300.dropdown-toggle:after {
    color: var(--text-gray-300)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-300,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-300,
.m8-btn.m8-btn-active-color-gray-300.active,
.m8-btn.m8-btn-active-color-gray-300.show,
.m8-btn.m8-btn-active-color-gray-300:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-300:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-300:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-gray-300 {
    color: var(--text-gray-300)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-300 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-300 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-300 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-300 i,
.m8-btn.m8-btn-active-color-gray-300.active .svg-icon,
.m8-btn.m8-btn-active-color-gray-300.active i,
.m8-btn.m8-btn-active-color-gray-300.show .svg-icon,
.m8-btn.m8-btn-active-color-gray-300.show i,
.m8-btn.m8-btn-active-color-gray-300:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-300:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-300:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-300:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-300:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-300:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-gray-300 .svg-icon,
.show>.m8-btn.m8-btn-active-color-gray-300 i {
    color: var(--text-gray-300)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-300.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-300.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-300.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-300.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-300:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-300:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-300:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-gray-300.dropdown-toggle:after {
    color: var(--text-gray-300)
}

.m8-btn.m8-btn-icon-gray-300 .svg-icon,
.m8-btn.m8-btn-icon-gray-300 i {
    color: var(--text-gray-300)
}

.m8-btn.m8-btn-icon-gray-300.dropdown-toggle:after {
    color: var(--text-gray-300)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-300 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-300 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-300 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-300 i,
.m8-btn.m8-btn-active-icon-gray-300.active .svg-icon,
.m8-btn.m8-btn-active-icon-gray-300.active i,
.m8-btn.m8-btn-active-icon-gray-300.show .svg-icon,
.m8-btn.m8-btn-active-icon-gray-300.show i,
.m8-btn.m8-btn-active-icon-gray-300:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-300:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-300:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-300:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-300:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-300:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-gray-300 .svg-icon,
.show>.m8-btn.m8-btn-active-icon-gray-300 i {
    color: var(--text-gray-300)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-300.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-300.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-300.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-300.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-300:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-300:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-300:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-gray-300.dropdown-toggle:after {
    color: var(--text-gray-300)
}

.m8-btn.m8-btn-text-gray-300 {
    color: var(--text-gray-300)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-gray-300,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-gray-300,
.m8-btn.m8-btn-active-text-gray-300.active,
.m8-btn.m8-btn-active-text-gray-300.show,
.m8-btn.m8-btn-active-text-gray-300:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-300:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-300:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-gray-300 {
    color: var(--text-gray-300)
}

.m8-btn.m8-btn-color-gray-400 {
    color: var(--text-gray-400)
}

.m8-btn.m8-btn-color-gray-400 .svg-icon,
.m8-btn.m8-btn-color-gray-400 i {
    color: var(--text-gray-400)
}

.m8-btn.m8-btn-color-gray-400.dropdown-toggle:after {
    color: var(--text-gray-400)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-400,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-400,
.m8-btn.m8-btn-active-color-gray-400.active,
.m8-btn.m8-btn-active-color-gray-400.show,
.m8-btn.m8-btn-active-color-gray-400:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-400:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-400:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-gray-400 {
    color: var(--text-gray-400)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-400 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-400 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-400 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-400 i,
.m8-btn.m8-btn-active-color-gray-400.active .svg-icon,
.m8-btn.m8-btn-active-color-gray-400.active i,
.m8-btn.m8-btn-active-color-gray-400.show .svg-icon,
.m8-btn.m8-btn-active-color-gray-400.show i,
.m8-btn.m8-btn-active-color-gray-400:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-400:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-400:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-400:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-400:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-400:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-gray-400 .svg-icon,
.show>.m8-btn.m8-btn-active-color-gray-400 i {
    color: var(--text-gray-400)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-400.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-400.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-400.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-400.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-400:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-400:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-400:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-gray-400.dropdown-toggle:after {
    color: var(--text-gray-400)
}

.m8-btn.m8-btn-icon-gray-400 .svg-icon,
.m8-btn.m8-btn-icon-gray-400 i {
    color: var(--text-gray-400)
}

.m8-btn.m8-btn-icon-gray-400.dropdown-toggle:after {
    color: var(--text-gray-400)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-400 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-400 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-400 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-400 i,
.m8-btn.m8-btn-active-icon-gray-400.active .svg-icon,
.m8-btn.m8-btn-active-icon-gray-400.active i,
.m8-btn.m8-btn-active-icon-gray-400.show .svg-icon,
.m8-btn.m8-btn-active-icon-gray-400.show i,
.m8-btn.m8-btn-active-icon-gray-400:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-400:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-400:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-400:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-400:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-400:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-gray-400 .svg-icon,
.show>.m8-btn.m8-btn-active-icon-gray-400 i {
    color: var(--text-gray-400)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-400.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-400.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-400.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-400.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-400:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-400:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-400:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-gray-400.dropdown-toggle:after {
    color: var(--text-gray-400)
}

.m8-btn.m8-btn-text-gray-400 {
    color: var(--text-gray-400)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-gray-400,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-gray-400,
.m8-btn.m8-btn-active-text-gray-400.active,
.m8-btn.m8-btn-active-text-gray-400.show,
.m8-btn.m8-btn-active-text-gray-400:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-400:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-400:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-gray-400 {
    color: var(--text-gray-400)
}

.m8-btn.m8-btn-color-gray-500 {
    color: var(--text-gray-500)
}

.m8-btn.m8-btn-color-gray-500 .svg-icon,
.m8-btn.m8-btn-color-gray-500 i {
    color: var(--text-gray-500)
}

.m8-btn.m8-btn-color-gray-500.dropdown-toggle:after {
    color: var(--text-gray-500)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-500,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-500,
.m8-btn.m8-btn-active-color-gray-500.active,
.m8-btn.m8-btn-active-color-gray-500.show,
.m8-btn.m8-btn-active-color-gray-500:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-500:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-500:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-gray-500 {
    color: var(--text-gray-500)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-500 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-500 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-500 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-500 i,
.m8-btn.m8-btn-active-color-gray-500.active .svg-icon,
.m8-btn.m8-btn-active-color-gray-500.active i,
.m8-btn.m8-btn-active-color-gray-500.show .svg-icon,
.m8-btn.m8-btn-active-color-gray-500.show i,
.m8-btn.m8-btn-active-color-gray-500:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-500:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-500:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-500:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-500:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-500:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-gray-500 .svg-icon,
.show>.m8-btn.m8-btn-active-color-gray-500 i {
    color: var(--text-gray-500)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-500.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-500.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-500.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-500.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-500:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-500:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-500:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-gray-500.dropdown-toggle:after {
    color: var(--text-gray-500)
}

.m8-btn.m8-btn-icon-gray-500 .svg-icon,
.m8-btn.m8-btn-icon-gray-500 i {
    color: var(--text-gray-500)
}

.m8-btn.m8-btn-icon-gray-500.dropdown-toggle:after {
    color: var(--text-gray-500)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-500 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-500 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-500 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-500 i,
.m8-btn.m8-btn-active-icon-gray-500.active .svg-icon,
.m8-btn.m8-btn-active-icon-gray-500.active i,
.m8-btn.m8-btn-active-icon-gray-500.show .svg-icon,
.m8-btn.m8-btn-active-icon-gray-500.show i,
.m8-btn.m8-btn-active-icon-gray-500:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-500:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-500:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-500:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-500:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-500:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-gray-500 .svg-icon,
.show>.m8-btn.m8-btn-active-icon-gray-500 i {
    color: var(--text-gray-500)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-500.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-500.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-500.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-500.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-500:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-500:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-500:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-gray-500.dropdown-toggle:after {
    color: var(--text-gray-500)
}

.m8-btn.m8-btn-text-gray-500 {
    color: var(--text-gray-500)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-gray-500,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-gray-500,
.m8-btn.m8-btn-active-text-gray-500.active,
.m8-btn.m8-btn-active-text-gray-500.show,
.m8-btn.m8-btn-active-text-gray-500:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-500:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-500:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-gray-500 {
    color: var(--text-gray-500)
}

.m8-btn.m8-btn-color-gray-600 {
    color: var(--text-gray-600)
}

.m8-btn.m8-btn-color-gray-600 .svg-icon,
.m8-btn.m8-btn-color-gray-600 i {
    color: var(--text-gray-600)
}

.m8-btn.m8-btn-color-gray-600.dropdown-toggle:after {
    color: var(--text-gray-600)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-600,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-600,
.m8-btn.m8-btn-active-color-gray-600.active,
.m8-btn.m8-btn-active-color-gray-600.show,
.m8-btn.m8-btn-active-color-gray-600:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-600:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-600:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-gray-600 {
    color: var(--text-gray-600)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-600 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-600 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-600 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-600 i,
.m8-btn.m8-btn-active-color-gray-600.active .svg-icon,
.m8-btn.m8-btn-active-color-gray-600.active i,
.m8-btn.m8-btn-active-color-gray-600.show .svg-icon,
.m8-btn.m8-btn-active-color-gray-600.show i,
.m8-btn.m8-btn-active-color-gray-600:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-600:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-600:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-600:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-600:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-600:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-gray-600 .svg-icon,
.show>.m8-btn.m8-btn-active-color-gray-600 i {
    color: var(--text-gray-600)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-600.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-600.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-600.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-600.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-600:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-600:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-600:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-gray-600.dropdown-toggle:after {
    color: var(--text-gray-600)
}

.m8-btn.m8-btn-icon-gray-600 .svg-icon,
.m8-btn.m8-btn-icon-gray-600 i {
    color: var(--text-gray-600)
}

.m8-btn.m8-btn-icon-gray-600.dropdown-toggle:after {
    color: var(--text-gray-600)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-600 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-600 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-600 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-600 i,
.m8-btn.m8-btn-active-icon-gray-600.active .svg-icon,
.m8-btn.m8-btn-active-icon-gray-600.active i,
.m8-btn.m8-btn-active-icon-gray-600.show .svg-icon,
.m8-btn.m8-btn-active-icon-gray-600.show i,
.m8-btn.m8-btn-active-icon-gray-600:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-600:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-600:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-600:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-600:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-600:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-gray-600 .svg-icon,
.show>.m8-btn.m8-btn-active-icon-gray-600 i {
    color: var(--text-gray-600)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-600.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-600.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-600.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-600.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-600:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-600:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-600:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-gray-600.dropdown-toggle:after {
    color: var(--text-gray-600)
}

.m8-btn.m8-btn-text-gray-600 {
    color: var(--text-gray-600)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-gray-600,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-gray-600,
.m8-btn.m8-btn-active-text-gray-600.active,
.m8-btn.m8-btn-active-text-gray-600.show,
.m8-btn.m8-btn-active-text-gray-600:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-600:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-600:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-gray-600 {
    color: var(--text-gray-600)
}

.m8-btn.m8-btn-color-gray-700 {
    color: var(--text-gray-700)
}

.m8-btn.m8-btn-color-gray-700 .svg-icon,
.m8-btn.m8-btn-color-gray-700 i {
    color: var(--text-gray-700)
}

.m8-btn.m8-btn-color-gray-700.dropdown-toggle:after {
    color: var(--text-gray-700)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-700,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-700,
.m8-btn.m8-btn-active-color-gray-700.active,
.m8-btn.m8-btn-active-color-gray-700.show,
.m8-btn.m8-btn-active-color-gray-700:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-700:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-700:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-gray-700 {
    color: var(--text-gray-700)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-700 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-700 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-700 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-700 i,
.m8-btn.m8-btn-active-color-gray-700.active .svg-icon,
.m8-btn.m8-btn-active-color-gray-700.active i,
.m8-btn.m8-btn-active-color-gray-700.show .svg-icon,
.m8-btn.m8-btn-active-color-gray-700.show i,
.m8-btn.m8-btn-active-color-gray-700:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-700:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-700:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-700:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-700:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-700:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-gray-700 .svg-icon,
.show>.m8-btn.m8-btn-active-color-gray-700 i {
    color: var(--text-gray-700)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-700.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-700.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-700.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-700.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-700:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-700:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-700:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-gray-700.dropdown-toggle:after {
    color: var(--text-gray-700)
}

.m8-btn.m8-btn-icon-gray-700 .svg-icon,
.m8-btn.m8-btn-icon-gray-700 i {
    color: var(--text-gray-700)
}

.m8-btn.m8-btn-icon-gray-700.dropdown-toggle:after {
    color: var(--text-gray-700)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-700 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-700 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-700 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-700 i,
.m8-btn.m8-btn-active-icon-gray-700.active .svg-icon,
.m8-btn.m8-btn-active-icon-gray-700.active i,
.m8-btn.m8-btn-active-icon-gray-700.show .svg-icon,
.m8-btn.m8-btn-active-icon-gray-700.show i,
.m8-btn.m8-btn-active-icon-gray-700:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-700:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-700:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-700:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-700:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-700:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-gray-700 .svg-icon,
.show>.m8-btn.m8-btn-active-icon-gray-700 i {
    color: var(--text-gray-700)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-700.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-700.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-700.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-700.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-700:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-700:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-700:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-gray-700.dropdown-toggle:after {
    color: var(--text-gray-700)
}

.m8-btn.m8-btn-text-gray-700 {
    color: var(--text-gray-700)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-gray-700,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-gray-700,
.m8-btn.m8-btn-active-text-gray-700.active,
.m8-btn.m8-btn-active-text-gray-700.show,
.m8-btn.m8-btn-active-text-gray-700:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-700:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-700:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-gray-700 {
    color: var(--text-gray-700)
}

.m8-btn.m8-btn-color-gray-800 {
    color: var(--text-gray-800)
}

.m8-btn.m8-btn-color-gray-800 .svg-icon,
.m8-btn.m8-btn-color-gray-800 i {
    color: var(--text-gray-800)
}

.m8-btn.m8-btn-color-gray-800.dropdown-toggle:after {
    color: var(--text-gray-800)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-800,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-800,
.m8-btn.m8-btn-active-color-gray-800.active,
.m8-btn.m8-btn-active-color-gray-800.show,
.m8-btn.m8-btn-active-color-gray-800:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-800:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-800:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-gray-800 {
    color: var(--text-gray-800)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-800 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-800 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-800 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-800 i,
.m8-btn.m8-btn-active-color-gray-800.active .svg-icon,
.m8-btn.m8-btn-active-color-gray-800.active i,
.m8-btn.m8-btn-active-color-gray-800.show .svg-icon,
.m8-btn.m8-btn-active-color-gray-800.show i,
.m8-btn.m8-btn-active-color-gray-800:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-800:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-800:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-800:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-800:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-800:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-gray-800 .svg-icon,
.show>.m8-btn.m8-btn-active-color-gray-800 i {
    color: var(--text-gray-800)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-800.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-800.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-800.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-800.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-800:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-800:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-800:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-gray-800.dropdown-toggle:after {
    color: var(--text-gray-800)
}

.m8-btn.m8-btn-icon-gray-800 .svg-icon,
.m8-btn.m8-btn-icon-gray-800 i {
    color: var(--text-gray-800)
}

.m8-btn.m8-btn-icon-gray-800.dropdown-toggle:after {
    color: var(--text-gray-800)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-800 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-800 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-800 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-800 i,
.m8-btn.m8-btn-active-icon-gray-800.active .svg-icon,
.m8-btn.m8-btn-active-icon-gray-800.active i,
.m8-btn.m8-btn-active-icon-gray-800.show .svg-icon,
.m8-btn.m8-btn-active-icon-gray-800.show i,
.m8-btn.m8-btn-active-icon-gray-800:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-800:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-800:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-800:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-800:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-800:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-gray-800 .svg-icon,
.show>.m8-btn.m8-btn-active-icon-gray-800 i {
    color: var(--text-gray-800)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-800.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-800.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-800.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-800.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-800:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-800:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-800:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-gray-800.dropdown-toggle:after {
    color: var(--text-gray-800)
}

.m8-btn.m8-btn-text-gray-800 {
    color: var(--text-gray-800)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-gray-800,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-gray-800,
.m8-btn.m8-btn-active-text-gray-800.active,
.m8-btn.m8-btn-active-text-gray-800.show,
.m8-btn.m8-btn-active-text-gray-800:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-800:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-800:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-gray-800 {
    color: var(--text-gray-800)
}

.m8-btn.m8-btn-color-gray-900 {
    color: var(--text-gray-900)
}

.m8-btn.m8-btn-color-gray-900 .svg-icon,
.m8-btn.m8-btn-color-gray-900 i {
    color: var(--text-gray-900)
}

.m8-btn.m8-btn-color-gray-900.dropdown-toggle:after {
    color: var(--text-gray-900)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-900,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-900,
.m8-btn.m8-btn-active-color-gray-900.active,
.m8-btn.m8-btn-active-color-gray-900.show,
.m8-btn.m8-btn-active-color-gray-900:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-900:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-color-gray-900:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-color-gray-900 {
    color: var(--text-gray-900)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-900 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-900 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-900 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-900 i,
.m8-btn.m8-btn-active-color-gray-900.active .svg-icon,
.m8-btn.m8-btn-active-color-gray-900.active i,
.m8-btn.m8-btn-active-color-gray-900.show .svg-icon,
.m8-btn.m8-btn-active-color-gray-900.show i,
.m8-btn.m8-btn-active-color-gray-900:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-900:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-900:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-900:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-color-gray-900:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-color-gray-900:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-color-gray-900 .svg-icon,
.show>.m8-btn.m8-btn-active-color-gray-900 i {
    color: var(--text-gray-900)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-color-gray-900.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-color-gray-900.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-900.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-900.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-900:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-900:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-color-gray-900:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-color-gray-900.dropdown-toggle:after {
    color: var(--text-gray-900)
}

.m8-btn.m8-btn-icon-gray-900 .svg-icon,
.m8-btn.m8-btn-icon-gray-900 i {
    color: var(--text-gray-900)
}

.m8-btn.m8-btn-icon-gray-900.dropdown-toggle:after {
    color: var(--text-gray-900)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-900 .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-900 i,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-900 .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-900 i,
.m8-btn.m8-btn-active-icon-gray-900.active .svg-icon,
.m8-btn.m8-btn-active-icon-gray-900.active i,
.m8-btn.m8-btn-active-icon-gray-900.show .svg-icon,
.m8-btn.m8-btn-active-icon-gray-900.show i,
.m8-btn.m8-btn-active-icon-gray-900:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-900:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-900:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-900:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-active-icon-gray-900:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-active-icon-gray-900:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-active-icon-gray-900 .svg-icon,
.show>.m8-btn.m8-btn-active-icon-gray-900 i {
    color: var(--text-gray-900)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-icon-gray-900.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-active-icon-gray-900.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-900.active.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-900.show.dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-900:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-900:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-active-icon-gray-900:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-active-icon-gray-900.dropdown-toggle:after {
    color: var(--text-gray-900)
}

.m8-btn.m8-btn-text-gray-900 {
    color: var(--text-gray-900)
}

.m8-btn-check:active+.m8-btn.m8-btn-active-text-gray-900,
.m8-btn-check:checked+.m8-btn.m8-btn-active-text-gray-900,
.m8-btn.m8-btn-active-text-gray-900.active,
.m8-btn.m8-btn-active-text-gray-900.show,
.m8-btn.m8-btn-active-text-gray-900:active:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-900:focus:not(.m8-btn-active),
.m8-btn.m8-btn-active-text-gray-900:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-active-text-gray-900 {
    color: var(--text-gray-900)
}

.m8-btn.m8-btn-facebook {
    color: #fff;
    border-color: #3b5998;
    background-color: #3b5998
}

.m8-btn.m8-btn-facebook .svg-icon,
.m8-btn.m8-btn-facebook i {
    color: #fff
}

.m8-btn.m8-btn-facebook.dropdown-toggle:after {
    color: #fff
}

.m8-btn-check:active+.m8-btn.m8-btn-facebook,
.m8-btn-check:checked+.m8-btn.m8-btn-facebook,
.m8-btn.m8-btn-facebook.active,
.m8-btn.m8-btn-facebook.show,
.m8-btn.m8-btn-facebook:active:not(.m8-btn-active),
.m8-btn.m8-btn-facebook:focus:not(.m8-btn-active),
.m8-btn.m8-btn-facebook:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-facebook {
    border-color: #30497c;
    background-color: #30497c !important
}

.m8-btn.m8-btn-light-facebook {
    color: var(--facebook);
    color: #3b5998;
    border-color: rgba(59, 89, 152, .1);
    background-color: rgba(59, 89, 152, .1)
}

.m8-btn.m8-btn-light-facebook .svg-icon,
.m8-btn.m8-btn-light-facebook i {
    color: #3b5998
}

.m8-btn.m8-btn-light-facebook.dropdown-toggle:after {
    color: #3b5998
}

.m8-btn-check:active+.m8-btn.m8-btn-light-facebook,
.m8-btn-check:checked+.m8-btn.m8-btn-light-facebook,
.m8-btn.m8-btn-light-facebook.active,
.m8-btn.m8-btn-light-facebook.show,
.m8-btn.m8-btn-light-facebook:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-facebook:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-facebook:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-facebook {
    color: #fff;
    border-color: #3b5998;
    background-color: #3b5998 !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-facebook .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-facebook i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-facebook .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-facebook i,
.m8-btn.m8-btn-light-facebook.active .svg-icon,
.m8-btn.m8-btn-light-facebook.active i,
.m8-btn.m8-btn-light-facebook.show .svg-icon,
.m8-btn.m8-btn-light-facebook.show i,
.m8-btn.m8-btn-light-facebook:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-facebook:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-facebook:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-facebook:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-facebook:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-facebook:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-facebook .svg-icon,
.show>.m8-btn.m8-btn-light-facebook i {
    color: #fff
}

.m8-btn-check:active+.m8-btn.m8-btn-light-facebook.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-facebook.dropdown-toggle:after,
.m8-btn.m8-btn-light-facebook.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-facebook.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-facebook:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-facebook:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-facebook:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-facebook.dropdown-toggle:after {
    color: #fff
}

.m8-btn.m8-btn-google {
    color: #fff;
    border-color: #dd4b39;
    background-color: #dd4b39
}

.m8-btn.m8-btn-google .svg-icon,
.m8-btn.m8-btn-google i {
    color: #fff
}

.m8-btn.m8-btn-google.dropdown-toggle:after {
    color: #fff
}

.m8-btn-check:active+.m8-btn.m8-btn-google,
.m8-btn-check:checked+.m8-btn.m8-btn-google,
.m8-btn.m8-btn-google.active,
.m8-btn.m8-btn-google.show,
.m8-btn.m8-btn-google:active:not(.m8-btn-active),
.m8-btn.m8-btn-google:focus:not(.m8-btn-active),
.m8-btn.m8-btn-google:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-google {
    border-color: #cd3623;
    background-color: #cd3623 !important
}

.m8-btn.m8-btn-light-google {
    color: var(--google);
    color: #dd4b39;
    border-color: rgba(221, 75, 57, .1);
    background-color: rgba(221, 75, 57, .1)
}

.m8-btn.m8-btn-light-google .svg-icon,
.m8-btn.m8-btn-light-google i {
    color: #dd4b39
}

.m8-btn.m8-btn-light-google.dropdown-toggle:after {
    color: #dd4b39
}

.m8-btn-check:active+.m8-btn.m8-btn-light-google,
.m8-btn-check:checked+.m8-btn.m8-btn-light-google,
.m8-btn.m8-btn-light-google.active,
.m8-btn.m8-btn-light-google.show,
.m8-btn.m8-btn-light-google:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-google:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-google:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-google {
    color: #fff;
    border-color: #dd4b39;
    background-color: #dd4b39 !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-google .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-google i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-google .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-google i,
.m8-btn.m8-btn-light-google.active .svg-icon,
.m8-btn.m8-btn-light-google.active i,
.m8-btn.m8-btn-light-google.show .svg-icon,
.m8-btn.m8-btn-light-google.show i,
.m8-btn.m8-btn-light-google:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-google:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-google:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-google:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-google:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-google:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-google .svg-icon,
.show>.m8-btn.m8-btn-light-google i {
    color: #fff
}

.m8-btn-check:active+.m8-btn.m8-btn-light-google.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-google.dropdown-toggle:after,
.m8-btn.m8-btn-light-google.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-google.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-google:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-google:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-google:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-google.dropdown-toggle:after {
    color: #fff
}

.m8-btn.m8-btn-twitter {
    color: #fff;
    border-color: #1da1f2;
    background-color: #1da1f2
}

.m8-btn.m8-btn-twitter .svg-icon,
.m8-btn.m8-btn-twitter i {
    color: #fff
}

.m8-btn.m8-btn-twitter.dropdown-toggle:after {
    color: #fff
}

.m8-btn-check:active+.m8-btn.m8-btn-twitter,
.m8-btn-check:checked+.m8-btn.m8-btn-twitter,
.m8-btn.m8-btn-twitter.active,
.m8-btn.m8-btn-twitter.show,
.m8-btn.m8-btn-twitter:active:not(.m8-btn-active),
.m8-btn.m8-btn-twitter:focus:not(.m8-btn-active),
.m8-btn.m8-btn-twitter:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-twitter {
    border-color: #0d8ddc;
    background-color: #0d8ddc !important
}

.m8-btn.m8-btn-light-twitter {
    color: var(--twitter);
    color: #1da1f2;
    border-color: rgba(29, 161, 242, .1);
    background-color: rgba(29, 161, 242, .1)
}

.m8-btn.m8-btn-light-twitter .svg-icon,
.m8-btn.m8-btn-light-twitter i {
    color: #1da1f2
}

.m8-btn.m8-btn-light-twitter.dropdown-toggle:after {
    color: #1da1f2
}

.m8-btn-check:active+.m8-btn.m8-btn-light-twitter,
.m8-btn-check:checked+.m8-btn.m8-btn-light-twitter,
.m8-btn.m8-btn-light-twitter.active,
.m8-btn.m8-btn-light-twitter.show,
.m8-btn.m8-btn-light-twitter:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-twitter:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-twitter:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-twitter {
    color: #fff;
    border-color: #1da1f2;
    background-color: #1da1f2 !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-twitter .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-twitter i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-twitter .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-twitter i,
.m8-btn.m8-btn-light-twitter.active .svg-icon,
.m8-btn.m8-btn-light-twitter.active i,
.m8-btn.m8-btn-light-twitter.show .svg-icon,
.m8-btn.m8-btn-light-twitter.show i,
.m8-btn.m8-btn-light-twitter:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-twitter:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-twitter:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-twitter:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-twitter:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-twitter:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-twitter .svg-icon,
.show>.m8-btn.m8-btn-light-twitter i {
    color: #fff
}

.m8-btn-check:active+.m8-btn.m8-btn-light-twitter.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-twitter.dropdown-toggle:after,
.m8-btn.m8-btn-light-twitter.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-twitter.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-twitter:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-twitter:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-twitter:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-twitter.dropdown-toggle:after {
    color: #fff
}

.m8-btn.m8-btn-instagram {
    color: #fff;
    border-color: #e1306c;
    background-color: #e1306c
}

.m8-btn.m8-btn-instagram .svg-icon,
.m8-btn.m8-btn-instagram i {
    color: #fff
}

.m8-btn.m8-btn-instagram.dropdown-toggle:after {
    color: #fff
}

.m8-btn-check:active+.m8-btn.m8-btn-instagram,
.m8-btn-check:checked+.m8-btn.m8-btn-instagram,
.m8-btn.m8-btn-instagram.active,
.m8-btn.m8-btn-instagram.show,
.m8-btn.m8-btn-instagram:active:not(.m8-btn-active),
.m8-btn.m8-btn-instagram:focus:not(.m8-btn-active),
.m8-btn.m8-btn-instagram:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-instagram {
    border-color: #cd1e59;
    background-color: #cd1e59 !important
}

.m8-btn.m8-btn-light-instagram {
    color: var(--instagram);
    color: #e1306c;
    border-color: rgba(225, 48, 108, .1);
    background-color: rgba(225, 48, 108, .1)
}

.m8-btn.m8-btn-light-instagram .svg-icon,
.m8-btn.m8-btn-light-instagram i {
    color: #e1306c
}

.m8-btn.m8-btn-light-instagram.dropdown-toggle:after {
    color: #e1306c
}

.m8-btn-check:active+.m8-btn.m8-btn-light-instagram,
.m8-btn-check:checked+.m8-btn.m8-btn-light-instagram,
.m8-btn.m8-btn-light-instagram.active,
.m8-btn.m8-btn-light-instagram.show,
.m8-btn.m8-btn-light-instagram:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-instagram:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-instagram:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-instagram {
    color: #fff;
    border-color: #e1306c;
    background-color: #e1306c !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-instagram .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-instagram i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-instagram .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-instagram i,
.m8-btn.m8-btn-light-instagram.active .svg-icon,
.m8-btn.m8-btn-light-instagram.active i,
.m8-btn.m8-btn-light-instagram.show .svg-icon,
.m8-btn.m8-btn-light-instagram.show i,
.m8-btn.m8-btn-light-instagram:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-instagram:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-instagram:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-instagram:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-instagram:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-instagram:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-instagram .svg-icon,
.show>.m8-btn.m8-btn-light-instagram i {
    color: #fff
}

.m8-btn-check:active+.m8-btn.m8-btn-light-instagram.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-instagram.dropdown-toggle:after,
.m8-btn.m8-btn-light-instagram.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-instagram.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-instagram:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-instagram:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-instagram:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-instagram.dropdown-toggle:after {
    color: #fff
}

.m8-btn.m8-btn-youtube {
    color: #fff;
    border-color: red;
    background-color: red
}

.m8-btn.m8-btn-youtube .svg-icon,
.m8-btn.m8-btn-youtube i {
    color: #fff
}

.m8-btn.m8-btn-youtube.dropdown-toggle:after {
    color: #fff
}

.m8-btn-check:active+.m8-btn.m8-btn-youtube,
.m8-btn-check:checked+.m8-btn.m8-btn-youtube,
.m8-btn.m8-btn-youtube.active,
.m8-btn.m8-btn-youtube.show,
.m8-btn.m8-btn-youtube:active:not(.m8-btn-active),
.m8-btn.m8-btn-youtube:focus:not(.m8-btn-active),
.m8-btn.m8-btn-youtube:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-youtube {
    border-color: #d90000;
    background-color: #d90000 !important
}

.m8-btn.m8-btn-light-youtube {
    color: var(--youtube);
    color: red;
    border-color: rgba(255, 0, 0, .1);
    background-color: rgba(255, 0, 0, .1)
}

.m8-btn.m8-btn-light-youtube .svg-icon,
.m8-btn.m8-btn-light-youtube i {
    color: red
}

.m8-btn.m8-btn-light-youtube.dropdown-toggle:after {
    color: red
}

.m8-btn-check:active+.m8-btn.m8-btn-light-youtube,
.m8-btn-check:checked+.m8-btn.m8-btn-light-youtube,
.m8-btn.m8-btn-light-youtube.active,
.m8-btn.m8-btn-light-youtube.show,
.m8-btn.m8-btn-light-youtube:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-youtube:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-youtube:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-youtube {
    color: #fff;
    border-color: red;
    background-color: red !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-youtube .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-youtube i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-youtube .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-youtube i,
.m8-btn.m8-btn-light-youtube.active .svg-icon,
.m8-btn.m8-btn-light-youtube.active i,
.m8-btn.m8-btn-light-youtube.show .svg-icon,
.m8-btn.m8-btn-light-youtube.show i,
.m8-btn.m8-btn-light-youtube:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-youtube:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-youtube:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-youtube:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-youtube:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-youtube:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-youtube .svg-icon,
.show>.m8-btn.m8-btn-light-youtube i {
    color: #fff
}

.m8-btn-check:active+.m8-btn.m8-btn-light-youtube.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-youtube.dropdown-toggle:after,
.m8-btn.m8-btn-light-youtube.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-youtube.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-youtube:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-youtube:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-youtube:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-youtube.dropdown-toggle:after {
    color: #fff
}

.m8-btn.m8-btn-linkedin {
    color: #fff;
    border-color: #0077b5;
    background-color: #0077b5
}

.m8-btn.m8-btn-linkedin .svg-icon,
.m8-btn.m8-btn-linkedin i {
    color: #fff
}

.m8-btn.m8-btn-linkedin.dropdown-toggle:after {
    color: #fff
}

.m8-btn-check:active+.m8-btn.m8-btn-linkedin,
.m8-btn-check:checked+.m8-btn.m8-btn-linkedin,
.m8-btn.m8-btn-linkedin.active,
.m8-btn.m8-btn-linkedin.show,
.m8-btn.m8-btn-linkedin:active:not(.m8-btn-active),
.m8-btn.m8-btn-linkedin:focus:not(.m8-btn-active),
.m8-btn.m8-btn-linkedin:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-linkedin {
    border-color: #005e8f;
    background-color: #005e8f !important
}

.m8-btn.m8-btn-light-linkedin {
    color: var(--linkedin);
    color: #0077b5;
    border-color: rgba(0, 119, 181, .1);
    background-color: rgba(0, 119, 181, .1)
}

.m8-btn.m8-btn-light-linkedin .svg-icon,
.m8-btn.m8-btn-light-linkedin i {
    color: #0077b5
}

.m8-btn.m8-btn-light-linkedin.dropdown-toggle:after {
    color: #0077b5
}

.m8-btn-check:active+.m8-btn.m8-btn-light-linkedin,
.m8-btn-check:checked+.m8-btn.m8-btn-light-linkedin,
.m8-btn.m8-btn-light-linkedin.active,
.m8-btn.m8-btn-light-linkedin.show,
.m8-btn.m8-btn-light-linkedin:active:not(.m8-btn-active),
.m8-btn.m8-btn-light-linkedin:focus:not(.m8-btn-active),
.m8-btn.m8-btn-light-linkedin:hover:not(.m8-btn-active),
.show>.m8-btn.m8-btn-light-linkedin {
    color: #fff;
    border-color: #0077b5;
    background-color: #0077b5 !important
}

.m8-btn-check:active+.m8-btn.m8-btn-light-linkedin .svg-icon,
.m8-btn-check:active+.m8-btn.m8-btn-light-linkedin i,
.m8-btn-check:checked+.m8-btn.m8-btn-light-linkedin .svg-icon,
.m8-btn-check:checked+.m8-btn.m8-btn-light-linkedin i,
.m8-btn.m8-btn-light-linkedin.active .svg-icon,
.m8-btn.m8-btn-light-linkedin.active i,
.m8-btn.m8-btn-light-linkedin.show .svg-icon,
.m8-btn.m8-btn-light-linkedin.show i,
.m8-btn.m8-btn-light-linkedin:active:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-linkedin:active:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-linkedin:focus:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-linkedin:focus:not(.m8-btn-active) i,
.m8-btn.m8-btn-light-linkedin:hover:not(.m8-btn-active) .svg-icon,
.m8-btn.m8-btn-light-linkedin:hover:not(.m8-btn-active) i,
.show>.m8-btn.m8-btn-light-linkedin .svg-icon,
.show>.m8-btn.m8-btn-light-linkedin i {
    color: #fff
}

.m8-btn-check:active+.m8-btn.m8-btn-light-linkedin.dropdown-toggle:after,
.m8-btn-check:checked+.m8-btn.m8-btn-light-linkedin.dropdown-toggle:after,
.m8-btn.m8-btn-light-linkedin.active.dropdown-toggle:after,
.m8-btn.m8-btn-light-linkedin.show.dropdown-toggle:after,
.m8-btn.m8-btn-light-linkedin:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-linkedin:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-btn.m8-btn-light-linkedin:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-btn.m8-btn-light-linkedin.dropdown-toggle:after {
    color: #fff
}

[data-bs-theme=dark] .m8-btn.m8-btn-dark {
    color: #b5b7c8;
    background-color: #464852
}

[data-bs-theme=dark] .m8-btn.m8-btn-dark .svg-icon,
[data-bs-theme=dark] .m8-btn.m8-btn-dark i {
    color: #b5b7c8
}

[data-bs-theme=dark] .m8-btn.m8-btn-dark.dropdown-toggle:after {
    color: #b5b7c8
}

.m8-btn-check:active+[data-bs-theme=dark] .m8-btn.m8-btn-dark,
.m8-btn-check:checked+[data-bs-theme=dark] .m8-btn.m8-btn-dark,
.show>[data-bs-theme=dark] .m8-btn.m8-btn-dark,
[data-bs-theme=dark] .m8-btn.m8-btn-dark.active,
[data-bs-theme=dark] .m8-btn.m8-btn-dark.show,
[data-bs-theme=dark] .m8-btn.m8-btn-dark:active:not(.m8-btn-active),
[data-bs-theme=dark] .m8-btn.m8-btn-dark:focus:not(.m8-btn-active),
[data-bs-theme=dark] .m8-btn.m8-btn-dark:hover:not(.m8-btn-active) {
    color: #bec0cf;
    background-color: #4d4f5a !important
}

.m8-btn-check:active+[data-bs-theme=dark] .m8-btn.m8-btn-dark .svg-icon,
.m8-btn-check:active+[data-bs-theme=dark] .m8-btn.m8-btn-dark i,
.m8-btn-check:checked+[data-bs-theme=dark] .m8-btn.m8-btn-dark .svg-icon,
.m8-btn-check:checked+[data-bs-theme=dark] .m8-btn.m8-btn-dark i,
.show>[data-bs-theme=dark] .m8-btn.m8-btn-dark .svg-icon,
.show>[data-bs-theme=dark] .m8-btn.m8-btn-dark i,
[data-bs-theme=dark] .m8-btn.m8-btn-dark.active .svg-icon,
[data-bs-theme=dark] .m8-btn.m8-btn-dark.active i,
[data-bs-theme=dark] .m8-btn.m8-btn-dark.show .svg-icon,
[data-bs-theme=dark] .m8-btn.m8-btn-dark.show i,
[data-bs-theme=dark] .m8-btn.m8-btn-dark:active:not(.m8-btn-active) .svg-icon,
[data-bs-theme=dark] .m8-btn.m8-btn-dark:active:not(.m8-btn-active) i,
[data-bs-theme=dark] .m8-btn.m8-btn-dark:focus:not(.m8-btn-active) .svg-icon,
[data-bs-theme=dark] .m8-btn.m8-btn-dark:focus:not(.m8-btn-active) i,
[data-bs-theme=dark] .m8-btn.m8-btn-dark:hover:not(.m8-btn-active) .svg-icon,
[data-bs-theme=dark] .m8-btn.m8-btn-dark:hover:not(.m8-btn-active) i {
    color: #bec0cf
}

.m8-btn-check:active+[data-bs-theme=dark] .m8-btn.m8-btn-dark.dropdown-toggle:after,
.m8-btn-check:checked+[data-bs-theme=dark] .m8-btn.m8-btn-dark.dropdown-toggle:after,
.show>[data-bs-theme=dark] .m8-btn.m8-btn-dark.dropdown-toggle:after,
[data-bs-theme=dark] .m8-btn.m8-btn-dark.active.dropdown-toggle:after,
[data-bs-theme=dark] .m8-btn.m8-btn-dark.show.dropdown-toggle:after,
[data-bs-theme=dark] .m8-btn.m8-btn-dark:active:not(.m8-btn-active).dropdown-toggle:after,
[data-bs-theme=dark] .m8-btn.m8-btn-dark:focus:not(.m8-btn-active).dropdown-toggle:after,
[data-bs-theme=dark] .m8-btn.m8-btn-dark:hover:not(.m8-btn-active).dropdown-toggle:after {
    color: #bec0cf
}


.m8-app-engage {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 5;
    padding-right: 12px
}

.m8-app-engage .m8-app-engage-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: var(--engage-btn-box-shadow);
    border-width: 1px;
    border-style: solid;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    border-radius: 6px;
    width: 66px;
    height: 70px;
    color: var(--engage-btn-color);
    border-color: var(--engage-btn-border-color);
    background-color: var(--engage-btn-bg)
}

.m8-app-engage .m8-app-engage-btn .svg-icon,
.m8-app-engage .m8-app-engage-btn i {
    color: var(--engage-btn-icon-color)
}

.m8-app-engage .m8-app-engage-btn.dropdown-toggle:after {
    color: var(--engage-btn-icon-color)
}

.m8-app-engage .m8-app-engage-btn.m8-hover-dark:hover {
    color: var(--dark-inverse);
    border-color: var(--dark);
    background-color: var(--dark)
}

.m8-app-engage .m8-app-engage-btn.m8-hover-dark:hover .svg-icon,
.m8-app-engage .m8-app-engage-btn.m8-hover-dark:hover i {
    color: var(--dark-inverse)
}

.m8-app-engage .m8-app-engage-btn.m8-hover-info:hover {
    color: var(--info-inverse);
    border-color: var(--info);
    background-color: var(--info)
}

.m8-app-engage .m8-app-engage-btn.m8-hover-info:hover .svg-icon,
.m8-app-engage .m8-app-engage-btn.m8-hover-info:hover i {
    color: var(--primary-inverse)
}

.m8-app-engage .m8-app-engage-btn.m8-hover-primary:hover {
    color: var(--primary-inverse);
    border-color: var(--primary);
    background-color: var(--primary)
}

.m8-app-engage .m8-app-engage-btn.m8-hover-primary:hover .svg-icon,
.m8-app-engage .m8-app-engage-btn.m8-hover-primary:hover i {
    color: var(--primary-inverse)
}

.m8-app-engage .m8-app-engage-btn.m8-hover-success:hover {
    color: var(--success-inverse);
    border-color: var(--success);
    background-color: var(--success)
}

.m8-app-engage .m8-app-engage-btn.m8-hover-success:hover .svg-icon,
.m8-app-engage .m8-app-engage-btn.m8-hover-success:hover i {
    color: var(--success-inverse)
}

.m8-app-engage .m8-app-engage-btn.m8-hover-danger:hover {
    color: var(--danger-inverse);
    border-color: var(--danger);
    background-color: var(--danger)
}

.m8-app-engage .m8-app-engage-btn.m8-hover-danger:hover .svg-icon,
.m8-app-engage .m8-app-engage-btn.m8-hover-danger:hover i {
    color: var(--danger-inverse)
}

.m8-app-engage .m8-app-engage-btn.m8-hover-warning:hover {
    color: var(--warning-inverse);
    border-color: var(--warning);
    background-color: var(--warning)
}

.m8-app-engage .m8-app-engage-btn.m8-hover-warning:hover .svg-icon,
.m8-app-engage .m8-app-engage-btn.m8-hover-warning:hover i {
    color: var(--warning-inverse)
}

.m8-app-engage .m8-app-engage-btn.m8-app-engage-btn-toggle-off {
    width: 35px;
    height: 35px
}

.m8-app-engage .m8-app-engage-btn.m8-app-engage-btn-toggle-on {
    width: 35px;
    height: 35px;
    display: none
}

.m8-app-engage.m8-app-engage-hide .m8-app-engage-btn {
    visibility: hidden
}

.m8-app-engage.m8-app-engage-hide .m8-app-engage-btn.m8-app-engage-btn-toggle-off {
    display: none
}

.m8-app-engage.m8-app-engage-hide .m8-app-engage-btn.m8-app-engage-btn-toggle-on {
    visibility: visible;
    display: flex
}

.m8-engage-btn {
    display: flex;
    align-items: center;
    height: 35px !important;
    color: var(--engage-btn-color);
    border-color: var(--engage-btn-bg);
    background-color: var(--engage-btn-bg)
}

.m8-engage-btn .svg-icon,
.m8-engage-btn i {
    color: var(--engage-btn-color)
}

.m8-engage-btn.dropdown-toggle:after {
    color: var(--engage-btn-color)
}

.m8-btn-check:active+.m8-engage-btn,
.m8-btn-check:checked+.m8-engage-btn,
.m8-engage-btn.active,
.m8-engage-btn.show,
.m8-engage-btn:active:not(.m8-btn-active),
.m8-engage-btn:focus:not(.m8-btn-active),
.m8-engage-btn:hover:not(.m8-btn-active),
.show>.m8-engage-btn {
    color: var(--engage-btn-color-active);
    border-color: var(--engage-btn-bg);
    background-color: var(--engage-btn-bg) !important
}

.m8-btn-check:active+.m8-engage-btn .svg-icon,
.m8-btn-check:active+.m8-engage-btn i,
.m8-btn-check:checked+.m8-engage-btn .svg-icon,
.m8-btn-check:checked+.m8-engage-btn i,
.m8-engage-btn.active .svg-icon,
.m8-engage-btn.active i,
.m8-engage-btn.show .svg-icon,
.m8-engage-btn.show i,
.m8-engage-btn:active:not(.m8-btn-active) .svg-icon,
.m8-engage-btn:active:not(.m8-btn-active) i,
.m8-engage-btn:focus:not(.m8-btn-active) .svg-icon,
.m8-engage-btn:focus:not(.m8-btn-active) i,
.m8-engage-btn:hover:not(.m8-btn-active) .svg-icon,
.m8-engage-btn:hover:not(.m8-btn-active) i,
.show>.m8-engage-btn .svg-icon,
.show>.m8-engage-btn i {
    color: var(--engage-btn-color-active)
}

.m8-btn-check:active+.m8-engage-btn.dropdown-toggle:after,
.m8-btn-check:checked+.m8-engage-btn.dropdown-toggle:after,
.m8-engage-btn.active.dropdown-toggle:after,
.m8-engage-btn.show.dropdown-toggle:after,
.m8-engage-btn:active:not(.m8-btn-active).dropdown-toggle:after,
.m8-engage-btn:focus:not(.m8-btn-active).dropdown-toggle:after,
.m8-engage-btn:hover:not(.m8-btn-active).dropdown-toggle:after,
.show>.m8-engage-btn.dropdown-toggle:after {
    color: var(--engage-btn-color-active)
}


.m8-btn-check:active+body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom .svg-icon,
.m8-btn-check:active+body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom i,
.m8-btn-check:checked+body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom .svg-icon,
.m8-btn-check:checked+body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom i,
.show>body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom .svg-icon,
.show>body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom i,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom.active .svg-icon,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom.active i,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom.show .svg-icon,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom.show i,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom:active:not(.m8-btn-active) .svg-icon,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom:active:not(.m8-btn-active) i,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom:focus:not(.m8-btn-active) .svg-icon,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom:focus:not(.m8-btn-active) i,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom:hover:not(.m8-btn-active) .svg-icon,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom:hover:not(.m8-btn-active) i {
    color: #fff
}

.m8-btn-check:active+body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom.dropdown-toggle:after,
.m8-btn-check:checked+body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom.dropdown-toggle:after,
.show>body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom.dropdown-toggle:after,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom.active.dropdown-toggle:after,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom.show.dropdown-toggle:after,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom:active:not(.m8-btn-active).dropdown-toggle:after,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom:focus:not(.m8-btn-active).dropdown-toggle:after,
body:not([data-kt-sticky-header=on]) .topbar .m8-btn.m8-btn-custom:hover:not(.m8-btn-active).dropdown-toggle:after {
    color: #fff
}

body:not([data-kt-sticky-header=on]) .topbar .active.show>.m8-btn.m8-btn-custom {
    color: #fff;
    background-color: rgba(255, 255, 255, .1) !important
}

body:not([data-kt-sticky-header=on]) .topbar .active.show>.m8-btn.m8-btn-custom .svg-icon,
body:not([data-kt-sticky-header=on]) .topbar .active.show>.m8-btn.m8-btn-custom i {
    color: #fff
}

.toolbar {
    display: flex;
    align-items: center
}

.toolbar .m8-btn.m8-btn-custom {
    background-color: rgba(255, 255, 255, .1)
}


.m8-btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.m8-btn-check:disabled+.m8-btn,
.m8-btn-check[disabled]+.m8-btn {
    pointer-events: none;
    filter: none;
    opacity: .65
}


.m8-btn {
    --btn-padding-x: 1.5rem;
    --btn-padding-y: 0.775rem;
    --btn-font-size: 1.1rem;
    --btn-font-weight: 500;
    --btn-line-height: 1.5;
    --btn-color: var(--body-color);
    --btn-bg: transparent;
    --btn-border-width: 1px;
    --btn-border-color: transparent;
    --btn-border-radius: 0.475rem;
    --btn-hover-border-color: transparent;
    --btn-box-shadow: none;
    --btn-disabled-opacity: 0.65;
    --btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--btn-padding-y) var(--btn-padding-x);
    font-family: var(--btn-font-family);
    font-size: var(--btn-font-size);
    font-weight: var(--btn-font-weight);
    line-height: var(--btn-line-height);
    color: var(--btn-color);
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: var(--btn-border-width) solid var(--btn-border-color);
    border-radius: var(--btn-border-radius);
    background-color: var(--btn-bg);
    box-shadow: var(--btn-box-shadow);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .m8-btn {
        transition: none
    }
}

.m8-btn:hover {
    color: var(--btn-hover-color);
    background-color: var(--btn-hover-bg);
    border-color: var(--btn-hover-border-color)
}

.m8-btn-check+.m8-btn:hover {
    color: var(--btn-color);
    background-color: var(--btn-bg);
    border-color: var(--btn-border-color)
}

.m8-btn:focus-visible {
    color: var(--btn-hover-color);
    background-color: var(--btn-hover-bg);
    border-color: var(--btn-hover-border-color);
    outline: 0;
    box-shadow: var(--btn-box-shadow), var(--btn-focus-box-shadow)
}

.m8-btn-check:focus-visible+.m8-btn {
    border-color: var(--btn-hover-border-color);
    outline: 0;
    box-shadow: var(--btn-box-shadow), var(--btn-focus-box-shadow)
}

.m8-btn-check:checked+.m8-btn,
.m8-btn.active,
.m8-btn.show,
.m8-btn:first-child:active,
:not(.m8-btn-check)+.m8-btn:active {
    color: var(--btn-active-color);
    background-color: var(--btn-active-bg);
    border-color: var(--btn-active-border-color);
    box-shadow: var(--btn-active-shadow)
}

.m8-btn-check:checked+.m8-btn:focus-visible,
.m8-btn.active:focus-visible,
.m8-btn.show:focus-visible,
.m8-btn:first-child:active:focus-visible,
:not(.m8-btn-check)+.m8-btn:active:focus-visible {
    box-shadow: var(--btn-active-shadow), var(--btn-focus-box-shadow)
}

.m8-btn-check:checked:focus-visible+.m8-btn {
    box-shadow: var(--btn-active-shadow), var(--btn-focus-box-shadow)
}

.m8-btn.disabled,
.m8-btn:disabled,
fieldset:disabled .m8-btn {
    color: var(--btn-disabled-color);
    pointer-events: none;
    background-color: var(--btn-disabled-bg);
    border-color: var(--btn-disabled-border-color);
    opacity: var(--btn-disabled-opacity);
    box-shadow: none
}

.m8-btn-light {
    --btn-color: #000000;
    --btn-bg: #F9F9F9;
    --btn-border-color: #F9F9F9;
    --btn-hover-color: #000000;
    --btn-hover-bg: #d4d4d4;
    --btn-hover-border-color: #c7c7c7;
    --btn-focus-shadow-rgb: 212, 212, 212;
    --btn-active-color: #000000;
    --btn-active-bg: #c7c7c7;
    --btn-active-border-color: #bbbbbb;
    --btn-active-shadow: none;
    --btn-disabled-color: #000000;
    --btn-disabled-bg: #F9F9F9;
    --btn-disabled-border-color: #F9F9F9
}

.m8-btn-primary {
    --btn-color: #000000;
    --btn-bg: #1B84FF;
    --btn-border-color: #1B84FF;
    --btn-hover-color: #000000;
    --btn-hover-bg: #3d96ff;
    --btn-hover-border-color: #3290ff;
    --btn-focus-shadow-rgb: 23, 112, 217;
    --btn-active-color: #000000;
    --btn-active-bg: #499dff;
    --btn-active-border-color: #3290ff;
    --btn-active-shadow: none;
    --btn-disabled-color: #000000;
    --btn-disabled-bg: #1B84FF;
    --btn-disabled-border-color: #1B84FF
}

.m8-btn-secondary {
    --btn-color: #000000;
    --btn-bg: #F1F1F4;
    --btn-border-color: #F1F1F4;
    --btn-hover-color: #000000;
    --btn-hover-bg: #f3f3f6;
    --btn-hover-border-color: #f2f2f5;
    --btn-focus-shadow-rgb: 205, 205, 207;
    --btn-active-color: #000000;
    --btn-active-bg: #f4f4f6;
    --btn-active-border-color: #f2f2f5;
    --btn-active-shadow: none;
    --btn-disabled-color: #000000;
    --btn-disabled-bg: #F1F1F4;
    --btn-disabled-border-color: #F1F1F4
}

.m8-btn-success {
    --btn-color: #000000;
    --btn-bg: #17C653;
    --btn-border-color: #17C653;
    --btn-hover-color: #000000;
    --btn-hover-bg: #3acf6d;
    --btn-hover-border-color: #2ecc64;
    --btn-focus-shadow-rgb: 20, 168, 71;
    --btn-active-color: #000000;
    --btn-active-bg: #45d175;
    --btn-active-border-color: #2ecc64;
    --btn-active-shadow: none;
    --btn-disabled-color: #000000;
    --btn-disabled-bg: #17C653;
    --btn-disabled-border-color: #17C653
}

.m8-btn-info {
    --btn-color: #ffffff;
    --btn-bg: #7239EA;
    --btn-border-color: #7239EA;
    --btn-hover-color: #ffffff;
    --btn-hover-bg: #6130c7;
    --btn-hover-border-color: #5b2ebb;
    --btn-focus-shadow-rgb: 135, 87, 237;
    --btn-active-color: #ffffff;
    --btn-active-bg: #5b2ebb;
    --btn-active-border-color: #562bb0;
    --btn-active-shadow: none;
    --btn-disabled-color: #ffffff;
    --btn-disabled-bg: #7239EA;
    --btn-disabled-border-color: #7239EA
}

.m8-btn-warning {
    --btn-color: #000000;
    --btn-bg: #F6C000;
    --btn-border-color: #F6C000;
    --btn-hover-color: #000000;
    --btn-hover-bg: #f7c926;
    --btn-hover-border-color: #f7c61a;
    --btn-focus-shadow-rgb: 209, 163, 0;
    --btn-active-color: #000000;
    --btn-active-bg: #f8cd33;
    --btn-active-border-color: #f7c61a;
    --btn-active-shadow: none;
    --btn-disabled-color: #000000;
    --btn-disabled-bg: #F6C000;
    --btn-disabled-border-color: #F6C000
}

.m8-btn-danger {
    --btn-color: #000000;
    --btn-bg: #F8285A;
    --btn-border-color: #F8285A;
    --btn-hover-color: #000000;
    --btn-hover-bg: #f94873;
    --btn-hover-border-color: #f93e6b;
    --btn-focus-shadow-rgb: 211, 34, 77;
    --btn-active-color: #000000;
    --btn-active-bg: #f9537b;
    --btn-active-border-color: #f93e6b;
    --btn-active-shadow: none;
    --btn-disabled-color: #000000;
    --btn-disabled-bg: #F8285A;
    --btn-disabled-border-color: #F8285A
}

.m8-btn-dark {
    --btn-color: #ffffff;
    --btn-bg: #1E2129;
    --btn-border-color: #1E2129;
    --btn-hover-color: #ffffff;
    --btn-hover-bg: #404249;
    --btn-hover-border-color: #35373e;
    --btn-focus-shadow-rgb: 64, 66, 73;
    --btn-active-color: #ffffff;
    --btn-active-bg: #4b4d54;
    --btn-active-border-color: #35373e;
    --btn-active-shadow: none;
    --btn-disabled-color: #ffffff;
    --btn-disabled-bg: #1E2129;
    --btn-disabled-border-color: #1E2129
}

.m8-btn-outline-light {
    --btn-color: #F9F9F9;
    --btn-border-color: #F9F9F9;
    --btn-hover-color: #000000;
    --btn-hover-bg: #F9F9F9;
    --btn-hover-border-color: #F9F9F9;
    --btn-focus-shadow-rgb: 249, 249, 249;
    --btn-active-color: #000000;
    --btn-active-bg: #F9F9F9;
    --btn-active-border-color: #F9F9F9;
    --btn-active-shadow: none;
    --btn-disabled-color: #F9F9F9;
    --btn-disabled-bg: transparent;
    --btn-disabled-border-color: #F9F9F9;
    --gradient: none
}

.m8-btn-outline-primary {
    --btn-color: #1B84FF;
    --btn-border-color: #1B84FF;
    --btn-hover-color: #000000;
    --btn-hover-bg: #1B84FF;
    --btn-hover-border-color: #1B84FF;
    --btn-focus-shadow-rgb: 27, 132, 255;
    --btn-active-color: #000000;
    --btn-active-bg: #1B84FF;
    --btn-active-border-color: #1B84FF;
    --btn-active-shadow: none;
    --btn-disabled-color: #1B84FF;
    --btn-disabled-bg: transparent;
    --btn-disabled-border-color: #1B84FF;
    --gradient: none
}

.m8-btn-outline-secondary {
    --btn-color: #F1F1F4;
    --btn-border-color: #F1F1F4;
    --btn-hover-color: #000000;
    --btn-hover-bg: #F1F1F4;
    --btn-hover-border-color: #F1F1F4;
    --btn-focus-shadow-rgb: 241, 241, 244;
    --btn-active-color: #000000;
    --btn-active-bg: #F1F1F4;
    --btn-active-border-color: #F1F1F4;
    --btn-active-shadow: none;
    --btn-disabled-color: #F1F1F4;
    --btn-disabled-bg: transparent;
    --btn-disabled-border-color: #F1F1F4;
    --gradient: none
}

.m8-btn-outline-success {
    --btn-color: #17C653;
    --btn-border-color: #17C653;
    --btn-hover-color: #000000;
    --btn-hover-bg: #17C653;
    --btn-hover-border-color: #17C653;
    --btn-focus-shadow-rgb: 23, 198, 83;
    --btn-active-color: #000000;
    --btn-active-bg: #17C653;
    --btn-active-border-color: #17C653;
    --btn-active-shadow: none;
    --btn-disabled-color: #17C653;
    --btn-disabled-bg: transparent;
    --btn-disabled-border-color: #17C653;
    --gradient: none
}

.m8-btn-outline-info {
    --btn-color: #7239EA;
    --btn-border-color: #7239EA;
    --btn-hover-color: #ffffff;
    --btn-hover-bg: #7239EA;
    --btn-hover-border-color: #7239EA;
    --btn-focus-shadow-rgb: 114, 57, 234;
    --btn-active-color: #ffffff;
    --btn-active-bg: #7239EA;
    --btn-active-border-color: #7239EA;
    --btn-active-shadow: none;
    --btn-disabled-color: #7239EA;
    --btn-disabled-bg: transparent;
    --btn-disabled-border-color: #7239EA;
    --gradient: none
}

.m8-btn-outline-warning {
    --btn-color: #F6C000;
    --btn-border-color: #F6C000;
    --btn-hover-color: #000000;
    --btn-hover-bg: #F6C000;
    --btn-hover-border-color: #F6C000;
    --btn-focus-shadow-rgb: 246, 192, 0;
    --btn-active-color: #000000;
    --btn-active-bg: #F6C000;
    --btn-active-border-color: #F6C000;
    --btn-active-shadow: none;
    --btn-disabled-color: #F6C000;
    --btn-disabled-bg: transparent;
    --btn-disabled-border-color: #F6C000;
    --gradient: none
}

.m8-btn-outline-danger {
    --btn-color: #F8285A;
    --btn-border-color: #F8285A;
    --btn-hover-color: #000000;
    --btn-hover-bg: #F8285A;
    --btn-hover-border-color: #F8285A;
    --btn-focus-shadow-rgb: 248, 40, 90;
    --btn-active-color: #000000;
    --btn-active-bg: #F8285A;
    --btn-active-border-color: #F8285A;
    --btn-active-shadow: none;
    --btn-disabled-color: #F8285A;
    --btn-disabled-bg: transparent;
    --btn-disabled-border-color: #F8285A;
    --gradient: none
}

.m8-btn-outline-dark {
    --btn-color: #1E2129;
    --btn-border-color: #1E2129;
    --btn-hover-color: #ffffff;
    --btn-hover-bg: #1E2129;
    --btn-hover-border-color: #1E2129;
    --btn-focus-shadow-rgb: 30, 33, 41;
    --btn-active-color: #ffffff;
    --btn-active-bg: #1E2129;
    --btn-active-border-color: #1E2129;
    --btn-active-shadow: none;
    --btn-disabled-color: #1E2129;
    --btn-disabled-bg: transparent;
    --btn-disabled-border-color: #1E2129;
    --gradient: none
}

.m8-btn-link {
    --btn-font-weight: 400;
    --btn-color: var(--link-color);
    --btn-bg: transparent;
    --btn-border-color: transparent;
    --btn-hover-color: var(--link-hover-color);
    --btn-hover-border-color: transparent;
    --btn-active-color: var(--link-hover-color);
    --btn-active-border-color: transparent;
    --btn-disabled-color: var(--gray-600);
    --btn-disabled-border-color: transparent;
    --btn-box-shadow: 0 0 0 #000;
    --btn-focus-shadow-rgb: 23, 112, 217;
    text-decoration: none
}

.m8-btn-link:focus-visible,
.m8-btn-link:hover {
    text-decoration: none
}

.m8-btn-link:focus-visible {
    color: var(--btn-color)
}

.m8-btn-link:hover {
    color: var(--btn-hover-color)
}

.m8-btn-group-lg>.m8-btn,
.m8-btn-lg {
    --btn-padding-y: 0.825rem;
    --btn-padding-x: 1.75rem;
    --btn-font-size: 1.15rem;
    --btn-border-radius: 0.625rem
}

.m8-btn-group-sm>.m8-btn,
.m8-btn-sm {
    --btn-padding-y: 0.55rem;
    --btn-padding-x: 1rem;
    --btn-font-size: 0.95rem;
    --btn-border-radius: 0.425rem
}


.m8-btn-group,
.m8-btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle
}

.m8-btn-group-vertical>.m8-btn,
.m8-btn-group>.m8-btn {
    position: relative;
    flex: 1 1 auto
}

.m8-btn-group-vertical>.m8-btn-check:checked+.m8-btn,
.m8-btn-group-vertical>.m8-btn-check:focus+.m8-btn,
.m8-btn-group-vertical>.m8-btn.active,
.m8-btn-group-vertical>.m8-btn:active,
.m8-btn-group-vertical>.m8-btn:focus,
.m8-btn-group-vertical>.m8-btn:hover,
.m8-btn-group>.m8-btn-check:checked+.m8-btn,
.m8-btn-group>.m8-btn-check:focus+.m8-btn,
.m8-btn-group>.m8-btn.active,
.m8-btn-group>.m8-btn:active,
.m8-btn-group>.m8-btn:focus,
.m8-btn-group>.m8-btn:hover {
    z-index: 1
}

.m8-btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.m8-btn-toolbar .m8-input-group {
    width: auto
}

.m8-btn-group {
    border-radius: .475rem
}

.m8-btn-group>.m8-btn-group:not(:first-child),
.m8-btn-group>:not(.m8-btn-check:first-child)+.m8-btn {
    margin-left: calc(1px * -1)
}

.m8-btn-group>.m8-btn-group:not(:last-child)>.m8-btn,
.m8-btn-group>.m8-btn.dropdown-toggle-split:first-child,
.m8-btn-group>.m8-btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.m8-btn-group>.m8-btn-group:not(:first-child)>.m8-btn,
.m8-btn-group>.m8-btn:nth-child(n+3),
.m8-btn-group>:not(.m8-btn-check)+.m8-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dropdown-toggle-split {
    padding-right: 1.125rem;
    padding-left: 1.125rem
}

.dropdown-toggle-split::after,
.dropend .dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after {
    margin-left: 0
}

.dropstart .dropdown-toggle-split::before {
    margin-right: 0
}

.m8-btn-group-sm>.m8-btn+.dropdown-toggle-split,
.m8-btn-sm+.dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem
}

.m8-btn-group-lg>.m8-btn+.dropdown-toggle-split,
.m8-btn-lg+.dropdown-toggle-split {
    padding-right: 1.3125rem;
    padding-left: 1.3125rem
}

.m8-btn-group.show .dropdown-toggle {
    box-shadow: none
}

.m8-btn-group.show .dropdown-toggle.m8-btn-link {
    box-shadow: none
}

.m8-btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.m8-btn-group-vertical>.m8-btn,
.m8-btn-group-vertical>.m8-btn-group {
    width: 100%
}

.m8-btn-group-vertical>.m8-btn-group:not(:first-child),
.m8-btn-group-vertical>.m8-btn:not(:first-child) {
    margin-top: calc(1px * -1)
}

.m8-btn-group-vertical>.m8-btn-group:not(:last-child)>.m8-btn,
.m8-btn-group-vertical>.m8-btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.m8-btn-group-vertical>.m8-btn-group:not(:first-child)>.m8-btn,
.m8-btn-group-vertical>.m8-btn~.m8-btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.m8-btn .m8-badge {
    position: relative;
    top: -1px
}


.m8-alert {
    --alert-bg: transparent;
    --alert-padding-x: 1rem;
    --alert-padding-y: 1rem;
    --alert-margin-bottom: 1rem;
    --alert-color: inherit;
    --alert-border-color: transparent;
    --alert-border: var(--border-width) solid var(--alert-border-color);
    --alert-border-radius: var(--border-radius);
    --alert-link-color: inherit;
    position: relative;
    padding: var(--alert-padding-y) var(--alert-padding-x);
    margin-bottom: var(--alert-margin-bottom);
    color: var(--alert-color);
    background-color: var(--alert-bg);
    border: var(--alert-border);
    border-radius: var(--alert-border-radius)
}

.m8-alert-heading {
    color: inherit
}

.m8-alert-link {
    font-weight: 600;
    color: var(--alert-link-color)
}

.m8-alert-dismissible {
    padding-right: 3rem
}

.m8-alert-dismissible .m8-btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem
}

.m8-alert-light {
    --alert-color: var(--light-text-emphasis);
    --alert-bg: var(--light-bg-subtle);
    --alert-border-color: var(--light-border-subtle);
    --alert-link-color: var(--light-text-emphasis)
}

.m8-alert-primary {
    --alert-color: var(--primary-text-emphasis);
    --alert-bg: var(--primary-bg-subtle);
    --alert-border-color: var(--primary-border-subtle);
    --alert-link-color: var(--primary-text-emphasis)
}

.m8-alert-secondary {
    --alert-color: var(--secondary-text-emphasis);
    --alert-bg: var(--secondary-bg-subtle);
    --alert-border-color: var(--secondary-border-subtle);
    --alert-link-color: var(--secondary-text-emphasis)
}

.m8-alert-success {
    --alert-color: var(--success-text-emphasis);
    --alert-bg: var(--success-bg-subtle);
    --alert-border-color: var(--success-border-subtle);
    --alert-link-color: var(--success-text-emphasis)
}

.m8-alert-info {
    --alert-color: var(--info-text-emphasis);
    --alert-bg: var(--info-bg-subtle);
    --alert-border-color: var(--info-border-subtle);
    --alert-link-color: var(--info-text-emphasis)
}

.m8-alert-warning {
    --alert-color: var(--warning-text-emphasis);
    --alert-bg: var(--warning-bg-subtle);
    --alert-border-color: var(--warning-border-subtle);
    --alert-link-color: var(--warning-text-emphasis)
}

.m8-alert-danger {
    --alert-color: var(--danger-text-emphasis);
    --alert-bg: var(--danger-bg-subtle);
    --alert-border-color: var(--danger-border-subtle);
    --alert-link-color: var(--danger-text-emphasis)
}

.m8-alert-dark {
    --alert-color: var(--dark-text-emphasis);
    --alert-bg: var(--dark-bg-subtle);
    --alert-border-color: var(--dark-border-subtle);
    --alert-link-color: var(--dark-text-emphasis)
}


.m8-btn-close {
    --btn-close-color: #000000;
    --btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    --btn-close-opacity: 0.5;
    --btn-close-hover-opacity: 0.75;
    --btn-close-focus-shadow: none;
    --btn-close-focus-opacity: 1;
    --btn-close-disabled-opacity: 0.25;
    --btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
    box-sizing: content-box;
    width: .75rem;
    height: .75rem;
    padding: .25em .25em;
    color: var(--btn-close-color);
    background: transparent var(--btn-close-bg) center/.75rem auto no-repeat;
    border: 0;
    border-radius: .475rem;
    opacity: var(--btn-close-opacity)
}

.m8-btn-close:hover {
    color: var(--btn-close-color);
    text-decoration: none;
    opacity: var(--btn-close-hover-opacity)
}

.m8-btn-close:focus {
    outline: 0;
    box-shadow: var(--btn-close-focus-shadow);
    opacity: var(--btn-close-focus-opacity)
}

.m8-btn-close.disabled,
.m8-btn-close:disabled {
    pointer-events: none;
    user-select: none;
    opacity: var(--btn-close-disabled-opacity)
}

.m8-btn-close-white {
    filter: var(--btn-close-white-filter)
}

[data-bs-theme=dark] .m8-btn-close {
    filter: var(--btn-close-white-filter)
}


.m8-border {
    border: var(--border-width) var(--border-style) var(--border-color) !important
}

.m8-border-0 {
    border: 0 !important
}

.m8-border-top {
    border-top: var(--border-width) var(--border-style) var(--border-color) !important
}

.m8-border-top-0 {
    border-top: 0 !important
}

.m8-border-end {
    border-right: var(--border-width) var(--border-style) var(--border-color) !important
}

.m8-border-end-0 {
    border-right: 0 !important
}

.m8-border-bottom {
    border-bottom: var(--border-width) var(--border-style) var(--border-color) !important
}

.m8-border-bottom-0 {
    border-bottom: 0 !important
}

.m8-border-start {
    border-left: var(--border-width) var(--border-style) var(--border-color) !important
}

.m8-border-start-0 {
    border-left: 0 !important
}

.m8-border-light {
    --border-opacity: 1;
    border-color: rgba(var(--light-rgb), var(--border-opacity)) !important
}

.m8-border-primary {
    --border-opacity: 1;
    border-color: rgba(var(--primary-rgb), var(--border-opacity)) !important
}

.m8-border-secondary {
    --border-opacity: 1;
    border-color: rgba(var(--secondary-rgb), var(--border-opacity)) !important
}

.m8-border-success {
    --border-opacity: 1;
    border-color: rgba(var(--success-rgb), var(--border-opacity)) !important
}

.m8-border-info {
    --border-opacity: 1;
    border-color: rgba(var(--info-rgb), var(--border-opacity)) !important
}

.m8-border-warning {
    --border-opacity: 1;
    border-color: rgba(var(--warning-rgb), var(--border-opacity)) !important
}

.m8-border-danger {
    --border-opacity: 1;
    border-color: rgba(var(--danger-rgb), var(--border-opacity)) !important
}

.m8-border-dark {
    --border-opacity: 1;
    border-color: rgba(var(--dark-rgb), var(--border-opacity)) !important
}

.m8-border-black {
    --border-opacity: 1;
    border-color: rgba(var(--black-rgb), var(--border-opacity)) !important
}

.m8-border-white {
    --border-opacity: 1;
    border-color: rgba(var(--white-rgb), var(--border-opacity)) !important
}

.m8-border-primary-subtle {
    border-color: var(--primary-border-subtle) !important
}

.m8-border-secondary-subtle {
    border-color: var(--secondary-border-subtle) !important
}

.m8-border-success-subtle {
    border-color: var(--success-border-subtle) !important
}

.m8-border-info-subtle {
    border-color: var(--info-border-subtle) !important
}

.m8-border-warning-subtle {
    border-color: var(--warning-border-subtle) !important
}

.m8-border-danger-subtle {
    border-color: var(--danger-border-subtle) !important
}

.m8-border-light-subtle {
    border-color: var(--light-border-subtle) !important
}

.m8-border-dark-subtle {
    border-color: var(--dark-border-subtle) !important
}

.m8-border-0 {
    border-width: 0 !important
}

.m8-border-1 {
    border-width: 1px !important
}

.m8-border-2 {
    border-width: 2px !important
}

.m8-border-3 {
    border-width: 3px !important
}

.m8-border-4 {
    border-width: 4px !important
}

.m8-border-5 {
    border-width: 5px !important
}

.m8-border-opacity-10 {
    --border-opacity: 0.1
}

.m8-border-opacity-25 {
    --border-opacity: 0.25
}

.m8-border-opacity-50 {
    --border-opacity: 0.5
}

.m8-border-opacity-75 {
    --border-opacity: 0.75
}

.m8-border-opacity-100 {
    --border-opacity: 1
}


.m8-border-top-0 {
    border-top-width: 0 !important
}

.m8-border-top-1 {
    border-top-width: 1px !important
}

.m8-border-top-2 {
    border-top-width: 2px !important
}

.m8-border-top-3 {
    border-top-width: 3px !important
}

.m8-border-top-4 {
    border-top-width: 4px !important
}

.m8-border-top-5 {
    border-top-width: 5px !important
}

.m8-border-bottom-0 {
    border-bottom-width: 0 !important
}

.m8-border-bottom-1 {
    border-bottom-width: 1px !important
}

.m8-border-bottom-2 {
    border-bottom-width: 2px !important
}

.m8-border-bottom-3 {
    border-bottom-width: 3px !important
}

.m8-border-bottom-4 {
    border-bottom-width: 4px !important
}

.m8-border-bottom-5 {
    border-bottom-width: 5px !important
}

.m8-border-right-0 {
    border-right-width: 0 !important
}

.m8-border-right-1 {
    border-right-width: 1px !important
}

.m8-border-right-2 {
    border-right-width: 2px !important
}

.m8-border-right-3 {
    border-right-width: 3px !important
}

.m8-border-right-4 {
    border-right-width: 4px !important
}

.m8-border-right-5 {
    border-right-width: 5px !important
}

.m8-border-left-0 {
    border-left-width: 0 !important
}

.m8-border-left-1 {
    border-left-width: 1px !important
}

.m8-border-left-2 {
    border-left-width: 2px !important
}

.m8-border-left-3 {
    border-left-width: 3px !important
}

.m8-border-left-4 {
    border-left-width: 4px !important
}

.m8-border-left-5 {
    border-left-width: 5px !important
}


.m8-border-active:not(.active):not(:active):not(:hover):not(:focus) {
    border-color: transparent !important
}

.m8-border-hover:not(:hover):not(:focus):not(.active):not(:active) {
    cursor: pointer;
    border-color: transparent !important
}

.m8-border-gray-100 {
    border-color: var(--gray-100) !important
}

.m8-border-gray-200 {
    border-color: var(--gray-200) !important
}

.m8-border-gray-300 {
    border-color: var(--gray-300) !important
}

.m8-border-gray-400 {
    border-color: var(--gray-400) !important
}

.m8-border-gray-500 {
    border-color: var(--gray-500) !important
}

.m8-border-gray-600 {
    border-color: var(--gray-600) !important
}

.m8-border-gray-700 {
    border-color: var(--gray-700) !important
}

.m8-border-gray-800 {
    border-color: var(--gray-800) !important
}

.m8-border-gray-900 {
    border-color: var(--gray-900) !important
}

.m8-border-light-clarity {
    border-color: var(--light-clarity) !important
}

.m8-border-hover-light:hover {
    border-color: var(--light) !important
}

.m8-border-active-light.active {
    border-color: var(--light) !important
}

.m8-border-primary-clarity {
    border-color: var(--primary-clarity) !important
}

.m8-border-hover-primary:hover {
    border-color: var(--primary) !important
}

.m8-border-active-primary.active {
    border-color: var(--primary) !important
}

.m8-border-secondary-clarity {
    border-color: var(--secondary-clarity) !important
}

.m8-border-hover-secondary:hover {
    border-color: var(--secondary) !important
}

.m8-border-active-secondary.active {
    border-color: var(--secondary) !important
}

.m8-border-success-clarity {
    border-color: var(--success-clarity) !important
}

.m8-border-hover-success:hover {
    border-color: var(--success) !important
}

.m8-border-active-success.active {
    border-color: var(--success) !important
}

.m8-border-info-clarity {
    border-color: var(--info-clarity) !important
}

.m8-border-hover-info:hover {
    border-color: var(--info) !important
}

.m8-border-active-info.active {
    border-color: var(--info) !important
}

.m8-border-warning-clarity {
    border-color: var(--warning-clarity) !important
}

.m8-border-hover-warning:hover {
    border-color: var(--warning) !important
}

.m8-border-active-warning.active {
    border-color: var(--warning) !important
}

.m8-border-danger-clarity {
    border-color: var(--danger-clarity) !important
}

.m8-border-hover-danger:hover {
    border-color: var(--danger) !important
}

.m8-border-active-danger.active {
    border-color: var(--danger) !important
}

.m8-border-dark-clarity {
    border-color: var(--dark-clarity) !important
}

.m8-border-hover-dark:hover {
    border-color: var(--dark) !important
}

.m8-border-active-dark.active {
    border-color: var(--dark) !important
}

.m8-border-active-primary-clarity.active,
.m8-border-hover-primary-clarity:hover {
    border-color: var(--primary-clarity) !important
}

.m8-border-hover-transparent:hover {
    border-color: transparent !important
}

.m8-border-dashed {
    border-style: dashed !important;
    border-color: var(--border-dashed-color)
}

.m8-border-top-dashed {
    border-top-style: dashed !important
}

.m8-border-bottom-dashed {
    border-bottom-style: dashed !important
}

.m8-border-start-dashed {
    border-left-style: dashed !important
}

.m8-border-end-dashed {
    border-right-style: dashed !important
}

.m8-border-dotted {
    border-style: dotted !important
}

.m8-border-top-dotted {
    border-top-style: dotted !important
}

.m8-border-bottom-dotted {
    border-bottom-style: dotted !important
}

.m8-border-start-dotted {
    border-left-style: dotted !important
}

.m8-border-end-dotted {
    border-right-style: dotted !important
}

.m8-border-transparent {
    border-color: transparent !important
}

.m8-border-body {
    border-color: var(--body-bg) !important
}


.m8-rounded {
    border-radius: .475rem !important
}

.m8-rounded-0 {
    border-radius: 0 !important
}

.m8-rounded-1 {
    border-radius: .425rem !important
}

.m8-rounded-2 {
    border-radius: .475rem !important
}

.m8-rounded-3 {
    border-radius: .625rem !important
}

.m8-rounded-4 {
    border-radius: 1rem !important
}

.m8-rounded-circle {
    border-radius: 50% !important
}

.m8-rounded-pill {
    border-radius: 50rem !important
}

.m8-rounded-top {
    border-top-left-radius: var(--border-radius) !important;
    border-top-right-radius: var(--border-radius) !important
}

.m8-rounded-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important
}

.m8-rounded-top-1 {
    border-top-left-radius: var(--border-radius-sm) !important;
    border-top-right-radius: var(--border-radius-sm) !important
}

.m8-rounded-top-2 {
    border-top-left-radius: var(--border-radius) !important;
    border-top-right-radius: var(--border-radius) !important
}

.m8-rounded-top-3 {
    border-top-left-radius: var(--border-radius-lg) !important;
    border-top-right-radius: var(--border-radius-lg) !important
}

.m8-rounded-top-4 {
    border-top-left-radius: var(--border-radius-xl) !important;
    border-top-right-radius: var(--border-radius-xl) !important
}

.m8-rounded-top-5 {
    border-top-left-radius: var(--border-radius-xxl) !important;
    border-top-right-radius: var(--border-radius-xxl) !important
}

.m8-rounded-top-circle {
    border-top-left-radius: 50% !important;
    border-top-right-radius: 50% !important
}

.m8-rounded-top-pill {
    border-top-left-radius: var(--border-radius-pill) !important;
    border-top-right-radius: var(--border-radius-pill) !important
}

.m8-rounded-end {
    border-top-right-radius: var(--border-radius) !important;
    border-bottom-right-radius: var(--border-radius) !important
}

.m8-rounded-end-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important
}

.m8-rounded-end-1 {
    border-top-right-radius: var(--border-radius-sm) !important;
    border-bottom-right-radius: var(--border-radius-sm) !important
}

.m8-rounded-end-2 {
    border-top-right-radius: var(--border-radius) !important;
    border-bottom-right-radius: var(--border-radius) !important
}

.m8-rounded-end-3 {
    border-top-right-radius: var(--border-radius-lg) !important;
    border-bottom-right-radius: var(--border-radius-lg) !important
}

.m8-rounded-end-4 {
    border-top-right-radius: var(--border-radius-xl) !important;
    border-bottom-right-radius: var(--border-radius-xl) !important
}

.m8-rounded-end-5 {
    border-top-right-radius: var(--border-radius-xxl) !important;
    border-bottom-right-radius: var(--border-radius-xxl) !important
}

.m8-rounded-end-circle {
    border-top-right-radius: 50% !important;
    border-bottom-right-radius: 50% !important
}

.m8-rounded-end-pill {
    border-top-right-radius: var(--border-radius-pill) !important;
    border-bottom-right-radius: var(--border-radius-pill) !important
}

.m8-rounded-bottom {
    border-bottom-right-radius: var(--border-radius) !important;
    border-bottom-left-radius: var(--border-radius) !important
}

.m8-rounded-bottom-0 {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important
}

.m8-rounded-bottom-1 {
    border-bottom-right-radius: var(--border-radius-sm) !important;
    border-bottom-left-radius: var(--border-radius-sm) !important
}

.m8-rounded-bottom-2 {
    border-bottom-right-radius: var(--border-radius) !important;
    border-bottom-left-radius: var(--border-radius) !important
}

.m8-rounded-bottom-3 {
    border-bottom-right-radius: var(--border-radius-lg) !important;
    border-bottom-left-radius: var(--border-radius-lg) !important
}

.m8-rounded-bottom-4 {
    border-bottom-right-radius: var(--border-radius-xl) !important;
    border-bottom-left-radius: var(--border-radius-xl) !important
}

.m8-rounded-bottom-5 {
    border-bottom-right-radius: var(--border-radius-xxl) !important;
    border-bottom-left-radius: var(--border-radius-xxl) !important
}

.m8-rounded-bottom-circle {
    border-bottom-right-radius: 50% !important;
    border-bottom-left-radius: 50% !important
}

.m8-rounded-bottom-pill {
    border-bottom-right-radius: var(--border-radius-pill) !important;
    border-bottom-left-radius: var(--border-radius-pill) !important
}

.m8-rounded-start {
    border-bottom-left-radius: var(--border-radius) !important;
    border-top-left-radius: var(--border-radius) !important
}

.m8-rounded-start-0 {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important
}

.m8-rounded-start-1 {
    border-bottom-left-radius: var(--border-radius-sm) !important;
    border-top-left-radius: var(--border-radius-sm) !important
}

.m8-rounded-start-2 {
    border-bottom-left-radius: var(--border-radius) !important;
    border-top-left-radius: var(--border-radius) !important
}

.m8-rounded-start-3 {
    border-bottom-left-radius: var(--border-radius-lg) !important;
    border-top-left-radius: var(--border-radius-lg) !important
}

.m8-rounded-start-4 {
    border-bottom-left-radius: var(--border-radius-xl) !important;
    border-top-left-radius: var(--border-radius-xl) !important
}

.m8-rounded-start-5 {
    border-bottom-left-radius: var(--border-radius-xxl) !important;
    border-top-left-radius: var(--border-radius-xxl) !important
}

.m8-rounded-start-circle {
    border-bottom-left-radius: 50% !important;
    border-top-left-radius: 50% !important
}

.m8-rounded-start-pill {
    border-bottom-left-radius: var(--border-radius-pill) !important;
    border-top-left-radius: var(--border-radius-pill) !important
}


.m8-rounded-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important
}

.m8-rounded-bottom-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important
}

.m8-rounded-start-0 {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important
}

.m8-rounded-end-0 {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important
}

.m8-rounded-circle {
    border-radius: 50% !important
}


.m8-text-white {
    color: var(--text-white) !important
}

.m8-text-hover-white {
    transition: color .2s ease
}

.m8-text-hover-white i {
    transition: color .2s ease
}

.m8-text-hover-white:hover {
    transition: color .2s ease;
    color: var(--text-white) !important
}

.m8-text-hover-white:hover i {
    transition: color .2s ease;
    color: var(--text-white) !important
}

.m8-text-hover-white:hover .svg-icon {
    color: var(--text-white) !important
}

.m8-text-active-white {
    transition: color .2s ease
}

.m8-text-active-white i {
    transition: color .2s ease
}

.m8-text-active-white.active {
    transition: color .2s ease;
    color: var(--text-white) !important
}

.m8-text-active-white.active i {
    transition: color .2s ease;
    color: var(--text-white) !important
}

.m8-text-active-white.active .svg-icon {
    color: var(--text-white) !important
}

.m8-text-primary {
    color: var(--text-primary) !important
}

.m8-text-inverse-primary {
    color: var(--primary-inverse) !important
}

.m8-text-light-primary {
    color: var(--primary-light) !important
}

.m8-text-hover-primary {
    transition: color .2s ease
}

.m8-text-hover-primary i {
    transition: color .2s ease
}

.m8-text-hover-primary:hover {
    transition: color .2s ease;
    color: var(--text-primary) !important
}

.m8-text-hover-primary:hover i {
    transition: color .2s ease;
    color: var(--text-primary) !important
}

.m8-text-hover-primary:hover .svg-icon {
    color: var(--text-primary) !important
}

.m8-text-active-primary {
    transition: color .2s ease
}

.m8-text-active-primary i {
    transition: color .2s ease
}

.m8-text-active-primary.active {
    transition: color .2s ease;
    color: var(--text-primary) !important
}

.m8-text-active-primary.active i {
    transition: color .2s ease;
    color: var(--text-primary) !important
}

.m8-text-active-primary.active .svg-icon {
    color: var(--text-primary) !important
}

.m8-text-secondary {
    color: var(--text-secondary) !important
}

.m8-text-inverse-secondary {
    color: var(--secondary-inverse) !important
}

.m8-text-light-secondary {
    color: var(--secondary-light) !important
}

.m8-text-hover-secondary {
    transition: color .2s ease
}

.m8-text-hover-secondary i {
    transition: color .2s ease
}

.m8-text-hover-secondary:hover {
    transition: color .2s ease;
    color: var(--text-secondary) !important
}

.m8-text-hover-secondary:hover i {
    transition: color .2s ease;
    color: var(--text-secondary) !important
}

.m8-text-hover-secondary:hover .svg-icon {
    color: var(--text-secondary) !important
}

.m8-text-active-secondary {
    transition: color .2s ease
}

.m8-text-active-secondary i {
    transition: color .2s ease
}

.m8-text-active-secondary.active {
    transition: color .2s ease;
    color: var(--text-secondary) !important
}

.m8-text-active-secondary.active i {
    transition: color .2s ease;
    color: var(--text-secondary) !important
}

.m8-text-active-secondary.active .svg-icon {
    color: var(--text-secondary) !important
}

.m8-text-light {
    color: var(--text-light) !important
}

.m8-text-inverse-light {
    color: var(--light-inverse) !important
}

.m8-text-light-light {
    color: var(--light-light) !important
}

.m8-text-hover-light {
    transition: color .2s ease
}

.m8-text-hover-light i {
    transition: color .2s ease
}

.m8-text-hover-light:hover {
    transition: color .2s ease;
    color: var(--text-light) !important
}

.m8-text-hover-light:hover i {
    transition: color .2s ease;
    color: var(--text-light) !important
}

.m8-text-hover-light:hover .svg-icon {
    color: var(--text-light) !important
}

.m8-text-active-light {
    transition: color .2s ease
}

.m8-text-active-light i {
    transition: color .2s ease
}

.m8-text-active-light.active {
    transition: color .2s ease;
    color: var(--text-light) !important
}

.m8-text-active-light.active i {
    transition: color .2s ease;
    color: var(--text-light) !important
}

.m8-text-active-light.active .svg-icon {
    color: var(--text-light) !important
}

.m8-text-success {
    color: var(--text-success) !important
}

.m8-text-inverse-success {
    color: var(--success-inverse) !important
}

.m8-text-light-success {
    color: var(--success-light) !important
}

.m8-text-hover-success {
    transition: color .2s ease
}

.m8-text-hover-success i {
    transition: color .2s ease
}

.m8-text-hover-success:hover {
    transition: color .2s ease;
    color: var(--text-success) !important
}

.m8-text-hover-success:hover i {
    transition: color .2s ease;
    color: var(--text-success) !important
}

.m8-text-hover-success:hover .svg-icon {
    color: var(--text-success) !important
}

.m8-text-active-success {
    transition: color .2s ease
}

.m8-text-active-success i {
    transition: color .2s ease
}

.m8-text-active-success.active {
    transition: color .2s ease;
    color: var(--text-success) !important
}

.m8-text-active-success.active i {
    transition: color .2s ease;
    color: var(--text-success) !important
}

.m8-text-active-success.active .svg-icon {
    color: var(--text-success) !important
}

.m8-text-info {
    color: var(--text-info) !important
}

.m8-text-inverse-info {
    color: var(--info-inverse) !important
}

.m8-text-light-info {
    color: var(--info-light) !important
}

.m8-text-hover-info {
    transition: color .2s ease
}

.m8-text-hover-info i {
    transition: color .2s ease
}

.m8-text-hover-info:hover {
    transition: color .2s ease;
    color: var(--text-info) !important
}

.m8-text-hover-info:hover i {
    transition: color .2s ease;
    color: var(--text-info) !important
}

.m8-text-hover-info:hover .svg-icon {
    color: var(--text-info) !important
}

.m8-text-active-info {
    transition: color .2s ease
}

.m8-text-active-info i {
    transition: color .2s ease
}

.m8-text-active-info.active {
    transition: color .2s ease;
    color: var(--text-info) !important
}

.m8-text-active-info.active i {
    transition: color .2s ease;
    color: var(--text-info) !important
}

.m8-text-active-info.active .svg-icon {
    color: var(--text-info) !important
}

.m8-text-warning {
    color: var(--text-warning) !important
}

.m8-text-inverse-warning {
    color: var(--warning-inverse) !important
}

.m8-text-light-warning {
    color: var(--warning-light) !important
}

.m8-text-hover-warning {
    transition: color .2s ease
}

.m8-text-hover-warning i {
    transition: color .2s ease
}

.m8-text-hover-warning:hover {
    transition: color .2s ease;
    color: var(--text-warning) !important
}

.m8-text-hover-warning:hover i {
    transition: color .2s ease;
    color: var(--text-warning) !important
}

.m8-text-hover-warning:hover .svg-icon {
    color: var(--text-warning) !important
}

.m8-text-active-warning {
    transition: color .2s ease
}

.m8-text-active-warning i {
    transition: color .2s ease
}

.m8-text-active-warning.active {
    transition: color .2s ease;
    color: var(--text-warning) !important
}

.m8-text-active-warning.active i {
    transition: color .2s ease;
    color: var(--text-warning) !important
}

.m8-text-active-warning.active .svg-icon {
    color: var(--text-warning) !important
}

.m8-text-danger {
    color: var(--text-danger) !important
}

.m8-text-inverse-danger {
    color: var(--danger-inverse) !important
}

.m8-text-light-danger {
    color: var(--danger-light) !important
}

.m8-text-hover-danger {
    transition: color .2s ease
}

.m8-text-hover-danger i {
    transition: color .2s ease
}

.m8-text-hover-danger:hover {
    transition: color .2s ease;
    color: var(--text-danger) !important
}

.m8-text-hover-danger:hover i {
    transition: color .2s ease;
    color: var(--text-danger) !important
}

.m8-text-hover-danger:hover .svg-icon {
    color: var(--text-danger) !important
}

.m8-text-active-danger {
    transition: color .2s ease
}

.m8-text-active-danger i {
    transition: color .2s ease
}

.m8-text-active-danger.active {
    transition: color .2s ease;
    color: var(--text-danger) !important
}

.m8-text-active-danger.active i {
    transition: color .2s ease;
    color: var(--text-danger) !important
}

.m8-text-active-danger.active .svg-icon {
    color: var(--text-danger) !important
}

.m8-text-dark {
    color: var(--text-dark) !important
}

.m8-text-inverse-dark {
    color: var(--dark-inverse) !important
}

.m8-text-light-dark {
    color: var(--dark-light) !important
}

.m8-text-hover-dark {
    transition: color .2s ease
}

.m8-text-hover-dark i {
    transition: color .2s ease
}

.m8-text-hover-dark:hover {
    transition: color .2s ease;
    color: var(--text-dark) !important
}

.m8-text-hover-dark:hover i {
    transition: color .2s ease;
    color: var(--text-dark) !important
}

.m8-text-hover-dark:hover .svg-icon {
    color: var(--text-dark) !important
}

.m8-text-active-dark {
    transition: color .2s ease
}

.m8-text-active-dark i {
    transition: color .2s ease
}

.m8-text-active-dark.active {
    transition: color .2s ease;
    color: var(--text-dark) !important
}

.m8-text-active-dark.active i {
    transition: color .2s ease;
    color: var(--text-dark) !important
}

.m8-text-active-dark.active .svg-icon {
    color: var(--text-dark) !important
}

.m8-text-muted {
    color: var(--text-muted) !important
}

.m8-text-hover-muted {
    transition: color .2s ease
}

.m8-text-hover-muted i {
    transition: color .2s ease
}

.m8-text-hover-muted:hover {
    transition: color .2s ease;
    color: var(--text-muted) !important
}

.m8-text-hover-muted:hover i {
    transition: color .2s ease;
    color: var(--text-muted) !important
}

.m8-text-hover-muted:hover .svg-icon {
    color: var(--text-muted) !important
}

.m8-text-active-muted {
    transition: color .2s ease
}

.m8-text-active-muted i {
    transition: color .2s ease
}

.m8-text-active-muted.active {
    transition: color .2s ease;
    color: var(--text-muted) !important
}

.m8-text-active-muted.active i {
    transition: color .2s ease;
    color: var(--text-muted) !important
}

.m8-text-active-muted.active .svg-icon {
    color: var(--text-muted) !important
}

.m8-text-gray-100 {
    color: var(--text-gray-100) !important
}

.m8-text-hover-gray-100 {
    transition: color .2s ease
}

.m8-text-hover-gray-100 i {
    transition: color .2s ease
}

.m8-text-hover-gray-100:hover {
    transition: color .2s ease;
    color: var(--text-gray-100) !important
}

.m8-text-hover-gray-100:hover i {
    transition: color .2s ease;
    color: var(--text-gray-100) !important
}

.m8-text-hover-gray-100:hover .svg-icon {
    color: var(--text-gray-100) !important
}

.m8-text-active-gray-100 {
    transition: color .2s ease
}

.m8-text-active-gray-100 i {
    transition: color .2s ease
}

.m8-text-active-gray-100.active {
    transition: color .2s ease;
    color: var(--text-gray-100) !important
}

.m8-text-active-gray-100.active i {
    transition: color .2s ease;
    color: var(--text-gray-100) !important
}

.m8-text-active-gray-100.active .svg-icon {
    color: var(--text-gray-100) !important
}

.m8-text-gray-200 {
    color: var(--text-gray-200) !important
}

.m8-text-hover-gray-200 {
    transition: color .2s ease
}

.m8-text-hover-gray-200 i {
    transition: color .2s ease
}

.m8-text-hover-gray-200:hover {
    transition: color .2s ease;
    color: var(--text-gray-200) !important
}

.m8-text-hover-gray-200:hover i {
    transition: color .2s ease;
    color: var(--text-gray-200) !important
}

.m8-text-hover-gray-200:hover .svg-icon {
    color: var(--text-gray-200) !important
}

.m8-text-active-gray-200 {
    transition: color .2s ease
}

.m8-text-active-gray-200 i {
    transition: color .2s ease
}

.m8-text-active-gray-200.active {
    transition: color .2s ease;
    color: var(--text-gray-200) !important
}

.m8-text-active-gray-200.active i {
    transition: color .2s ease;
    color: var(--text-gray-200) !important
}

.m8-text-active-gray-200.active .svg-icon {
    color: var(--text-gray-200) !important
}

.m8-text-gray-300 {
    color: var(--text-gray-300) !important
}

.m8-text-hover-gray-300 {
    transition: color .2s ease
}

.m8-text-hover-gray-300 i {
    transition: color .2s ease
}

.m8-text-hover-gray-300:hover {
    transition: color .2s ease;
    color: var(--text-gray-300) !important
}

.m8-text-hover-gray-300:hover i {
    transition: color .2s ease;
    color: var(--text-gray-300) !important
}

.m8-text-hover-gray-300:hover .svg-icon {
    color: var(--text-gray-300) !important
}

.m8-text-active-gray-300 {
    transition: color .2s ease
}

.m8-text-active-gray-300 i {
    transition: color .2s ease
}

.m8-text-active-gray-300.active {
    transition: color .2s ease;
    color: var(--text-gray-300) !important
}

.m8-text-active-gray-300.active i {
    transition: color .2s ease;
    color: var(--text-gray-300) !important
}

.m8-text-active-gray-300.active .svg-icon {
    color: var(--text-gray-300) !important
}

.m8-text-gray-400 {
    color: var(--text-gray-400) !important
}

.m8-text-hover-gray-400 {
    transition: color .2s ease
}

.m8-text-hover-gray-400 i {
    transition: color .2s ease
}

.m8-text-hover-gray-400:hover {
    transition: color .2s ease;
    color: var(--text-gray-400) !important
}

.m8-text-hover-gray-400:hover i {
    transition: color .2s ease;
    color: var(--text-gray-400) !important
}

.m8-text-hover-gray-400:hover .svg-icon {
    color: var(--text-gray-400) !important
}

.m8-text-active-gray-400 {
    transition: color .2s ease
}

.m8-text-active-gray-400 i {
    transition: color .2s ease
}

.m8-text-active-gray-400.active {
    transition: color .2s ease;
    color: var(--text-gray-400) !important
}

.m8-text-active-gray-400.active i {
    transition: color .2s ease;
    color: var(--text-gray-400) !important
}

.m8-text-active-gray-400.active .svg-icon {
    color: var(--text-gray-400) !important
}

.m8-text-gray-500 {
    color: var(--text-gray-500) !important
}

.m8-text-hover-gray-500 {
    transition: color .2s ease
}

.m8-text-hover-gray-500 i {
    transition: color .2s ease
}

.m8-text-hover-gray-500:hover {
    transition: color .2s ease;
    color: var(--text-gray-500) !important
}

.m8-text-hover-gray-500:hover i {
    transition: color .2s ease;
    color: var(--text-gray-500) !important
}

.m8-text-hover-gray-500:hover .svg-icon {
    color: var(--text-gray-500) !important
}

.m8-text-active-gray-500 {
    transition: color .2s ease
}

.m8-text-active-gray-500 i {
    transition: color .2s ease
}

.m8-text-active-gray-500.active {
    transition: color .2s ease;
    color: var(--text-gray-500) !important
}

.m8-text-active-gray-500.active i {
    transition: color .2s ease;
    color: var(--text-gray-500) !important
}

.m8-text-active-gray-500.active .svg-icon {
    color: var(--text-gray-500) !important
}

.m8-text-gray-600 {
    color: var(--text-gray-600) !important
}

.m8-text-hover-gray-600 {
    transition: color .2s ease
}

.m8-text-hover-gray-600 i {
    transition: color .2s ease
}

.m8-text-hover-gray-600:hover {
    transition: color .2s ease;
    color: var(--text-gray-600) !important
}

.m8-text-hover-gray-600:hover i {
    transition: color .2s ease;
    color: var(--text-gray-600) !important
}

.m8-text-hover-gray-600:hover .svg-icon {
    color: var(--text-gray-600) !important
}

.m8-text-active-gray-600 {
    transition: color .2s ease
}

.m8-text-active-gray-600 i {
    transition: color .2s ease
}

.m8-text-active-gray-600.active {
    transition: color .2s ease;
    color: var(--text-gray-600) !important
}

.m8-text-active-gray-600.active i {
    transition: color .2s ease;
    color: var(--text-gray-600) !important
}

.m8-text-active-gray-600.active .svg-icon {
    color: var(--text-gray-600) !important
}

.m8-text-gray-700 {
    color: var(--text-gray-700) !important
}

.m8-text-hover-gray-700 {
    transition: color .2s ease
}

.m8-text-hover-gray-700 i {
    transition: color .2s ease
}

.m8-text-hover-gray-700:hover {
    transition: color .2s ease;
    color: var(--text-gray-700) !important
}

.m8-text-hover-gray-700:hover i {
    transition: color .2s ease;
    color: var(--text-gray-700) !important
}

.m8-text-hover-gray-700:hover .svg-icon {
    color: var(--text-gray-700) !important
}

.m8-text-active-gray-700 {
    transition: color .2s ease
}

.m8-text-active-gray-700 i {
    transition: color .2s ease
}

.m8-text-active-gray-700.active {
    transition: color .2s ease;
    color: var(--text-gray-700) !important
}

.m8-text-active-gray-700.active i {
    transition: color .2s ease;
    color: var(--text-gray-700) !important
}

.m8-text-active-gray-700.active .svg-icon {
    color: var(--text-gray-700) !important
}

.m8-text-gray-800 {
    color: var(--text-gray-800) !important
}

.m8-text-hover-gray-800 {
    transition: color .2s ease
}

.m8-text-hover-gray-800 i {
    transition: color .2s ease
}

.m8-text-hover-gray-800:hover {
    transition: color .2s ease;
    color: var(--text-gray-800) !important
}

.m8-text-hover-gray-800:hover i {
    transition: color .2s ease;
    color: var(--text-gray-800) !important
}

.m8-text-hover-gray-800:hover .svg-icon {
    color: var(--text-gray-800) !important
}

.m8-text-active-gray-800 {
    transition: color .2s ease
}

.m8-text-active-gray-800 i {
    transition: color .2s ease
}

.m8-text-active-gray-800.active {
    transition: color .2s ease;
    color: var(--text-gray-800) !important
}

.m8-text-active-gray-800.active i {
    transition: color .2s ease;
    color: var(--text-gray-800) !important
}

.m8-text-active-gray-800.active .svg-icon {
    color: var(--text-gray-800) !important
}

.m8-text-gray-900 {
    color: var(--text-gray-900) !important
}

.m8-text-hover-gray-900 {
    transition: color .2s ease
}

.m8-text-hover-gray-900 i {
    transition: color .2s ease
}

.m8-text-hover-gray-900:hover {
    transition: color .2s ease;
    color: var(--text-gray-900) !important
}

.m8-text-hover-gray-900:hover i {
    transition: color .2s ease;
    color: var(--text-gray-900) !important
}

.m8-text-hover-gray-900:hover .svg-icon {
    color: var(--text-gray-900) !important
}

.m8-text-active-gray-900 {
    transition: color .2s ease
}

.m8-text-active-gray-900 i {
    transition: color .2s ease
}

.m8-text-active-gray-900.active {
    transition: color .2s ease;
    color: var(--text-gray-900) !important
}

.m8-text-active-gray-900.active i {
    transition: color .2s ease;
    color: var(--text-gray-900) !important
}

.m8-text-active-gray-900.active .svg-icon {
    color: var(--text-gray-900) !important
}


.m8-text-start {
    text-align: left !important
}

.m8-text-end {
    text-align: right !important
}

.m8-text-center {
    text-align: center !important
}

.m8-text-decoration-none {
    text-decoration: none !important
}

.m8-text-decoration-underline {
    text-decoration: underline !important
}

.m8-text-decoration-line-through {
    text-decoration: line-through !important
}

.m8-text-lowercase {
    text-transform: lowercase !important
}

.m8-text-uppercase {
    text-transform: uppercase !important
}

.m8-text-capitalize {
    text-transform: capitalize !important
}

.m8-text-wrap {
    white-space: normal !important
}

.m8-text-nowrap {
    white-space: nowrap !important
}

.m8-text-break {
    word-wrap: break-word !important;
    word-break: break-word !important
}

.m8-text-light {
    --text-opacity: 1;
    color: rgba(var(--light-rgb), var(--text-opacity)) !important
}

.m8-text-primary {
    --text-opacity: 1;
    color: rgba(var(--primary-rgb), var(--text-opacity)) !important
}

.m8-text-secondary {
    --text-opacity: 1;
    color: rgba(var(--secondary-rgb), var(--text-opacity)) !important
}

.m8-text-success {
    --text-opacity: 1;
    color: rgba(var(--success-rgb), var(--text-opacity)) !important
}

.m8-text-info {
    --text-opacity: 1;
    color: rgba(var(--info-rgb), var(--text-opacity)) !important
}

.m8-text-warning {
    --text-opacity: 1;
    color: rgba(var(--warning-rgb), var(--text-opacity)) !important
}

.m8-text-danger {
    --text-opacity: 1;
    color: rgba(var(--danger-rgb), var(--text-opacity)) !important
}

.m8-text-dark {
    --text-opacity: 1;
    color: rgba(var(--dark-rgb), var(--text-opacity)) !important
}

.m8-text-black {
    --text-opacity: 1;
    color: rgba(var(--black-rgb), var(--text-opacity)) !important
}

.m8-text-white {
    --text-opacity: 1;
    color: rgba(var(--white-rgb), var(--text-opacity)) !important
}

.m8-text-body {
    --text-opacity: 1;
    color: rgba(var(--body-color-rgb), var(--text-opacity)) !important
}

.m8-text-muted {
    --text-opacity: 1;
    color: var(--secondary-color) !important
}

.m8-text-black-50 {
    --text-opacity: 1;
    color: rgba(0, 0, 0, .5) !important
}

.m8-text-white-50 {
    --text-opacity: 1;
    color: rgba(255, 255, 255, .5) !important
}

.m8-text-body-secondary {
    --text-opacity: 1;
    color: var(--secondary-color) !important
}

.m8-text-body-tertiary {
    --text-opacity: 1;
    color: var(--tertiary-color) !important
}

.m8-text-body-emphasis {
    --text-opacity: 1;
    color: var(--emphasis-color) !important
}

.m8-text-reset {
    --text-opacity: 1;
    color: inherit !important
}

.m8-text-opacity-25 {
    --text-opacity: 0.25
}

.m8-text-opacity-50 {
    --text-opacity: 0.5
}

.m8-text-opacity-75 {
    --text-opacity: 0.75
}

.m8-text-opacity-100 {
    --text-opacity: 1
}

.m8-text-primary-emphasis {
    color: var(--primary-text-emphasis) !important
}

.m8-text-secondary-emphasis {
    color: var(--secondary-text-emphasis) !important
}

.m8-text-success-emphasis {
    color: var(--success-text-emphasis) !important
}

.m8-text-info-emphasis {
    color: var(--info-text-emphasis) !important
}

.m8-text-warning-emphasis {
    color: var(--warning-text-emphasis) !important
}

.m8-text-danger-emphasis {
    color: var(--danger-text-emphasis) !important
}

.m8-text-light-emphasis {
    color: var(--light-text-emphasis) !important
}

.m8-text-dark-emphasis {
    color: var(--dark-text-emphasis) !important
}


.m8-form-label {
    margin-bottom: .5rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-800)
}

.col-form-label {
    padding-top: calc(.775rem + 1px);
    padding-bottom: calc(.775rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    font-weight: 500;
    line-height: 1.5;
    color: var(--gray-800)
}

.col-form-label-lg {
    padding-top: calc(.825rem + 1px);
    padding-bottom: calc(.825rem + 1px);
    font-size: 1.15rem
}

.col-form-label-sm {
    padding-top: calc(.55rem + 1px);
    padding-bottom: calc(.55rem + 1px);
    font-size: .95rem
}

.m8-form-text {
    margin-top: .5rem;
    font-size: .95rem;
    color: var(--text-muted)
}

.m8-form-control {
    display: block;
    width: 100%;
    padding: .775rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--gray-700);
    appearance: none;
    background-color: var(--body-bg);
    background-clip: padding-box;
    border: 1px solid var(--gray-300);
    border-radius: .475rem;
    box-shadow: false;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .m8-form-control {
        transition: none
    }
}

.m8-form-control[type=file] {
    overflow: hidden
}

.m8-form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer
}

.m8-form-control:focus {
    color: var(--gray-700);
    background-color: var(--body-bg);
    border-color: var(--gray-400);
    outline: 0;
    box-shadow: false, 0 0 0 .25rem rgba(27, 132, 255, .25)
}

.m8-form-control::-webkit-date-and-time-value {
    min-width: 85px;
    height: 1.5em;
    margin: 0
}

.m8-form-control::-webkit-datetime-edit {
    display: block;
    padding: 0
}

.m8-form-control::placeholder {
    color: var(--gray-500);
    opacity: 1
}

.m8-form-control:disabled {
    color: var(--gray-500);
    background-color: var(--gray-200);
    border-color: var(--gray-300);
    opacity: 1
}

.m8-form-control::file-selector-button {
    padding: .775rem 1rem;
    margin: -.775rem -1rem;
    margin-inline-end: 1rem;
    color: var(--gray-700);
    background-color: var(--gray-100);
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .m8-form-control::file-selector-button {
        transition: none
    }
}

.m8-form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: shade-color(var(--gray-100), 5%)
}

.m8-form-control-plaintext {
    display: block;
    width: 100%;
    padding: .775rem 0;
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--gray-700);
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

.m8-form-control-plaintext:focus {
    outline: 0
}

.m8-form-control-plaintext.m8-form-control-lg,
.m8-form-control-plaintext.m8-form-control-sm {
    padding-right: 0;
    padding-left: 0
}

.m8-form-control-sm {
    min-height: calc(1.5em + 1.1rem + 2px);
    padding: .55rem .75rem;
    font-size: .95rem;
    border-radius: .425rem
}

.m8-form-control-sm::file-selector-button {
    padding: .55rem .75rem;
    margin: -.55rem -.75rem;
    margin-inline-end: .75rem
}

.m8-form-control-lg {
    min-height: calc(1.5em + 1.65rem + 2px);
    padding: .825rem 1.5rem;
    font-size: 1.15rem;
    border-radius: .625rem
}

.m8-form-control-lg::file-selector-button {
    padding: .825rem 1.5rem;
    margin: -.825rem -1.5rem;
    margin-inline-end: 1.5rem
}

textarea.m8-form-control {
    min-height: calc(1.5em + 1.55rem + 2px)
}

textarea.m8-form-control-sm {
    min-height: calc(1.5em + 1.1rem + 2px)
}

textarea.m8-form-control-lg {
    min-height: calc(1.5em + 1.65rem + 2px)
}

.m8-form-control-color {
    width: 3rem;
    height: calc(1.5em + 1.55rem + 2px);
    padding: .775rem
}

.m8-form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer
}

.m8-form-control-color::-moz-color-swatch {
    border: 0 !important;
    border-radius: .475rem
}

.m8-form-control-color::-webkit-color-swatch {
    border: 0 !important;
    border-radius: .475rem
}

.m8-form-control-color.m8-form-control-sm {
    height: calc(1.5em + 1.1rem + 2px)
}

.m8-form-control-color.m8-form-control-lg {
    height: calc(1.5em + 1.65rem + 2px)
}

.m8-form-select {
    --form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2378829D' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    display: block;
    width: 100%;
    padding: .775rem 3rem .775rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--gray-700);
    appearance: none;
    background-color: var(--body-bg);
    background-image: var(--form-select-bg-img), var(--form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    border: 1px solid var(--gray-300);
    border-radius: .475rem;
    box-shadow: false;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .m8-form-select {
        transition: none
    }
}

.m8-form-select:focus {
    border-color: var(--gray-400);
    outline: 0;
    box-shadow: false, 0 0 0 .25rem rgba(var(--component-active-bg), .25)
}

.m8-form-select[multiple],
.m8-form-select[size]:not([size="1"]) {
    padding-right: 1rem;
    background-image: none
}

.m8-form-select:disabled {
    color: var(--gray-500);
    background-color: var(--gray-200);
    border-color: var(--gray-300)
}

.m8-form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 var(--gray-700)
}

.m8-form-select-sm {
    padding-top: .55rem;
    padding-bottom: .55rem;
    padding-left: .75rem;
    font-size: .95rem;
    border-radius: .425rem
}

.m8-form-select-lg {
    padding-top: .825rem;
    padding-bottom: .825rem;
    padding-left: 1.5rem;
    font-size: 1.15rem;
    border-radius: .625rem
}

[data-bs-theme=dark] .m8-form-select {
    --form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23808290' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
}

.m8-form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 2.25rem;
    margin-bottom: .125rem
}

.m8-form-check .m8-form-check-input {
    float: left;
    margin-left: -2.25rem
}

.m8-form-check-reverse {
    padding-right: 2.25rem;
    padding-left: 0;
    text-align: right
}

.m8-form-check-reverse .m8-form-check-input {
    float: right;
    margin-right: -2.25rem;
    margin-left: 0
}

.m8-form-check-input {
    --form-check-bg: transparent;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    margin-top: -.125rem;
    vertical-align: top;
    appearance: none;
    background-color: var(--form-check-bg);
    background-image: var(--form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid var(--gray-300);
    print-color-adjust: exact
}

.m8-form-check-input-special {
    width: 1.35rem !important;
    height: 1.35rem !important;
    /* border: 1px solid #898d9700; */
    border-radius: 6em !important;
}

.m8-form-check-input[type=checkbox] {
    border-radius: .45em
}

.m8-form-check-input[type=radio] {
    border-radius: 50%
}

.m8-form-check-input:active {
    filter: brightness(90%)
}

.m8-form-check-input:focus {
    border-color: var(--gray-400);
    outline: 0;
    box-shadow: none
}

.m8-form-check-input:checked {
    background-color: #1b84ff;
    border-color: #1b84ff
}

.m8-form-check-input:checked[type=checkbox] {
    --form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 11' width='13' height='11' fill='none'%3e%3cpath d='M11.0426 1.02893C11.3258 0.695792 11.8254 0.655283 12.1585 0.938451C12.4917 1.22162 12.5322 1.72124 12.249 2.05437L5.51985 9.97104C5.23224 10.3094 4.72261 10.3451 4.3907 10.05L0.828197 6.88335C0.50141 6.59288 0.471975 6.09249 0.762452 5.7657C1.05293 5.43891 1.55332 5.40948 1.88011 5.69995L4.83765 8.32889L11.0426 1.02893Z' fill='%23ffffff'/%3e%3c/svg%3e")
}

.m8-form-check-input:checked[type=radio] {
    --form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23ffffff'/%3e%3c/svg%3e")
}

.m8-form-check-input[type=checkbox]:indeterminate {
    background-color: #1b84ff;
    border-color: #1b84ff;
    --form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")
}

.m8-form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: .5
}

.m8-form-check-input:disabled~.m8-form-check-label,
.m8-form-check-input[disabled]~.m8-form-check-label {
    cursor: default;
    opacity: .5
}

.m8-form-check-label {
    color: var(--gray-500)
}

.m8-form-switch {
    padding-left: 3.75rem
}

.m8-form-switch .m8-form-check-input {
    --form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    width: 3.25rem;
    margin-left: -3.75rem;
    background-image: var(--form-switch-bg);
    background-position: left center;
    border-radius: 3.25rem;
    transition: background-position .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .m8-form-switch .m8-form-check-input {
        transition: none
    }
}

.m8-form-switch .m8-form-check-input:focus {
    --form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e")
}

.m8-form-switch .m8-form-check-input:checked {
    background-position: right center;
    --form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e")
}

.m8-form-switch.m8-form-check-reverse {
    padding-right: 3.75rem;
    padding-left: 0
}

.m8-form-switch.m8-form-check-reverse .m8-form-check-input {
    margin-right: -3.75rem;
    margin-left: 0
}

.m8-form-check-inline {
    display: inline-block;
    margin-right: 1rem
}

.m8-btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.m8-btn-check:disabled+.m8-btn,
.m8-btn-check[disabled]+.m8-btn {
    pointer-events: none;
    filter: none;
    opacity: .65
}

[data-bs-theme=dark] .m8-form-switch .m8-form-check-input:not(:checked):not(:focus) {
    --form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")
}

.m8-form-range {
    width: 100%;
    height: 1.5rem;
    padding: 0;
    appearance: none;
    background-color: transparent
}

.m8-form-range:focus {
    outline: 0
}

.m8-form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(27, 132, 255, .25)
}

.m8-form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(27, 132, 255, .25)
}

.m8-form-range::-moz-focus-outer {
    border: 0
}

.m8-form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -.25rem;
    appearance: none;
    background-color: #1b84ff;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 .1rem .25rem rgba(0, 0, 0, .1);
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .m8-form-range::-webkit-slider-thumb {
        transition: none
    }
}

.m8-form-range::-webkit-slider-thumb:active {
    background-color: #bbdaff
}

.m8-form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: var(--gray-300);
    border-color: transparent;
    border-radius: .475rem;
    box-shadow: var(--box-shadow-inset)
}

.m8-form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    appearance: none;
    background-color: #1b84ff;
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 .1rem .25rem rgba(0, 0, 0, .1);
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .m8-form-range::-moz-range-thumb {
        transition: none
    }
}

.m8-form-range::-moz-range-thumb:active {
    background-color: #bbdaff
}

.m8-form-range::-moz-range-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: var(--gray-300);
    border-color: transparent;
    border-radius: .475rem;
    box-shadow: var(--box-shadow-inset)
}

.m8-form-range:disabled {
    pointer-events: none
}

.m8-form-range:disabled::-webkit-slider-thumb {
    background-color: var(--gray-500)
}

.m8-form-range:disabled::-moz-range-thumb {
    background-color: var(--gray-500)
}

.m8-form-floating {
    position: relative
}

.m8-form-floating>.m8-form-control,
.m8-form-floating>.m8-form-control-plaintext,
.m8-form-floating>.m8-form-select {
    height: calc(3.75rem + 2px);
    min-height: calc(3.75rem + 2px);
    line-height: 1.25
}

.m8-form-floating>label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    padding: 1rem 1rem;
    overflow: hidden;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .m8-form-floating>label {
        transition: none
    }
}

.m8-form-floating>.m8-form-control,
.m8-form-floating>.m8-form-control-plaintext {
    padding: 1rem 1rem
}

.m8-form-floating>.m8-form-control-plaintext::placeholder,
.m8-form-floating>.m8-form-control::placeholder {
    color: transparent
}

.m8-form-floating>.m8-form-control-plaintext:focus,
.m8-form-floating>.m8-form-control-plaintext:not(:placeholder-shown),
.m8-form-floating>.m8-form-control:focus,
.m8-form-floating>.m8-form-control:not(:placeholder-shown) {
    padding-top: 1.85rem;
    padding-bottom: .625rem
}

.m8-form-floating>.m8-form-control-plaintext:-webkit-autofill,
.m8-form-floating>.m8-form-control:-webkit-autofill {
    padding-top: 1.85rem;
    padding-bottom: .625rem
}

.m8-form-floating>.m8-form-select {
    padding-top: 1.85rem;
    padding-bottom: .625rem
}

.m8-form-floating>.m8-form-control-plaintext~label,
.m8-form-floating>.m8-form-control:focus~label,
.m8-form-floating>.m8-form-control:not(:placeholder-shown)~label,
.m8-form-floating>.m8-form-select~label {
    color: rgba(var(--body-color-rgb), .65);
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.m8-form-floating>.m8-form-control-plaintext~label::after,
.m8-form-floating>.m8-form-control:focus~label::after,
.m8-form-floating>.m8-form-control:not(:placeholder-shown)~label::after,
.m8-form-floating>.m8-form-select~label::after {
    position: absolute;
    inset: 1rem .5rem;
    z-index: -1;
    height: 1.5em;
    content: "";
    background-color: var(--body-bg);
    border-radius: .475rem
}

.m8-form-floating>.m8-form-control:-webkit-autofill~label {
    color: rgba(var(--body-color-rgb), .65);
    transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.m8-form-floating>.m8-form-control-plaintext~label {
    border-width: 1px 0
}

.m8-form-floating>.m8-form-control:disabled~label,
.m8-form-floating>:disabled~label {
    color: #78829d
}

.m8-form-floating>.m8-form-control:disabled~label::after,
.m8-form-floating>:disabled~label::after {
    background-color: var(--gray-200)
}

.m8-input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%
}

.m8-input-group>.m8-form-control,
.m8-input-group>.m8-form-floating,
.m8-input-group>.m8-form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0
}

.m8-input-group>.m8-form-control:focus,
.m8-input-group>.m8-form-floating:focus-within,
.m8-input-group>.m8-form-select:focus {
    z-index: 5
}

.m8-input-group .m8-btn {
    position: relative;
    z-index: 2
}

.m8-input-group .m8-btn:focus {
    z-index: 5
}

.m8-input-group-text {
    display: flex;
    align-items: center;
    padding: .775rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--gray-700);
    text-align: center;
    white-space: nowrap;
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: .475rem
}

.m8-input-group-lg>.m8-btn,
.m8-input-group-lg>.m8-form-control,
.m8-input-group-lg>.m8-form-select,
.m8-input-group-lg>.m8-input-group-text {
    padding: .825rem 1.5rem;
    font-size: 1.15rem;
    border-radius: .625rem
}

.m8-input-group-sm>.m8-btn,
.m8-input-group-sm>.m8-form-control,
.m8-input-group-sm>.m8-form-select,
.m8-input-group-sm>.m8-input-group-text {
    padding: .55rem .75rem;
    font-size: .95rem;
    border-radius: .425rem
}

.m8-input-group-lg>.m8-form-select,
.m8-input-group-sm>.m8-form-select {
    padding-right: 4rem
}

.m8-input-group:not(.m8-has-validation)>.dropdown-toggle:nth-last-child(n+3),
.m8-input-group:not(.m8-has-validation)>.m8-form-floating:not(:last-child)>.m8-form-control,
.m8-input-group:not(.m8-has-validation)>.m8-form-floating:not(:last-child)>.m8-form-select,
.m8-input-group:not(.m8-has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.m8-form-floating) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.m8-input-group.m8-has-validation>.dropdown-toggle:nth-last-child(n+4),
.m8-input-group.m8-has-validation>.m8-form-floating:nth-last-child(n+3)>.m8-form-control,
.m8-input-group.m8-has-validation>.m8-form-floating:nth-last-child(n+3)>.m8-form-select,
.m8-input-group.m8-has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.m8-form-floating) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.m8-input-group>:not(:first-child):not(.dropdown-menu):not(.m8-valid-tooltip):not(.m8-valid-feedback):not(.m8-invalid-tooltip):not(.m8-invalid-feedback) {
    margin-left: calc(1px * -1);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.m8-input-group>.m8-form-floating:not(:first-child)>.m8-form-control,
.m8-input-group>.m8-form-floating:not(:first-child)>.m8-form-select {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.m8-valid-feedback {
    display: none;
    width: 100%;
    margin-top: .5rem;
    font-size: .95rem;
    color: var(--form-valid-color)
}

.m8-valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .75rem 1rem;
    margin-top: .1rem;
    font-size: 1rem;
    color: #fff;
    background-color: var(--success);
    border-radius: .475rem
}

.m8-is-valid~.m8-valid-feedback,
.m8-is-valid~.m8-valid-tooltip,
.m8-was-validated :valid~.m8-valid-feedback,
.m8-was-validated :valid~.m8-valid-tooltip {
    display: block
}

.m8-form-control.m8-is-valid,
.m8-was-validated .m8-form-control:valid {
    border-color: var(--form-valid-border-color);
    padding-right: calc(1.5em + 1.55rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2317C653' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .3875rem) center;
    background-size: calc(.75em + .775rem) calc(.75em + .775rem)
}

.m8-form-control.m8-is-valid:focus,
.m8-was-validated .m8-form-control:valid:focus {
    border-color: var(--form-valid-border-color);
    box-shadow: false, 0 0 0 .25rem rgba(var(--success-rgb), .25)
}

.m8-was-validated textarea.m8-form-control:valid,
textarea.m8-form-control.m8-is-valid {
    padding-right: calc(1.5em + 1.55rem);
    background-position: top calc(.375em + .3875rem) right calc(.375em + .3875rem)
}

.m8-form-select.m8-is-valid,
.m8-was-validated .m8-form-select:valid {
    border-color: var(--form-valid-border-color)
}

.m8-form-select.m8-is-valid:not([multiple]):not([size]),
.m8-form-select.m8-is-valid:not([multiple])[size="1"],
.m8-was-validated .m8-form-select:valid:not([multiple]):not([size]),
.m8-was-validated .m8-form-select:valid:not([multiple])[size="1"] {
    --form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2317C653' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    padding-right: 5.5rem;
    background-position: right 1rem center, center right 3rem;
    background-size: 16px 12px, calc(.75em + .775rem) calc(.75em + .775rem)
}

.m8-form-select.m8-is-valid:focus,
.m8-was-validated .m8-form-select:valid:focus {
    border-color: var(--form-valid-border-color);
    box-shadow: false, 0 0 0 .25rem rgba(var(--success-rgb), .25)
}

.m8-form-control-color.m8-is-valid,
.m8-was-validated .m8-form-control-color:valid {
    width: calc(3rem + calc(1.5em + 1.55rem))
}

.m8-form-check-input.m8-is-valid,
.m8-was-validated .m8-form-check-input:valid {
    border-color: var(--form-valid-border-color)
}

.m8-form-check-input.m8-is-valid:checked,
.m8-was-validated .m8-form-check-input:valid:checked {
    background-color: var(--form-valid-color)
}

.m8-form-check-input.m8-is-valid:focus,
.m8-was-validated .m8-form-check-input:valid:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--success-rgb), .25)
}

.m8-form-check-input.m8-is-valid~.m8-form-check-label,
.m8-was-validated .m8-form-check-input:valid~.m8-form-check-label {
    color: var(--form-valid-color)
}

.m8-form-check-inline .m8-form-check-input~.m8-valid-feedback {
    margin-left: .5em
}

.m8-input-group>.m8-form-control:not(:focus).m8-is-valid,
.m8-input-group>.m8-form-floating:not(:focus-within).m8-is-valid,
.m8-input-group>.m8-form-select:not(:focus).m8-is-valid,
.m8-was-validated .m8-input-group>.m8-form-control:not(:focus):valid,
.m8-was-validated .m8-input-group>.m8-form-floating:not(:focus-within):valid,
.m8-was-validated .m8-input-group>.m8-form-select:not(:focus):valid {
    z-index: 3
}

.m8-invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .5rem;
    font-size: .95rem;
    color: var(--form-invalid-color)
}

.m8-invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .75rem 1rem;
    margin-top: .1rem;
    font-size: 1rem;
    color: #fff;
    background-color: var(--danger);
    border-radius: .475rem
}

.m8-is-invalid~.m8-invalid-feedback,
.m8-is-invalid~.m8-invalid-tooltip,
.m8-was-validated :invalid~.m8-invalid-feedback,
.m8-was-validated :invalid~.m8-invalid-tooltip {
    display: block
}

.m8-form-control.m8-is-invalid,
.m8-was-validated .m8-form-control:invalid {
    border-color: var(--form-invalid-border-color);
    padding-right: calc(1.5em + 1.55rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F8285A'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F8285A' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .3875rem) center;
    background-size: calc(.75em + .775rem) calc(.75em + .775rem)
}

.m8-form-control.m8-is-invalid:focus,
.m8-was-validated .m8-form-control:invalid:focus {
    border-color: var(--form-invalid-border-color);
    box-shadow: false, 0 0 0 .25rem rgba(var(--danger-rgb), .25)
}

.m8-was-validated textarea.m8-form-control:invalid,
textarea.m8-form-control.m8-is-invalid {
    padding-right: calc(1.5em + 1.55rem);
    background-position: top calc(.375em + .3875rem) right calc(.375em + .3875rem)
}

.m8-form-select.m8-is-invalid,
.m8-was-validated .m8-form-select:invalid {
    border-color: var(--form-invalid-border-color)
}

.m8-form-select.m8-is-invalid:not([multiple]):not([size]),
.m8-form-select.m8-is-invalid:not([multiple])[size="1"],
.m8-was-validated .m8-form-select:invalid:not([multiple]):not([size]),
.m8-was-validated .m8-form-select:invalid:not([multiple])[size="1"] {
    --form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F8285A'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F8285A' stroke='none'/%3e%3c/svg%3e");
    padding-right: 5.5rem;
    background-position: right 1rem center, center right 3rem;
    background-size: 16px 12px, calc(.75em + .775rem) calc(.75em + .775rem)
}

.m8-form-select.m8-is-invalid:focus,
.m8-was-validated .m8-form-select:invalid:focus {
    border-color: var(--form-invalid-border-color);
    box-shadow: false, 0 0 0 .25rem rgba(var(--danger-rgb), .25)
}

.m8-form-control-color.m8-is-invalid,
.m8-was-validated .m8-form-control-color:invalid {
    width: calc(3rem + calc(1.5em + 1.55rem))
}

.m8-form-check-input.m8-is-invalid,
.m8-was-validated .m8-form-check-input:invalid {
    border-color: var(--form-invalid-border-color)
}

.m8-form-check-input.m8-is-invalid:checked,
.m8-was-validated .m8-form-check-input:invalid:checked {
    background-color: var(--form-invalid-color)
}

.m8-form-check-input.m8-is-invalid:focus,
.m8-was-validated .m8-form-check-input:invalid:focus {
    box-shadow: 0 0 0 .25rem rgba(var(--danger-rgb), .25)
}

.m8-form-check-input.m8-is-invalid~.m8-form-check-label,
.m8-was-validated .m8-form-check-input:invalid~.m8-form-check-label {
    color: var(--form-invalid-color)
}

.m8-form-check-inline .m8-form-check-input~.m8-invalid-feedback {
    margin-left: .5em
}

.m8-input-group>.m8-form-control:not(:focus).m8-is-invalid,
.m8-input-group>.m8-form-floating:not(:focus-within).m8-is-invalid,
.m8-input-group>.m8-form-select:not(:focus).m8-is-invalid,
.m8-was-validated .m8-input-group>.m8-form-control:not(:focus):invalid,
.m8-was-validated .m8-input-group>.m8-form-floating:not(:focus-within):invalid,
.m8-was-validated .m8-input-group>.m8-form-select:not(:focus):invalid {
    z-index: 4
}

.m8-col-form-label {
    font-size: 1.05rem
}

.m8-form-control.m8-form-control-transparent {
    background-color: transparent;
    border-color: transparent
}

.dropdown.show>.m8-form-control.m8-form-control-transparent,
.m8-form-control.m8-form-control-transparent.active,
.m8-form-control.m8-form-control-transparent.focus,
.m8-form-control.m8-form-control-transparent:active,
.m8-form-control.m8-form-control-transparent:focus {
    background-color: transparent;
    border-color: transparent
}

.m8-form-control.m8-form-control-flush {
    border: 0;
    background-color: transparent;
    outline: 0 !important;
    box-shadow: none;
    border-radius: 0
}

.m8-form-control.m8-form-control-solid {
    background-color: var(--gray-100);
    border-color: var(--gray-100);
    color: var(--gray-700);
    transition: color .2s ease
}

.m8-form-control.m8-form-control-solid::placeholder {
    color: var(--gray-500)
}

.m8-form-control.m8-form-control-solid::-moz-placeholder {
    color: var(--gray-500);
    opacity: 1
}

.dropdown.show>.m8-form-control.m8-form-control-solid,
.m8-form-control.m8-form-control-solid.active,
.m8-form-control.m8-form-control-solid.focus,
.m8-form-control.m8-form-control-solid:active,
.m8-form-control.m8-form-control-solid:focus {
    background-color: var(--gray-200);
    border-color: var(--gray-200);
    color: var(--gray-700);
    transition: color .2s ease
}

.m8-form-control-solid-bg {
    background-color: var(--gray-100)
}

.m8-form-control-plaintext {
    color: var(--gray-700)
}

.m8-placeholder-gray-500::placeholder {
    color: var(--gray-500)
}

.m8-placeholder-gray-500::-moz-placeholder {
    color: var(--gray-500);
    opacity: 1
}

.m8-placeholder-white::placeholder {
    color: #fff
}

.m8-placeholder-white::-moz-placeholder {
    color: #fff;
    opacity: 1
}

.m8-resize-none {
    resize: none
}

.m8-form-floating .m8-form-control.m8-form-control-solid::placeholder {
    color: transparent
}

.m8-form-floating.m8-form-control-solid-bg label::after,
.m8-form-floating>:disabled~label::after,
.m8-form-floating>:focus~label::after {
    background-color: transparent !important
}

.m8-form-select {
    appearance: none
}

.m8-form-select:focus {
    border-color: var(--gray-400);
    box-shadow: false, 0 0 0 .25rem rgba(var(--component-active-bg), .25)
}

.m8-form-select:disabled {
    color: var(--gray-500);
    background-color: var(--gray-200);
    border-color: var(--gray-300)
}

.m8-form-select:-moz-focusring {
    text-shadow: 0 0 0 var(--gray-700)
}

.m8-form-select.m8-form-select-solid {
    background-color: var(--gray-100);
    border-color: var(--gray-100);
    color: var(--gray-700);
    transition: color .2s ease
}

.m8-form-select.m8-form-select-solid::placeholder {
    color: var(--gray-500)
}

.m8-form-select.m8-form-select-solid::-moz-placeholder {
    color: var(--gray-500);
    opacity: 1
}

.dropdown.show>.m8-form-select.m8-form-select-solid,
.m8-form-select.m8-form-select-solid.active,
.m8-form-select.m8-form-select-solid.focus,
.m8-form-select.m8-form-select-solid:active,
.m8-form-select.m8-form-select-solid:focus {
    background-color: var(--gray-200);
    border-color: var(--gray-200) !important;
    color: var(--gray-700);
    transition: color .2s ease
}

.m8-form-select.m8-form-select-transparent {
    background-color: transparent;
    border-color: transparent;
    color: var(--gray-700)
}

.m8-form-select.m8-form-select-transparent::placeholder {
    color: var(--gray-500)
}

.m8-form-select.m8-form-select-transparent::-moz-placeholder {
    color: var(--gray-500);
    opacity: 1
}

.dropdown.show>.m8-form-select.m8-form-select-transparent,
.m8-form-select.m8-form-select-transparent.active,
.m8-form-select.m8-form-select-transparent.focus,
.m8-form-select.m8-form-select-transparent:active,
.m8-form-select.m8-form-select-transparent:focus {
    background-color: transparent;
    border-color: transparent !important;
    color: var(--gray-700)
}

.m8-form-check:not(.m8-form-switch) .m8-form-check-input[type=checkbox] {
    background-size: 60% 60%
}

.m8-form-check.m8-form-check-sm .m8-form-check-input {
    height: 1.55rem;
    width: 1.55rem
}

.m8-form-check.m8-form-check-lg .m8-form-check-input {
    height: 2.25rem;
    width: 2.25rem
}

.m8-form-check.m8-form-check-inline {
    display: inline-block;
    margin-right: 1rem
}

.m8-form-check.m8-form-check-solid .m8-form-check-input {
    border: 0
}

.m8-form-check.m8-form-check-solid .m8-form-check-input:not(:checked) {
    background-color: var(--gray-200)
}

.m8-form-check.m8-form-check-solid .m8-form-check-input[type=checkbox]:indeterminate {
    background-color: #1b84ff
}

.m8-form-check.m8-form-check-success .m8-form-check-input:checked {
    background-color: var(--success)
}

.m8-form-check.m8-form-check-danger .m8-form-check-input:checked {
    background-color: var(--danger)
}

.m8-form-check.m8-form-check-warning .m8-form-check-input:checked {
    background-color: var(--warning)
}

.m8-form-check-custom {
    display: flex;
    align-items: center;
    padding-left: 0;
    margin: 0
}

.m8-form-check-custom .m8-form-check-input {
    margin: 0;
    float: none;
    flex-shrink: 0
}

.m8-form-check-custom .m8-form-check-label {
    margin-left: .55rem
}

.m8-form-switch.m8-form-check-custom .m8-form-check-input {
    height: 2.25rem
}

.m8-form-switch.m8-form-check-custom.m8-form-switch-sm .m8-form-check-input {
    height: 1.5rem;
    width: 2.5rem
}

.m8-form-switch.m8-form-check-custom.m8-form-switch-lg .m8-form-check-input {
    height: 2.75rem;
    width: 3.75rem
}

.m8-form-switch.m8-form-check-solid .m8-form-check-input {
    --form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e")
}

.m8-form-switch.m8-form-check-solid .m8-form-check-input:not(:checked) {
    background-color: var(--gray-200)
}

[data-bs-theme=dark] .m8-form-switch .m8-form-check-input:focus:not(:checked) {
    --form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")
}

.m8-form-check-image {
    position: relative;
    overflow: hidden
}

.m8-form-check-image img {
    max-width: 100%
}

.m8-form-check-image .m8-form-check-wrapper {
    border-radius: .625rem;
    border: 2px solid transparent;
    transition: all .2s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: .75rem
}

.m8-form-check-image .m8-form-check-rounded {
    border-radius: .625rem
}

.m8-form-check-image .m8-form-check-label {
    font-weight: 600;
    margin-left: .5rem
}

.m8-form-check-image.active:not(.m8-form-check-success):not(.m8-form-check-danger) .m8-form-check-wrapper {
    border-color: var(--primary) !important
}

.m8-form-check-image.m8-form-check-success.active .m8-form-check-wrapper {
    border-color: var(--success) !important
}

.m8-form-check-image.m8-form-check-danger.active .m8-form-check-wrapper {
    border-color: var(--danger) !important
}

.m8-form-check-image.disabled {
    opacity: .65
}

.m8-input-group.m8-input-group-solid {
    border-radius: .475rem
}

.m8-input-group.m8-input-group-solid.m8-input-group-sm {
    border-radius: .425rem
}

.m8-input-group.m8-input-group-solid.m8-input-group-lg {
    border-radius: .625rem
}

.m8-input-group.m8-input-group-solid .m8-input-group-text {
    background-color: var(--gray-100);
    border-color: var(--gray-100)
}

.m8-input-group.m8-input-group-solid .m8-input-group-text+.m8-form-control {
    border-left-color: var(--gray-300)
}

.m8-input-group.m8-input-group-solid .m8-form-control {
    background-color: var(--gray-100);
    border-color: var(--gray-100)
}

.m8-input-group.m8-input-group-solid .m8-form-control+.m8-input-group-text {
    border-left-color: var(--gray-300)
}

.m8-form-floating .m8-form-control.m8-form-control-solid::placeholder {
    color: transparent
}

.m8-form-floating.m8-form-control-solid-bg label::after,
.m8-form-floating>:disabled~label::after,
.m8-form-floating>:focus~label::after {
    background-color: transparent !important
}

.m8-required:after {
    content: "*";
    position: relative;
    font-size: inherit;
    color: var(--danger);
    padding-left: .25rem;
    font-weight: 600
}

.m8-progress-vertical {
    display: flex;
    align-items: stretch;
    justify-content: space-between
}

.m8-progress-vertical .m8-progress {
    height: 100%;
    border-radius: .475rem;
    display: flex;
    align-items: flex-end;
    margin-right: 1rem
}

.m8-progress-vertical .m8-progress:last-child {
    margin-right: 0
}

.m8-progress-vertical .m8-progress .m8-progress-bar {
    width: 8px;
    border-radius: .475rem
}


.m8-hover-elevate-up {
    transition: transform .3s ease
}

.m8-hover-elevate-up:hover {
    transform: translateY(-2.5%);
    transition: transform .3s ease;
    will-change: transform
}

.m8-hover-elevate-down {
    transition: transform .3s ease
}

.m8-hover-elevate-down:hover {
    transform: translateY(2.5%);
    transition: transform .3s ease;
    will-change: transform
}

.m8-hover-scale {
    transition: transform .3s ease
}

.m8-hover-scale:hover {
    transform: scale(1.1);
    transition: transform .3s ease;
    will-change: transform
}

.m8-hover-rotate-end {
    transition: transform .3s ease
}

.m8-hover-rotate-end:hover {
    transform: rotate(4deg);
    transition: transform .3s ease;
    will-change: transform
}

.m8-hover-rotate-start {
    transition: transform .3s ease
}

.m8-hover-rotate-start:hover {
    transform: rotate(-4deg);
    transition: transform .3s ease;
    will-change: transform
}

.m8-rotate {
    display: inline-flex;
    align-items: center
}

.m8-rotate-90 {
    transition: transform .3s ease;
    backface-visibility: hidden;
    will-change: transform
}

.active>.m8-rotate-90,
.collapsible:not(.collapsed)>.m8-rotate-90,
.show>.m8-rotate-90 {
    transform: rotateZ(90deg);
    transition: transform .3s ease
}

[direction=rtl] .active>.m8-rotate-90,
[direction=rtl] .collapsible:not(.collapsed)>.m8-rotate-90,
[direction=rtl] .show>.m8-rotate-90 {
    transform: rotateZ(-90deg)
}

.m8-rotate-n90 {
    transition: transform .3s ease;
    backface-visibility: hidden;
    will-change: transform
}

.active>.m8-rotate-n90,
.collapsible:not(.collapsed)>.m8-rotate-n90,
.show>.m8-rotate-n90 {
    transform: rotateZ(-90deg);
    transition: transform .3s ease
}

[direction=rtl] .active>.m8-rotate-n90,
[direction=rtl] .collapsible:not(.collapsed)>.m8-rotate-n90,
[direction=rtl] .show>.m8-rotate-n90 {
    transform: rotateZ(90deg)
}

.m8-rotate-180 {
    transition: transform .3s ease;
    backface-visibility: hidden;
    will-change: transform
}

.active>.m8-rotate-180,
.collapsible:not(.collapsed)>.m8-rotate-180,
.show>.m8-rotate-180 {
    transform: rotateZ(180deg);
    transition: transform .3s ease
}

[direction=rtl] .active>.m8-rotate-180,
[direction=rtl] .collapsible:not(.collapsed)>.m8-rotate-180,
[direction=rtl] .show>.m8-rotate-180 {
    transform: rotateZ(-180deg)
}

.m8-rotate-n180 {
    transition: transform .3s ease;
    backface-visibility: hidden;
    will-change: transform
}

.active>.m8-rotate-n180,
.collapsible:not(.collapsed)>.m8-rotate-n180,
.show>.m8-rotate-n180 {
    transform: rotateZ(-180deg);
    transition: transform .3s ease
}

[direction=rtl] .active>.m8-rotate-n180,
[direction=rtl] .collapsible:not(.collapsed)>.m8-rotate-n180,
[direction=rtl] .show>.m8-rotate-n180 {
    transform: rotateZ(180deg)
}

.m8-rotate-270 {
    transition: transform .3s ease;
    backface-visibility: hidden;
    will-change: transform
}

.active>.m8-rotate-270,
.collapsible:not(.collapsed)>.m8-rotate-270,
.show>.m8-rotate-270 {
    transform: rotateZ(270deg);
    transition: transform .3s ease
}

[direction=rtl] .active>.m8-rotate-270,
[direction=rtl] .collapsible:not(.collapsed)>.m8-rotate-270,
[direction=rtl] .show>.m8-rotate-270 {
    transform: rotateZ(-270deg)
}

.m8-rotate-n270 {
    transition: transform .3s ease;
    backface-visibility: hidden;
    will-change: transform
}

.active>.m8-rotate-n270,
.collapsible:not(.collapsed)>.m8-rotate-n270,
.show>.m8-rotate-n270 {
    transform: rotateZ(-270deg);
    transition: transform .3s ease
}

[direction=rtl] .active>.m8-rotate-n270,
[direction=rtl] .collapsible:not(.collapsed)>.m8-rotate-n270,
[direction=rtl] .show>.m8-rotate-n270 {
    transform: rotateZ(270deg)
}


.m8-flex-root {
    flex: 1
}

.m8-flex-column-auto {
    flex: none
}

.m8-flex-column-fluid {
    flex: 1 0 auto
}

.m8-flex-row-auto {
    flex: 0 0 auto
}

.m8-flex-row-fluid {
    flex: 1 auto;
    min-width: 0
}

.m8-flex-center {
    justify-content: center;
    align-items: center
}

.m8-flex-start {
    justify-content: start;
    align-items: start
}

.m8-flex-end {
    justify-content: flex-end;
    align-items: flex-end
}

.m8-flex-stack {
    justify-content: space-between;
    align-items: center
}

@media (min-width:576px) {
    .m8-flex-sm-root {
        flex: 1
    }

    .m8-flex-sm-column-auto {
        flex: none
    }

    .m8-flex-sm-column-fluid {
        flex: 1 0 auto
    }

    .m8-flex-sm-row-auto {
        flex: 0 0 auto
    }

    .m8-flex-sm-row-fluid {
        flex: 1 auto;
        min-width: 0
    }

    .m8-flex-sm-center {
        justify-content: center;
        align-items: center
    }

    .m8-flex-sm-start {
        justify-content: start;
        align-items: start
    }

    .m8-flex-sm-end {
        justify-content: flex-end;
        align-items: flex-end
    }

    .m8-flex-sm-stack {
        justify-content: space-between;
        align-items: center
    }
}

@media (min-width:768px) {
    .m8-flex-md-root {
        flex: 1
    }

    .m8-flex-md-column-auto {
        flex: none
    }

    .m8-flex-md-column-fluid {
        flex: 1 0 auto
    }

    .m8-flex-md-row-auto {
        flex: 0 0 auto
    }

    .m8-flex-md-row-fluid {
        flex: 1 auto;
        min-width: 0
    }

    .m8-flex-md-center {
        justify-content: center;
        align-items: center
    }

    .m8-flex-md-start {
        justify-content: start;
        align-items: start
    }

    .m8-flex-md-end {
        justify-content: flex-end;
        align-items: flex-end
    }

    .m8-flex-md-stack {
        justify-content: space-between;
        align-items: center
    }
}

@media (min-width:992px) {
    .m8-flex-lg-root {
        flex: 1
    }

    .m8-flex-lg-column-auto {
        flex: none
    }

    .m8-flex-lg-column-fluid {
        flex: 1 0 auto
    }

    .m8-flex-lg-row-auto {
        flex: 0 0 auto
    }

    .m8-flex-lg-row-fluid {
        flex: 1 auto;
        min-width: 0
    }

    .m8-flex-lg-center {
        justify-content: center;
        align-items: center
    }

    .m8-flex-lg-start {
        justify-content: start;
        align-items: start
    }

    .m8-flex-lg-end {
        justify-content: flex-end;
        align-items: flex-end
    }

    .m8-flex-lg-stack {
        justify-content: space-between;
        align-items: center
    }
}

@media (min-width:1200px) {
    .m8-flex-xl-root {
        flex: 1
    }

    .m8-flex-xl-column-auto {
        flex: none
    }

    .m8-flex-xl-column-fluid {
        flex: 1 0 auto
    }

    .m8-flex-xl-row-auto {
        flex: 0 0 auto
    }

    .m8-flex-xl-row-fluid {
        flex: 1 auto;
        min-width: 0
    }

    .m8-flex-xl-center {
        justify-content: center;
        align-items: center
    }

    .m8-flex-xl-start {
        justify-content: start;
        align-items: start
    }

    .m8-flex-xl-end {
        justify-content: flex-end;
        align-items: flex-end
    }

    .m8-flex-xl-stack {
        justify-content: space-between;
        align-items: center
    }
}

@media (min-width:1400px) {
    .m8-flex-xxl-root {
        flex: 1
    }

    .m8-flex-xxl-column-auto {
        flex: none
    }

    .m8-flex-xxl-column-fluid {
        flex: 1 0 auto
    }

    .m8-flex-xxl-row-auto {
        flex: 0 0 auto
    }

    .m8-flex-xxl-row-fluid {
        flex: 1 auto;
        min-width: 0
    }

    .m8-flex-xxl-center {
        justify-content: center;
        align-items: center
    }

    .m8-flex-xxl-start {
        justify-content: start;
        align-items: start
    }

    .m8-flex-xxl-end {
        justify-content: flex-end;
        align-items: flex-end
    }

    .m8-flex-xxl-stack {
        justify-content: space-between;
        align-items: center
    }
}

.m8-flex-equal {
    flex-grow: 1;
    flex-basis: 0;
    flex-shrink: 0
}

.m8-shadow-xs {
    box-shadow: var(--box-shadow-xs)
}

.m8-shadow-sm {
    box-shadow: var(--box-shadow-sm)
}

.m8-shadow {
    box-shadow: var(--box-shadow)
}

.m8-shadow-lg {
    box-shadow: var(--box-shadow-lg)
}


.m8-menu-group {
    display: flex
}

.m8-menu,
.m8-menu-wrapper {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none
}

.m8-menu-inner {
    padding: 0;
    margin: 0;
    list-style: none
}

.m8-menu-sub {
    display: none;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-direction: column
}

.m8-menu-item {
    display: block;
    padding: .15rem 0
}

.m8-menu-item .m8-menu-link {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    flex: 0 0 100%;
    padding: .65rem 1rem;
    transition: none;
    outline: 0 !important
}

.m8-menu-item .m8-menu-link .m8-menu-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    margin-right: .5rem
}

.m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-item .m8-menu-link .m8-menu-icon i {
    line-height: 1
}

.m8-menu-item .m8-menu-link .m8-menu-bullet {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    margin-right: .5rem
}

.m8-menu-item .m8-menu-link .m8-menu-title {
    display: flex;
    align-items: center;
    flex-grow: 1
}

.m8-menu-item .m8-menu-link .m8-menu-badge {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: .5rem
}

.m8-menu-item .m8-menu-link .m8-menu-arrow {
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 5px;
    width: 9px;
    height: 9px
}

.m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    display: block;
    width: 100%;
    content: " ";
    will-change: transform;
    background-size: 100% 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-muted);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-muted%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-muted%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-muted);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-muted%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-muted%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-item .m8-menu-content {
    padding: .65rem 1rem
}

.m8-menu-item.show .m8-menu-link .m8-menu-arrow:after {
    backface-visibility: hidden;
    transition: transform .3s ease
}

.m8-menu-nowrap .m8-menu-link,
.m8-menu-nowrap .m8-menu-title {
    flex-wrap: nowrap;
    flex-shrink: 0
}

.m8-menu-center {
    justify-content: center
}

.m8-menu-heading {
    color: var(--menu-heading-color)
}

.m8-menu-item.m8-menu-accordion .m8-menu-arrow:after {
    transform: rotateZ(-90deg);
    transform: rotateZ(90deg);
    transition: transform .3s ease
}

.m8-menu-item.m8-menu-accordion.show:not(.hiding):not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after,
.m8-menu-item.m8-menu-accordion.showing:not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after {
    transform: rotateZ(90deg);
    transform: rotateZ(-90deg);
    transition: transform .3s ease
}

.m8-menu-sub-dropdown {
    display: none;
    border-radius: .475rem;
    background-color: var(--menu-dropdown-bg-color);
    box-shadow: var(--menu-dropdown-box-shadow);
    z-index: 107
}

.m8-menu-sub-dropdown.m8-menu.show,
.m8-menu-sub-dropdown.show[data-popper-placement],
.show.m8-menu-dropdown>.m8-menu-sub-dropdown {
    display: flex;
    will-change: transform;
    animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1
}

.m8-menu-sub-accordion {
    display: none
}

.m8-menu-sub-accordion.show,
.show:not(.m8-menu-dropdown)>.m8-menu-sub-accordion {
    display: flex
}

.m8-menu-sub-indention .m8-menu-sub:not([data-popper-placement]) {
    margin-left: 1rem
}

.m8-menu-sub-indention .m8-menu-item .m8-menu-item .m8-menu-link.active {
    margin-right: 1rem
}

.m8-menu-inline {
    display: flex
}

.m8-menu-fit>.m8-menu-item>.m8-menu-content,
.m8-menu-fit>.m8-menu-item>.m8-menu-link {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.m8-menu-column {
    flex-direction: column;
    width: 100%
}

.m8-menu-row {
    flex-direction: row
}

.m8-menu-row>.m8-menu-item {
    display: flex;
    align-items: center
}

.m8-menu-row>.m8-menu-item>.m8-menu-link .m8-menu-arrow:after {
    transform: rotateZ(-90deg);
    transform: rotateZ(90deg);
    transition: transform .3s ease
}

.m8-menu-rounded .m8-menu-link {
    border-radius: .475rem
}

.m8-menu-pill .m8-menu-link {
    border-radius: 50px
}

.m8-menu-rounded-0 .m8-menu-link {
    border-radius: 0 !important
}

@media (min-width:576px) {
    .m8-menu-item.m8-menu-sm-accordion .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-item.m8-menu-sm-accordion.show:not(.hiding):not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after,
    .m8-menu-item.m8-menu-sm-accordion.showing:not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(90deg);
        transform: rotateZ(-90deg);
        transition: transform .3s ease
    }

    .m8-menu-sub-sm-dropdown {
        display: none;
        border-radius: .475rem;
        background-color: var(--menu-dropdown-bg-color);
        box-shadow: var(--menu-dropdown-box-shadow);
        z-index: 107
    }

    .m8-menu-sub-sm-dropdown.m8-menu.show,
    .m8-menu-sub-sm-dropdown.show[data-popper-placement],
    .show.m8-menu-dropdown>.m8-menu-sub-sm-dropdown {
        display: flex;
        will-change: transform;
        animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1
    }

    .m8-menu-sub-sm-accordion {
        display: none
    }

    .m8-menu-sub-sm-accordion.show,
    .show:not(.m8-menu-dropdown)>.m8-menu-sub-sm-accordion {
        display: flex
    }

    .m8-menu-sub-sm-indention .m8-menu-sub:not([data-popper-placement]) {
        margin-left: 1rem
    }

    .m8-menu-sub-sm-indention .m8-menu-item .m8-menu-item .m8-menu-link.active {
        margin-right: 1rem
    }

    .m8-menu-sm-inline {
        display: flex
    }

    .m8-menu-sm-fit>.m8-menu-item>.m8-menu-content,
    .m8-menu-sm-fit>.m8-menu-item>.m8-menu-link {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .m8-menu-sm-column {
        flex-direction: column;
        width: 100%
    }

    .m8-menu-sm-row {
        flex-direction: row
    }

    .m8-menu-sm-row>.m8-menu-item {
        display: flex;
        align-items: center
    }

    .m8-menu-sm-row>.m8-menu-item>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-sm-rounded .m8-menu-link {
        border-radius: .475rem
    }

    .m8-menu-sm-pill .m8-menu-link {
        border-radius: 50px
    }

    .m8-menu-sm-rounded-0 .m8-menu-link {
        border-radius: 0 !important
    }
}

@media (min-width:768px) {
    .m8-menu-item.m8-menu-md-accordion .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-item.m8-menu-md-accordion.show:not(.hiding):not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after,
    .m8-menu-item.m8-menu-md-accordion.showing:not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(90deg);
        transform: rotateZ(-90deg);
        transition: transform .3s ease
    }

    .m8-menu-sub-md-dropdown {
        display: none;
        border-radius: .475rem;
        background-color: var(--menu-dropdown-bg-color);
        box-shadow: var(--menu-dropdown-box-shadow);
        z-index: 107
    }

    .m8-menu-sub-md-dropdown.m8-menu.show,
    .m8-menu-sub-md-dropdown.show[data-popper-placement],
    .show.m8-menu-dropdown>.m8-menu-sub-md-dropdown {
        display: flex;
        will-change: transform;
        animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1
    }

    .m8-menu-sub-md-accordion {
        display: none
    }

    .m8-menu-sub-md-accordion.show,
    .show:not(.m8-menu-dropdown)>.m8-menu-sub-md-accordion {
        display: flex
    }

    .m8-menu-sub-md-indention .m8-menu-sub:not([data-popper-placement]) {
        margin-left: 1rem
    }

    .m8-menu-sub-md-indention .m8-menu-item .m8-menu-item .m8-menu-link.active {
        margin-right: 1rem
    }

    .m8-menu-md-inline {
        display: flex
    }

    .m8-menu-md-fit>.m8-menu-item>.m8-menu-content,
    .m8-menu-md-fit>.m8-menu-item>.m8-menu-link {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .m8-menu-md-column {
        flex-direction: column;
        width: 100%
    }

    .m8-menu-md-row {
        flex-direction: row
    }

    .m8-menu-md-row>.m8-menu-item {
        display: flex;
        align-items: center
    }

    .m8-menu-md-row>.m8-menu-item>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-md-rounded .m8-menu-link {
        border-radius: .475rem
    }

    .m8-menu-md-pill .m8-menu-link {
        border-radius: 50px
    }

    .m8-menu-md-rounded-0 .m8-menu-link {
        border-radius: 0 !important
    }
}

@media (min-width:992px) {
    .m8-menu-item.m8-menu-lg-accordion .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-item.m8-menu-lg-accordion.show:not(.hiding):not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after,
    .m8-menu-item.m8-menu-lg-accordion.showing:not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(90deg);
        transform: rotateZ(-90deg);
        transition: transform .3s ease
    }

    .m8-menu-sub-lg-dropdown {
        display: none;
        border-radius: .475rem;
        background-color: var(--menu-dropdown-bg-color);
        box-shadow: var(--menu-dropdown-box-shadow);
        z-index: 107
    }

    .m8-menu-sub-lg-dropdown.m8-menu.show,
    .m8-menu-sub-lg-dropdown.show[data-popper-placement],
    .show.m8-menu-dropdown>.m8-menu-sub-lg-dropdown {
        display: flex;
        will-change: transform;
        animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1
    }

    .m8-menu-sub-lg-accordion {
        display: none
    }

    .m8-menu-sub-lg-accordion.show,
    .show:not(.m8-menu-dropdown)>.m8-menu-sub-lg-accordion {
        display: flex
    }

    .m8-menu-sub-lg-indention .m8-menu-sub:not([data-popper-placement]) {
        margin-left: 1rem
    }

    .m8-menu-sub-lg-indention .m8-menu-item .m8-menu-item .m8-menu-link.active {
        margin-right: 1rem
    }

    .m8-menu-lg-inline {
        display: flex
    }

    .m8-menu-lg-fit>.m8-menu-item>.m8-menu-content,
    .m8-menu-lg-fit>.m8-menu-item>.m8-menu-link {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .m8-menu-lg-column {
        flex-direction: column;
        width: 100%
    }

    .m8-menu-lg-row {
        flex-direction: row
    }

    .m8-menu-lg-row>.m8-menu-item {
        display: flex;
        align-items: center
    }

    .m8-menu-lg-row>.m8-menu-item>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-lg-rounded .m8-menu-link {
        border-radius: .475rem
    }

    .m8-menu-lg-pill .m8-menu-link {
        border-radius: 50px
    }

    .m8-menu-lg-rounded-0 .m8-menu-link {
        border-radius: 0 !important
    }
}

@media (min-width:1200px) {
    .m8-menu-item.m8-menu-xl-accordion .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-item.m8-menu-xl-accordion.show:not(.hiding):not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after,
    .m8-menu-item.m8-menu-xl-accordion.showing:not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(90deg);
        transform: rotateZ(-90deg);
        transition: transform .3s ease
    }

    .m8-menu-sub-xl-dropdown {
        display: none;
        border-radius: .475rem;
        background-color: var(--menu-dropdown-bg-color);
        box-shadow: var(--menu-dropdown-box-shadow);
        z-index: 107
    }

    .m8-menu-sub-xl-dropdown.m8-menu.show,
    .m8-menu-sub-xl-dropdown.show[data-popper-placement],
    .show.m8-menu-dropdown>.m8-menu-sub-xl-dropdown {
        display: flex;
        will-change: transform;
        animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1
    }

    .m8-menu-sub-xl-accordion {
        display: none
    }

    .m8-menu-sub-xl-accordion.show,
    .show:not(.m8-menu-dropdown)>.m8-menu-sub-xl-accordion {
        display: flex
    }

    .m8-menu-sub-xl-indention .m8-menu-sub:not([data-popper-placement]) {
        margin-left: 1rem
    }

    .m8-menu-sub-xl-indention .m8-menu-item .m8-menu-item .m8-menu-link.active {
        margin-right: 1rem
    }

    .m8-menu-xl-inline {
        display: flex
    }

    .m8-menu-xl-fit>.m8-menu-item>.m8-menu-content,
    .m8-menu-xl-fit>.m8-menu-item>.m8-menu-link {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .m8-menu-xl-column {
        flex-direction: column;
        width: 100%
    }

    .m8-menu-xl-row {
        flex-direction: row
    }

    .m8-menu-xl-row>.m8-menu-item {
        display: flex;
        align-items: center
    }

    .m8-menu-xl-row>.m8-menu-item>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-xl-rounded .m8-menu-link {
        border-radius: .475rem
    }

    .m8-menu-xl-pill .m8-menu-link {
        border-radius: 50px
    }

    .m8-menu-xl-rounded-0 .m8-menu-link {
        border-radius: 0 !important
    }
}

@media (min-width:1400px) {
    .m8-menu-item.m8-menu-xxl-accordion .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-item.m8-menu-xxl-accordion.show:not(.hiding):not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after,
    .m8-menu-item.m8-menu-xxl-accordion.showing:not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(90deg);
        transform: rotateZ(-90deg);
        transition: transform .3s ease
    }

    .m8-menu-sub-xxl-dropdown {
        display: none;
        border-radius: .475rem;
        background-color: var(--menu-dropdown-bg-color);
        box-shadow: var(--menu-dropdown-box-shadow);
        z-index: 107
    }

    .m8-menu-sub-xxl-dropdown.m8-menu.show,
    .m8-menu-sub-xxl-dropdown.show[data-popper-placement],
    .show.m8-menu-dropdown>.m8-menu-sub-xxl-dropdown {
        display: flex;
        will-change: transform;
        animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1
    }

    .m8-menu-sub-xxl-accordion {
        display: none
    }

    .m8-menu-sub-xxl-accordion.show,
    .show:not(.m8-menu-dropdown)>.m8-menu-sub-xxl-accordion {
        display: flex
    }

    .m8-menu-sub-xxl-indention .m8-menu-sub:not([data-popper-placement]) {
        margin-left: 1rem
    }

    .m8-menu-sub-xxl-indention .m8-menu-item .m8-menu-item .m8-menu-link.active {
        margin-right: 1rem
    }

    .m8-menu-xxl-inline {
        display: flex
    }

    .m8-menu-xxl-fit>.m8-menu-item>.m8-menu-content,
    .m8-menu-xxl-fit>.m8-menu-item>.m8-menu-link {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .m8-menu-xxl-column {
        flex-direction: column;
        width: 100%
    }

    .m8-menu-xxl-row {
        flex-direction: row
    }

    .m8-menu-xxl-row>.m8-menu-item {
        display: flex;
        align-items: center
    }

    .m8-menu-xxl-row>.m8-menu-item>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-xxl-rounded .m8-menu-link {
        border-radius: .475rem
    }

    .m8-menu-xxl-pill .m8-menu-link {
        border-radius: 50px
    }

    .m8-menu-xxl-rounded-0 .m8-menu-link {
        border-radius: 0 !important
    }
}

@media (max-width:575.98px) {
    .m8-menu-item.m8-menu-sm-down-accordion .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-item.m8-menu-sm-down-accordion.show:not(.hiding):not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after,
    .m8-menu-item.m8-menu-sm-down-accordion.showing:not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(90deg);
        transform: rotateZ(-90deg);
        transition: transform .3s ease
    }

    .m8-menu-sub-sm-down-dropdown {
        display: none;
        border-radius: .475rem;
        background-color: var(--menu-dropdown-bg-color);
        box-shadow: var(--menu-dropdown-box-shadow);
        z-index: 107
    }

    .m8-menu-sub-sm-down-dropdown.m8-menu.show,
    .m8-menu-sub-sm-down-dropdown.show[data-popper-placement],
    .show.m8-menu-dropdown>.m8-menu-sub-sm-down-dropdown {
        display: flex;
        will-change: transform;
        animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1
    }

    .m8-menu-sub-sm-down-accordion {
        display: none
    }

    .m8-menu-sub-sm-down-accordion.show,
    .show:not(.m8-menu-dropdown)>.m8-menu-sub-sm-down-accordion {
        display: flex
    }

    .m8-menu-sub-sm-down-indention .m8-menu-sub:not([data-popper-placement]) {
        margin-left: 1rem
    }

    .m8-menu-sub-sm-down-indention .m8-menu-item .m8-menu-item .m8-menu-link.active {
        margin-right: 1rem
    }

    .m8-menu-sm-down-inline {
        display: flex
    }

    .m8-menu-sm-down-fit>.m8-menu-item>.m8-menu-content,
    .m8-menu-sm-down-fit>.m8-menu-item>.m8-menu-link {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .m8-menu-sm-down-column {
        flex-direction: column;
        width: 100%
    }

    .m8-menu-sm-down-row {
        flex-direction: row
    }

    .m8-menu-sm-down-row>.m8-menu-item {
        display: flex;
        align-items: center
    }

    .m8-menu-sm-down-row>.m8-menu-item>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-sm-down-rounded .m8-menu-link {
        border-radius: .475rem
    }

    .m8-menu-sm-down-pill .m8-menu-link {
        border-radius: 50px
    }

    .m8-menu-sm-down-rounded-0 .m8-menu-link {
        border-radius: 0 !important
    }
}

@media (max-width:767.98px) {
    .m8-menu-item.m8-menu-md-down-accordion .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-item.m8-menu-md-down-accordion.show:not(.hiding):not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after,
    .m8-menu-item.m8-menu-md-down-accordion.showing:not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(90deg);
        transform: rotateZ(-90deg);
        transition: transform .3s ease
    }

    .m8-menu-sub-md-down-dropdown {
        display: none;
        border-radius: .475rem;
        background-color: var(--menu-dropdown-bg-color);
        box-shadow: var(--menu-dropdown-box-shadow);
        z-index: 107
    }

    .m8-menu-sub-md-down-dropdown.m8-menu.show,
    .m8-menu-sub-md-down-dropdown.show[data-popper-placement],
    .show.m8-menu-dropdown>.m8-menu-sub-md-down-dropdown {
        display: flex;
        will-change: transform;
        animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1
    }

    .m8-menu-sub-md-down-accordion {
        display: none
    }

    .m8-menu-sub-md-down-accordion.show,
    .show:not(.m8-menu-dropdown)>.m8-menu-sub-md-down-accordion {
        display: flex
    }

    .m8-menu-sub-md-down-indention .m8-menu-sub:not([data-popper-placement]) {
        margin-left: 1rem
    }

    .m8-menu-sub-md-down-indention .m8-menu-item .m8-menu-item .m8-menu-link.active {
        margin-right: 1rem
    }

    .m8-menu-md-down-inline {
        display: flex
    }

    .m8-menu-md-down-fit>.m8-menu-item>.m8-menu-content,
    .m8-menu-md-down-fit>.m8-menu-item>.m8-menu-link {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .m8-menu-md-down-column {
        flex-direction: column;
        width: 100%
    }

    .m8-menu-md-down-row {
        flex-direction: row
    }

    .m8-menu-md-down-row>.m8-menu-item {
        display: flex;
        align-items: center
    }

    .m8-menu-md-down-row>.m8-menu-item>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-md-down-rounded .m8-menu-link {
        border-radius: .475rem
    }

    .m8-menu-md-down-pill .m8-menu-link {
        border-radius: 50px
    }

    .m8-menu-md-down-rounded-0 .m8-menu-link {
        border-radius: 0 !important
    }
}

@media (max-width:991.98px) {
    .m8-menu-item.m8-menu-lg-down-accordion .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-item.m8-menu-lg-down-accordion.show:not(.hiding):not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after,
    .m8-menu-item.m8-menu-lg-down-accordion.showing:not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(90deg);
        transform: rotateZ(-90deg);
        transition: transform .3s ease
    }

    .m8-menu-sub-lg-down-dropdown {
        display: none;
        border-radius: .475rem;
        background-color: var(--menu-dropdown-bg-color);
        box-shadow: var(--menu-dropdown-box-shadow);
        z-index: 107
    }

    .m8-menu-sub-lg-down-dropdown.m8-menu.show,
    .m8-menu-sub-lg-down-dropdown.show[data-popper-placement],
    .show.m8-menu-dropdown>.m8-menu-sub-lg-down-dropdown {
        display: flex;
        will-change: transform;
        animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1
    }

    .m8-menu-sub-lg-down-accordion {
        display: none
    }

    .m8-menu-sub-lg-down-accordion.show,
    .show:not(.m8-menu-dropdown)>.m8-menu-sub-lg-down-accordion {
        display: flex
    }

    .m8-menu-sub-lg-down-indention .m8-menu-sub:not([data-popper-placement]) {
        margin-left: 1rem
    }

    .m8-menu-sub-lg-down-indention .m8-menu-item .m8-menu-item .m8-menu-link.active {
        margin-right: 1rem
    }

    .m8-menu-lg-down-inline {
        display: flex
    }

    .m8-menu-lg-down-fit>.m8-menu-item>.m8-menu-content,
    .m8-menu-lg-down-fit>.m8-menu-item>.m8-menu-link {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .m8-menu-lg-down-column {
        flex-direction: column;
        width: 100%
    }

    .m8-menu-lg-down-row {
        flex-direction: row
    }

    .m8-menu-lg-down-row>.m8-menu-item {
        display: flex;
        align-items: center
    }

    .m8-menu-lg-down-row>.m8-menu-item>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-lg-down-rounded .m8-menu-link {
        border-radius: .475rem
    }

    .m8-menu-lg-down-pill .m8-menu-link {
        border-radius: 50px
    }

    .m8-menu-lg-down-rounded-0 .m8-menu-link {
        border-radius: 0 !important
    }
}

@media (max-width:1199.98px) {
    .m8-menu-item.m8-menu-xl-down-accordion .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-item.m8-menu-xl-down-accordion.show:not(.hiding):not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after,
    .m8-menu-item.m8-menu-xl-down-accordion.showing:not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(90deg);
        transform: rotateZ(-90deg);
        transition: transform .3s ease
    }

    .m8-menu-sub-xl-down-dropdown {
        display: none;
        border-radius: .475rem;
        background-color: var(--menu-dropdown-bg-color);
        box-shadow: var(--menu-dropdown-box-shadow);
        z-index: 107
    }

    .m8-menu-sub-xl-down-dropdown.m8-menu.show,
    .m8-menu-sub-xl-down-dropdown.show[data-popper-placement],
    .show.m8-menu-dropdown>.m8-menu-sub-xl-down-dropdown {
        display: flex;
        will-change: transform;
        animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1
    }

    .m8-menu-sub-xl-down-accordion {
        display: none
    }

    .m8-menu-sub-xl-down-accordion.show,
    .show:not(.m8-menu-dropdown)>.m8-menu-sub-xl-down-accordion {
        display: flex
    }

    .m8-menu-sub-xl-down-indention .m8-menu-sub:not([data-popper-placement]) {
        margin-left: 1rem
    }

    .m8-menu-sub-xl-down-indention .m8-menu-item .m8-menu-item .m8-menu-link.active {
        margin-right: 1rem
    }

    .m8-menu-xl-down-inline {
        display: flex
    }

    .m8-menu-xl-down-fit>.m8-menu-item>.m8-menu-content,
    .m8-menu-xl-down-fit>.m8-menu-item>.m8-menu-link {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .m8-menu-xl-down-column {
        flex-direction: column;
        width: 100%
    }

    .m8-menu-xl-down-row {
        flex-direction: row
    }

    .m8-menu-xl-down-row>.m8-menu-item {
        display: flex;
        align-items: center
    }

    .m8-menu-xl-down-row>.m8-menu-item>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-xl-down-rounded .m8-menu-link {
        border-radius: .475rem
    }

    .m8-menu-xl-down-pill .m8-menu-link {
        border-radius: 50px
    }

    .m8-menu-xl-down-rounded-0 .m8-menu-link {
        border-radius: 0 !important
    }
}

@media (max-width:1399.98px) {
    .m8-menu-item.m8-menu-xxl-down-accordion .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-item.m8-menu-xxl-down-accordion.show:not(.hiding):not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after,
    .m8-menu-item.m8-menu-xxl-down-accordion.showing:not(.m8-menu-dropdown)>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(90deg);
        transform: rotateZ(-90deg);
        transition: transform .3s ease
    }

    .m8-menu-sub-xxl-down-dropdown {
        display: none;
        border-radius: .475rem;
        background-color: var(--menu-dropdown-bg-color);
        box-shadow: var(--menu-dropdown-box-shadow);
        z-index: 107
    }

    .m8-menu-sub-xxl-down-dropdown.m8-menu.show,
    .m8-menu-sub-xxl-down-dropdown.show[data-popper-placement],
    .show.m8-menu-dropdown>.m8-menu-sub-xxl-down-dropdown {
        display: flex;
        will-change: transform;
        animation: menu-sub-dropdown-animation-fade-in .3s ease 1, menu-sub-dropdown-animation-move-up .3s ease 1
    }

    .m8-menu-sub-xxl-down-accordion {
        display: none
    }

    .m8-menu-sub-xxl-down-accordion.show,
    .show:not(.m8-menu-dropdown)>.m8-menu-sub-xxl-down-accordion {
        display: flex
    }

    .m8-menu-sub-xxl-down-indention .m8-menu-sub:not([data-popper-placement]) {
        margin-left: 1rem
    }

    .m8-menu-sub-xxl-down-indention .m8-menu-item .m8-menu-item .m8-menu-link.active {
        margin-right: 1rem
    }

    .m8-menu-xxl-down-inline {
        display: flex
    }

    .m8-menu-xxl-down-fit>.m8-menu-item>.m8-menu-content,
    .m8-menu-xxl-down-fit>.m8-menu-item>.m8-menu-link {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .m8-menu-xxl-down-column {
        flex-direction: column;
        width: 100%
    }

    .m8-menu-xxl-down-row {
        flex-direction: row
    }

    .m8-menu-xxl-down-row>.m8-menu-item {
        display: flex;
        align-items: center
    }

    .m8-menu-xxl-down-row>.m8-menu-item>.m8-menu-link .m8-menu-arrow:after {
        transform: rotateZ(-90deg);
        transform: rotateZ(90deg);
        transition: transform .3s ease
    }

    .m8-menu-xxl-down-rounded .m8-menu-link {
        border-radius: .475rem
    }

    .m8-menu-xxl-down-pill .m8-menu-link {
        border-radius: 50px
    }

    .m8-menu-xxl-down-rounded-0 .m8-menu-link {
        border-radius: 0 !important
    }
}

.m8-menu-link-indention .m8-menu-item {
    padding-top: 0;
    padding-bottom: 0
}

.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link {
    padding-left: calc(1rem + 1rem)
}

.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link {
    padding-left: calc(2rem + 1rem)
}

.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link {
    padding-left: calc(3rem + 1rem)
}

.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link {
    padding-left: calc(4rem + 1rem)
}

.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link {
    padding-left: 1rem;
    padding-right: 0
}

.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link {
    padding-left: calc(2rem);
    padding-right: 0
}

.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link {
    padding-left: calc(3rem);
    padding-right: 0
}

.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-inner>.m8-menu-item>.m8-menu-link,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-content,
.m8-menu-link-indention.m8-menu-fit .m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-sub:not([data-popper-placement])>.m8-menu-item>.m8-menu-link {
    padding-left: calc(4rem);
    padding-right: 0
}

@keyframes menu-sub-dropdown-animation-fade-in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes menu-sub-dropdown-animation-move-up {
    from {
        margin-top: .75rem
    }

    to {
        margin-top: 0
    }
}

@keyframes menu-sub-dropdown-animation-move-down {
    from {
        margin-bottom: .75rem
    }

    to {
        margin-bottom: 0
    }
}

.m8-menu-white .m8-menu-item .m8-menu-link {
    color: var(--white)
}

.m8-menu-white .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--white)
}

.m8-menu-white .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-white .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-white .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--white)
}

.m8-menu-white .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--white)
}

.m8-menu-white .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--white);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--white%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--white%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--white);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--white%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--white%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-white .m8-menu-item .m8-menu-link {
    color: var(--text-white)
}

.m8-menu-title-white .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-white)
}

.m8-menu-icon-white .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-white .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-white .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-white)
}

.m8-menu-bullet-white .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-white)
}

.m8-menu-arrow-white .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-white);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-white%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-white%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-white);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-white%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-white%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-primary .m8-menu-item .m8-menu-link {
    color: var(--primary)
}

.m8-menu-primary .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--primary)
}

.m8-menu-primary .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-primary .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-primary .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-primary .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-primary .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-primary .m8-menu-item .m8-menu-link {
    color: var(--text-primary)
}

.m8-menu-title-primary .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-primary)
}

.m8-menu-icon-primary .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-primary .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-primary .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-primary)
}

.m8-menu-bullet-primary .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-primary)
}

.m8-menu-arrow-primary .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-secondary .m8-menu-item .m8-menu-link {
    color: var(--secondary)
}

.m8-menu-secondary .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--secondary)
}

.m8-menu-secondary .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-secondary .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-secondary .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--secondary)
}

.m8-menu-secondary .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--secondary)
}

.m8-menu-secondary .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--secondary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--secondary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--secondary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--secondary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--secondary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--secondary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-secondary .m8-menu-item .m8-menu-link {
    color: var(--text-secondary)
}

.m8-menu-title-secondary .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-secondary)
}

.m8-menu-icon-secondary .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-secondary .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-secondary .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-secondary)
}

.m8-menu-bullet-secondary .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-secondary)
}

.m8-menu-arrow-secondary .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-secondary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-secondary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-secondary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-secondary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-secondary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-secondary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-light .m8-menu-item .m8-menu-link {
    color: var(--light)
}

.m8-menu-light .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--light)
}

.m8-menu-light .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-light .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-light .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--light)
}

.m8-menu-light .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--light)
}

.m8-menu-light .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--light);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--light%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--light%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--light);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--light%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--light%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-light .m8-menu-item .m8-menu-link {
    color: var(--text-light)
}

.m8-menu-title-light .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-light)
}

.m8-menu-icon-light .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-light .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-light .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-light)
}

.m8-menu-bullet-light .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-light)
}

.m8-menu-arrow-light .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-light);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-light%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-light%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-light);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-light%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-light%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-success .m8-menu-item .m8-menu-link {
    color: var(--success)
}

.m8-menu-success .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--success)
}

.m8-menu-success .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-success .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-success .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--success)
}

.m8-menu-success .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--success)
}

.m8-menu-success .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--success);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--success%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--success%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--success);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--success%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--success%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-success .m8-menu-item .m8-menu-link {
    color: var(--text-success)
}

.m8-menu-title-success .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-success)
}

.m8-menu-icon-success .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-success .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-success .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-success)
}

.m8-menu-bullet-success .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-success)
}

.m8-menu-arrow-success .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-success);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-success%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-success%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-success);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-success%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-success%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-info .m8-menu-item .m8-menu-link {
    color: var(--info)
}

.m8-menu-info .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--info)
}

.m8-menu-info .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-info .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-info .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--info)
}

.m8-menu-info .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--info)
}

.m8-menu-info .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--info);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--info%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--info%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--info);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--info%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--info%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-info .m8-menu-item .m8-menu-link {
    color: var(--text-info)
}

.m8-menu-title-info .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-info)
}

.m8-menu-icon-info .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-info .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-info .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-info)
}

.m8-menu-bullet-info .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-info)
}

.m8-menu-arrow-info .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-info);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-info%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-info%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-info);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-info%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-info%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-warning .m8-menu-item .m8-menu-link {
    color: var(--warning)
}

.m8-menu-warning .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--warning)
}

.m8-menu-warning .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-warning .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-warning .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--warning)
}

.m8-menu-warning .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--warning)
}

.m8-menu-warning .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--warning);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--warning%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--warning%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--warning);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--warning%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--warning%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-warning .m8-menu-item .m8-menu-link {
    color: var(--text-warning)
}

.m8-menu-title-warning .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-warning)
}

.m8-menu-icon-warning .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-warning .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-warning .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-warning)
}

.m8-menu-bullet-warning .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-warning)
}

.m8-menu-arrow-warning .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-warning);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-warning%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-warning%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-warning);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-warning%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-warning%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-danger .m8-menu-item .m8-menu-link {
    color: var(--danger)
}

.m8-menu-danger .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--danger)
}

.m8-menu-danger .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-danger .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-danger .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--danger)
}

.m8-menu-danger .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--danger)
}

.m8-menu-danger .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--danger);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--danger%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--danger%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--danger);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--danger%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--danger%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-danger .m8-menu-item .m8-menu-link {
    color: var(--text-danger)
}

.m8-menu-title-danger .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-danger)
}

.m8-menu-icon-danger .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-danger .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-danger .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-danger)
}

.m8-menu-bullet-danger .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-danger)
}

.m8-menu-arrow-danger .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-danger);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-danger%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-danger%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-danger);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-danger%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-danger%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-dark .m8-menu-item .m8-menu-link {
    color: var(--dark)
}

.m8-menu-dark .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--dark)
}

.m8-menu-dark .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-dark .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-dark .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--dark)
}

.m8-menu-dark .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--dark)
}

.m8-menu-dark .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--dark);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--dark);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-dark .m8-menu-item .m8-menu-link {
    color: var(--text-dark)
}

.m8-menu-title-dark .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-dark)
}

.m8-menu-icon-dark .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-dark .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-dark .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-dark)
}

.m8-menu-bullet-dark .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-dark)
}

.m8-menu-arrow-dark .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-dark);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-dark%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-dark%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-dark);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-dark%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-dark%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-muted .m8-menu-item .m8-menu-link {
    color: var(--muted)
}

.m8-menu-muted .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--muted)
}

.m8-menu-muted .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-muted .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-muted .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--muted)
}

.m8-menu-muted .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--muted)
}

.m8-menu-muted .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--muted);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--muted%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--muted%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--muted);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--muted%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--muted%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-muted .m8-menu-item .m8-menu-link {
    color: var(--text-muted)
}

.m8-menu-title-muted .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-muted)
}

.m8-menu-icon-muted .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-muted .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-muted .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-muted)
}

.m8-menu-bullet-muted .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-muted)
}

.m8-menu-arrow-muted .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-muted);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-muted%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-muted%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-muted);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-muted%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-muted%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-gray-100 .m8-menu-item .m8-menu-link {
    color: var(--gray-100)
}

.m8-menu-gray-100 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--gray-100)
}

.m8-menu-gray-100 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-gray-100 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-gray-100 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--gray-100)
}

.m8-menu-gray-100 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--gray-100)
}

.m8-menu-gray-100 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-100);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-100%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-100%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-100);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-100%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-100%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-gray-100 .m8-menu-item .m8-menu-link {
    color: var(--text-gray-100)
}

.m8-menu-title-gray-100 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-gray-100)
}

.m8-menu-icon-gray-100 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-gray-100 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-gray-100 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-gray-100)
}

.m8-menu-bullet-gray-100 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-gray-100)
}

.m8-menu-arrow-gray-100 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-100);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-100%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-100%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-100);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-100%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-100%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-gray-200 .m8-menu-item .m8-menu-link {
    color: var(--gray-200)
}

.m8-menu-gray-200 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--gray-200)
}

.m8-menu-gray-200 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-gray-200 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-gray-200 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--gray-200)
}

.m8-menu-gray-200 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--gray-200)
}

.m8-menu-gray-200 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-200);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-200%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-200%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-200);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-200%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-200%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-gray-200 .m8-menu-item .m8-menu-link {
    color: var(--text-gray-200)
}

.m8-menu-title-gray-200 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-gray-200)
}

.m8-menu-icon-gray-200 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-gray-200 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-gray-200 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-gray-200)
}

.m8-menu-bullet-gray-200 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-gray-200)
}

.m8-menu-arrow-gray-200 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-200);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-200%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-200%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-200);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-200%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-200%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-gray-300 .m8-menu-item .m8-menu-link {
    color: var(--gray-300)
}

.m8-menu-gray-300 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--gray-300)
}

.m8-menu-gray-300 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-gray-300 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-gray-300 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--gray-300)
}

.m8-menu-gray-300 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--gray-300)
}

.m8-menu-gray-300 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-300);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-300%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-300%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-300);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-300%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-300%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-gray-300 .m8-menu-item .m8-menu-link {
    color: var(--text-gray-300)
}

.m8-menu-title-gray-300 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-gray-300)
}

.m8-menu-icon-gray-300 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-gray-300 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-gray-300 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-gray-300)
}

.m8-menu-bullet-gray-300 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-gray-300)
}

.m8-menu-arrow-gray-300 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-300);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-300%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-300%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-300);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-300%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-300%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-gray-400 .m8-menu-item .m8-menu-link {
    color: var(--gray-400)
}

.m8-menu-gray-400 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--gray-400)
}

.m8-menu-gray-400 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-gray-400 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-gray-400 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--gray-400)
}

.m8-menu-gray-400 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--gray-400)
}

.m8-menu-gray-400 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-400);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-400%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-400%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-400);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-400%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-400%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-gray-400 .m8-menu-item .m8-menu-link {
    color: var(--text-gray-400)
}

.m8-menu-title-gray-400 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-gray-400)
}

.m8-menu-icon-gray-400 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-gray-400 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-gray-400 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-gray-400)
}

.m8-menu-bullet-gray-400 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-gray-400)
}

.m8-menu-arrow-gray-400 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-400);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-400%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-400%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-400);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-400%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-400%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-gray-500 .m8-menu-item .m8-menu-link {
    color: var(--gray-500)
}

.m8-menu-gray-500 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--gray-500)
}

.m8-menu-gray-500 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-gray-500 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-gray-500 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--gray-500)
}

.m8-menu-gray-500 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--gray-500)
}

.m8-menu-gray-500 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-500);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-500%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-500%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-500);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-500%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-500%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-gray-500 .m8-menu-item .m8-menu-link {
    color: var(--text-gray-500)
}

.m8-menu-title-gray-500 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-gray-500)
}

.m8-menu-icon-gray-500 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-gray-500 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-gray-500 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-gray-500)
}

.m8-menu-bullet-gray-500 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-gray-500)
}

.m8-menu-arrow-gray-500 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-500);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-500%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-500%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-500);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-500%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-500%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-gray-600 .m8-menu-item .m8-menu-link {
    color: var(--gray-600)
}

.m8-menu-gray-600 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--gray-600)
}

.m8-menu-gray-600 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-gray-600 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-gray-600 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--gray-600)
}

.m8-menu-gray-600 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--gray-600)
}

.m8-menu-gray-600 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-600);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-600%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-600%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-600);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-600%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-600%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-gray-600 .m8-menu-item .m8-menu-link {
    color: var(--text-gray-600)
}

.m8-menu-title-gray-600 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-gray-600)
}

.m8-menu-icon-gray-600 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-gray-600 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-gray-600 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-gray-600)
}

.m8-menu-bullet-gray-600 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-gray-600)
}

.m8-menu-arrow-gray-600 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-600);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-600%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-600%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-600);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-600%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-600%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-gray-700 .m8-menu-item .m8-menu-link {
    color: var(--gray-700)
}

.m8-menu-gray-700 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--gray-700)
}

.m8-menu-gray-700 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-gray-700 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-gray-700 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--gray-700)
}

.m8-menu-gray-700 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--gray-700)
}

.m8-menu-gray-700 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-700);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-700%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-700%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-700);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-700%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-700%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-gray-700 .m8-menu-item .m8-menu-link {
    color: var(--text-gray-700)
}

.m8-menu-title-gray-700 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-gray-700)
}

.m8-menu-icon-gray-700 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-gray-700 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-gray-700 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-gray-700)
}

.m8-menu-bullet-gray-700 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-gray-700)
}

.m8-menu-arrow-gray-700 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-700);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-700%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-700%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-700);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-700%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-700%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-gray-800 .m8-menu-item .m8-menu-link {
    color: var(--gray-800)
}

.m8-menu-gray-800 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--gray-800)
}

.m8-menu-gray-800 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-gray-800 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-gray-800 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--gray-800)
}

.m8-menu-gray-800 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--gray-800)
}

.m8-menu-gray-800 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-800);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-800%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-800%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-800);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-800%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-800%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-gray-800 .m8-menu-item .m8-menu-link {
    color: var(--text-gray-800)
}

.m8-menu-title-gray-800 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-gray-800)
}

.m8-menu-icon-gray-800 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-gray-800 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-gray-800 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-gray-800)
}

.m8-menu-bullet-gray-800 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-gray-800)
}

.m8-menu-arrow-gray-800 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-800);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-800%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-800%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-800);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-800%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-800%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-gray-900 .m8-menu-item .m8-menu-link {
    color: var(--gray-900)
}

.m8-menu-gray-900 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--gray-900)
}

.m8-menu-gray-900 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-gray-900 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-gray-900 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--gray-900)
}

.m8-menu-gray-900 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--gray-900)
}

.m8-menu-gray-900 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-900);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-900);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-title-gray-900 .m8-menu-item .m8-menu-link {
    color: var(--text-gray-900)
}

.m8-menu-title-gray-900 .m8-menu-item .m8-menu-link .m8-menu-title {
    color: var(--text-gray-900)
}

.m8-menu-icon-gray-900 .m8-menu-item .m8-menu-link .m8-menu-icon,
.m8-menu-icon-gray-900 .m8-menu-item .m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-icon-gray-900 .m8-menu-item .m8-menu-link .m8-menu-icon i {
    color: var(--text-gray-900)
}

.m8-menu-bullet-gray-900 .m8-menu-item .m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--text-gray-900)
}

.m8-menu-arrow-gray-900 .m8-menu-item .m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-900);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-900%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-900%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--text-gray-900);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-900%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--text-gray-900%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-hover-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-hover-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    background-color: var(--menu-link-bg-color-hover);
    color: var(--menu-link-color-hover)
}

.m8-menu-hover-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-title,
.m8-menu-hover-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-title {
    color: var(--menu-link-color-hover)
}

.m8-menu-hover-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-hover-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-hover-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon i,
.m8-menu-hover-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-hover-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-hover-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon i {
    color: var(--menu-link-color-hover)
}

.m8-menu-hover-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet,
.m8-menu-hover-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet {
    background-color: var(--menu-link-color-hover)
}

.m8-menu-hover-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after,
.m8-menu-hover-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-hover);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-hover%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-hover%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-hover);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-hover%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-hover%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-here-bg .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--menu-link-bg-color-here);
    color: var(--menu-link-color-here)
}

.m8-menu-here-bg .m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--menu-link-color-here)
}

.m8-menu-here-bg .m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-here-bg .m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-here-bg .m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--menu-link-color-here)
}

.m8-menu-here-bg .m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--menu-link-color-here)
}

.m8-menu-here-bg .m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-here);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-here);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-root-here-bg>.m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--menu-link-bg-color-here);
    color: var(--menu-link-color-here)
}

.m8-menu-root-here-bg>.m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--menu-link-color-here)
}

.m8-menu-root-here-bg>.m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-root-here-bg>.m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-root-here-bg>.m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--menu-link-color-here)
}

.m8-menu-root-here-bg>.m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--menu-link-color-here)
}

.m8-menu-root-here-bg>.m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-here);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-here);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

@media (min-width:992px) {
    .m8-menu-root-here-bg-desktop>.m8-menu-item.here>.m8-menu-link {
        transition: color .2s ease;
        background-color: var(--menu-link-bg-color-here);
        color: var(--menu-link-color-here)
    }

    .m8-menu-root-here-bg-desktop>.m8-menu-item.here>.m8-menu-link .m8-menu-title {
        color: var(--menu-link-color-here)
    }

    .m8-menu-root-here-bg-desktop>.m8-menu-item.here>.m8-menu-link .m8-menu-icon,
    .m8-menu-root-here-bg-desktop>.m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
    .m8-menu-root-here-bg-desktop>.m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
        color: var(--menu-link-color-here)
    }

    .m8-menu-root-here-bg-desktop>.m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
        background-color: var(--menu-link-color-here)
    }

    .m8-menu-root-here-bg-desktop>.m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
        mask-repeat: no-repeat;
        mask-position: center;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        background-color: var(--menu-link-color-here);
        -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
        mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
        mask-repeat: no-repeat;
        mask-position: center;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        background-color: var(--menu-link-color-here);
        -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
        mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
    }
}

.m8-menu-show-bg .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--menu-link-bg-color-show);
    color: var(--menu-link-color-show)
}

.m8-menu-show-bg .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--menu-link-color-show)
}

.m8-menu-show-bg .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-show-bg .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-show-bg .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--menu-link-color-show)
}

.m8-menu-show-bg .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--menu-link-color-show)
}

.m8-menu-show-bg .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-show);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-show%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-show%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-show);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-show%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-show%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-active-bg .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease;
    background-color: var(--menu-link-bg-color-active);
    color: var(--menu-link-color-active)
}

.m8-menu-active-bg .m8-menu-item .m8-menu-link.active .m8-menu-title {
    color: var(--menu-link-color-active)
}

.m8-menu-active-bg .m8-menu-item .m8-menu-link.active .m8-menu-icon,
.m8-menu-active-bg .m8-menu-item .m8-menu-link.active .m8-menu-icon .svg-icon,
.m8-menu-active-bg .m8-menu-item .m8-menu-link.active .m8-menu-icon i {
    color: var(--menu-link-color-active)
}

.m8-menu-active-bg .m8-menu-item .m8-menu-link.active .m8-menu-bullet .bullet {
    background-color: var(--menu-link-color-active)
}

.m8-menu-active-bg .m8-menu-item .m8-menu-link.active .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-active);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-active%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-active%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-active);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-active%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-active%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-state-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    background-color: var(--menu-link-bg-color-hover);
    color: var(--menu-link-color-hover)
}

.m8-menu-state-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-title,
.m8-menu-state-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-title {
    color: var(--menu-link-color-hover)
}

.m8-menu-state-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon i,
.m8-menu-state-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon i {
    color: var(--menu-link-color-hover)
}

.m8-menu-state-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet,
.m8-menu-state-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet {
    background-color: var(--menu-link-color-hover)
}

.m8-menu-state-bg .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after,
.m8-menu-state-bg .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-hover);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-hover%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-hover%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-hover);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-hover%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-hover%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-bg .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--menu-link-bg-color-here);
    color: var(--menu-link-color-here)
}

.m8-menu-state-bg .m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--menu-link-color-here)
}

.m8-menu-state-bg .m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-state-bg .m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-bg .m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--menu-link-color-here)
}

.m8-menu-state-bg .m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--menu-link-color-here)
}

.m8-menu-state-bg .m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-here);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-here);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-bg .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--menu-link-bg-color-show);
    color: var(--menu-link-color-show)
}

.m8-menu-state-bg .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--menu-link-color-show)
}

.m8-menu-state-bg .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-state-bg .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-bg .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--menu-link-color-show)
}

.m8-menu-state-bg .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--menu-link-color-show)
}

.m8-menu-state-bg .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-show);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-show%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-show%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-show);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-show%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-show%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-bg .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease;
    background-color: var(--menu-link-bg-color-active);
    color: var(--menu-link-color-active)
}

.m8-menu-state-bg .m8-menu-item .m8-menu-link.active .m8-menu-title {
    color: var(--menu-link-color-active)
}

.m8-menu-state-bg .m8-menu-item .m8-menu-link.active .m8-menu-icon,
.m8-menu-state-bg .m8-menu-item .m8-menu-link.active .m8-menu-icon .svg-icon,
.m8-menu-state-bg .m8-menu-item .m8-menu-link.active .m8-menu-icon i {
    color: var(--menu-link-color-active)
}

.m8-menu-state-bg .m8-menu-item .m8-menu-link.active .m8-menu-bullet .bullet {
    background-color: var(--menu-link-color-active)
}

.m8-menu-state-bg .m8-menu-item .m8-menu-link.active .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-active);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-active%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-active%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-active);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-active%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-active%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-color .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-state-color .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    color: var(--menu-link-color-hover)
}

.m8-menu-state-color .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-title,
.m8-menu-state-color .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-title {
    color: var(--menu-link-color-hover)
}

.m8-menu-state-color .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-color .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-color .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon i,
.m8-menu-state-color .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-color .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-color .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon i {
    color: var(--menu-link-color-hover)
}

.m8-menu-state-color .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet,
.m8-menu-state-color .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet {
    background-color: var(--menu-link-color-hover)
}

.m8-menu-state-color .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after,
.m8-menu-state-color .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-hover);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-hover%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-hover%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-hover);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-hover%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-hover%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-color .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    color: var(--menu-link-color-here)
}

.m8-menu-state-color .m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--menu-link-color-here)
}

.m8-menu-state-color .m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-state-color .m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-color .m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--menu-link-color-here)
}

.m8-menu-state-color .m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--menu-link-color-here)
}

.m8-menu-state-color .m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-here);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-here);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-here%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-color .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    color: var(--menu-link-color-show)
}

.m8-menu-state-color .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--menu-link-color-show)
}

.m8-menu-state-color .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-state-color .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-color .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--menu-link-color-show)
}

.m8-menu-state-color .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--menu-link-color-show)
}

.m8-menu-state-color .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-show);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-show%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-show%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-show);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-show%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-show%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-color .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease;
    color: var(--menu-link-color-active)
}

.m8-menu-state-color .m8-menu-item .m8-menu-link.active .m8-menu-title {
    color: var(--menu-link-color-active)
}

.m8-menu-state-color .m8-menu-item .m8-menu-link.active .m8-menu-icon,
.m8-menu-state-color .m8-menu-item .m8-menu-link.active .m8-menu-icon .svg-icon,
.m8-menu-state-color .m8-menu-item .m8-menu-link.active .m8-menu-icon i {
    color: var(--menu-link-color-active)
}

.m8-menu-state-color .m8-menu-item .m8-menu-link.active .m8-menu-bullet .bullet {
    background-color: var(--menu-link-color-active)
}

.m8-menu-state-color .m8-menu-item .m8-menu-link.active .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-active);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-active%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-active%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--menu-link-color-active);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-active%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--menu-link-color-active%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-hover-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-hover-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    background-color: var(--primary);
    color: var(--primary-inverse)
}

.m8-menu-hover-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-title,
.m8-menu-hover-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-title {
    color: var(--primary-inverse)
}

.m8-menu-hover-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-hover-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-hover-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon i,
.m8-menu-hover-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-hover-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-hover-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon i {
    color: var(--primary-inverse)
}

.m8-menu-hover-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet,
.m8-menu-hover-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet {
    background-color: var(--primary-inverse)
}

.m8-menu-hover-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after,
.m8-menu-hover-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-show-bg-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--primary);
    color: var(--primary-inverse)
}

.m8-menu-show-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--primary-inverse)
}

.m8-menu-show-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-show-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-show-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--primary-inverse)
}

.m8-menu-show-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary-inverse)
}

.m8-menu-show-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-here-bg-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--primary);
    color: var(--primary-inverse)
}

.m8-menu-here-bg-primary .m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--primary-inverse)
}

.m8-menu-here-bg-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-here-bg-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-here-bg-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--primary-inverse)
}

.m8-menu-here-bg-primary .m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary-inverse)
}

.m8-menu-here-bg-primary .m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-active-bg-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease;
    background-color: var(--primary);
    color: var(--primary-inverse)
}

.m8-menu-active-bg-primary .m8-menu-item .m8-menu-link.active .m8-menu-title {
    color: var(--primary-inverse)
}

.m8-menu-active-bg-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon,
.m8-menu-active-bg-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon .svg-icon,
.m8-menu-active-bg-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon i {
    color: var(--primary-inverse)
}

.m8-menu-active-bg-primary .m8-menu-item .m8-menu-link.active .m8-menu-bullet .bullet {
    background-color: var(--primary-inverse)
}

.m8-menu-active-bg-primary .m8-menu-item .m8-menu-link.active .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-state-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    background-color: var(--primary);
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-title,
.m8-menu-state-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-title {
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon i,
.m8-menu-state-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon i {
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet,
.m8-menu-state-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet {
    background-color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after,
.m8-menu-state-bg-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--primary);
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-bg-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--primary);
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-state-bg-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-bg-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-bg-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease;
    background-color: var(--primary);
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item .m8-menu-link.active .m8-menu-title {
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon,
.m8-menu-state-bg-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon .svg-icon,
.m8-menu-state-bg-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon i {
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item .m8-menu-link.active .m8-menu-bullet .bullet {
    background-color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item .m8-menu-link.active .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--primary);
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary-inverse)
}

.m8-menu-state-bg-primary .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary-inverse);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary-inverse%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-show-bg-light-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--primary-light);
    color: var(--primary)
}

.m8-menu-show-bg-light-primary .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--primary)
}

.m8-menu-show-bg-light-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-show-bg-light-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-show-bg-light-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-show-bg-light-primary .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-show-bg-light-primary .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-here-bg-light-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--primary-light);
    color: var(--primary)
}

.m8-menu-here-bg-light-primary .m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--primary)
}

.m8-menu-here-bg-light-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-here-bg-light-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-here-bg-light-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-here-bg-light-primary .m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-here-bg-light-primary .m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-hover-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-hover-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    background-color: var(--primary-light);
    color: var(--primary)
}

.m8-menu-hover-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-title,
.m8-menu-hover-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-title {
    color: var(--primary)
}

.m8-menu-hover-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-hover-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-hover-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon i,
.m8-menu-hover-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-hover-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-hover-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-hover-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet,
.m8-menu-hover-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-hover-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after,
.m8-menu-hover-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-active-bg-light-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease;
    background-color: var(--primary-light);
    color: var(--primary)
}

.m8-menu-active-bg-light-primary .m8-menu-item .m8-menu-link.active .m8-menu-title {
    color: var(--primary)
}

.m8-menu-active-bg-light-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon,
.m8-menu-active-bg-light-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon .svg-icon,
.m8-menu-active-bg-light-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-active-bg-light-primary .m8-menu-item .m8-menu-link.active .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-active-bg-light-primary .m8-menu-item .m8-menu-link.active .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-bg-light-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--primary-light);
    color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-state-bg-light-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-bg-light-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-bg-light-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    background-color: var(--primary-light);
    color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-state-bg-light-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-bg-light-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-state-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    background-color: var(--primary-light);
    color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-title,
.m8-menu-state-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-title {
    color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon i,
.m8-menu-state-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet,
.m8-menu-state-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after,
.m8-menu-state-bg-light-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-bg-light-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease;
    background-color: var(--primary-light);
    color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item .m8-menu-link.active .m8-menu-title {
    color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon,
.m8-menu-state-bg-light-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon .svg-icon,
.m8-menu-state-bg-light-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item .m8-menu-link.active .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-state-bg-light-primary .m8-menu-item .m8-menu-link.active .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-hover-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-hover-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-hover-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-title,
.m8-menu-hover-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-title {
    color: var(--primary)
}

.m8-menu-hover-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-hover-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-hover-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon i,
.m8-menu-hover-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-hover-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-hover-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-hover-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet,
.m8-menu-hover-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-hover-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after,
.m8-menu-hover-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-show-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-show-primary .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--primary)
}

.m8-menu-show-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-show-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-show-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-show-primary .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-show-primary .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-here-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-here-primary .m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--primary)
}

.m8-menu-here-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-here-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-here-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-here-primary .m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-here-primary .m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-active-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-active-primary .m8-menu-item .m8-menu-link.active .m8-menu-title {
    color: var(--primary)
}

.m8-menu-active-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon,
.m8-menu-active-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon .svg-icon,
.m8-menu-active-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-active-primary .m8-menu-item .m8-menu-link.active .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-active-primary .m8-menu-item .m8-menu-link.active .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-state-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-title,
.m8-menu-state-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-title {
    color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon i,
.m8-menu-state-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet,
.m8-menu-state-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after,
.m8-menu-state-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-state-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-state-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item .m8-menu-link.active .m8-menu-title {
    color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon,
.m8-menu-state-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon .svg-icon,
.m8-menu-state-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item .m8-menu-link.active .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-state-primary .m8-menu-item .m8-menu-link.active .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-dark .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-state-dark .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-title,
.m8-menu-state-dark .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-title {
    color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-dark .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-dark .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon i,
.m8-menu-state-dark .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-dark .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-dark .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon i {
    color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet,
.m8-menu-state-dark .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet {
    background-color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after,
.m8-menu-state-dark .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--dark);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--dark);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-dark .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-state-dark .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-dark .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--dark);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--dark);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-dark .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-state-dark .m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-dark .m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--dark);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--dark);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-dark .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease;
    color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item .m8-menu-link.active .m8-menu-title {
    color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item .m8-menu-link.active .m8-menu-icon,
.m8-menu-state-dark .m8-menu-item .m8-menu-link.active .m8-menu-icon .svg-icon,
.m8-menu-state-dark .m8-menu-item .m8-menu-link.active .m8-menu-icon i {
    color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item .m8-menu-link.active .m8-menu-bullet .bullet {
    background-color: var(--dark)
}

.m8-menu-state-dark .m8-menu-item .m8-menu-link.active .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--dark);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--dark);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--dark%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-gray-900 .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-state-gray-900 .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-title,
.m8-menu-state-gray-900 .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-title {
    color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-gray-900 .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-gray-900 .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon i,
.m8-menu-state-gray-900 .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-gray-900 .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-gray-900 .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon i {
    color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet,
.m8-menu-state-gray-900 .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet {
    background-color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after,
.m8-menu-state-gray-900 .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-900);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-900);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-gray-900 .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-state-gray-900 .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-gray-900 .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-900);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-900);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-gray-900 .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-state-gray-900 .m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-gray-900 .m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-900);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-900);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-gray-900 .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease;
    color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item .m8-menu-link.active .m8-menu-title {
    color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item .m8-menu-link.active .m8-menu-icon,
.m8-menu-state-gray-900 .m8-menu-item .m8-menu-link.active .m8-menu-icon .svg-icon,
.m8-menu-state-gray-900 .m8-menu-item .m8-menu-link.active .m8-menu-icon i {
    color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item .m8-menu-link.active .m8-menu-bullet .bullet {
    background-color: var(--gray-900)
}

.m8-menu-state-gray-900 .m8-menu-item .m8-menu-link.active .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-900);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--gray-900);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--gray-900%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-hover-title-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-hover-title-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-hover-title-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-title,
.m8-menu-hover-title-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-title {
    color: var(--primary)
}

.m8-menu-here-title-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-here-title-primary .m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--primary)
}

.m8-menu-show-title-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-show-title-primary .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--primary)
}

.m8-menu-active-title-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-active-title-primary .m8-menu-item .m8-menu-link.active .m8-menu-title {
    color: var(--primary)
}

.m8-menu-state-title-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-state-title-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-state-title-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-title,
.m8-menu-state-title-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-title {
    color: var(--primary)
}

.m8-menu-state-title-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-state-title-primary .m8-menu-item.here>.m8-menu-link .m8-menu-title {
    color: var(--primary)
}

.m8-menu-state-title-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-state-title-primary .m8-menu-item.show>.m8-menu-link .m8-menu-title {
    color: var(--primary)
}

.m8-menu-state-title-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease;
    color: var(--primary)
}

.m8-menu-state-title-primary .m8-menu-item .m8-menu-link.active .m8-menu-title {
    color: var(--primary)
}

.m8-menu-hover-icon-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-hover-icon-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease
}

.m8-menu-hover-icon-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-hover-icon-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-hover-icon-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon i,
.m8-menu-hover-icon-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-hover-icon-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-hover-icon-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-here-icon-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease
}

.m8-menu-here-icon-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-here-icon-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-here-icon-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-show-icon-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease
}

.m8-menu-show-icon-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-show-icon-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-show-icon-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-active-icon-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease
}

.m8-menu-active-icon-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon,
.m8-menu-active-icon-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon .svg-icon,
.m8-menu-active-icon-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-state-icon-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-state-icon-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease
}

.m8-menu-state-icon-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-icon-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-icon-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-icon i,
.m8-menu-state-icon-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon,
.m8-menu-state-icon-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon .svg-icon,
.m8-menu-state-icon-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-state-icon-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease
}

.m8-menu-state-icon-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon,
.m8-menu-state-icon-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-icon-primary .m8-menu-item.here>.m8-menu-link .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-state-icon-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease
}

.m8-menu-state-icon-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon,
.m8-menu-state-icon-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon .svg-icon,
.m8-menu-state-icon-primary .m8-menu-item.show>.m8-menu-link .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-state-icon-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease
}

.m8-menu-state-icon-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon,
.m8-menu-state-icon-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon .svg-icon,
.m8-menu-state-icon-primary .m8-menu-item .m8-menu-link.active .m8-menu-icon i {
    color: var(--primary)
}

.m8-menu-hover-bullet-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-hover-bullet-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease
}

.m8-menu-hover-bullet-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet,
.m8-menu-hover-bullet-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-show-bullet-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease
}

.m8-menu-show-bullet-primary .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-here-bullet-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease
}

.m8-menu-here-bullet-primary .m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-active-bullet-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease
}

.m8-menu-active-bullet-primary .m8-menu-item .m8-menu-link.active .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-state-bullet-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-state-bullet-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease
}

.m8-menu-state-bullet-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet,
.m8-menu-state-bullet-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-state-bullet-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease
}

.m8-menu-state-bullet-primary .m8-menu-item.here>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-state-bullet-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease
}

.m8-menu-state-bullet-primary .m8-menu-item.show>.m8-menu-link .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-state-bullet-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease
}

.m8-menu-state-bullet-primary .m8-menu-item .m8-menu-link.active .m8-menu-bullet .bullet {
    background-color: var(--primary)
}

.m8-menu-hover-arrow-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-hover-arrow-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease
}

.m8-menu-hover-arrow-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after,
.m8-menu-hover-arrow-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-here-arrow-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease
}

.m8-menu-here-arrow-primary .m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-show-arrow-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease
}

.m8-menu-show-arrow-primary .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-active-arrow-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease
}

.m8-menu-active-arrow-primary .m8-menu-item .m8-menu-link.active .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-arrow-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here),
.m8-menu-state-arrow-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color .2s ease
}

.m8-menu-state-arrow-primary .m8-menu-item.hover:not(.here)>.m8-menu-link:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after,
.m8-menu-state-arrow-primary .m8-menu-item:not(.here) .m8-menu-link:hover:not(.disabled):not(.active):not(.here) .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-arrow-primary .m8-menu-item.here>.m8-menu-link {
    transition: color .2s ease
}

.m8-menu-state-arrow-primary .m8-menu-item.here>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-arrow-primary .m8-menu-item.show>.m8-menu-link {
    transition: color .2s ease
}

.m8-menu-state-arrow-primary .m8-menu-item.show>.m8-menu-link .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-menu-state-arrow-primary .m8-menu-item .m8-menu-link.active {
    transition: color .2s ease
}

.m8-menu-state-arrow-primary .m8-menu-item .m8-menu-link.active .m8-menu-arrow:after {
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M2.72011 2.76429L4.46358 1.02083C4.63618 0.848244 4.63617 0.568419 4.46358 0.395831C4.29099 0.223244 4.01118 0.223244 3.83861 0.395831L1.52904 2.70537C1.36629 2.86808 1.36629 3.13191 1.52904 3.29462L3.83861 5.60419C4.01117 5.77675 4.29099 5.77675 4.46358 5.60419C4.63617 5.43156 4.63617 5.15175 4.46358 4.97919L2.72011 3.23571C2.58994 3.10554 2.58994 2.89446 2.72011 2.76429Z'/%3e%3c/svg%3e");
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--primary);
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 6' fill='var%28--primary%29'%3e%3cpath d='M3.27989 3.23571L1.53642 4.97917C1.36382 5.15176 1.36383 5.43158 1.53642 5.60417C1.70901 5.77676 1.98882 5.77676 2.16139 5.60417L4.47096 3.29463C4.63371 3.13192 4.63371 2.86809 4.47096 2.70538L2.16139 0.395812C1.98883 0.22325 1.70901 0.22325 1.53642 0.395812C1.36383 0.568437 1.36383 0.84825 1.53642 1.02081L3.27989 2.76429C3.41006 2.89446 3.41006 3.10554 3.27989 3.23571Z'/%3e%3c/svg%3e")
}

.m8-anchor {
    display: flex;
    align-items: center
}

.m8-anchor a {
    position: relative;
    display: none;
    align-items: center;
    justify-content: flex-start;
    height: 1em;
    width: 1.25em;
    margin-left: -1.25em;
    font-weight: 500;
    font-size: .8em;
    color: var(--text-muted);
    transition: all .2s ease-in-out
}

.m8-anchor a:before {
    content: "#"
}

.m8-anchor:hover a {
    display: flex
}

.m8-anchor:hover a:hover {
    color: var(--primary);
    transition: all .2s ease-in-out
}


.m8-aside {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    padding: 0
}

@media (min-width:992px) {
    .m8-aside {
        width: 265px;
        transition: width ease
    }

    .m8-aside .m8-aside-menu {
        width: 265px
    }

    .m8-aside-enabled[data-kt-sticky-aside-sticky=on] .content {
        padding-left: 295px
    }
}

@media (max-width:991.98px) {
    .m8-aside {
        box-shadow: none;
        border-radius: 0;
        display: none
    }
}

.m8-aside-menu- .m8-menu-item {
    padding: 0
}

.m8-aside-menu- .m8-menu-item .m8-menu-title {
    font-weight: 500
}

.m8-aside-menu- .m8-menu-item .m8-menu-link {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.m8-aside-menu- .m8-menu-item .m8-menu-icon {
    justify-content: flex-start
}


.m8-hover-elevate-up {
    transition: transform .3s ease
}

.m8-hover-elevate-up:hover {
    transform: translateY(-2.5%);
    transition: transform .3s ease;
    will-change: transform
}

.m8-hover-elevate-down {
    transition: transform .3s ease
}

.m8-hover-elevate-down:hover {
    transform: translateY(2.5%);
    transition: transform .3s ease;
    will-change: transform
}

.m8-hover-scale {
    transition: transform .3s ease
}

.m8-hover-scale:hover {
    transform: scale(1.1);
    transition: transform .3s ease;
    will-change: transform
}

.m8-hover-rotate-end {
    transition: transform .3s ease
}

.m8-hover-rotate-end:hover {
    transform: rotate(4deg);
    transition: transform .3s ease;
    will-change: transform
}

.m8-hover-rotate-start {
    transition: transform .3s ease
}

.m8-hover-rotate-start:hover {
    transform: rotate(-4deg);
    transition: transform .3s ease;
    will-change: transform
}


.m8-hover-scroll,
.m8-hover-scroll-overlay,
.scroll {
    overflow: scroll;
    position: relative
}

@media (max-width:991.98px) {

    .m8-hover-scroll,
    .m8-hover-scroll-overlay,
    .scroll {
        overflow: auto
    }
}

.m8-hover-scroll-overlay-x,
.m8-hover-scroll-x,
.m8-scroll-x {
    overflow-x: scroll;
    position: relative
}

@media (max-width:991.98px) {

    .m8-hover-scroll-overlay-x,
    .m8-hover-scroll-x,
    .m8-scroll-x {
        overflow-x: auto
    }
}

.m8-hover-scroll-overlay-y,
.m8-hover-scroll-y,
.m8-scroll-y {
    overflow-y: scroll;
    position: relative
}

@media (max-width:991.98px) {

    .m8-hover-scroll-overlay-y,
    .m8-hover-scroll-y,
    .m8-scroll-y {
        overflow-y: auto
    }
}

.m8-hover-scroll,
.m8-hover-scroll-overlay,
.m8-hover-scroll-overlay-x,
.m8-hover-scroll-overlay-y,
.m8-hover-scroll-x,
.m8-hover-scroll-y {
    scrollbar-color: transparent transparent
}

.m8-hover-scroll-overlay-x::-webkit-scrollbar-thumb,
.m8-hover-scroll-overlay-y::-webkit-scrollbar-thumb,
.m8-hover-scroll-overlay::-webkit-scrollbar-thumb,
.m8-hover-scroll-x::-webkit-scrollbar-thumb,
.m8-hover-scroll-y::-webkit-scrollbar-thumb,
.m8-hover-scroll::-webkit-scrollbar-thumb {
    background-color: transparent
}

.m8-hover-scroll-overlay-x::-webkit-scrollbar-corner,
.m8-hover-scroll-overlay-y::-webkit-scrollbar-corner,
.m8-hover-scroll-overlay::-webkit-scrollbar-corner,
.m8-hover-scroll-x::-webkit-scrollbar-corner,
.m8-hover-scroll-y::-webkit-scrollbar-corner,
.m8-hover-scroll::-webkit-scrollbar-corner {
    background-color: transparent
}

.m8-hover-scroll-overlay-x:hover,
.m8-hover-scroll-overlay-y:hover,
.m8-hover-scroll-overlay:hover,
.m8-hover-scroll-x:hover,
.m8-hover-scroll-y:hover,
.m8-hover-scroll:hover {
    scrollbar-color: var(--scrollbar-color) transparent
}

.m8-hover-scroll-overlay-x:hover::-webkit-scrollbar-thumb,
.m8-hover-scroll-overlay-y:hover::-webkit-scrollbar-thumb,
.m8-hover-scroll-overlay:hover::-webkit-scrollbar-thumb,
.m8-hover-scroll-x:hover::-webkit-scrollbar-thumb,
.m8-hover-scroll-y:hover::-webkit-scrollbar-thumb,
.m8-hover-scroll:hover::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-color)
}

.m8-hover-scroll-overlay-x:hover::-webkit-scrollbar-corner,
.m8-hover-scroll-overlay-y:hover::-webkit-scrollbar-corner,
.m8-hover-scroll-overlay:hover::-webkit-scrollbar-corner,
.m8-hover-scroll-x:hover::-webkit-scrollbar-corner,
.m8-hover-scroll-y:hover::-webkit-scrollbar-corner,
.m8-hover-scroll:hover::-webkit-scrollbar-corner {
    background-color: transparent
}

.m8-scroll-ps {
    padding-left: var(--scrollbar-size) !important
}

.m8-scroll-ms {
    margin-left: var(--scrollbar-size) !important
}

.m8-scroll-mb {
    margin-bottom: var(--scrollbar-size) !important
}

.m8-scroll-pe {
    padding-right: var(--scrollbar-size) !important
}

.m8-scroll-me {
    margin-right: var(--scrollbar-size) !important
}

.m8-scroll-px {
    padding-left: var(--scrollbar-size) !important;
    padding-right: var(--scrollbar-size) !important
}

.m8-scroll-mx {
    margin-left: var(--scrollbar-size) !important;
    margin-right: var(--scrollbar-size) !important
}

@media (min-width:576px) {
    .m8-scroll-sm-ps {
        padding-left: var(--scrollbar-size) !important
    }

    .m8-scroll-sm-ms {
        margin-left: var(--scrollbar-size) !important
    }

    .m8-scroll-sm-mb {
        margin-bottom: var(--scrollbar-size) !important
    }

    .m8-scroll-sm-pe {
        padding-right: var(--scrollbar-size) !important
    }

    .m8-scroll-sm-me {
        margin-right: var(--scrollbar-size) !important
    }

    .m8-scroll-sm-px {
        padding-left: var(--scrollbar-size) !important;
        padding-right: var(--scrollbar-size) !important
    }

    .m8-scroll-sm-mx {
        margin-left: var(--scrollbar-size) !important;
        margin-right: var(--scrollbar-size) !important
    }
}

@media (min-width:768px) {
    .m8-scroll-md-ps {
        padding-left: var(--scrollbar-size) !important
    }

    .m8-scroll-md-ms {
        margin-left: var(--scrollbar-size) !important
    }

    .m8-scroll-md-mb {
        margin-bottom: var(--scrollbar-size) !important
    }

    .m8-scroll-md-pe {
        padding-right: var(--scrollbar-size) !important
    }

    .m8-scroll-md-me {
        margin-right: var(--scrollbar-size) !important
    }

    .m8-scroll-md-px {
        padding-left: var(--scrollbar-size) !important;
        padding-right: var(--scrollbar-size) !important
    }

    .m8-scroll-md-mx {
        margin-left: var(--scrollbar-size) !important;
        margin-right: var(--scrollbar-size) !important
    }
}

@media (min-width:992px) {
    .m8-scroll-lg-ps {
        padding-left: var(--scrollbar-size) !important
    }

    .m8-scroll-lg-ms {
        margin-left: var(--scrollbar-size) !important
    }

    .m8-scroll-lg-mb {
        margin-bottom: var(--scrollbar-size) !important
    }

    .m8-scroll-lg-pe {
        padding-right: var(--scrollbar-size) !important
    }

    .m8-scroll-lg-me {
        margin-right: var(--scrollbar-size) !important
    }

    .m8-scroll-lg-px {
        padding-left: var(--scrollbar-size) !important;
        padding-right: var(--scrollbar-size) !important
    }

    .m8-scroll-lg-mx {
        margin-left: var(--scrollbar-size) !important;
        margin-right: var(--scrollbar-size) !important
    }
}

@media (min-width:1200px) {
    .m8-scroll-xl-ps {
        padding-left: var(--scrollbar-size) !important
    }

    .m8-scroll-xl-ms {
        margin-left: var(--scrollbar-size) !important
    }

    .m8-scroll-xl-mb {
        margin-bottom: var(--scrollbar-size) !important
    }

    .m8-scroll-xl-pe {
        padding-right: var(--scrollbar-size) !important
    }

    .m8-scroll-xl-me {
        margin-right: var(--scrollbar-size) !important
    }

    .m8-scroll-xl-px {
        padding-left: var(--scrollbar-size) !important;
        padding-right: var(--scrollbar-size) !important
    }

    .m8-scroll-xl-mx {
        margin-left: var(--scrollbar-size) !important;
        margin-right: var(--scrollbar-size) !important
    }
}

@media (min-width:1400px) {
    .m8-scroll-xxl-ps {
        padding-left: var(--scrollbar-size) !important
    }

    .m8-scroll-xxl-ms {
        margin-left: var(--scrollbar-size) !important
    }

    .m8-scroll-xxl-mb {
        margin-bottom: var(--scrollbar-size) !important
    }

    .m8-scroll-xxl-pe {
        padding-right: var(--scrollbar-size) !important
    }

    .m8-scroll-xxl-me {
        margin-right: var(--scrollbar-size) !important
    }

    .m8-scroll-xxl-px {
        padding-left: var(--scrollbar-size) !important;
        padding-right: var(--scrollbar-size) !important
    }

    .m8-scroll-xxl-mx {
        margin-left: var(--scrollbar-size) !important;
        margin-right: var(--scrollbar-size) !important
    }
}

.m8-opacity-0 {
    opacity: 0 !important
}

.m8-opacity-5 {
    opacity: .05 !important
}

.m8-opacity-10 {
    opacity: .1 !important
}

.m8-opacity-15 {
    opacity: .15 !important
}

.m8-opacity-20 {
    opacity: .2 !important
}

.m8-opacity-25 {
    opacity: .25 !important
}

.m8-opacity-50 {
    opacity: .5 !important
}

.m8-opacity-75 {
    opacity: .75 !important
}

.m8-opacity-100 {
    opacity: 1 !important
}

.m8-opacity-0 {
    opacity: 0 !important
}

.m8-opacity-0-hover:hover {
    opacity: 0 !important
}

.m8-opacity-5 {
    opacity: .05 !important
}

.m8-opacity-5-hover:hover {
    opacity: .05 !important
}

.m8-opacity-10 {
    opacity: .1 !important
}

.m8-opacity-10-hover:hover {
    opacity: .1 !important
}

.m8-opacity-15 {
    opacity: .15 !important
}

.m8-opacity-15-hover:hover {
    opacity: .15 !important
}

.m8-opacity-20 {
    opacity: .2 !important
}

.m8-opacity-20-hover:hover {
    opacity: .2 !important
}

.m8-opacity-25 {
    opacity: .25 !important
}

.m8-opacity-25-hover:hover {
    opacity: .25 !important
}

.m8-opacity-50 {
    opacity: .5 !important
}

.m8-opacity-50-hover:hover {
    opacity: .5 !important
}

.m8-opacity-75 {
    opacity: .75 !important
}

.m8-opacity-75-hover:hover {
    opacity: .75 !important
}

.m8-opacity-100 {
    opacity: 1 !important
}

.m8-opacity-100-hover:hover {
    opacity: 1 !important
}


.m8-border-opacity-10 {
    --bs-border-opacity: 0.1
}

.m8-border-opacity-25 {
    --bs-border-opacity: 0.25
}

.m8-border-opacity-50 {
    --bs-border-opacity: 0.5
}

.m8-border-opacity-75 {
    --bs-border-opacity: 0.75
}

.m8-border-opacity-100 {
    --bs-border-opacity: 1
}


.m8-nav {
    --nav-link-padding-x: 1rem;
    --nav-link-padding-y: 0.5rem;
    --nav-link-color: var(--link-color);
    --nav-link-hover-color: var(--link-hover-color);
    --nav-link-disabled-color: var(--secondary-color);
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.m8-nav-link {
    display: block;
    padding: var(--nav-link-padding-y) var(--nav-link-padding-x);
    font-size: var(--nav-link-font-size);
    font-weight: var(--nav-link-font-weight);
    color: var(--nav-link-color);
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .m8-nav-link {
        transition: none
    }
}

.m8-nav-link:focus,
.m8-nav-link:hover {
    color: var(--nav-link-hover-color)
}

.m8-nav-link:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(27, 132, 255, .25)
}

.m8-nav-link.disabled,
.m8-nav-link:disabled {
    color: var(--nav-link-disabled-color);
    pointer-events: none;
    cursor: default
}

.m8-nav-tabs {
    --nav-tabs-border-width: var(--border-width);
    --nav-tabs-border-color: var(--border-color);
    --nav-tabs-border-radius: var(--border-radius);
    --nav-tabs-link-hover-border-color: var(--secondary-bg) var(--secondary-bg) var(--border-color);
    --nav-tabs-link-active-color: var(--emphasis-color);
    --nav-tabs-link-active-bg: var(--body-bg);
    --nav-tabs-link-active-border-color: var(--border-color) var(--border-color) var(--body-bg);
    border-bottom: var(--nav-tabs-border-width) solid var(--nav-tabs-border-color)
}

.m8-nav-tabs .m8-nav-link {
    margin-bottom: calc(-1 * var(--nav-tabs-border-width));
    border: var(--nav-tabs-border-width) solid transparent;
    border-top-left-radius: var(--nav-tabs-border-radius);
    border-top-right-radius: var(--nav-tabs-border-radius)
}

.m8-nav-tabs .m8-nav-link:focus,
.m8-nav-tabs .m8-nav-link:hover {
    isolation: isolate;
    border-color: var(--nav-tabs-link-hover-border-color)
}

.m8-nav-tabs .m8-nav-item.show .m8-nav-link,
.m8-nav-tabs .m8-nav-link.active {
    color: var(--nav-tabs-link-active-color);
    background-color: var(--nav-tabs-link-active-bg);
    border-color: var(--nav-tabs-link-active-border-color)
}

.m8-nav-tabs .dropdown-menu {
    margin-top: calc(-1 * var(--nav-tabs-border-width));
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.m8-nav-pills {
    --nav-pills-border-radius: var(--border-radius);
    --nav-pills-link-active-color: #ffffff;
    --nav-pills-link-active-bg: #1B84FF
}

.m8-nav-pills .m8-nav-link {
    border-radius: var(--nav-pills-border-radius)
}

.m8-nav-pills .m8-nav-link.active,
.m8-nav-pills .show>.m8-nav-link {
    color: var(--nav-pills-link-active-color);
    background-color: var(--nav-pills-link-active-bg)
}

.m8-nav-underline {
    --nav-underline-gap: 1rem;
    --nav-underline-border-width: 0.125rem;
    --nav-underline-link-active-color: var(--emphasis-color);
    gap: var(--nav-underline-gap)
}

.m8-nav-underline .m8-nav-link {
    padding-right: 0;
    padding-left: 0;
    border-bottom: var(--nav-underline-border-width) solid transparent
}

.m8-nav-underline .m8-nav-link:focus,
.m8-nav-underline .m8-nav-link:hover {
    border-bottom-color: currentcolor
}

.m8-nav-underline .m8-nav-link.active,
.m8-nav-underline .show>.m8-nav-link {
    font-weight: 600;
    color: var(--nav-underline-link-active-color);
    border-bottom-color: currentcolor
}

.m8-nav-fill .m8-nav-item,
.m8-nav-fill>.m8-nav-link {
    flex: 1 1 auto;
    text-align: center
}

.m8-nav-justified .m8-nav-item,
.m8-nav-justified>.m8-nav-link {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center
}

.m8-nav-fill .m8-nav-item .m8-nav-link,
.m8-nav-justified .m8-nav-item .m8-nav-link {
    width: 100%
}


.m8-navbar {
    --navbar-padding-x: 0;
    --navbar-padding-y: 0.5rem;
    --navbar-color: rgba(var(--emphasis-color-rgb), 0.65);
    --navbar-hover-color: rgba(var(--emphasis-color-rgb), 0.8);
    --navbar-disabled-color: rgba(var(--emphasis-color-rgb), 0.3);
    --navbar-active-color: rgba(var(--emphasis-color-rgb), 1);
    --navbar-brand-padding-y: 0.44375rem;
    --navbar-brand-margin-end: 1rem;
    --navbar-brand-font-size: 1.075rem;
    --navbar-brand-color: rgba(var(--emphasis-color-rgb), 1);
    --navbar-brand-hover-color: rgba(var(--emphasis-color-rgb), 1);
    --navbar-nav-link-padding-x: 0.5rem;
    --navbar-toggler-padding-y: 0.25rem;
    --navbar-toggler-padding-x: 0.75rem;
    --navbar-toggler-font-size: 1.075rem;
    --navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%287, 20, 55, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --navbar-toggler-border-color: rgba(var(--emphasis-color-rgb), 0.15);
    --navbar-toggler-border-radius: 0.475rem;
    --navbar-toggler-focus-width: 0.25rem;
    --navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: var(--navbar-padding-y) var(--navbar-padding-x)
}

.m8-navbar>.container,
.m8-navbar>.container-fluid,
.m8-navbar>.container-lg,
.m8-navbar>.container-md,
.m8-navbar>.container-sm,
.m8-navbar>.container-xl,
.m8-navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between
}

.m8-navbar-brand {
    padding-top: var(--navbar-brand-padding-y);
    padding-bottom: var(--navbar-brand-padding-y);
    margin-right: var(--navbar-brand-margin-end);
    font-size: var(--navbar-brand-font-size);
    color: var(--navbar-brand-color);
    white-space: nowrap
}

.m8-navbar-brand:focus,
.m8-navbar-brand:hover {
    color: var(--navbar-brand-hover-color)
}

.m8-navbar-nav {
    --nav-link-padding-x: 0;
    --nav-link-padding-y: 0.5rem;
    --nav-link-color: var(--navbar-color);
    --nav-link-hover-color: var(--navbar-hover-color);
    --nav-link-disabled-color: var(--navbar-disabled-color);
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.m8-navbar-nav .m8-nav-link.active,
.m8-navbar-nav .m8-nav-link.show {
    color: var(--navbar-active-color)
}

.m8-navbar-nav .dropdown-menu {
    position: static
}

.m8-navbar-text {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: var(--navbar-color)
}

.m8-navbar-text a,
.m8-navbar-text a:focus,
.m8-navbar-text a:hover {
    color: var(--navbar-active-color)
}

.m8-navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center
}

.m8-navbar-toggler {
    padding: var(--navbar-toggler-padding-y) var(--navbar-toggler-padding-x);
    font-size: var(--navbar-toggler-font-size);
    line-height: 1;
    color: var(--navbar-color);
    background-color: transparent;
    border: var(--border-width) solid var(--navbar-toggler-border-color);
    border-radius: var(--navbar-toggler-border-radius);
    transition: var(--navbar-toggler-transition)
}

@media (prefers-reduced-motion:reduce) {
    .m8-navbar-toggler {
        transition: none
    }
}

.m8-navbar-toggler:hover {
    text-decoration: none
}

.m8-navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 var(--navbar-toggler-focus-width)
}

.m8-navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%
}

.m8-navbar-nav-scroll {
    max-height: var(--scroll-height, 75vh);
    overflow-y: auto
}

@media (min-width:576px) {
    .m8-navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .m8-navbar-expand-sm .m8-navbar-nav {
        flex-direction: row
    }

    .m8-navbar-expand-sm .m8-navbar-nav .dropdown-menu {
        position: absolute
    }

    .m8-navbar-expand-sm .m8-navbar-nav .m8-nav-link {
        padding-right: var(--navbar-nav-link-padding-x);
        padding-left: var(--navbar-nav-link-padding-x)
    }

    .m8-navbar-expand-sm .m8-navbar-nav-scroll {
        overflow: visible
    }

    .m8-navbar-expand-sm .m8-navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .m8-navbar-expand-sm .m8-navbar-toggler {
        display: none
    }

    .m8-navbar-expand-sm .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        box-shadow: none;
        transition: none
    }

    .m8-navbar-expand-sm .offcanvas .offcanvas-header {
        display: none
    }

    .m8-navbar-expand-sm .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

@media (min-width:768px) {
    .m8-navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .m8-navbar-expand-md .m8-navbar-nav {
        flex-direction: row
    }

    .m8-navbar-expand-md .m8-navbar-nav .dropdown-menu {
        position: absolute
    }

    .m8-navbar-expand-md .m8-navbar-nav .m8-nav-link {
        padding-right: var(--navbar-nav-link-padding-x);
        padding-left: var(--navbar-nav-link-padding-x)
    }

    .m8-navbar-expand-md .m8-navbar-nav-scroll {
        overflow: visible
    }

    .m8-navbar-expand-md .m8-navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .m8-navbar-expand-md .m8-navbar-toggler {
        display: none
    }

    .m8-navbar-expand-md .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        box-shadow: none;
        transition: none
    }

    .m8-navbar-expand-md .offcanvas .offcanvas-header {
        display: none
    }

    .m8-navbar-expand-md .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

@media (min-width:992px) {
    .m8-navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .m8-navbar-expand-lg .m8-navbar-nav {
        flex-direction: row
    }

    .m8-navbar-expand-lg .m8-navbar-nav .dropdown-menu {
        position: absolute
    }

    .m8-navbar-expand-lg .m8-navbar-nav .m8-nav-link {
        padding-right: var(--navbar-nav-link-padding-x);
        padding-left: var(--navbar-nav-link-padding-x)
    }

    .m8-navbar-expand-lg .m8-navbar-nav-scroll {
        overflow: visible
    }

    .m8-navbar-expand-lg .m8-navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .m8-navbar-expand-lg .m8-navbar-toggler {
        display: none
    }

    .m8-navbar-expand-lg .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        box-shadow: none;
        transition: none
    }

    .m8-navbar-expand-lg .offcanvas .offcanvas-header {
        display: none
    }

    .m8-navbar-expand-lg .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

@media (min-width:1200px) {
    .m8-navbar-expand-xl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .m8-navbar-expand-xl .m8-navbar-nav {
        flex-direction: row
    }

    .m8-navbar-expand-xl .m8-navbar-nav .dropdown-menu {
        position: absolute
    }

    .m8-navbar-expand-xl .m8-navbar-nav .m8-nav-link {
        padding-right: var(--navbar-nav-link-padding-x);
        padding-left: var(--navbar-nav-link-padding-x)
    }

    .m8-navbar-expand-xl .m8-navbar-nav-scroll {
        overflow: visible
    }

    .m8-navbar-expand-xl .m8-navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .m8-navbar-expand-xl .m8-navbar-toggler {
        display: none
    }

    .m8-navbar-expand-xl .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        box-shadow: none;
        transition: none
    }

    .m8-navbar-expand-xl .offcanvas .offcanvas-header {
        display: none
    }

    .m8-navbar-expand-xl .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

@media (min-width:1400px) {
    .m8-navbar-expand-xxl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

    .m8-navbar-expand-xxl .m8-navbar-nav {
        flex-direction: row
    }

    .m8-navbar-expand-xxl .m8-navbar-nav .dropdown-menu {
        position: absolute
    }

    .m8-navbar-expand-xxl .m8-navbar-nav .m8-nav-link {
        padding-right: var(--navbar-nav-link-padding-x);
        padding-left: var(--navbar-nav-link-padding-x)
    }

    .m8-navbar-expand-xxl .m8-navbar-nav-scroll {
        overflow: visible
    }

    .m8-navbar-expand-xxl .m8-navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .m8-navbar-expand-xxl .m8-navbar-toggler {
        display: none
    }

    .m8-navbar-expand-xxl .offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background-color: transparent !important;
        border: 0 !important;
        transform: none !important;
        box-shadow: none;
        transition: none
    }

    .m8-navbar-expand-xxl .offcanvas .offcanvas-header {
        display: none
    }

    .m8-navbar-expand-xxl .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible
    }
}

.m8-navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start
}

.m8-navbar-expand .m8-navbar-nav {
    flex-direction: row
}

.m8-navbar-expand .m8-navbar-nav .dropdown-menu {
    position: absolute
}

.m8-navbar-expand .m8-navbar-nav .m8-nav-link {
    padding-right: var(--navbar-nav-link-padding-x);
    padding-left: var(--navbar-nav-link-padding-x)
}

.m8-navbar-expand .m8-navbar-nav-scroll {
    overflow: visible
}

.m8-navbar-expand .m8-navbar-collapse {
    display: flex !important;
    flex-basis: auto
}

.m8-navbar-expand .m8-navbar-toggler {
    display: none
}

.m8-navbar-expand .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    box-shadow: none;
    transition: none
}

.m8-navbar-expand .offcanvas .offcanvas-header {
    display: none
}

.m8-navbar-expand .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible
}

.m8-navbar-dark,
.m8-navbar[data-bs-theme=dark] {
    --navbar-color: rgba(255, 255, 255, 0.55);
    --navbar-hover-color: rgba(255, 255, 255, 0.75);
    --navbar-disabled-color: rgba(255, 255, 255, 0.25);
    --navbar-active-color: #ffffff;
    --navbar-brand-color: #ffffff;
    --navbar-brand-hover-color: #ffffff;
    --navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
    --navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

[data-bs-theme=dark] .m8-navbar-toggler-icon {
    --navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}


.m8-nav-pills .m8-nav-item {
    margin-right: .5rem
}

.m8-nav-pills .m8-nav-item:last-child {
    margin-right: 0
}

.m8-nav-stretch {
    align-items: stretch;
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.m8-nav-stretch .m8-nav-item {
    display: flex;
    align-items: stretch;
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.m8-nav-stretch .m8-nav-link {
    display: flex;
    align-items: center
}

.m8-nav-group {
    padding: .35rem;
    border-radius: .475rem;
    background-color: var(--gray-100)
}

.m8-nav-group.m8-nav-group-outline {
    background-color: transparent;
    border: 1px solid var(--border-color)
}

.m8-nav-group.m8-nav-group-fluid {
    display: flex
}

.m8-nav-group.m8-nav-group-fluid>.m8-btn,
.m8-nav-group.m8-nav-group-fluid>label {
    position: relative;
    flex-shrink: 0;
    flex-grow: 1;
    flex-basis: 0
}

.m8-nav-group.m8-nav-group-fluid>label {
    margin-right: .1rem
}

.m8-nav-group.m8-nav-group-fluid>label>.m8-btn {
    width: 100%
}

.m8-nav-group.m8-nav-group-fluid>label:last-child {
    margin-right: 0
}

.m8-nav-line-tabs {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--border-color)
}

.m8-nav-line-tabs .m8-nav-item {
    margin-bottom: -1px
}

.m8-nav-line-tabs .m8-nav-item .m8-nav-link {
    color: var(--gray-500);
    border: 0;
    border-bottom: 1px solid transparent;
    transition: color .2s ease;
    padding: .5rem 0;
    margin: 0 1rem
}

.m8-nav-line-tabs .m8-nav-item:first-child .m8-nav-link {
    margin-left: 0
}

.m8-nav-line-tabs .m8-nav-item:last-child .m8-nav-link {
    margin-right: 0
}

.m8-nav-line-tabs .m8-nav-item .m8-nav-link.active,
.m8-nav-line-tabs .m8-nav-item .m8-nav-link:hover:not(.disabled),
.m8-nav-line-tabs .m8-nav-item.show .m8-nav-link {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--primary);
    transition: color .2s ease
}

.m8-nav-line-tabs.m8-nav-line-tabs-2x {
    border-bottom-width: 2px
}

.m8-nav-line-tabs.m8-nav-line-tabs-2x .m8-nav-item {
    margin-bottom: -2px
}

.m8-nav-line-tabs.m8-nav-line-tabs-2x .m8-nav-item .m8-nav-link {
    border-bottom-width: 2px
}

.m8-nav-line-tabs.m8-nav-line-tabs-2x .m8-nav-item .m8-nav-link.active,
.m8-nav-line-tabs.m8-nav-line-tabs-2x .m8-nav-item .m8-nav-link:hover:not(.disabled),
.m8-nav-line-tabs.m8-nav-line-tabs-2x .m8-nav-item.show .m8-nav-link {
    border-bottom-width: 2px
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom .m8-nav-link,
.m8-nav.m8-nav-pills.m8-nav-pills-custom .show>.m8-nav-link {
    border: 1px dashed var(--border-dashed-color);
    border-radius: .625rem
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom .m8-nav-link.m8-nav-link-border-solid,
.m8-nav.m8-nav-pills.m8-nav-pills-custom .show>.m8-nav-link.m8-nav-link-border-solid {
    border: 3px solid var(--border-dashed-color)
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom .m8-nav-link.m8-nav-link-border-solid.active,
.m8-nav.m8-nav-pills.m8-nav-pills-custom .show>.m8-nav-link.m8-nav-link-border-solid.active {
    border: 3px solid var(--primary)
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom .m8-nav-link .m8-nav-icon img,
.m8-nav.m8-nav-pills.m8-nav-pills-custom .show>.m8-nav-link .m8-nav-icon img {
    width: 30px;
    transition: color .2s ease
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom .m8-nav-link .m8-nav-icon img.default,
.m8-nav.m8-nav-pills.m8-nav-pills-custom .show>.m8-nav-link .m8-nav-icon img.default {
    display: inline-block
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom .m8-nav-link .m8-nav-icon img.active,
.m8-nav.m8-nav-pills.m8-nav-pills-custom .show>.m8-nav-link .m8-nav-icon img.active {
    display: none
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom .m8-nav-link.active,
.m8-nav.m8-nav-pills.m8-nav-pills-custom .show>.m8-nav-link.active {
    background-color: transparent;
    border: 1px solid var(--border-dashed-color);
    transition-duration: 1ms;
    position: relative
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom .m8-nav-link.active .m8-nav-text,
.m8-nav.m8-nav-pills.m8-nav-pills-custom .show>.m8-nav-link.active .m8-nav-text {
    color: var(--gray-800) !important;
    transition: color .2s ease
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom .m8-nav-link.active .m8-bullet-custom,
.m8-nav.m8-nav-pills.m8-nav-pills-custom .show>.m8-nav-link.active .m8-bullet-custom {
    display: block
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom .m8-nav-link .m8-bullet-custom,
.m8-nav.m8-nav-pills.m8-nav-pills-custom .show>.m8-nav-link .m8-bullet-custom {
    display: none
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom.m8-nav-pills-active-custom .m8-nav-item .m8-nav-link:not(:active) span:nth-child(1) {
    color: #b5b5c3
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom.m8-nav-pills-active-custom .m8-nav-item .m8-nav-link:not(:active) span:nth-child(2) {
    color: #3f4254
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom.m8-nav-pills-active-custom .m8-nav-item .m8-nav-link:hover span:nth-child(1) {
    color: #fff !important
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom.m8-nav-pills-active-custom .m8-nav-item .m8-nav-link:hover span:nth-child(2) {
    color: #fff !important
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom.m8-nav-pills-active-custom .m8-nav-item .m8-nav-link.active span:nth-child(1) {
    color: #fff !important
}

.m8-nav.m8-nav-pills.m8-nav-pills-custom.m8-nav-pills-active-custom .m8-nav-item .m8-nav-link.active span:nth-child(2) {
    color: #fff !important
}

.m8-nav-custom .m8-nav-link {
    color: #fff !important;
    opacity: .7
}

.m8-nav-custom .m8-nav-link.active {
    opacity: 1;
    border-bottom: 2px solid #fff !important
}

.m8-nav-custom .m8-nav-link:hover {
    opacity: 1;
    border-bottom-color: transparent !important
}


.m8-carousel {
    position: relative
}

.m8-carousel.pointer-event {
    touch-action: pan-y
}

.m8-carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.m8-carousel-inner::after {
    display: block;
    clear: both;
    content: ""
}

.m8-carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .m8-carousel-item {
        transition: none
    }
}

.m8-carousel-item-next,
.m8-carousel-item-prev,
.m8-carousel-item.active {
    display: block
}

.active.m8-carousel-item-end,
.m8-carousel-item-next:not(.m8-carousel-item-start) {
    transform: translateX(100%)
}

.active.m8-carousel-item-start,
.m8-carousel-item-prev:not(.m8-carousel-item-end) {
    transform: translateX(-100%)
}

.m8-carousel-fade .m8-carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none
}

.m8-carousel-fade .m8-carousel-item-next.m8-carousel-item-start,
.m8-carousel-fade .m8-carousel-item-prev.m8-carousel-item-end,
.m8-carousel-fade .m8-carousel-item.active {
    z-index: 1;
    opacity: 1
}

.m8-carousel-fade .active.m8-carousel-item-end,
.m8-carousel-fade .active.m8-carousel-item-start {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

@media (prefers-reduced-motion:reduce) {

    .m8-carousel-fade .active.m8-carousel-item-end,
    .m8-carousel-fade .active.m8-carousel-item-start {
        transition: none
    }
}

.m8-carousel-control-next,
.m8-carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease
}

@media (prefers-reduced-motion:reduce) {

    .m8-carousel-control-next,
    .m8-carousel-control-prev {
        transition: none
    }
}

.m8-carousel-control-next:focus,
.m8-carousel-control-next:hover,
.m8-carousel-control-prev:focus,
.m8-carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.m8-carousel-control-prev {
    left: 0
}

.m8-carousel-control-next {
    right: 0
}

.m8-carousel-control-next-icon,
.m8-carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.m8-carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.m8-carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.m8-carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%
}

.m8-carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease
}

@media (prefers-reduced-motion:reduce) {
    .m8-carousel-indicators [data-bs-target] {
        transition: none
    }
}

.m8-carousel-indicators .active {
    opacity: 1
}

.m8-carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center
}

.m8-carousel-dark .m8-carousel-control-next-icon,
.m8-carousel-dark .m8-carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

.m8-carousel-dark .m8-carousel-indicators [data-bs-target] {
    background-color: #000
}

.m8-carousel-dark .m8-carousel-caption {
    color: #000
}

[data-bs-theme=dark] .m8-carousel .m8-carousel-control-next-icon,
[data-bs-theme=dark] .m8-carousel .m8-carousel-control-prev-icon,
[data-bs-theme=dark].m8-carousel .m8-carousel-control-next-icon,
[data-bs-theme=dark].m8-carousel .m8-carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

[data-bs-theme=dark] .m8-carousel .m8-carousel-indicators [data-bs-target],
[data-bs-theme=dark].m8-carousel .m8-carousel-indicators [data-bs-target] {
    background-color: #000
}

[data-bs-theme=dark] .m8-carousel .m8-carousel-caption,
[data-bs-theme=dark].m8-carousel .m8-carousel-caption {
    color: #000
}


.m8-carousel-custom .m8-carousel-indicators {
    align-items: center;
    position: static;
    z-index: auto;
    margin: 0;
    padding: 0;
    list-style: none
}

.m8-carousel-custom .m8-carousel-indicators li {
    transform: none;
    opacity: 1
}

.m8-carousel-custom .m8-carousel-indicators li.active {
    transform: none;
    opacity: 1
}

.m8-carousel-custom .m8-carousel-indicators.m8-carousel-indicators-dots li {
    border-radius: 0;
    background-color: transparent !important;
    height: 13px;
    width: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.m8-carousel-custom .m8-carousel-indicators.m8-carousel-indicators-dots li:after {
    display: inline-block;
    content: " ";
    border-radius: 50%;
    transition: all .3s ease;
    background-color: var(--gray-200);
    height: 9px;
    width: 9px
}

.m8-carousel-custom .m8-carousel-indicators.m8-carousel-indicators-dots li.active {
    background-color: transparent
}

.m8-carousel-custom .m8-carousel-indicators.m8-carousel-indicators-dots li.active:after {
    transition: all .3s ease;
    height: 13px;
    width: 13px;
    background-color: var(--gray-400)
}

.m8-carousel-custom .m8-carousel-indicators.m8-carousel-indicators-bullet li {
    transition: all .3s ease;
    background-color: transparent !important;
    border-radius: 6px;
    height: 6px;
    width: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.m8-carousel-custom .m8-carousel-indicators.m8-carousel-indicators-bullet li:after {
    display: inline-block;
    content: " ";
    transition: all .3s ease;
    background-color: var(--gray-400);
    border-radius: 6px;
    height: 6px;
    width: 6px
}

.m8-carousel-custom .m8-carousel-indicators.m8-carousel-indicators-bullet li.active {
    transition: all .3s ease;
    background-color: transparent;
    height: 6px;
    width: 16px
}

.m8-carousel-custom .m8-carousel-indicators.m8-carousel-indicators-bullet li.active:after {
    transition: all .3s ease;
    height: 6px;
    width: 16px;
    background-color: var(--gray-600)
}

.m8-carousel-custom .m8-carousel-indicators-active-light li.active:after {
    background-color: var(--light) !important
}

.m8-carousel-custom .m8-carousel-indicators-active-primary li.active:after {
    background-color: var(--primary) !important
}

.m8-carousel-custom .m8-carousel-indicators-active-secondary li.active:after {
    background-color: var(--secondary) !important
}

.m8-carousel-custom .m8-carousel-indicators-active-success li.active:after {
    background-color: var(--success) !important
}

.m8-carousel-custom .m8-carousel-indicators-active-info li.active:after {
    background-color: var(--info) !important
}

.m8-carousel-custom .m8-carousel-indicators-active-warning li.active:after {
    background-color: var(--warning) !important
}

.m8-carousel-custom .m8-carousel-indicators-active-danger li.active:after {
    background-color: var(--danger) !important
}

.m8-carousel-custom .m8-carousel-indicators-active-dark li.active:after {
    background-color: var(--dark) !important
}

.m8-carousel-custom.m8-carousel-stretch {
    height: 100%;
    display: flex;
    flex-direction: column
}

.m8-carousel-custom.m8-carousel-stretch .m8-carousel-inner {
    flex-grow: 1
}

.m8-carousel-custom.m8-carousel-stretch .m8-carousel-item {
    height: 100%
}

.m8-carousel-custom.m8-carousel-stretch .m8-carousel-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%
}


.m8-badge {
    display: inline-flex;
    align-items: center
}

.m8-badge.m8-badge-circle,
.m8-badge.m8-badge-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.75rem;
    min-width: 1.75rem;
    padding: 0 .1rem;
    line-height: 0
}

.m8-badge.m8-badge-circle {
    border-radius: 50%;
    padding: 0;
    min-width: unset;
    width: 1.75rem
}

.m8-badge.m8-badge-sm {
    min-width: 1.5rem;
    font-size: .8rem
}

.m8-badge.m8-badge-sm.m8-badge-square {
    height: 1.5rem
}

.m8-badge.m8-badge-sm.m8-badge-circle {
    width: 1.5rem;
    height: 1.5rem
}

.m8-badge.m8-badge-lg {
    min-width: 2rem;
    font-size: 1rem
}

.m8-badge.m8-badge-lg.m8-badge-square {
    height: 2rem
}

.m8-badge.m8-badge-lg.m8-badge-circle {
    width: 2rem;
    height: 2rem
}

.m8-badge-light {
    color: var(--light-inverse);
    background-color: var(--light)
}

.m8-badge-light.m8-badge-outline {
    border: 1px solid var(--light);
    background-color: transparent;
    color: var(--light)
}

.m8-badge-light-light {
    background-color: var(--light-light);
    color: var(--light)
}

.m8-badge-primary {
    color: var(--primary-inverse);
    background-color: var(--primary)
}

.m8-badge-primary.m8-badge-outline {
    border: 1px solid var(--primary);
    background-color: transparent;
    color: var(--primary)
}

.m8-badge-light-primary {
    background-color: var(--primary-light);
    color: var(--primary)
}

.m8-badge-secondary {
    color: var(--secondary-inverse);
    background-color: var(--secondary)
}

.m8-badge-secondary.m8-badge-outline {
    border: 1px solid var(--secondary);
    background-color: transparent;
    color: var(--secondary-inverse)
}

.m8-badge-light-secondary {
    background-color: var(--secondary-light);
    color: var(--secondary-inverse)
}

.m8-badge-success {
    color: var(--success-inverse);
    background-color: var(--success)
}

.m8-badge-success.m8-badge-outline {
    border: 1px solid var(--success);
    background-color: transparent;
    color: var(--success)
}

.m8-badge-light-success {
    background-color: var(--success-light);
    color: var(--success)
}

.m8-badge-info {
    color: var(--info-inverse);
    background-color: var(--info)
}

.m8-badge-info.m8-badge-outline {
    border: 1px solid var(--info);
    background-color: transparent;
    color: var(--info)
}

.m8-badge-light-info {
    background-color: var(--info-light);
    color: var(--info)
}

.m8-badge-warning {
    color: var(--warning-inverse);
    background-color: var(--warning)
}

.m8-badge-warning.m8-badge-outline {
    border: 1px solid var(--warning);
    background-color: transparent;
    color: var(--warning)
}

.m8-badge-light-warning {
    background-color: var(--warning-light);
    color: var(--warning)
}

.m8-badge-danger {
    color: var(--danger-inverse);
    background-color: var(--danger)
}

.m8-badge-danger.m8-badge-outline {
    border: 1px solid var(--danger);
    background-color: transparent;
    color: var(--danger)
}

.m8-badge-light-danger {
    background-color: var(--danger-light);
    color: var(--danger)
}

.m8-badge-dark {
    color: var(--dark-inverse);
    background-color: var(--dark)
}

.m8-badge-dark.m8-badge-outline {
    border: 1px solid var(--dark);
    background-color: transparent;
    color: var(--dark)
}

.m8-badge-light-dark {
    background-color: var(--dark-light);
    color: var(--dark)
}

.m8-parent-hover .m8-parent-hover-white {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-white {
    transition: color .2s ease;
    color: var(--text-white) !important
}

.m8-parent-hover .m8-parent-hover-primary {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-primary {
    transition: color .2s ease;
    color: var(--text-primary) !important
}

.m8-parent-hover .m8-parent-hover-secondary {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-secondary {
    transition: color .2s ease;
    color: var(--text-secondary) !important
}

.m8-parent-hover .m8-parent-hover-light {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-light {
    transition: color .2s ease;
    color: var(--text-light) !important
}

.m8-parent-hover .m8-parent-hover-success {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-success {
    transition: color .2s ease;
    color: var(--text-success) !important
}

.m8-parent-hover .m8-parent-hover-info {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-info {
    transition: color .2s ease;
    color: var(--text-info) !important
}

.m8-parent-hover .m8-parent-hover-warning {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-warning {
    transition: color .2s ease;
    color: var(--text-warning) !important
}

.m8-parent-hover .m8-parent-hover-danger {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-danger {
    transition: color .2s ease;
    color: var(--text-danger) !important
}

.m8-parent-hover .m8-parent-hover-dark {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-dark {
    transition: color .2s ease;
    color: var(--text-dark) !important
}

.m8-parent-hover .m8-parent-hover-muted {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-muted {
    transition: color .2s ease;
    color: var(--text-muted) !important
}

.m8-parent-hover .m8-parent-hover-gray-100 {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-gray-100 {
    transition: color .2s ease;
    color: var(--text-gray-100) !important
}

.m8-parent-hover .m8-parent-hover-gray-200 {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-gray-200 {
    transition: color .2s ease;
    color: var(--text-gray-200) !important
}

.m8-parent-hover .m8-parent-hover-gray-300 {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-gray-300 {
    transition: color .2s ease;
    color: var(--text-gray-300) !important
}

.m8-parent-hover .m8-parent-hover-gray-400 {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-gray-400 {
    transition: color .2s ease;
    color: var(--text-gray-400) !important
}

.m8-parent-hover .m8-parent-hover-gray-500 {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-gray-500 {
    transition: color .2s ease;
    color: var(--text-gray-500) !important
}

.m8-parent-hover .m8-parent-hover-gray-600 {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-gray-600 {
    transition: color .2s ease;
    color: var(--text-gray-600) !important
}

.m8-parent-hover .m8-parent-hover-gray-700 {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-gray-700 {
    transition: color .2s ease;
    color: var(--text-gray-700) !important
}

.m8-parent-hover .m8-parent-hover-gray-800 {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-gray-800 {
    transition: color .2s ease;
    color: var(--text-gray-800) !important
}

.m8-parent-hover .m8-parent-hover-gray-900 {
    transition: color .2s ease
}

.m8-parent-hover:hover .m8-parent-hover-gray-900 {
    transition: color .2s ease;
    color: var(--text-gray-900) !important
}

.m8-parent-active .m8-parent-active-white {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-white {
    transition: color .2s ease;
    color: var(--text-white) !important
}

.m8-parent-active .m8-parent-active-primary {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-primary {
    transition: color .2s ease;
    color: var(--text-primary) !important
}

.m8-parent-active .m8-parent-active-secondary {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-secondary {
    transition: color .2s ease;
    color: var(--text-secondary) !important
}

.m8-parent-active .m8-parent-active-light {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-light {
    transition: color .2s ease;
    color: var(--text-light) !important
}

.m8-parent-active .m8-parent-active-success {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-success {
    transition: color .2s ease;
    color: var(--text-success) !important
}

.m8-parent-active .m8-parent-active-info {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-info {
    transition: color .2s ease;
    color: var(--text-info) !important
}

.m8-parent-active .m8-parent-active-warning {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-warning {
    transition: color .2s ease;
    color: var(--text-warning) !important
}

.m8-parent-active .m8-parent-active-danger {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-danger {
    transition: color .2s ease;
    color: var(--text-danger) !important
}

.m8-parent-active .m8-parent-active-dark {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-dark {
    transition: color .2s ease;
    color: var(--text-dark) !important
}

.m8-parent-active .m8-parent-active-muted {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-muted {
    transition: color .2s ease;
    color: var(--text-muted) !important
}

.m8-parent-active .m8-parent-active-gray-100 {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-gray-100 {
    transition: color .2s ease;
    color: var(--text-gray-100) !important
}

.m8-parent-active .m8-parent-active-gray-200 {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-gray-200 {
    transition: color .2s ease;
    color: var(--text-gray-200) !important
}

.m8-parent-active .m8-parent-active-gray-300 {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-gray-300 {
    transition: color .2s ease;
    color: var(--text-gray-300) !important
}

.m8-parent-active .m8-parent-active-gray-400 {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-gray-400 {
    transition: color .2s ease;
    color: var(--text-gray-400) !important
}

.m8-parent-active .m8-parent-active-gray-500 {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-gray-500 {
    transition: color .2s ease;
    color: var(--text-gray-500) !important
}

.m8-parent-active .m8-parent-active-gray-600 {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-gray-600 {
    transition: color .2s ease;
    color: var(--text-gray-600) !important
}

.m8-parent-active .m8-parent-active-gray-700 {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-gray-700 {
    transition: color .2s ease;
    color: var(--text-gray-700) !important
}

.m8-parent-active .m8-parent-active-gray-800 {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-gray-800 {
    transition: color .2s ease;
    color: var(--text-gray-800) !important
}

.m8-parent-active .m8-parent-active-gray-900 {
    transition: color .2s ease
}

.m8-parent-active.active .m8-parent-active-gray-900 {
    transition: color .2s ease;
    color: var(--text-gray-900) !important
}

.m8-link-opacity-10 {
    --bs-link-opacity: 0.1
}

.m8-link-opacity-10-hover:hover {
    --bs-link-opacity: 0.1
}

.m8-link-opacity-25 {
    --bs-link-opacity: 0.25
}

.m8-link-opacity-25-hover:hover {
    --bs-link-opacity: 0.25
}

.m8-link-opacity-50 {
    --bs-link-opacity: 0.5
}

.m8-link-opacity-50-hover:hover {
    --bs-link-opacity: 0.5
}

.m8-link-opacity-75 {
    --bs-link-opacity: 0.75
}

.m8-link-opacity-75-hover:hover {
    --bs-link-opacity: 0.75
}

.m8-link-opacity-100 {
    --bs-link-opacity: 1
}

.m8-link-opacity-100-hover:hover {
    --bs-link-opacity: 1
}

.m8-link-offset-1 {
    text-underline-offset: .125em !important
}

.m8-link-offset-1-hover:hover {
    text-underline-offset: .125em !important
}

.m8-link-offset-2 {
    text-underline-offset: .25em !important
}

.m8-link-offset-2-hover:hover {
    text-underline-offset: .25em !important
}

.m8-link-offset-3 {
    text-underline-offset: .375em !important
}

.m8-link-offset-3-hover:hover {
    text-underline-offset: .375em !important
}

.m8-link-underline-light {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important
}

.m8-link-underline-primary {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important
}

.m8-link-underline-secondary {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important
}

.m8-link-underline-success {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important
}

.m8-link-underline-info {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important
}

.m8-link-underline-warning {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important
}

.m8-link-underline-danger {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important
}

.m8-link-underline-dark {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important
}

.m8-link-underline {
    --bs-link-underline-opacity: 1;
    text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important
}

.m8-link-underline-opacity-0 {
    --bs-link-underline-opacity: 0
}

.m8-link-underline-opacity-0-hover:hover {
    --bs-link-underline-opacity: 0
}

.m8-link-underline-opacity-10 {
    --bs-link-underline-opacity: 0.1
}

.m8-link-underline-opacity-10-hover:hover {
    --bs-link-underline-opacity: 0.1
}

.m8-link-underline-opacity-25 {
    --bs-link-underline-opacity: 0.25
}

.m8-link-underline-opacity-25-hover:hover {
    --bs-link-underline-opacity: 0.25
}

.m8-link-underline-opacity-50 {
    --bs-link-underline-opacity: 0.5
}

.m8-link-underline-opacity-50-hover:hover {
    --bs-link-underline-opacity: 0.5
}

.m8-link-underline-opacity-75 {
    --bs-link-underline-opacity: 0.75
}

.m8-link-underline-opacity-75-hover:hover {
    --bs-link-underline-opacity: 0.75
}

.m8-link-underline-opacity-100 {
    --bs-link-underline-opacity: 1
}

.m8-link-underline-opacity-100-hover:hover {
    --bs-link-underline-opacity: 1
}


.m8-z-index-n1 {
    z-index: -1 !important
}

.m8-z-index-n2 {
    z-index: -2 !important
}

.m8-z-index-0 {
    z-index: 0 !important
}

.m8-z-index-1 {
    z-index: 1 !important
}

.m8-z-index-2 {
    z-index: 2 !important
}

.m8-z-index-3 {
    z-index: 3 !important
}