.lqd-bg-layer {
    padding-top: var(--lqd-bg-layer-pt)
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.flex-wrap {
    flex-wrap: wrap
}

.flex-row {
    flex-direction: row
}

.flex-row-reverse {
    flex-direction: row-reverse
}

.flex-col {
    flex-direction: column
}

.flex-col-reverse {
    flex-direction: column-reverse
}

.shrink-0 {
    flex-shrink: 0
}

.shrink {
    flex-shrink: 1
}

.grow-0 {
    flex-grow: 0
}

.grow {
    flex-grow: 1
}

.basis-auto {
    flex-basis: auto
}

.basis-0 {
    flex-basis: 0
}

.mobile\:flex {
    display: flex
}

.mobile-extra\:flex {
    display: flex
}

.tablet\:flex {
    display: flex
}

.tablet-extra\:flex {
    display: flex
}

.mobile\:inline-flex {
    display: inline-flex
}

.mobile-extra\:inline-flex {
    display: inline-flex
}

.tablet\:inline-flex {
    display: inline-flex
}

.tablet-extra\:inline-flex {
    display: inline-flex
}

.grid {
    display: grid
}

.inline-grid {
    display: inline-grid
}

.grid-area-1-1 {
    grid-area: 1/1
}

.grid-col-start {
    grid-column-start: 1
}

.grid-row-start {
    grid-row-start: 1
}

.place-content-center {
    place-content: center
}

.grid-span-full {
    grid-column: 1/-1
}

.grid-flow-row {
    grid-auto-flow: row
}

.grid-flow-col {
    grid-auto-flow: column
}

.auto-cols-min {
    grid-auto-columns: min-content
}

.auto-cols-max {
    grid-auto-columns: max-content
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

.mobile\:block {
    display: block
}

.mobile-extra\:block {
    display: block
}

.tablet\:block {
    display: block
}

.tablet-extra\:block {
    display: block
}

.mobile\:inline-block {
    display: inline-block
}

.mobile-extra\:inline-block {
    display: inline-block
}

.tablet\:inline-block {
    display: inline-block
}

.tablet-extra\:inline-block {
    display: inline-block
}

.hidden {
    display: none
}

.hidden-if-empty:empty {
    display: none !important
}

.mobile\:hidden {
    display: none
}

.mobile-extra\:hidden {
    display: none
}

.tablet\:hidden {
    display: none
}

.tablet-extra\:hidden {
    display: none
}

.w-full {
    width: 100%
}

.w-screen {
    width: 100vw
}

.w-0 {
    width: 0
}

.w-px {
    width: 1px
}

.w-1em {
    width: 1em
}

.w-auto {
    width: auto
}

.w-min {
    width: min-content
}

.w-max {
    width: max-content
}

.w-fit {
    width: fit-content
}

.h-full {
    height: 100%
}

.\!h-full {
    height: 100% !important
}

.h-screen {
    height: 100vh
}

.h-0 {
    height: 0
}

.h-px {
    height: 1px
}

.h-1em {
    height: 1em
}

.h-auto {
    height: auto
}

.min-w-full {
    min-width: 100%
}

.max-w-none {
    max-width: none
}

.max-w-full {
    max-width: 100%
}

.max-w-1em {
    max-width: 1em
}

.min-h-full {
    min-height: 100%
}

.max-h-none {
    max-height: none
}

.max-h-full {
    max-height: 100%
}

.max-h-1em {
    max-height: 1em
}

.m-0 {
    margin: 0
}

.mt-0 {
    margin-top: 0
}

.mt-auto {
    margin-top: auto
}

.mb-0 {
    margin-bottom: 0
}

.ms-auto {
    margin-inline-start: auto
}

.me-auto {
    margin-inline-end: auto
}

.p-0 {
    padding: 0
}

.pt-0 {
    padding-top: 0
}

.pb-0 {
    padding-bottom: 0
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.fixed {
    position: fixed
}

.top-0 {
    top: 0
}

.top-1\/2 {
    top: 50%
}

.top-full {
    top: 100%
}

.bottom-0 {
    bottom: 0
}

.bottom-1\/2 {
    bottom: 50%
}

.bottom-full {
    bottom: 100%
}

.start-0 {
    inset-inline-start: 0
}

.start-1\/2 {
    inset-inline-start: 50%
}

.start-full {
    inset-inline-start: 100%
}

.end-0 {
    inset-inline-end: 0
}

.end-1\/2 {
    inset-inline-end: 50%
}

.end-full {
    inset-inline-end: 100%
}

.rounded-inherit {
    border-radius: inherit
}

.\!rounded-inherit {
    border-radius: inherit !important
}

.rounded-full {
    border-radius: 10em
}

.\!rounded-full {
    border-radius: 10em !important
}

.aspect-square {
    aspect-ratio: 1/1
}

.list-none {
    list-style-type: none
}

.bg-primary {
    background: var(--lqd-color-primary, var(--e-global-color-primary))
}

.bg-secondary {
    background: var(--lqd-color-secondary, var(--e-global-color-secondary))
}

.bg-white {
    background: #fff
}

.bg-black {
    background: #000
}

.bg-current {
    background: currentColor
}

.bg-none {
    background: none
}

.bg-inherit {
    background: inherit
}

.fill-none {
    fill: none
}

.fill-inherit {
    fill: inherit
}

.fill-current {
    fill: currentColor
}

.align-middle {
    vertical-align: middle
}

.pointer-events-none {
    pointer-events: none
}

.pointer-events-auto {
    pointer-events: auto
}

.user-select-none {
    user-select: none
}

.overflow-hidden {
    overflow: hidden
}

.overflow-x-hidden {
    overflow-x: hidden
}

.overflow-y-hidden {
    overflow-y: hidden
}

.overflow-x-auto {
    overflow-x: auto
}

.overflow-y-auto {
    overflow-y: auto
}

.overflow-auto {
    overflow: auto
}

.overflow-visible {
    overflow: visible
}

.invisible {
    visibility: hidden
}

.lqd-transform {
    --lqd-translate-x: 0;
    --lqd-translate-y: 0;
    --lqd-rotate: 0;
    --lqd-skew-x: 0;
    --lqd-skew-y: 0;
    --lqd-scale-x: 1;
    --lqd-scale-y: 1;
    transform: translate(var(--lqd-translate-x),var(--lqd-translate-y)) rotate(var(--lqd-rotate)) skewX(var(--lqd-skew-x)) skewY(var(--lqd-skew-y)) scaleX(var(--lqd-scale-x)) scaleY(var(--lqd-scale-y))
}

.lqd-transform-3d {
    --lqd-translate-x: 0;
    --lqd-translate-y: 0;
    --lqd-translate-z: 0;
    --lqd-rotate: 0;
    --lqd-skew-x: 0;
    --lqd-skew-y: 0;
    --lqd-scale-x: 1;
    --lqd-scale-y: 1;
    transform: translate3d(var(--lqd-translate-x),var(--lqd-translate-y),var(--lqd-translate-z)) rotate(var(--lqd-rotate)) skewX(var(--lqd-skew-x)) skewY(var(--lqd-skew-y)) scaleX(var(--lqd-scale-x)) scaleY(var(--lqd-scale-y))
}

.lqd-transform-perspective {
    --lqd-transform-perspective: 1200px;
    --lqd-translate-x: 0;
    --lqd-translate-y: 0;
    --lqd-translate-z: 0;
    --lqd-rotate: 0;
    --lqd-skew-x: 0;
    --lqd-skew-y: 0;
    --lqd-scale-x: 1;
    --lqd-scale-y: 1;
    transform: perspective(var(--lqd-transform-perspective)) translate3d(var(--lqd-translate-x),var(--lqd-translate-y),var(--lqd-translate-z)) rotate(var(--lqd-rotate)) skewX(var(--lqd-skew-x)) skewY(var(--lqd-skew-y)) scaleX(var(--lqd-scale-x)) scaleY(var(--lqd-scale-y))
}

.flip {
    --lqd-scale-x: -1;
    --lqd-scale-y: -1
}

.flip-x {
    --lqd-scale-x: -1
}

.flip-y {
    --lqd-scale-y: -1
}

.-translate-x-1\/2 {
    --lqd-translate-x: -50%
}

.translate-x-1\/2 {
    --lqd-translate-x: 50%
}

.-translate-x-full {
    --lqd-translate-x: -100%
}

.translate-x-full {
    --lqd-translate-x: 100%
}

.-translate-y-1\/2 {
    --lqd-translate-y: -50%
}

.translate-y-1\/2 {
    --lqd-translate-y: 50%
}

.-translate-y-full {
    --lqd-translate-y: -100%
}

.translate-y-full {
    --lqd-translate-y: 100%
}

.scale-x-0 {
    --lqd-scale-x: 0
}

.scale-x-50 {
    --lqd-scale-x: 0.5
}

.scale-x-100 {
    --lqd-scale-x: 1
}

.scale-y-0 {
    --lqd-scale-y: 0
}

.scale-y-50 {
    --lqd-scale-y: 0.5
}

.scale-y-100 {
    --lqd-scale-y: 1
}

.perspective {
    perspective: 1200px
}

.transform-style-3d {
    transform-style: preserve-3d
}

.transition-all {
    transition: all var(--lqd-transition-duration) var(--lqd-transition-timing-function);
}

.transition-opacity {
    transition: all var(--lqd-transition-duration) var(--lqd-transition-timing-function);
    transition-property: opacity,visibility
}

.transition-colors {
    transition: all var(--lqd-transition-duration) var(--lqd-transition-timing-function);
    transition-property: background,color,border,box-shadow,text-shadow,fill,stroke,border-radius
}

.transition-transform {
    transition: all var(--lqd-transition-duration) var(--lqd-transition-timing-function);
    transition-property: transform
}

.transition-effects {
    transition: all var(--lqd-transition-duration) var(--lqd-transition-timing-function);
    transition-property: transform,opacity,filter,background,color,border,box-shadow,text-shadow,fill,stroke,border-radius
}

.transition-width {
    transition: all var(--lqd-transition-duration) var(--lqd-transition-timing-function);
    transition-property: width
}

.uppercase {
    text-transform: uppercase
}

.lowecase {
    text-transform: lowecase
}

.capitalize {
    text-transform: capitalize
}

.font-light {
    font-weight: 300
}

.font-normal {
    font-weight: 400
}

.font-medium {
    font-weight: 500
}

.font-semibold {
    font-weight: 600
}

.font-bold {
    font-weight: 700
}

.leading-none {
    line-height: 1
}

.text-inherit {
    color: inherit
}

.text-primary {
    color: var(--lqd-color-primary, var(--e-global-color-primary))
}

.text-secondary {
    color: var(--lqd-color-secondary, var(--e-global-color-secondary))
}

.text-white {
    color: #fff
}

.text-black {
    color: #000
}

.decoration-none {
    text-decoration: none
}

.-indent-full {
    text-indent: -99999px
}

.indent-full {
    text-indent: 99999px
}

.whitespace-nowrap {
    white-space: nowrap
}

.object-cover {
    object-fit: cover
}

.object-center {
    object-position: center
}

.cursor-pointer {
    cursor: pointer
}

.outline-none {
    outline: none !important
}

.lqd-aspect-ratio-p {
    padding-top: var(--lqd-aspect-ratio-p)
}

.lqd-aspect-ratio {
    aspect-ratio: var(--lqd-aspect-ratio)
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05)
}

.shadow {
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.07)
}

.shadow-md {
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.07)
}

.shadow-lg {
    box-shadow: 0 10px 33px rgb(0 0 0 / 0.07)
}

.shadow-xl {
    box-shadow: 0 20px 65px rgb(0 0 0 / 0.07)
}

.shadow-2xl {
    box-shadow: 0 25px 80px rgb(0 0 0 / 0.05)
}

.shadow-none {
    box-shadow: 0 0 #0000
}

.lqd-group:hover .lqd-group-hover\:opacity-0 {
    opacity: 0
}

.lqd-group:hover .lqd-group-hover\:opacity-100 {
    opacity: 1
}

.lqd-group-btn:hover .lqd-group-btn-hover\:opacity-0 {
    opacity: 0
}

.lqd-group-btn:hover .lqd-group-btn-hover\:opacity-100 {
    opacity: 1
}

.lqd-group-box:hover .lqd-group-box-hover\:opacity-0 {
    opacity: 0
}

.lqd-group-box:hover .lqd-group-box-hover\:opacity-100 {
    opacity: 1
}

.lqd-group-carousel:hover .lqd-group-carousel-hover\:opacity-0 {
    opacity: 0
}

.lqd-group-carousel:hover .lqd-group-carousel-hover\:opacity-100 {
    opacity: 1
}

.lqd-widget-container-grid > .elementor-widget-container {
    display: grid
}

.lqd-widget-container-flex > .elementor-widget-container {
    display: flex
}

.lqd-widget-container-flex-wrap > .elementor-widget-container {
    flex-wrap: wrap
}

.lqd-widget-container-items-center > .elementor-widget-container {
    align-items: center
}

.lqd-bubble-arrow {
    --lqd-bubble-arrow-w: 20px;
    --lqd-bubble-arrow-h: 10px
}

    .lqd-bubble-arrow:after {
        content: "" !important;
        display: inline-block;
        width: var(--lqd-bubble-arrow-w);
        height: var(--lqd-bubble-arrow-h);
        background: inherit;
        position: absolute;
        z-index: 1
    }

.lqd-bubble-arrow-top:after, .lqd-bubble-arrow-bottom:after {
    inset-inline-start: calc(50% - (var(--lqd-bubble-arrow-w) / 2))
}

.lqd-bubble-arrow-start:after, .lqd-bubble-arrow-end:after {
    --lqd-bubble-arrow-w: 10px;
    --lqd-bubble-arrow-h: 20px;
    top: calc(50% - (var(--lqd-bubble-arrow-h) / 2))
}

.lqd-bubble-arrow-top:after {
    top: calc((var(--lqd-bubble-arrow-h) - 1px) * -1);
    clip-path: polygon(50% 0, 0 100%, 100% 100%)
}

.lqd-bubble-arrow-end:after {
    inset-inline-end: calc((var(--lqd-bubble-arrow-w) - 1px) * -1);
    clip-path: polygon(0 0, 0 100%, 100% 50%)
}

.lqd-bubble-arrow-bottom:after {
    bottom: calc((var(--lqd-bubble-arrow-h) - 1px) * -1);
    clip-path: polygon(50% 100%, 0 0, 100% 0)
}

.lqd-bubble-arrow-start:after {
    inset-inline-start: calc((var(--lqd-bubble-arrow-w) - 1px) * -1);
    clip-path: polygon(100% 0, 100% 100%, 0 50%)
}

.lqd-text-vertical {
    writing-mode: vertical-lr;
    transform: rotate(180deg)
}

.lqd-widget-container-text-vertical > .elementor-widget-container {
    writing-mode: vertical-lr;
    transform: rotate(180deg)
}

[data-lqd-page-color-scheme=dark] .lqd-dark\:inline, [data-lqd-color-scheme=dark] .lqd-dark\:inline {
    display: inline
}

[data-lqd-page-color-scheme=dark] .lqd-dark\:block, [data-lqd-color-scheme=dark] .lqd-dark\:block {
    display: block
}

[data-lqd-page-color-scheme=dark] .lqd-dark\:inline-block, [data-lqd-color-scheme=dark] .lqd-dark\:inline-block {
    display: inline-block
}

[data-lqd-page-color-scheme=dark] .lqd-dark\:flex, [data-lqd-color-scheme=dark] .lqd-dark\:flex {
    display: flex
}

[data-lqd-page-color-scheme=dark] .lqd-dark\:inline-flex, [data-lqd-color-scheme=dark] .lqd-dark\:inline-flex {
    display: inline-flex
}

[data-lqd-page-color-scheme=dark] .lqd-dark\:hidden, [data-lqd-color-scheme=dark] .lqd-dark\:hidden {
    display: none
}

[data-lqd-container-is-sticky=true] .lqd-sticky\:inline {
    display: inline
}

[data-lqd-container-is-sticky=true] .lqd-sticky\:block {
    display: block
}

[data-lqd-container-is-sticky=true] .lqd-sticky\:inline-block {
    display: inline-block
}

[data-lqd-container-is-sticky=true] .lqd-sticky\:flex {
    display: flex
}

[data-lqd-container-is-sticky=true] .lqd-sticky\:inline-flex {
    display: inline-flex
}

[data-lqd-container-is-sticky=true] .lqd-sticky\:hidden {
    display: none
}

.e-child[data-lqd-hide-on-sticky=true], .e-child[data-lqd-show-on-sticky=true] {
    transition: background var(--background-transition,.3s),border var(--border-transition,.3s),box-shadow var(--border-transition,.3s),transform var(--e-con-transform-transition-duration,.4s),opacity var(--e-con-opacity-transition-duration,.3s),visibility var(--e-con-visibility-transition-duration,.3s)
}

.e-child[data-lqd-show-on-sticky=true], [data-lqd-container-is-sticky=true] .e-child[data-lqd-hide-on-sticky=true] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

[data-lqd-container-is-sticky=true] .e-child[data-lqd-show-on-sticky=true] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.lqd-has-before:before {
    content: attr(data-lqd-before-content)
}

.lqd-before\:flex:before {
    display: flex
}

.lqd-before\:inline-flex:before {
    display: inline-flex
}

.lqd-before\:block:before {
    display: block
}

.lqd-before\:inline-block:before {
    display: inline-block
}

.lqd-before\:w-full:before {
    width: 100%
}

.lqd-before\:w-px:before {
    width: 1px
}

.lqd-before\:h-full:before {
    height: 100%
}

.lqd-before\:h-px:before {
    height: 1px
}

.lqd-before\:absolute:before {
    position: absolute
}

.lqd-before\:relative:before {
    position: relative
}

.lqd-before\:top-0:before {
    top: 0
}

.lqd-before\:top-1\/2:before {
    top: 50%
}

.lqd-before\:top-full:before {
    top: 100%
}

.lqd-before\:bottom-0:before {
    bottom: 0
}

.lqd-before\:bottom-1\/2:before {
    bottom: 50%
}

.lqd-before\:bottom-full:before {
    bottom: 100%
}

.lqd-before\:start-0:before {
    inset-inline-start: 0
}

.lqd-before\:start-1\/2:before {
    inset-inline-start: 50%
}

.lqd-before\:start-full:before {
    inset-inline-start: 100%
}

.lqd-before\:end-0:before {
    inset-inline-end: 0
}

.lqd-before\:end-1\/2:before {
    inset-inline-end: 50%
}

.lqd-before\:end-full:before {
    inset-inline-end: 100%
}

.lqd-before\:rounded-inherit:before {
    border-radius: inherit
}

.lqd-before\:bg-current:before {
    background: currentColor
}

.lqd-before\:-translate-x-1\/2:before {
    --lqd-translate-x: -50%
}

.lqd-before\:translate-x-1\/2:before {
    --lqd-translate-x: 50%
}

.lqd-before\:-translate-x-full:before {
    --lqd-translate-x: -100%
}

.lqd-before\:translate-x-full:before {
    --lqd-translate-x: 100%
}

.lqd-before\:-translate-y-1\/2:before {
    --lqd-translate-y: -50%
}

.lqd-before\:translate-y-1\/2:before {
    --lqd-translate-y: 50%
}

.lqd-before\:-translate-y-full:before {
    --lqd-translate-y: -100%
}

.lqd-before\:translate-y-full:before {
    --lqd-translate-y: 100%
}

.lqd-has-after:after {
    content: attr(data-lqd-after-content)
}

.lqd-after\:flex:after {
    display: flex
}

.lqd-after\:inline-flex:after {
    display: inline-flex
}

.lqd-after\:block:after {
    display: block
}

.lqd-after\:inline-block:after {
    display: inline-block
}

.lqd-after\:w-full:after {
    width: 100%
}

.lqd-after\:w-px:after {
    width: 1px
}

.lqd-after\:h-full:after {
    height: 100%
}

.lqd-after\:h-px:after {
    height: 1px
}

.lqd-after\:absolute:after {
    position: absolute
}

.lqd-after\:relative:after {
    position: relative
}

.lqd-after\:top-0:after {
    top: 0
}

.lqd-after\:top-1\/2:after {
    top: 50%
}

.lqd-after\:top-full:after {
    top: 100%
}

.lqd-after\:bottom-0:after {
    bottom: 0
}

.lqd-after\:bottom-1\/2:after {
    bottom: 50%
}

.lqd-after\:bottom-full:after {
    bottom: 100%
}

.lqd-after\:start-0:after {
    inset-inline-start: 0
}

.lqd-after\:start-1\/2:after {
    inset-inline-start: 50%
}

.lqd-after\:start-full:after {
    inset-inline-start: 100%
}

.lqd-after\:end-0:after {
    inset-inline-end: 0
}

.lqd-after\:end-1\/2:after {
    inset-inline-end: 50%
}

.lqd-after\:end-full:after {
    inset-inline-end: 100%
}

.lqd-after\:rounded-inherit:after {
    border-radius: inherit
}

.lqd-after\:bg-current:after {
    background: currentColor
}

.lqd-after\:-translate-x-1\/2:after {
    --lqd-translate-x: -50%
}

.lqd-after\:translate-x-1\/2:after {
    --lqd-translate-x: 50%
}

.lqd-after\:-translate-x-full:after {
    --lqd-translate-x: -100%
}

.lqd-after\:translate-x-full:after {
    --lqd-translate-x: 100%
}

.lqd-after\:-translate-y-1\/2:after {
    --lqd-translate-y: -50%
}

.lqd-after\:translate-y-1\/2:after {
    --lqd-translate-y: 50%
}

.lqd-after\:-translate-y-full:after {
    --lqd-translate-y: -100%
}

.lqd-after\:translate-y-full:after {
    --lqd-translate-y: 100%
}

.text-start {
    text-align: start
}

.items-start {
    align-items: start
}

.justify-start {
    justify-content: start
}

.align-self-start {
    align-self: start
}

.text-center {
    text-align: center
}

.items-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.align-self-center {
    align-self: center
}

.text-end {
    text-align: end
}

.items-end {
    align-items: end
}

.justify-end {
    justify-content: end
}

.align-self-end {
    align-self: end
}

.align-self-stretch {
    align-self: stretch
}

.justify-between {
    justify-content: space-between
}

.columns-1 {
    grid-template-columns: repeat(1,1fr)
}

.columns-2 {
    grid-template-columns: repeat(2,1fr)
}

.columns-3 {
    grid-template-columns: repeat(3,1fr)
}

.columns-4 {
    grid-template-columns: repeat(4,1fr)
}

.columns-5 {
    grid-template-columns: repeat(5,1fr)
}

.columns-6 {
    grid-template-columns: repeat(6,1fr)
}

.columns-7 {
    grid-template-columns: repeat(7,1fr)
}

.columns-8 {
    grid-template-columns: repeat(8,1fr)
}

.columns-9 {
    grid-template-columns: repeat(9,1fr)
}

.columns-10 {
    grid-template-columns: repeat(10,1fr)
}

.columns-11 {
    grid-template-columns: repeat(11,1fr)
}

.columns-12 {
    grid-template-columns: repeat(12,1fr)
}

.gap-2 {
    gap: 2px
}

.gap-4 {
    gap: 4px
}

.gap-6 {
    gap: 6px
}

.gap-8 {
    gap: 8px
}

.gap-10 {
    gap: 10px
}

.gap-12 {
    gap: 12px
}

.gap-14 {
    gap: 14px
}

.gap-16 {
    gap: 16px
}

.gap-18 {
    gap: 18px
}

.gap-20 {
    gap: 20px
}

.gap-22 {
    gap: 22px
}

.gap-24 {
    gap: 24px
}

.gap-26 {
    gap: 26px
}

.gap-28 {
    gap: 28px
}

.gap-30 {
    gap: 30px
}

.w-1\/12 {
    width: 8.3333333333333%
}

.w-1\/5 {
    width: 8.3333333333333%
}

.w-2\/12 {
    width: 16.666666666667%
}

.w-2\/5 {
    width: 16.666666666667%
}

.w-3\/12 {
    width: 25%
}

.w-3\/5 {
    width: 25%
}

.w-4\/12 {
    width: 33.333333333333%
}

.w-4\/5 {
    width: 33.333333333333%
}

.w-5\/12 {
    width: 41.666666666667%
}

.w-5\/5 {
    width: 41.666666666667%
}

.w-6\/12 {
    width: 50%
}

.w-7\/12 {
    width: 58.333333333333%
}

.w-8\/12 {
    width: 66.666666666667%
}

.w-9\/12 {
    width: 75%
}

.w-10\/12 {
    width: 83.333333333333%
}

.w-11\/12 {
    width: 91.666666666667%
}

.w-2px {
    width: 2px
}

.h-2px {
    height: 2px
}

.pt-2 {
    padding-top: 2px
}

.mt-2 {
    margin-top: 2px
}

.pe-2 {
    padding-inline-end: 2px
}

.me-2 {
    margin-inline-end: 2px
}

.pb-2 {
    padding-bottom: 2px
}

.mb-2 {
    margin-bottom: 2px
}

.ps-2 {
    padding-inline-start: 2px
}

.ms-2 {
    margin-inline-start: 2px
}

.w-4px {
    width: 4px
}

.h-4px {
    height: 4px
}

.pt-4 {
    padding-top: 4px
}

.mt-4 {
    margin-top: 4px
}

.pe-4 {
    padding-inline-end: 4px
}

.me-4 {
    margin-inline-end: 4px
}

.pb-4 {
    padding-bottom: 4px
}

.mb-4 {
    margin-bottom: 4px
}

.ps-4 {
    padding-inline-start: 4px
}

.ms-4 {
    margin-inline-start: 4px
}

.w-6px {
    width: 6px
}

.h-6px {
    height: 6px
}

.pt-6 {
    padding-top: 6px
}

.mt-6 {
    margin-top: 6px
}

.pe-6 {
    padding-inline-end: 6px
}

.me-6 {
    margin-inline-end: 6px
}

.pb-6 {
    padding-bottom: 6px
}

.mb-6 {
    margin-bottom: 6px
}

.ps-6 {
    padding-inline-start: 6px
}

.ms-6 {
    margin-inline-start: 6px
}

.w-8px {
    width: 8px
}

.h-8px {
    height: 8px
}

.pt-8 {
    padding-top: 8px
}

.mt-8 {
    margin-top: 8px
}

.pe-8 {
    padding-inline-end: 8px
}

.me-8 {
    margin-inline-end: 8px
}

.pb-8 {
    padding-bottom: 8px
}

.mb-8 {
    margin-bottom: 8px
}

.ps-8 {
    padding-inline-start: 8px
}

.ms-8 {
    margin-inline-start: 8px
}

.w-10px {
    width: 10px
}

.h-10px {
    height: 10px
}

.pt-10 {
    padding-top: 10px
}

.mt-10 {
    margin-top: 10px
}

.pe-10 {
    padding-inline-end: 10px
}

.me-10 {
    margin-inline-end: 10px
}

.pb-10 {
    padding-bottom: 10px
}

.mb-10 {
    margin-bottom: 10px
}

.ps-10 {
    padding-inline-start: 10px
}

.ms-10 {
    margin-inline-start: 10px
}

.w-12px {
    width: 12px
}

.h-12px {
    height: 12px
}

.pt-12 {
    padding-top: 12px
}

.mt-12 {
    margin-top: 12px
}

.pe-12 {
    padding-inline-end: 12px
}

.me-12 {
    margin-inline-end: 12px
}

.pb-12 {
    padding-bottom: 12px
}

.mb-12 {
    margin-bottom: 12px
}

.ps-12 {
    padding-inline-start: 12px
}

.ms-12 {
    margin-inline-start: 12px
}

.w-14px {
    width: 14px
}

.h-14px {
    height: 14px
}

.pt-14 {
    padding-top: 14px
}

.mt-14 {
    margin-top: 14px
}

.pe-14 {
    padding-inline-end: 14px
}

.me-14 {
    margin-inline-end: 14px
}

.pb-14 {
    padding-bottom: 14px
}

.mb-14 {
    margin-bottom: 14px
}

.ps-14 {
    padding-inline-start: 14px
}

.ms-14 {
    margin-inline-start: 14px
}

.w-16px {
    width: 16px
}

.h-16px {
    height: 16px
}

.pt-16 {
    padding-top: 16px
}

.mt-16 {
    margin-top: 16px
}

.pe-16 {
    padding-inline-end: 16px
}

.me-16 {
    margin-inline-end: 16px
}

.pb-16 {
    padding-bottom: 16px
}

.mb-16 {
    margin-bottom: 16px
}

.ps-16 {
    padding-inline-start: 16px
}

.ms-16 {
    margin-inline-start: 16px
}

.w-18px {
    width: 18px
}

.h-18px {
    height: 18px
}

.pt-18 {
    padding-top: 18px
}

.mt-18 {
    margin-top: 18px
}

.pe-18 {
    padding-inline-end: 18px
}

.me-18 {
    margin-inline-end: 18px
}

.pb-18 {
    padding-bottom: 18px
}

.mb-18 {
    margin-bottom: 18px
}

.ps-18 {
    padding-inline-start: 18px
}

.ms-18 {
    margin-inline-start: 18px
}

.w-20px {
    width: 20px
}

.h-20px {
    height: 20px
}

.pt-20 {
    padding-top: 20px
}

.mt-20 {
    margin-top: 20px
}

.pe-20 {
    padding-inline-end: 20px
}

.me-20 {
    margin-inline-end: 20px
}

.pb-20 {
    padding-bottom: 20px
}

.mb-20 {
    margin-bottom: 20px
}

.ps-20 {
    padding-inline-start: 20px
}

.ms-20 {
    margin-inline-start: 20px
}

.w-22px {
    width: 22px
}

.h-22px {
    height: 22px
}

.pt-22 {
    padding-top: 22px
}

.mt-22 {
    margin-top: 22px
}

.pe-22 {
    padding-inline-end: 22px
}

.me-22 {
    margin-inline-end: 22px
}

.pb-22 {
    padding-bottom: 22px
}

.mb-22 {
    margin-bottom: 22px
}

.ps-22 {
    padding-inline-start: 22px
}

.ms-22 {
    margin-inline-start: 22px
}

.w-24px {
    width: 24px
}

.h-24px {
    height: 24px
}

.pt-24 {
    padding-top: 24px
}

.mt-24 {
    margin-top: 24px
}

.pe-24 {
    padding-inline-end: 24px
}

.me-24 {
    margin-inline-end: 24px
}

.pb-24 {
    padding-bottom: 24px
}

.mb-24 {
    margin-bottom: 24px
}

.ps-24 {
    padding-inline-start: 24px
}

.ms-24 {
    margin-inline-start: 24px
}

.w-26px {
    width: 26px
}

.h-26px {
    height: 26px
}

.pt-26 {
    padding-top: 26px
}

.mt-26 {
    margin-top: 26px
}

.pe-26 {
    padding-inline-end: 26px
}

.me-26 {
    margin-inline-end: 26px
}

.pb-26 {
    padding-bottom: 26px
}

.mb-26 {
    margin-bottom: 26px
}

.ps-26 {
    padding-inline-start: 26px
}

.ms-26 {
    margin-inline-start: 26px
}

.w-28px {
    width: 28px
}

.h-28px {
    height: 28px
}

.pt-28 {
    padding-top: 28px
}

.mt-28 {
    margin-top: 28px
}

.pe-28 {
    padding-inline-end: 28px
}

.me-28 {
    margin-inline-end: 28px
}

.pb-28 {
    padding-bottom: 28px
}

.mb-28 {
    margin-bottom: 28px
}

.ps-28 {
    padding-inline-start: 28px
}

.ms-28 {
    margin-inline-start: 28px
}

.w-30px {
    width: 30px
}

.h-30px {
    height: 30px
}

.pt-30 {
    padding-top: 30px
}

.mt-30 {
    margin-top: 30px
}

.pe-30 {
    padding-inline-end: 30px
}

.me-30 {
    margin-inline-end: 30px
}

.pb-30 {
    padding-bottom: 30px
}

.mb-30 {
    margin-bottom: 30px
}

.ps-30 {
    padding-inline-start: 30px
}

.ms-30 {
    margin-inline-start: 30px
}

.w-32px {
    width: 32px
}

.h-32px {
    height: 32px
}

.pt-32 {
    padding-top: 32px
}

.mt-32 {
    margin-top: 32px
}

.pe-32 {
    padding-inline-end: 32px
}

.me-32 {
    margin-inline-end: 32px
}

.pb-32 {
    padding-bottom: 32px
}

.mb-32 {
    margin-bottom: 32px
}

.ps-32 {
    padding-inline-start: 32px
}

.ms-32 {
    margin-inline-start: 32px
}

.w-34px {
    width: 34px
}

.h-34px {
    height: 34px
}

.pt-34 {
    padding-top: 34px
}

.mt-34 {
    margin-top: 34px
}

.pe-34 {
    padding-inline-end: 34px
}

.me-34 {
    margin-inline-end: 34px
}

.pb-34 {
    padding-bottom: 34px
}

.mb-34 {
    margin-bottom: 34px
}

.ps-34 {
    padding-inline-start: 34px
}

.ms-34 {
    margin-inline-start: 34px
}

.w-36px {
    width: 36px
}

.h-36px {
    height: 36px
}

.pt-36 {
    padding-top: 36px
}

.mt-36 {
    margin-top: 36px
}

.pe-36 {
    padding-inline-end: 36px
}

.me-36 {
    margin-inline-end: 36px
}

.pb-36 {
    padding-bottom: 36px
}

.mb-36 {
    margin-bottom: 36px
}

.ps-36 {
    padding-inline-start: 36px
}

.ms-36 {
    margin-inline-start: 36px
}

.w-38px {
    width: 38px
}

.h-38px {
    height: 38px
}

.pt-38 {
    padding-top: 38px
}

.mt-38 {
    margin-top: 38px
}

.pe-38 {
    padding-inline-end: 38px
}

.me-38 {
    margin-inline-end: 38px
}

.pb-38 {
    padding-bottom: 38px
}

.mb-38 {
    margin-bottom: 38px
}

.ps-38 {
    padding-inline-start: 38px
}

.ms-38 {
    margin-inline-start: 38px
}

.w-40px {
    width: 40px
}

.h-40px {
    height: 40px
}

.pt-40 {
    padding-top: 40px
}

.mt-40 {
    margin-top: 40px
}

.pe-40 {
    padding-inline-end: 40px
}

.me-40 {
    margin-inline-end: 40px
}

.pb-40 {
    padding-bottom: 40px
}

.mb-40 {
    margin-bottom: 40px
}

.ps-40 {
    padding-inline-start: 40px
}

.ms-40 {
    margin-inline-start: 40px
}

.w-42px {
    width: 42px
}

.h-42px {
    height: 42px
}

.pt-42 {
    padding-top: 42px
}

.mt-42 {
    margin-top: 42px
}

.pe-42 {
    padding-inline-end: 42px
}

.me-42 {
    margin-inline-end: 42px
}

.pb-42 {
    padding-bottom: 42px
}

.mb-42 {
    margin-bottom: 42px
}

.ps-42 {
    padding-inline-start: 42px
}

.ms-42 {
    margin-inline-start: 42px
}

.w-44px {
    width: 44px
}

.h-44px {
    height: 44px
}

.pt-44 {
    padding-top: 44px
}

.mt-44 {
    margin-top: 44px
}

.pe-44 {
    padding-inline-end: 44px
}

.me-44 {
    margin-inline-end: 44px
}

.pb-44 {
    padding-bottom: 44px
}

.mb-44 {
    margin-bottom: 44px
}

.ps-44 {
    padding-inline-start: 44px
}

.ms-44 {
    margin-inline-start: 44px
}

.w-46px {
    width: 46px
}

.h-46px {
    height: 46px
}

.pt-46 {
    padding-top: 46px
}

.mt-46 {
    margin-top: 46px
}

.pe-46 {
    padding-inline-end: 46px
}

.me-46 {
    margin-inline-end: 46px
}

.pb-46 {
    padding-bottom: 46px
}

.mb-46 {
    margin-bottom: 46px
}

.ps-46 {
    padding-inline-start: 46px
}

.ms-46 {
    margin-inline-start: 46px
}

.w-48px {
    width: 48px
}

.h-48px {
    height: 48px
}

.pt-48 {
    padding-top: 48px
}

.mt-48 {
    margin-top: 48px
}

.pe-48 {
    padding-inline-end: 48px
}

.me-48 {
    margin-inline-end: 48px
}

.pb-48 {
    padding-bottom: 48px
}

.mb-48 {
    margin-bottom: 48px
}

.ps-48 {
    padding-inline-start: 48px
}

.ms-48 {
    margin-inline-start: 48px
}

.w-50px {
    width: 50px
}

.h-50px {
    height: 50px
}

.pt-50 {
    padding-top: 50px
}

.mt-50 {
    margin-top: 50px
}

.pe-50 {
    padding-inline-end: 50px
}

.me-50 {
    margin-inline-end: 50px
}

.pb-50 {
    padding-bottom: 50px
}

.mb-50 {
    margin-bottom: 50px
}

.ps-50 {
    padding-inline-start: 50px
}

.ms-50 {
    margin-inline-start: 50px
}

.w-52px {
    width: 52px
}

.h-52px {
    height: 52px
}

.pt-52 {
    padding-top: 52px
}

.mt-52 {
    margin-top: 52px
}

.pe-52 {
    padding-inline-end: 52px
}

.me-52 {
    margin-inline-end: 52px
}

.pb-52 {
    padding-bottom: 52px
}

.mb-52 {
    margin-bottom: 52px
}

.ps-52 {
    padding-inline-start: 52px
}

.ms-52 {
    margin-inline-start: 52px
}

.w-54px {
    width: 54px
}

.h-54px {
    height: 54px
}

.pt-54 {
    padding-top: 54px
}

.mt-54 {
    margin-top: 54px
}

.pe-54 {
    padding-inline-end: 54px
}

.me-54 {
    margin-inline-end: 54px
}

.pb-54 {
    padding-bottom: 54px
}

.mb-54 {
    margin-bottom: 54px
}

.ps-54 {
    padding-inline-start: 54px
}

.ms-54 {
    margin-inline-start: 54px
}

.w-56px {
    width: 56px
}

.h-56px {
    height: 56px
}

.pt-56 {
    padding-top: 56px
}

.mt-56 {
    margin-top: 56px
}

.pe-56 {
    padding-inline-end: 56px
}

.me-56 {
    margin-inline-end: 56px
}

.pb-56 {
    padding-bottom: 56px
}

.mb-56 {
    margin-bottom: 56px
}

.ps-56 {
    padding-inline-start: 56px
}

.ms-56 {
    margin-inline-start: 56px
}

.w-58px {
    width: 58px
}

.h-58px {
    height: 58px
}

.pt-58 {
    padding-top: 58px
}

.mt-58 {
    margin-top: 58px
}

.pe-58 {
    padding-inline-end: 58px
}

.me-58 {
    margin-inline-end: 58px
}

.pb-58 {
    padding-bottom: 58px
}

.mb-58 {
    margin-bottom: 58px
}

.ps-58 {
    padding-inline-start: 58px
}

.ms-58 {
    margin-inline-start: 58px
}

.w-60px {
    width: 60px
}

.h-60px {
    height: 60px
}

.pt-60 {
    padding-top: 60px
}

.mt-60 {
    margin-top: 60px
}

.pe-60 {
    padding-inline-end: 60px
}

.me-60 {
    margin-inline-end: 60px
}

.pb-60 {
    padding-bottom: 60px
}

.mb-60 {
    margin-bottom: 60px
}

.ps-60 {
    padding-inline-start: 60px
}

.ms-60 {
    margin-inline-start: 60px
}

.w-62px {
    width: 62px
}

.h-62px {
    height: 62px
}

.pt-62 {
    padding-top: 62px
}

.mt-62 {
    margin-top: 62px
}

.pe-62 {
    padding-inline-end: 62px
}

.me-62 {
    margin-inline-end: 62px
}

.pb-62 {
    padding-bottom: 62px
}

.mb-62 {
    margin-bottom: 62px
}

.ps-62 {
    padding-inline-start: 62px
}

.ms-62 {
    margin-inline-start: 62px
}

.w-64px {
    width: 64px
}

.h-64px {
    height: 64px
}

.pt-64 {
    padding-top: 64px
}

.mt-64 {
    margin-top: 64px
}

.pe-64 {
    padding-inline-end: 64px
}

.me-64 {
    margin-inline-end: 64px
}

.pb-64 {
    padding-bottom: 64px
}

.mb-64 {
    margin-bottom: 64px
}

.ps-64 {
    padding-inline-start: 64px
}

.ms-64 {
    margin-inline-start: 64px
}

.rounded-2 {
    border-radius: 2px
}

.rounded-4 {
    border-radius: 4px
}

.rounded-6 {
    border-radius: 6px
}

.rounded-8 {
    border-radius: 8px
}

.rounded-10 {
    border-radius: 10px
}

.rounded-12 {
    border-radius: 12px
}

.rounded-14 {
    border-radius: 14px
}

.rounded-16 {
    border-radius: 16px
}

.rounded-18 {
    border-radius: 18px
}

.rounded-20 {
    border-radius: 20px
}

.rounded-22 {
    border-radius: 22px
}

.rounded-24 {
    border-radius: 24px
}

.-order-3 {
    order: -3
}

.-order-2 {
    order: -2
}

.-order-1 {
    order: -1
}

.order-0 {
    order: 0
}

.order-1 {
    order: 1
}

.order-2 {
    order: 2
}

.order-3 {
    order: 3
}

.-z-1 {
    z-index: -1
}

.z-0 {
    z-index: 0
}

.z-1 {
    z-index: 1
}

.z-2 {
    z-index: 2
}

.z-3 {
    z-index: 3
}

.z-4 {
    z-index: 4
}

.z-5 {
    z-index: 5
}

.z-6 {
    z-index: 6
}

.z-7 {
    z-index: 7
}

.z-8 {
    z-index: 8
}

.z-9 {
    z-index: 9
}

.z-10 {
    z-index: 10
}

.z-99 {
    z-index: 99
}

.opacity-0 {
    opacity: 0
}

.lqd-before\:opacity-0:before {
    opacity: 0
}

.lqd-after\:opacity-0:after {
    opacity: 0
}

.opacity-5 {
    opacity: 0.05
}

.lqd-before\:opacity-5:before {
    opacity: 0.05
}

.lqd-after\:opacity-5:after {
    opacity: 0.05
}

.opacity-10 {
    opacity: 0.1
}

.lqd-before\:opacity-10:before {
    opacity: 0.1
}

.lqd-after\:opacity-10:after {
    opacity: 0.1
}

.opacity-15 {
    opacity: 0.15
}

.lqd-before\:opacity-15:before {
    opacity: 0.15
}

.lqd-after\:opacity-15:after {
    opacity: 0.15
}

.opacity-20 {
    opacity: 0.2
}

.lqd-before\:opacity-20:before {
    opacity: 0.2
}

.lqd-after\:opacity-20:after {
    opacity: 0.2
}

.opacity-25 {
    opacity: 0.25
}

.lqd-before\:opacity-25:before {
    opacity: 0.25
}

.lqd-after\:opacity-25:after {
    opacity: 0.25
}

.opacity-30 {
    opacity: 0.3
}

.lqd-before\:opacity-30:before {
    opacity: 0.3
}

.lqd-after\:opacity-30:after {
    opacity: 0.3
}

.opacity-35 {
    opacity: 0.35
}

.lqd-before\:opacity-35:before {
    opacity: 0.35
}

.lqd-after\:opacity-35:after {
    opacity: 0.35
}

.opacity-40 {
    opacity: 0.4
}

.lqd-before\:opacity-40:before {
    opacity: 0.4
}

.lqd-after\:opacity-40:after {
    opacity: 0.4
}

.opacity-45 {
    opacity: 0.45
}

.lqd-before\:opacity-45:before {
    opacity: 0.45
}

.lqd-after\:opacity-45:after {
    opacity: 0.45
}

.opacity-50 {
    opacity: 0.5
}

.lqd-before\:opacity-50:before {
    opacity: 0.5
}

.lqd-after\:opacity-50:after {
    opacity: 0.5
}

.opacity-55 {
    opacity: 0.55
}

.lqd-before\:opacity-55:before {
    opacity: 0.55
}

.lqd-after\:opacity-55:after {
    opacity: 0.55
}

.opacity-60 {
    opacity: 0.6
}

.lqd-before\:opacity-60:before {
    opacity: 0.6
}

.lqd-after\:opacity-60:after {
    opacity: 0.6
}

.opacity-65 {
    opacity: 0.65
}

.lqd-before\:opacity-65:before {
    opacity: 0.65
}

.lqd-after\:opacity-65:after {
    opacity: 0.65
}

.opacity-70 {
    opacity: 0.7
}

.lqd-before\:opacity-70:before {
    opacity: 0.7
}

.lqd-after\:opacity-70:after {
    opacity: 0.7
}

.opacity-75 {
    opacity: 0.75
}

.lqd-before\:opacity-75:before {
    opacity: 0.75
}

.lqd-after\:opacity-75:after {
    opacity: 0.75
}

.opacity-80 {
    opacity: 0.8
}

.lqd-before\:opacity-80:before {
    opacity: 0.8
}

.lqd-after\:opacity-80:after {
    opacity: 0.8
}

.opacity-85 {
    opacity: 0.85
}

.lqd-before\:opacity-85:before {
    opacity: 0.85
}

.lqd-after\:opacity-85:after {
    opacity: 0.85
}

.opacity-90 {
    opacity: 0.9
}

.lqd-before\:opacity-90:before {
    opacity: 0.9
}

.lqd-after\:opacity-90:after {
    opacity: 0.9
}

.opacity-95 {
    opacity: 0.95
}

.lqd-before\:opacity-95:before {
    opacity: 0.95
}

.lqd-after\:opacity-95:after {
    opacity: 0.95
}

.opacity-100 {
    opacity: 1
}

.lqd-before\:opacity-100:before {
    opacity: 1
}

.lqd-after\:opacity-100:after {
    opacity: 1
}

.text-percent-30 {
    font-size: 0.3em
}

.text-percent-35 {
    font-size: 0.35em
}

.text-percent-40 {
    font-size: 0.4em
}

.text-percent-45 {
    font-size: 0.45em
}

.text-percent-50 {
    font-size: 0.5em
}

.text-percent-55 {
    font-size: 0.55em
}

.text-percent-60 {
    font-size: 0.6em
}

.text-percent-65 {
    font-size: 0.65em
}

.text-percent-70 {
    font-size: 0.7em
}

.text-percent-75 {
    font-size: 0.75em
}

.text-percent-80 {
    font-size: 0.8em
}

.text-percent-85 {
    font-size: 0.85em
}

.text-percent-90 {
    font-size: 0.9em
}

.text-percent-95 {
    font-size: 0.95em
}

.text-percent-100 {
    font-size: 1em
}

.text-percent-105 {
    font-size: 1.05em
}

.text-percent-110 {
    font-size: 1.1em
}

.text-percent-115 {
    font-size: 1.15em
}

.text-percent-120 {
    font-size: 1.2em
}

.text-percent-125 {
    font-size: 1.25em
}

.text-percent-130 {
    font-size: 1.3em
}

.text-percent-135 {
    font-size: 1.35em
}

.text-percent-140 {
    font-size: 1.4em
}

.text-percent-145 {
    font-size: 1.45em
}

.text-percent-150 {
    font-size: 1.5em
}

.text-percent-200 {
    font-size: 2em
}

.text-percent-300 {
    font-size: 3em
}

.text-10 {
    font-size: 10px
}

.text-12 {
    font-size: 12px
}

.text-14 {
    font-size: 14px
}

.text-16 {
    font-size: 16px
}

.text-18 {
    font-size: 18px
}

.text-20 {
    font-size: 20px
}

.text-22 {
    font-size: 22px
}

.text-24 {
    font-size: 24px
}

.text-26 {
    font-size: 26px
}

.leading-105 {
    line-height: 1.05em
}

.leading-110 {
    line-height: 1.1em
}

.leading-115 {
    line-height: 1.15em
}

.leading-120 {
    line-height: 1.2em
}

.leading-125 {
    line-height: 1.25em
}

.leading-130 {
    line-height: 1.3em
}

.leading-135 {
    line-height: 1.35em
}

.leading-140 {
    line-height: 1.4em
}

.leading-145 {
    line-height: 1.45em
}

.leading-150 {
    line-height: 1.5em
}

.leading-155 {
    line-height: 1.55em
}

.leading-160 {
    line-height: 1.6em
}

.leading-165 {
    line-height: 1.65em
}

.leading-170 {
    line-height: 1.7em
}

.leading-175 {
    line-height: 1.75em
}

.leading-180 {
    line-height: 1.8em
}

.leading-185 {
    line-height: 1.85em
}

.leading-190 {
    line-height: 1.9em
}

.leading-195 {
    line-height: 1.95em
}

.leading-200 {
    line-height: 2em
}

.tracking-50 {
    letter-spacing: 0.05em
}

.tracking-100 {
    letter-spacing: 0.1em
}

.tracking-150 {
    letter-spacing: 0.15em
}

.tracking-200 {
    letter-spacing: 0.2em
}

.origin-left {
    transform-origin: left
}

.origin-center {
    transform-origin: center
}

.origin-right {
    transform-origin: right
}

.origin-left-top {
    transform-origin: left top
}

.origin-center-top {
    transform-origin: center top
}

.origin-right-top {
    transform-origin: right top
}

.origin-left-center {
    transform-origin: left center
}

.origin-right-center {
    transform-origin: right center
}

.origin-left-bottom {
    transform-origin: left bottom
}

.origin-center-bottom {
    transform-origin: center bottom
}

.origin-right-bottom {
    transform-origin: right bottom
}

@media (max-width: 1200px) {
    .tablet-extra\:columns-1 {
        grid-template-columns: repeat(1,1fr)
    }

    .tablet-extra\:columns-2 {
        grid-template-columns: repeat(2,1fr)
    }

    .tablet-extra\:columns-3 {
        grid-template-columns: repeat(3,1fr)
    }

    .tablet-extra\:columns-4 {
        grid-template-columns: repeat(4,1fr)
    }

    .tablet-extra\:columns-5 {
        grid-template-columns: repeat(5,1fr)
    }

    .tablet-extra\:columns-6 {
        grid-template-columns: repeat(6,1fr)
    }

    .tablet-extra\:columns-7 {
        grid-template-columns: repeat(7,1fr)
    }

    .tablet-extra\:columns-8 {
        grid-template-columns: repeat(8,1fr)
    }

    .tablet-extra\:columns-9 {
        grid-template-columns: repeat(9,1fr)
    }

    .tablet-extra\:columns-10 {
        grid-template-columns: repeat(10,1fr)
    }

    .tablet-extra\:columns-11 {
        grid-template-columns: repeat(11,1fr)
    }

    .tablet-extra\:columns-12 {
        grid-template-columns: repeat(12,1fr)
    }

    .tablet-extra\:w-1\/12 {
        width: 8.3333333333333%
    }

    .tablet-extra\:w-1\/5 {
        width: 8.3333333333333%
    }

    .tablet-extra\:w-2\/12 {
        width: 16.666666666667%
    }

    .tablet-extra\:w-2\/5 {
        width: 16.666666666667%
    }

    .tablet-extra\:w-3\/12 {
        width: 25%
    }

    .tablet-extra\:w-3\/5 {
        width: 25%
    }

    .tablet-extra\:w-4\/12 {
        width: 33.333333333333%
    }

    .tablet-extra\:w-4\/5 {
        width: 33.333333333333%
    }

    .tablet-extra\:w-5\/12 {
        width: 41.666666666667%
    }

    .tablet-extra\:w-5\/5 {
        width: 41.666666666667%
    }

    .tablet-extra\:w-6\/12 {
        width: 50%
    }

    .tablet-extra\:w-7\/12 {
        width: 58.333333333333%
    }

    .tablet-extra\:w-8\/12 {
        width: 66.666666666667%
    }

    .tablet-extra\:w-9\/12 {
        width: 75%
    }

    .tablet-extra\:w-10\/12 {
        width: 83.333333333333%
    }

    .tablet-extra\:w-11\/12 {
        width: 91.666666666667%
    }

    .tablet-extra\:w-full {
        width: 100%
    }
}

@media (max-width: 1024px) {
    .tablet\:columns-1 {
        grid-template-columns: repeat(1,1fr)
    }

    .tablet\:columns-2 {
        grid-template-columns: repeat(2,1fr)
    }

    .tablet\:columns-3 {
        grid-template-columns: repeat(3,1fr)
    }

    .tablet\:columns-4 {
        grid-template-columns: repeat(4,1fr)
    }

    .tablet\:columns-5 {
        grid-template-columns: repeat(5,1fr)
    }

    .tablet\:columns-6 {
        grid-template-columns: repeat(6,1fr)
    }

    .tablet\:columns-7 {
        grid-template-columns: repeat(7,1fr)
    }

    .tablet\:columns-8 {
        grid-template-columns: repeat(8,1fr)
    }

    .tablet\:columns-9 {
        grid-template-columns: repeat(9,1fr)
    }

    .tablet\:columns-10 {
        grid-template-columns: repeat(10,1fr)
    }

    .tablet\:columns-11 {
        grid-template-columns: repeat(11,1fr)
    }

    .tablet\:columns-12 {
        grid-template-columns: repeat(12,1fr)
    }

    .tablet\:w-1\/12 {
        width: 8.3333333333333%
    }

    .tablet\:w-1\/5 {
        width: 8.3333333333333%
    }

    .tablet\:w-2\/12 {
        width: 16.666666666667%
    }

    .tablet\:w-2\/5 {
        width: 16.666666666667%
    }

    .tablet\:w-3\/12 {
        width: 25%
    }

    .tablet\:w-3\/5 {
        width: 25%
    }

    .tablet\:w-4\/12 {
        width: 33.333333333333%
    }

    .tablet\:w-4\/5 {
        width: 33.333333333333%
    }

    .tablet\:w-5\/12 {
        width: 41.666666666667%
    }

    .tablet\:w-5\/5 {
        width: 41.666666666667%
    }

    .tablet\:w-6\/12 {
        width: 50%
    }

    .tablet\:w-7\/12 {
        width: 58.333333333333%
    }

    .tablet\:w-8\/12 {
        width: 66.666666666667%
    }

    .tablet\:w-9\/12 {
        width: 75%
    }

    .tablet\:w-10\/12 {
        width: 83.333333333333%
    }

    .tablet\:w-11\/12 {
        width: 91.666666666667%
    }

    .tablet\:w-full {
        width: 100%
    }

    .tablet\:mt-2 {
        margin-top: 2px
    }

    .tablet\:me-2 {
        margin-inline-end: 2px
    }

    .tablet\:mb-2 {
        margin-bottom: 2px
    }

    .tablet\:ms-2 {
        margin-inline-start: 2px
    }

    .tablet\:mt-4 {
        margin-top: 4px
    }

    .tablet\:me-4 {
        margin-inline-end: 4px
    }

    .tablet\:mb-4 {
        margin-bottom: 4px
    }

    .tablet\:ms-4 {
        margin-inline-start: 4px
    }

    .tablet\:mt-6 {
        margin-top: 6px
    }

    .tablet\:me-6 {
        margin-inline-end: 6px
    }

    .tablet\:mb-6 {
        margin-bottom: 6px
    }

    .tablet\:ms-6 {
        margin-inline-start: 6px
    }

    .tablet\:mt-8 {
        margin-top: 8px
    }

    .tablet\:me-8 {
        margin-inline-end: 8px
    }

    .tablet\:mb-8 {
        margin-bottom: 8px
    }

    .tablet\:ms-8 {
        margin-inline-start: 8px
    }

    .tablet\:mt-10 {
        margin-top: 10px
    }

    .tablet\:me-10 {
        margin-inline-end: 10px
    }

    .tablet\:mb-10 {
        margin-bottom: 10px
    }

    .tablet\:ms-10 {
        margin-inline-start: 10px
    }

    .tablet\:mt-12 {
        margin-top: 12px
    }

    .tablet\:me-12 {
        margin-inline-end: 12px
    }

    .tablet\:mb-12 {
        margin-bottom: 12px
    }

    .tablet\:ms-12 {
        margin-inline-start: 12px
    }

    .tablet\:mt-14 {
        margin-top: 14px
    }

    .tablet\:me-14 {
        margin-inline-end: 14px
    }

    .tablet\:mb-14 {
        margin-bottom: 14px
    }

    .tablet\:ms-14 {
        margin-inline-start: 14px
    }

    .tablet\:mt-16 {
        margin-top: 16px
    }

    .tablet\:me-16 {
        margin-inline-end: 16px
    }

    .tablet\:mb-16 {
        margin-bottom: 16px
    }

    .tablet\:ms-16 {
        margin-inline-start: 16px
    }

    .tablet\:mt-18 {
        margin-top: 18px
    }

    .tablet\:me-18 {
        margin-inline-end: 18px
    }

    .tablet\:mb-18 {
        margin-bottom: 18px
    }

    .tablet\:ms-18 {
        margin-inline-start: 18px
    }

    .tablet\:mt-20 {
        margin-top: 20px
    }

    .tablet\:me-20 {
        margin-inline-end: 20px
    }

    .tablet\:mb-20 {
        margin-bottom: 20px
    }

    .tablet\:ms-20 {
        margin-inline-start: 20px
    }

    .tablet\:mt-22 {
        margin-top: 22px
    }

    .tablet\:me-22 {
        margin-inline-end: 22px
    }

    .tablet\:mb-22 {
        margin-bottom: 22px
    }

    .tablet\:ms-22 {
        margin-inline-start: 22px
    }

    .tablet\:mt-24 {
        margin-top: 24px
    }

    .tablet\:me-24 {
        margin-inline-end: 24px
    }

    .tablet\:mb-24 {
        margin-bottom: 24px
    }

    .tablet\:ms-24 {
        margin-inline-start: 24px
    }

    .tablet\:mt-26 {
        margin-top: 26px
    }

    .tablet\:me-26 {
        margin-inline-end: 26px
    }

    .tablet\:mb-26 {
        margin-bottom: 26px
    }

    .tablet\:ms-26 {
        margin-inline-start: 26px
    }

    .tablet\:mt-28 {
        margin-top: 28px
    }

    .tablet\:me-28 {
        margin-inline-end: 28px
    }

    .tablet\:mb-28 {
        margin-bottom: 28px
    }

    .tablet\:ms-28 {
        margin-inline-start: 28px
    }

    .tablet\:mt-30 {
        margin-top: 30px
    }

    .tablet\:me-30 {
        margin-inline-end: 30px
    }

    .tablet\:mb-30 {
        margin-bottom: 30px
    }

    .tablet\:ms-30 {
        margin-inline-start: 30px
    }

    .tablet\:mt-32 {
        margin-top: 32px
    }

    .tablet\:me-32 {
        margin-inline-end: 32px
    }

    .tablet\:mb-32 {
        margin-bottom: 32px
    }

    .tablet\:ms-32 {
        margin-inline-start: 32px
    }

    .tablet\:mt-34 {
        margin-top: 34px
    }

    .tablet\:me-34 {
        margin-inline-end: 34px
    }

    .tablet\:mb-34 {
        margin-bottom: 34px
    }

    .tablet\:ms-34 {
        margin-inline-start: 34px
    }

    .tablet\:mt-36 {
        margin-top: 36px
    }

    .tablet\:me-36 {
        margin-inline-end: 36px
    }

    .tablet\:mb-36 {
        margin-bottom: 36px
    }

    .tablet\:ms-36 {
        margin-inline-start: 36px
    }

    .tablet\:mt-38 {
        margin-top: 38px
    }

    .tablet\:me-38 {
        margin-inline-end: 38px
    }

    .tablet\:mb-38 {
        margin-bottom: 38px
    }

    .tablet\:ms-38 {
        margin-inline-start: 38px
    }

    .tablet\:mt-40 {
        margin-top: 40px
    }

    .tablet\:me-40 {
        margin-inline-end: 40px
    }

    .tablet\:mb-40 {
        margin-bottom: 40px
    }

    .tablet\:ms-40 {
        margin-inline-start: 40px
    }

    .tablet\:mt-42 {
        margin-top: 42px
    }

    .tablet\:me-42 {
        margin-inline-end: 42px
    }

    .tablet\:mb-42 {
        margin-bottom: 42px
    }

    .tablet\:ms-42 {
        margin-inline-start: 42px
    }

    .tablet\:mt-44 {
        margin-top: 44px
    }

    .tablet\:me-44 {
        margin-inline-end: 44px
    }

    .tablet\:mb-44 {
        margin-bottom: 44px
    }

    .tablet\:ms-44 {
        margin-inline-start: 44px
    }

    .tablet\:mt-46 {
        margin-top: 46px
    }

    .tablet\:me-46 {
        margin-inline-end: 46px
    }

    .tablet\:mb-46 {
        margin-bottom: 46px
    }

    .tablet\:ms-46 {
        margin-inline-start: 46px
    }

    .tablet\:mt-48 {
        margin-top: 48px
    }

    .tablet\:me-48 {
        margin-inline-end: 48px
    }

    .tablet\:mb-48 {
        margin-bottom: 48px
    }

    .tablet\:ms-48 {
        margin-inline-start: 48px
    }

    .tablet\:mt-50 {
        margin-top: 50px
    }

    .tablet\:me-50 {
        margin-inline-end: 50px
    }

    .tablet\:mb-50 {
        margin-bottom: 50px
    }

    .tablet\:ms-50 {
        margin-inline-start: 50px
    }

    .tablet\:mt-52 {
        margin-top: 52px
    }

    .tablet\:me-52 {
        margin-inline-end: 52px
    }

    .tablet\:mb-52 {
        margin-bottom: 52px
    }

    .tablet\:ms-52 {
        margin-inline-start: 52px
    }

    .tablet\:mt-54 {
        margin-top: 54px
    }

    .tablet\:me-54 {
        margin-inline-end: 54px
    }

    .tablet\:mb-54 {
        margin-bottom: 54px
    }

    .tablet\:ms-54 {
        margin-inline-start: 54px
    }

    .tablet\:mt-56 {
        margin-top: 56px
    }

    .tablet\:me-56 {
        margin-inline-end: 56px
    }

    .tablet\:mb-56 {
        margin-bottom: 56px
    }

    .tablet\:ms-56 {
        margin-inline-start: 56px
    }

    .tablet\:mt-58 {
        margin-top: 58px
    }

    .tablet\:me-58 {
        margin-inline-end: 58px
    }

    .tablet\:mb-58 {
        margin-bottom: 58px
    }

    .tablet\:ms-58 {
        margin-inline-start: 58px
    }

    .tablet\:mt-60 {
        margin-top: 60px
    }

    .tablet\:me-60 {
        margin-inline-end: 60px
    }

    .tablet\:mb-60 {
        margin-bottom: 60px
    }

    .tablet\:ms-60 {
        margin-inline-start: 60px
    }

    .tablet\:mt-62 {
        margin-top: 62px
    }

    .tablet\:me-62 {
        margin-inline-end: 62px
    }

    .tablet\:mb-62 {
        margin-bottom: 62px
    }

    .tablet\:ms-62 {
        margin-inline-start: 62px
    }

    .tablet\:mt-64 {
        margin-top: 64px
    }

    .tablet\:me-64 {
        margin-inline-end: 64px
    }

    .tablet\:mb-64 {
        margin-bottom: 64px
    }

    .tablet\:ms-64 {
        margin-inline-start: 64px
    }

    .tablet\:.-order-3 {
        order: -3
    }

    .tablet\:.-order-2 {
        order: -2
    }

    .tablet\:.-order-1 {
        order: -1
    }

    .tablet\:.order-0 {
        order: 0
    }

    .tablet\:.order-1 {
        order: 1
    }

    .tablet\:.order-2 {
        order: 2
    }

    .tablet\:.order-3 {
        order: 3
    }
}

@media (max-width: 880px) {
    .mobile-extra\:columns-1 {
        grid-template-columns: repeat(1,1fr)
    }

    .mobile-extra\:columns-2 {
        grid-template-columns: repeat(2,1fr)
    }

    .mobile-extra\:columns-3 {
        grid-template-columns: repeat(3,1fr)
    }

    .mobile-extra\:columns-4 {
        grid-template-columns: repeat(4,1fr)
    }

    .mobile-extra\:columns-5 {
        grid-template-columns: repeat(5,1fr)
    }

    .mobile-extra\:columns-6 {
        grid-template-columns: repeat(6,1fr)
    }

    .mobile-extra\:columns-7 {
        grid-template-columns: repeat(7,1fr)
    }

    .mobile-extra\:columns-8 {
        grid-template-columns: repeat(8,1fr)
    }

    .mobile-extra\:columns-9 {
        grid-template-columns: repeat(9,1fr)
    }

    .mobile-extra\:columns-10 {
        grid-template-columns: repeat(10,1fr)
    }

    .mobile-extra\:columns-11 {
        grid-template-columns: repeat(11,1fr)
    }

    .mobile-extra\:columns-12 {
        grid-template-columns: repeat(12,1fr)
    }

    .mobile-extra\:w-1\/12 {
        width: 8.3333333333333%
    }

    .mobile-extra\:w-1\/5 {
        width: 8.3333333333333%
    }

    .mobile-extra\:w-2\/12 {
        width: 16.666666666667%
    }

    .mobile-extra\:w-2\/5 {
        width: 16.666666666667%
    }

    .mobile-extra\:w-3\/12 {
        width: 25%
    }

    .mobile-extra\:w-3\/5 {
        width: 25%
    }

    .mobile-extra\:w-4\/12 {
        width: 33.333333333333%
    }

    .mobile-extra\:w-4\/5 {
        width: 33.333333333333%
    }

    .mobile-extra\:w-5\/12 {
        width: 41.666666666667%
    }

    .mobile-extra\:w-5\/5 {
        width: 41.666666666667%
    }

    .mobile-extra\:w-6\/12 {
        width: 50%
    }

    .mobile-extra\:w-7\/12 {
        width: 58.333333333333%
    }

    .mobile-extra\:w-8\/12 {
        width: 66.666666666667%
    }

    .mobile-extra\:w-9\/12 {
        width: 75%
    }

    .mobile-extra\:w-10\/12 {
        width: 83.333333333333%
    }

    .mobile-extra\:w-11\/12 {
        width: 91.666666666667%
    }

    .mobile-extra\:w-full {
        width: 100%
    }
}

@media (max-width: 767px) {
    .mobile\:columns-1 {
        grid-template-columns: repeat(1,1fr)
    }

    .mobile\:columns-2 {
        grid-template-columns: repeat(2,1fr)
    }

    .mobile\:columns-3 {
        grid-template-columns: repeat(3,1fr)
    }

    .mobile\:columns-4 {
        grid-template-columns: repeat(4,1fr)
    }

    .mobile\:columns-5 {
        grid-template-columns: repeat(5,1fr)
    }

    .mobile\:columns-6 {
        grid-template-columns: repeat(6,1fr)
    }

    .mobile\:columns-7 {
        grid-template-columns: repeat(7,1fr)
    }

    .mobile\:columns-8 {
        grid-template-columns: repeat(8,1fr)
    }

    .mobile\:columns-9 {
        grid-template-columns: repeat(9,1fr)
    }

    .mobile\:columns-10 {
        grid-template-columns: repeat(10,1fr)
    }

    .mobile\:columns-11 {
        grid-template-columns: repeat(11,1fr)
    }

    .mobile\:columns-12 {
        grid-template-columns: repeat(12,1fr)
    }

    .mobile\:w-1\/12 {
        width: 8.3333333333333%
    }

    .mobile\:w-1\/5 {
        width: 8.3333333333333%
    }

    .mobile\:w-2\/12 {
        width: 16.666666666667%
    }

    .mobile\:w-2\/5 {
        width: 16.666666666667%
    }

    .mobile\:w-3\/12 {
        width: 25%
    }

    .mobile\:w-3\/5 {
        width: 25%
    }

    .mobile\:w-4\/12 {
        width: 33.333333333333%
    }

    .mobile\:w-4\/5 {
        width: 33.333333333333%
    }

    .mobile\:w-5\/12 {
        width: 41.666666666667%
    }

    .mobile\:w-5\/5 {
        width: 41.666666666667%
    }

    .mobile\:w-6\/12 {
        width: 50%
    }

    .mobile\:w-7\/12 {
        width: 58.333333333333%
    }

    .mobile\:w-8\/12 {
        width: 66.666666666667%
    }

    .mobile\:w-9\/12 {
        width: 75%
    }

    .mobile\:w-10\/12 {
        width: 83.333333333333%
    }

    .mobile\:w-11\/12 {
        width: 91.666666666667%
    }

    .mobile\:w-full {
        width: 100%
    }

    .mobile\:pt-2 {
        padding-top: 2px
    }

    .mobile\:pe-2 {
        padding-inline-end: 2px
    }

    .mobile\:pb-2 {
        padding-bottom: 2px
    }

    .mobile\:ps-2 {
        padding-inline-start: 2px
    }

    .mobile\:pt-4 {
        padding-top: 4px
    }

    .mobile\:pe-4 {
        padding-inline-end: 4px
    }

    .mobile\:pb-4 {
        padding-bottom: 4px
    }

    .mobile\:ps-4 {
        padding-inline-start: 4px
    }

    .mobile\:pt-6 {
        padding-top: 6px
    }

    .mobile\:pe-6 {
        padding-inline-end: 6px
    }

    .mobile\:pb-6 {
        padding-bottom: 6px
    }

    .mobile\:ps-6 {
        padding-inline-start: 6px
    }

    .mobile\:pt-8 {
        padding-top: 8px
    }

    .mobile\:pe-8 {
        padding-inline-end: 8px
    }

    .mobile\:pb-8 {
        padding-bottom: 8px
    }

    .mobile\:ps-8 {
        padding-inline-start: 8px
    }

    .mobile\:pt-10 {
        padding-top: 10px
    }

    .mobile\:pe-10 {
        padding-inline-end: 10px
    }

    .mobile\:pb-10 {
        padding-bottom: 10px
    }

    .mobile\:ps-10 {
        padding-inline-start: 10px
    }

    .mobile\:pt-12 {
        padding-top: 12px
    }

    .mobile\:pe-12 {
        padding-inline-end: 12px
    }

    .mobile\:pb-12 {
        padding-bottom: 12px
    }

    .mobile\:ps-12 {
        padding-inline-start: 12px
    }

    .mobile\:pt-14 {
        padding-top: 14px
    }

    .mobile\:pe-14 {
        padding-inline-end: 14px
    }

    .mobile\:pb-14 {
        padding-bottom: 14px
    }

    .mobile\:ps-14 {
        padding-inline-start: 14px
    }

    .mobile\:pt-16 {
        padding-top: 16px
    }

    .mobile\:pe-16 {
        padding-inline-end: 16px
    }

    .mobile\:pb-16 {
        padding-bottom: 16px
    }

    .mobile\:ps-16 {
        padding-inline-start: 16px
    }

    .mobile\:pt-18 {
        padding-top: 18px
    }

    .mobile\:pe-18 {
        padding-inline-end: 18px
    }

    .mobile\:pb-18 {
        padding-bottom: 18px
    }

    .mobile\:ps-18 {
        padding-inline-start: 18px
    }

    .mobile\:pt-20 {
        padding-top: 20px
    }

    .mobile\:pe-20 {
        padding-inline-end: 20px
    }

    .mobile\:pb-20 {
        padding-bottom: 20px
    }

    .mobile\:ps-20 {
        padding-inline-start: 20px
    }

    .mobile\:pt-22 {
        padding-top: 22px
    }

    .mobile\:pe-22 {
        padding-inline-end: 22px
    }

    .mobile\:pb-22 {
        padding-bottom: 22px
    }

    .mobile\:ps-22 {
        padding-inline-start: 22px
    }

    .mobile\:pt-24 {
        padding-top: 24px
    }

    .mobile\:pe-24 {
        padding-inline-end: 24px
    }

    .mobile\:pb-24 {
        padding-bottom: 24px
    }

    .mobile\:ps-24 {
        padding-inline-start: 24px
    }

    .mobile\:pt-26 {
        padding-top: 26px
    }

    .mobile\:pe-26 {
        padding-inline-end: 26px
    }

    .mobile\:pb-26 {
        padding-bottom: 26px
    }

    .mobile\:ps-26 {
        padding-inline-start: 26px
    }

    .mobile\:pt-28 {
        padding-top: 28px
    }

    .mobile\:pe-28 {
        padding-inline-end: 28px
    }

    .mobile\:pb-28 {
        padding-bottom: 28px
    }

    .mobile\:ps-28 {
        padding-inline-start: 28px
    }

    .mobile\:pt-30 {
        padding-top: 30px
    }

    .mobile\:pe-30 {
        padding-inline-end: 30px
    }

    .mobile\:pb-30 {
        padding-bottom: 30px
    }

    .mobile\:ps-30 {
        padding-inline-start: 30px
    }

    .mobile\:pt-32 {
        padding-top: 32px
    }

    .mobile\:pe-32 {
        padding-inline-end: 32px
    }

    .mobile\:pb-32 {
        padding-bottom: 32px
    }

    .mobile\:ps-32 {
        padding-inline-start: 32px
    }

    .mobile\:pt-34 {
        padding-top: 34px
    }

    .mobile\:pe-34 {
        padding-inline-end: 34px
    }

    .mobile\:pb-34 {
        padding-bottom: 34px
    }

    .mobile\:ps-34 {
        padding-inline-start: 34px
    }

    .mobile\:pt-36 {
        padding-top: 36px
    }

    .mobile\:pe-36 {
        padding-inline-end: 36px
    }

    .mobile\:pb-36 {
        padding-bottom: 36px
    }

    .mobile\:ps-36 {
        padding-inline-start: 36px
    }

    .mobile\:pt-38 {
        padding-top: 38px
    }

    .mobile\:pe-38 {
        padding-inline-end: 38px
    }

    .mobile\:pb-38 {
        padding-bottom: 38px
    }

    .mobile\:ps-38 {
        padding-inline-start: 38px
    }

    .mobile\:pt-40 {
        padding-top: 40px
    }

    .mobile\:pe-40 {
        padding-inline-end: 40px
    }

    .mobile\:pb-40 {
        padding-bottom: 40px
    }

    .mobile\:ps-40 {
        padding-inline-start: 40px
    }

    .mobile\:pt-42 {
        padding-top: 42px
    }

    .mobile\:pe-42 {
        padding-inline-end: 42px
    }

    .mobile\:pb-42 {
        padding-bottom: 42px
    }

    .mobile\:ps-42 {
        padding-inline-start: 42px
    }

    .mobile\:pt-44 {
        padding-top: 44px
    }

    .mobile\:pe-44 {
        padding-inline-end: 44px
    }

    .mobile\:pb-44 {
        padding-bottom: 44px
    }

    .mobile\:ps-44 {
        padding-inline-start: 44px
    }

    .mobile\:pt-46 {
        padding-top: 46px
    }

    .mobile\:pe-46 {
        padding-inline-end: 46px
    }

    .mobile\:pb-46 {
        padding-bottom: 46px
    }

    .mobile\:ps-46 {
        padding-inline-start: 46px
    }

    .mobile\:pt-48 {
        padding-top: 48px
    }

    .mobile\:pe-48 {
        padding-inline-end: 48px
    }

    .mobile\:pb-48 {
        padding-bottom: 48px
    }

    .mobile\:ps-48 {
        padding-inline-start: 48px
    }

    .mobile\:pt-50 {
        padding-top: 50px
    }

    .mobile\:pe-50 {
        padding-inline-end: 50px
    }

    .mobile\:pb-50 {
        padding-bottom: 50px
    }

    .mobile\:ps-50 {
        padding-inline-start: 50px
    }

    .mobile\:pt-52 {
        padding-top: 52px
    }

    .mobile\:pe-52 {
        padding-inline-end: 52px
    }

    .mobile\:pb-52 {
        padding-bottom: 52px
    }

    .mobile\:ps-52 {
        padding-inline-start: 52px
    }

    .mobile\:pt-54 {
        padding-top: 54px
    }

    .mobile\:pe-54 {
        padding-inline-end: 54px
    }

    .mobile\:pb-54 {
        padding-bottom: 54px
    }

    .mobile\:ps-54 {
        padding-inline-start: 54px
    }

    .mobile\:pt-56 {
        padding-top: 56px
    }

    .mobile\:pe-56 {
        padding-inline-end: 56px
    }

    .mobile\:pb-56 {
        padding-bottom: 56px
    }

    .mobile\:ps-56 {
        padding-inline-start: 56px
    }

    .mobile\:pt-58 {
        padding-top: 58px
    }

    .mobile\:pe-58 {
        padding-inline-end: 58px
    }

    .mobile\:pb-58 {
        padding-bottom: 58px
    }

    .mobile\:ps-58 {
        padding-inline-start: 58px
    }

    .mobile\:pt-60 {
        padding-top: 60px
    }

    .mobile\:pe-60 {
        padding-inline-end: 60px
    }

    .mobile\:pb-60 {
        padding-bottom: 60px
    }

    .mobile\:ps-60 {
        padding-inline-start: 60px
    }

    .mobile\:pt-62 {
        padding-top: 62px
    }

    .mobile\:pe-62 {
        padding-inline-end: 62px
    }

    .mobile\:pb-62 {
        padding-bottom: 62px
    }

    .mobile\:ps-62 {
        padding-inline-start: 62px
    }

    .mobile\:pt-64 {
        padding-top: 64px
    }

    .mobile\:pe-64 {
        padding-inline-end: 64px
    }

    .mobile\:pb-64 {
        padding-bottom: 64px
    }

    .mobile\:ps-64 {
        padding-inline-start: 64px
    }

    .mobile\:.-order-3 {
        order: -3
    }

    .mobile\:.-order-2 {
        order: -2
    }

    .mobile\:.-order-1 {
        order: -1
    }

    .mobile\:.order-0 {
        order: 0
    }

    .mobile\:.order-1 {
        order: 1
    }

    .mobile\:.order-2 {
        order: 2
    }

    .mobile\:.order-3 {
        order: 3
    }
}
