:root {
    --ds-black: #252627;
    --ds-white: #fff;
    --ds-strong-green: #00BE83;
    --ds-font: "Plus Jakarta Sans";
    --ds-white-rgb: 255, 255, 255;
    --ds-light: var(--ds-white);
    --ds-light-rgb: var(--ds-white-rgb);
    --ds-black-rgb: 37, 38, 39;
    --ds-dark: var(--ds-black);
    --ds-dark-rgb: var(--ds-black-rgb);
    --ds-color-theme: "Light";
    --ds-theme-value: 0;
    --ds-light-opacity: 1;
    --ds-logo-invert: 0;
    --ds-margin-web: 128px;
    --ds-iphone-white: url('../IMAGENES/iphonelight.svg');
    --ds-iphone-black: url('../IMAGENES/iphonedark.svg');
    --ds-iphone-light: var(--ds-iphone-white);
    --ds-iphone-dark: var(--ds-iphone-black);
    --ds-logo-white: url('../IMAGENES/Logo.svg');
    --ds-logo-black: url('../IMAGENES/LogoLight.svg');
    --ds-logo-light: var(--ds-logo-white);
    --ds-logo-dark: var(--ds-logo-black);
}

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

body, html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    margin: 0;
    scroll-behavior: smooth;
    background-color: #f1f1f1;
    transition: background-color .2s ease-in
}

/**
 * ----------------------------------------
 * COLORS
 * ----------------------------------------
 */
.ds-VerdeFuerte {
    color: var(--ds-strong-green) !important
}

.ds-yellow {
    color: var(--ds-green) !important
}

.ds-TextNegritas {
    font-weight: bold !important;
}

.ds-white {
    color: var(--ds-white) !important
}

.ds-white-bg {
    background-color: var(--ds-white) !important
}

.ds-black {
    color: var(--ds-black) !important
}

.ds-black-bg {
    background-color: var(--ds-black) !important
}

.ds-light {
    color: var(--ds-light) !important
}

.ds-light-bg {
    background-color: var(--ds-light) !important
}

.ds-dark {
    color: var(--ds-dark) !important
}

.ds-dark-bg {
    background-color: var(--ds-dark) !important
}

/**
 * ----------------------------------------
 * ICONOS
 * ----------------------------------------
 */
.ds-icono {
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 1.25rem;
    overflow: hidden;
    position: relative;
}

.ds-icono svg {
    width: 100%;
    transform-origin: center;
    fill: currentColor;
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em
}

.ds-icono.ds-xxs {
    width: 24px;
    height: 24px;
    font-size: .75rem
}

.ds-icono.ds-xs {
    width: 32px;
    height: 32px;
    font-size: 1rem
}

.ds-icono.ds-sm {
    width: 56px;
    height: 56px;
    font-size: 1.5rem
}

.ds-icono.ds-md {
    width: 64px;
    height: 64px;
    font-size: 2.5rem
}

.ds-icono.ds-lg {
    width: 96px;
    height: 96px;
    font-size: 3.5rem
}

.ds-icono.ds-xl {
    width: 128px;
    height: 128px;
    font-size: 5rem
}

.ds-icono.ds-xxl {
    width: 256px;
    height: 256px;
    font-size: 10rem
}

.ds-icono img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ds-object-contain {
    object-fit: contain !important
}

.ds-circle {
    border-radius: 50%
}

.ds-icono.ds-circle, .ds-icono.ds-circle img {
    border-radius: 50%
}

.ds-ring {
    box-shadow: 0 0 0 4px
}

/**
 * ----------------------------------------
 * TEXT
 * ----------------------------------------
 */
.ds-h1, .ds-h2, .ds-h3, .ds-h4, .ds-h5, .ds-link, .ds-text {
    margin: 0;
    padding: 0;
    word-wrap: break-word !important;
    word-break: break-word !important;
    font-family: var(--ds-font);
    color: var(--ds-dark);
    text-decoration: none;
    font-weight: 400
}

.ds-text {
    font-family: var(--ds-font);
    font-size: 16px;
    color: var(--ds-dark);
}

.ds-TextCenter {
    text-align: center !important;
}

.ds-TextJustify {
    text-align: justify !important;
}

/* espacio de texto */
.ds-my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.ds-h5, .ds-link {
    font-weight: 600
}

.ds-h1 {
    font-size: 56px
}

.ds-h2 {
    font-size: 40px
}

.ds-h3 {
    font-size: 32px
}

.ds-h4 {
    font-size: 24px
}

.ds-h5 {
    font-size: 16px;
}

.ds-text {
    font-family: var(--ds-font);
    font-size: 16px;
    color: var(--ds-dark);
}

.ds-link {
    color: var(--ds-dark);
    font-family: var(--ds-font);
    font-size: 1rem;
    text-decoration: none
}

/**
 * ----------------------------------------
 * LISTAS
 * ----------------------------------------
 */
.ds-lista-items {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    overflow: visible
}

.ds-lista-items .ds-item {
    position: relative;
    display: flex;
    flex-direction: column
}

.ds-lista-items .ds-link {
    font-family: var(--ds-font);
    align-items: center
}

.ds-lista-items .ds-link {
    text-decoration: none;
    color: rgba(var(--ds-dark-rgb), .9);
    display: inline-flex;
    font-size: 16px;
    margin: 0;
    padding: 3px 18px
}

/**
 * ----------------------------------------
 * TABLES
 * ----------------------------------------
 */
.ds-table-system {
    /* border:0; */
    /* border-collapse:collapse; */
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 1
}

.ds-table-system tr {
    border: 0;
    /* padding:.35em; */
    /* cursor: pointer; */
    position: relative;
    z-index: 1;
    background: rgba(var(--ds-dark-rgb), .0325);
}

.ds-td, .ds-th {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 12px;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    min-width: 400px;
    min-height: 64px;
    margin-bottom: 12px;
}

.ds-td .ds-text {
    text-align: justify
}

/**
 * ----------------------------------------
 * TABS
 * ----------------------------------------
 */
.ds-system-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    border-bottom: 1px rgba(var(--ds-dark-rgb), .3) solid;
    width: 100%;
}

.ds-system-tabs .ds-link {
    position: relative;
    z-index: 1;
    min-width: 88px;
    height: 48px;
}

.ds-system-tabs .ds-link::before {
    content: '';
    width: 100%;
    height: 3px;
    background-color: var(--ds-star);
    left: 0;
    bottom: 0;
    position: absolute;
    display: none;
}

.ds-system-tabs .ds-link.ds-active::before {
    display: inline-block
}

.ds-tab-box .ds-tab-content:not(.ds-active) {
    display: none !important
}

.ds-tab-box .ds-tab-content.ds-active {
    animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both
}

/**
 * ----------------------------------------
 * UTILS
 * ----------------------------------------
 */
.ds-d-inline {
    display: inline !important
}

.ds-d-inline-block {
    display: inline-block !important
}

.ds-d-block {
    display: block !important
}

.ds-d-grid {
    display: grid !important
}

.ds-d-table {
    display: table !important
}

.ds-d-table-row {
    display: table-row !important
}

.ds-d-table-cell {
    display: table-cell !important
}

.ds-d-flex {
    display: flex !important
}

.ds-d-inline-flex {
    display: inline-flex !important
}

.ds-flex-fill {
    flex: 1 1 auto !important
}

.ds-flex-row {
    flex-direction: row !important
}

.ds-flex-column {
    flex-direction: column !important
}

.ds-flex-row-reverse {
    flex-direction: row-reverse !important
}

.ds-flex-column-reverse {
    flex-direction: column-reverse !important
}

.ds-flex-grow-0 {
    flex-grow: 0 !important
}

.ds-flex-grow-1 {
    flex-grow: 1 !important
}

.ds-flex-shrink-0 {
    flex-shrink: 0 !important
}

.ds-flex-shrink-1 {
    flex-shrink: 1 !important
}

.ds-flex-wrap {
    flex-wrap: wrap !important
}

.ds-flex-nowrap {
    flex-wrap: nowrap !important
}

.ds-flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.ds-justify-content-start {
    justify-content: flex-start !important
}

.ds-justify-content-end {
    justify-content: flex-end !important
}

.ds-justify-content-center {
    justify-content: center !important
}

.ds-justify-content-between {
    justify-content: space-between !important
}

.ds-justify-content-around {
    justify-content: space-around !important
}

.ds-justify-content-evenly {
    justify-content: space-evenly !important
}

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

.ds-align-items-end {
    align-items: flex-end !important
}

.ds-align-items-center {
    align-items: center !important
}

.ds-align-items-baseline {
    align-items: baseline !important
}

.ds-align-items-stretch {
    align-items: stretch !important
}

.ds-align-content-start {
    align-content: flex-start !important
}

.ds-align-content-end {
    align-content: flex-end !important
}

.ds-align-content-center {
    align-content: center !important
}

.ds-align-content-between {
    align-content: space-between !important
}

.ds-align-content-around {
    align-content: space-around !important
}

.ds-align-content-stretch {
    align-content: stretch !important
}

.ds-align-self-auto {
    align-self: auto !important
}

.ds-align-self-start {
    align-self: flex-start !important
}

.ds-align-self-end {
    align-self: flex-end !important
}

.ds-align-self-center {
    align-self: center !important
}

.ds-align-self-baseline {
    align-self: baseline !important
}

.ds-align-self-stretch {
    align-self: stretch !important
}

.ds-order-first {
    order: -1 !important
}

.ds-order-0 {
    order: 0 !important
}

.ds-order-1 {
    order: 1 !important
}

.ds-order-2 {
    order: 2 !important
}

.ds-order-3 {
    order: 3 !important
}

.ds-order-4 {
    order: 4 !important
}

.ds-order-5 {
    order: 5 !important
}

.ds-order-last {
    order: 6 !important
}

.ds-m-0 {
    margin: 0 !important
}

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

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

.ds-m-3 {
    margin: 1rem !important
}

.ds-m-4 {
    margin: 1.5rem !important
}

.ds-m-5 {
    margin: 3rem !important
}

.ds-m-auto {
    margin: auto !important
}

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

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

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

.ds-mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
}

.ds-mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
}

.ds-mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
}

.ds-mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

.ds-my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.ds-my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
}

.ds-my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.ds-my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.ds-my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.ds-my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.ds-my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.ds-mt-0 {
    margin-top: 0 !important
}

.ds-mt-1 {
    margin-top: .25rem !important
}

.ds-mt-2 {
    margin-top: .5rem !important
}

.ds-mt-3 {
    margin-top: 1rem !important
}

.ds-mt-4 {
    margin-top: 1.5rem !important
}

.ds-mt-5 {
    margin-top: 3rem !important
}

.ds-mt-auto {
    margin-top: auto !important
}

.ds-me-0 {
    margin-right: 0 !important
}

.ds-me-1 {
    margin-right: .25rem !important
}

.ds-me-2 {
    margin-right: .5rem !important
}

.ds-me-3 {
    margin-right: 1rem !important
}

.ds-me-4 {
    margin-right: 1.5rem !important
}

.ds-me-5 {
    margin-right: 3rem !important
}

.ds-me-auto {
    margin-right: auto !important
}

.ds-mb-0 {
    margin-bottom: 0 !important
}

.ds-mb-1 {
    margin-bottom: .25rem !important
}

.ds-mb-2 {
    margin-bottom: .5rem !important
}

.ds-mb-3 {
    margin-bottom: 1rem !important
}

.ds-mb-4 {
    margin-bottom: 1.5rem !important
}

.ds-mb-5 {
    margin-bottom: 3rem !important
}

.ds-mb-auto {
    margin-bottom: auto !important
}

.ds-ms-0 {
    margin-left: 0 !important
}

.ds-ms-1 {
    margin-left: .25rem !important
}

.ds-ms-2 {
    margin-left: .5rem !important
}

.ds-ms-3 {
    margin-left: 1rem !important
}

.ds-ms-4 {
    margin-left: 1.5rem !important
}

.ds-ms-5 {
    margin-left: 3rem !important
}

.ds-ms-auto {
    margin-left: auto !important
}

.ds-p-0 {
    padding: 0 !important
}

.ds-p-1 {
    padding: .25rem !important
}

.ds-p-2 {
    padding: .5rem !important
}

.ds-p-3 {
    padding: 1rem !important
}

.ds-p-4 {
    padding: 1.5rem !important
}

.ds-p-5 {
    padding: 3rem !important
}

.ds-px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.ds-px-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
}

.ds-px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.ds-px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.ds-px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.ds-px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.ds-py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.ds-py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.ds-py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.ds-py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.ds-py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.ds-py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.ds-pt-0 {
    padding-top: 0 !important
}

.ds-pt-1 {
    padding-top: .25rem !important
}

.ds-pt-2 {
    padding-top: .5rem !important
}

.ds-pt-3 {
    padding-top: 1rem !important
}

.ds-pt-4 {
    padding-top: 1.5rem !important
}

.ds-pt-5 {
    padding-top: 3rem !important
}

.ds-pe-0 {
    padding-right: 0 !important
}

.ds-pe-1 {
    padding-right: .25rem !important
}

.ds-pe-2 {
    padding-right: .5rem !important
}

.ds-pe-3 {
    padding-right: 1rem !important
}

.ds-pe-4 {
    padding-right: 1.5rem !important
}

.ds-pe-5 {
    padding-right: 3rem !important
}

.ds-pb-0 {
    padding-bottom: 0 !important
}

.ds-pb-1 {
    padding-bottom: .25rem !important
}

.ds-pb-2 {
    padding-bottom: .5rem !important
}

.ds-pb-3 {
    padding-bottom: 1rem !important
}

.ds-pb-4 {
    padding-bottom: 1.5rem !important
}

.ds-pb-5 {
    padding-bottom: 3rem !important
}

.ds-ps-0 {
    padding-left: 0 !important
}

.ds-ps-1 {
    padding-left: .25rem !important
}

.ds-ps-2 {
    padding-left: .5rem !important
}

.ds-ps-3 {
    padding-left: 1rem !important
}

.ds-ps-4 {
    padding-left: 1.5rem !important
}

.ds-ps-5 {
    padding-left: 3rem !important
}

.ds-text-lighter {
    font-weight: lighter !important
}

.ds-text-normal {
    font-weight: 400 !important
}

.ds-text-bolder {
    font-weight: bolder !important
}

.ds-text-start {
    text-align: start !important
}

.ds-text-center {
    text-align: center !important
}

.ds-text-end {
    text-align: end !important
}

.ds-text-justify {
    text-align: justify !important
}

.ds-w-25 {
    width: 25% !important
}

.ds-w-50 {
    width: 50% !important
}

.ds-w-75 {
    width: 75% !important
}

.ds-w-100 {
    width: 100% !important
}

.ds-h-25 {
    height: 25% !important
}

.ds-h-50 {
    height: 50% !important
}

.ds-h-75 {
    height: 75% !important
}

.ds-h-100 {
    height: 100% !important
}

.ds-mw-25 {
    min-width: 25% !important
}

.ds-mw-50 {
    min-width: 50% !important
}

.ds-mw-75 {
    min-width: 75% !important
}

.ds-mw-100 {
    min-width: 100% !important
}

.ds-mh-25 {
    min-height: 25% !important
}

.ds-mh-50 {
    min-height: 50% !important
}

.ds-mh-75 {
    min-height: 75% !important
}

.ds-mh-100 {
    min-height: 100% !important
}

.ds-w-auto {
    width: auto !important
}

.ds-h-auto {
    height: auto !important
}

.ds-mw-0 {
    min-width: 0 !important
}

.ds-mh-0 {
    min-height: 0 !important
}

.ds-container, .ds-container-fluid, .ds-container-lg, .ds-container-md, .ds-container-sm, .ds-container-xl, .ds-container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .ds-container, .ds-container-sm {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .ds-container, .ds-container-md, .ds-container-sm {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .ds-container, .ds-container-lg, .ds-container-md, .ds-container-sm {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .ds-container, .ds-container-lg, .ds-container-md, .ds-container-sm, .ds-container-xl {
        max-width: 1140px
    }
}

@media (min-width: 1400px) {
    .ds-container, .ds-container-lg, .ds-container-md, .ds-container-sm, .ds-container-xl, .ds-container-xxl {
        max-width: 1320px
    }
}

.ds-text-decoration-none {
    text-decoration: none !important
}

.ds-to-uppercase {
    text-transform: uppercase !important;
}

.ds-hidden {
    display: none !important;
}

.ds-transform-25 {
    transform: scale(.25) !important
}

.ds-transform-50 {
    transform: scale(.5) !important
}

.ds-transform-75 {
    transform: scale(.75) !important
}

.ds-flex-box {
    display: flex;
    align-items: center
}

.ds-scale-1_25 {
    transform: scale(1.25) !important
}

.ds-scale-1_5 {
    transform: scale(1.5) !important
}

.ds-scale-2 {
    transform: scale(2) !important
}

/**
 * ----------------------------------------
 * FORMS, INPUTS, BUTTON
 * ----------------------------------------
 */
.ds-frame-phone {
    width: 160px;
    height: 300px;
    position: relative;
    z-index: 1;
    background-image: var(--ds-iphone-light);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: content-box;
    padding: 9px;
    overflow: hidden;
}

.ds-frame-phone .ds-icono {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 104px;
    height: 104px;
}

.ds-ground-image {
    width: 720px;
    height: 720px;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: -9;
    opacity: .2
}

.ds-ground-image:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    background-image: linear-gradient(rgba(var(--ds-light-rgb), 1), transparent, rgba(var(--ds-light-rgb), 1));
    z-index: -1
}

.ds-ground-image:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    background-image: linear-gradient(90deg, rgba(var(--ds-light-rgb), 1), transparent, rgba(var(--ds-light-rgb), 1));
    z-index: -1;
    background-size: cover;
    background-position: center
}

.ds-ground-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: -2;
    opacity: var(--ds-light-opacity);
    object-fit: cover
}

/**
 * ----------------------------------------
 * INDEX
 * ----------------------------------------
 */
.ds-badge-store {
    width: 192px;
    height: 64px;
    position: relative;
    z-index: 0;
    background-image: url('../IMAGENES/appstorebadge.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: content-box;
    cursor: pointer;
    transform: scale(.875)
}

.ds-badge-store.ds-android {
    background-image: url('../IMAGENES/googlebadge.png');
    transform: scale(.875)
}

.ds-badge-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    flex-direction: column
}

.ds-footer-web {
    width: 100%;
    min-height: 560px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(22.5deg, rgb(0 0 0 / 87.725%), rgb(0 0 0 / 65%)), url(../IMAGENES/reunion_sol.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.ds-footer-web .ds-ground-image {
    width: 100%;
    height: 480px;
    opacity: .3;
    filter: hue-rotate(140deg)
}

.ds-footer-item {
    width: 400px;
    /* height: 400px; */
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.ds-footer-links {
    justify-content: center
}

.ds-footer-links .ds-link {
    width: 200px;
    height: 48px;
    margin: 6px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 0 0 1px rgba(var(--ds-white-rgb), .3);
    color: var(--ds-white);
}

/**
 * ----------------------------------------
 * SECCION LEGAL 
 * ----------------------------------------
 */
.ds-seccion-legal {
    padding: 0 64px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.ds-header-legal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ds-lista-legal .ds-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 7px;
    margin-bottom: 9px;
}

.ds-lista-legal .ds-item .ds-icono {
    margin-right: 12px;
}

.ds-lista-legal .ds-item .ds-text {
    text-align: justify;
    width: 0;
    flex: 1;
}

@media (max-width: 950px) {
    .ds-td, .ds-th {
        min-width: 200px;
    }
}

@media (max-width: 710px) {
    .TextEventFlow {
        font-size: 40;
    }
}
