/* Variables */
:root {
    --primary: #1a2a3f;
    --primary-hover: #1a6394;
    --secondary: #58748d;
    --orange: #e7492b;
    --red: #e30613;
    --gray: #EEEFF3;
    --white: #fff;
    --black: #000;
    --text-color: #000;
    --header-space: 0px;
    --header-height: 160px;
    --font: "Myriad Pro Light Italic", sans-serif;
    --font-h: "Myriad Pro Bold Italic", sans-serif;
    --max-width: 1230px;
}

/* Font Faces */
@font-face {
    font-display: swap;
    font-style: italic;
    font-family: "Myriad Pro Light Italic";
    font-weight: 400;
    src: url(fonts/myriad_pro_light_italic-webfont.woff) format("woff"),
        url(fonts/myriad_pro_light_italic-webfont.woff2) format("woff2");
}
@font-face {
    font-display: swap;
    font-style: italic;
    font-family: "Myriad Pro Bold Italic";
    font-weight: 800;
    src: url(fonts/myriad_pro_bold_italic-webfont.woff) format("woff"),
        url(fonts/myriad_pro_bold_italic-webfont.woff2) format("woff2");
}
html {
    font-size: 17px;
    scroll-padding-top: 190px;
}
body {
    font-size: 1.125rem;
}
html,
body {
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: var(--font);
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-text-size-adjust: 100%;
    hyphens: auto;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    word-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-style: normal;
    font-weight: 700;
    font-family: var(--font-h);
    color: var(--primary);
    line-height: 1.4;
    margin: 0;
    padding: 0;
    padding-top: 1.5rem;
    letter-spacing: -.02em;
    margin-bottom: 1.5rem;
}
h1,
h2 {
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
}
h3 {
    font-size: 2rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.4rem;
}
h6 {
    font-size: 1.2rem;
}
.menu.sf-menu li,
b,
optgroup,
strong,
#page .ui-widget {
    font-family: var(--font);
}
p,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}
#page li {
    margin-bottom: 0.4rem;
    font-size: 18px;
}
#main ol,
#main ul {
    padding-left: 24px;
}
li::marker {
    font-size: 20px;
    color: var(--primary);
}
ol {
    font-weight: 600;
}
p {
    font-weight: 400;
    font-size: 18px;
}
ol:last-child,
p:last-child,
ul:last-child,
li:last-child {
    margin-bottom: 0;
}
figure {
    margin: 0;
}

/* General Styles */
*,
*::before,
*::after {
    box-sizing: inherit;
}
.node__content {
    font-size: 1rem;
}
button,
input[type="button"],
input[type="submit"],
.button {
    background: var(--primary);
    font-family: var(--font-h);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    letter-spacing: .02em;
    padding: 0.8em 1.8em;
    border: none;
    border-radius: 0;
    box-shadow: 0px 0px 0px 0px var(--primary);
    border-color: transparent;
    transition-property: background, border, box-shadow, color, opacity, transform;
    transition-duration: .3s;
}
.ee_content_block a[href^="/user/login"] {
    font-size: 25px;
}
.button:hover,
.button:focus {
    border: none;
    box-shadow: 0px 0px 0px 4px var(--primary);
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary) !important;
}
.button.zeichnung {
    width: 100%;
    font-size: 1.2rem;
}
.toolbar button.toolbar-icon {
    background: transparent;
}
.modal_login .item-list {
    display: none;
}
.modal_login .button {
    width: 100%;
    margin: 0;
}
#log_overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 120vh;
    top: -30px;
    left: 0px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.system_messages_wrapper {
    background-color: var(--primary) !important;
    color: #000000 !important;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.system_messages_wrapper::-webkit-scrollbar {
    display: none;
}
.system_messages_wrapper .messages {
    display: block;
    clear: both;
    margin-bottom: 0;
    border: none !important;
    background-color: var(--white) !important;
    box-shadow: none;
    color: var(--text-color) !important;
    border-radius: 0;
}
.messages__wrapper.layout-container {
    max-width: 100%;
}
.system_messages_wrapper .closer {
    float: right;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    margin-right: 0;
    color: var(--white);
}
.ui-dialog-titlebar {
    background-color: var(--primary) !important;
    color: var(--white);
}
.contextual-region .contextual .contextual-links a {
    color: #333 !important;
}

/* Allgemeine Styles */
a,
.link {
    color: var(--primary);
    transition: color 0.3s;
}
.ee_content_block {
    position: relative;
}
.undeline {
    text-decoration: underline;
}
.color-primary {
    color: var(--primary);
}
.color-secondary {
    color: var(--secondary);
}
.bg-primary {
    background: var(--primary);
    color: var(--white);
}
.bg-primary h2 {
    color: var(--white);
}
.bg-secondary {
    background: var(--secondary);
}
.bg-white {
    background: var(--white);
}
.bg-gray {
    background: var(--gray);
}
.text-center {
    text-align: center;
}
.margin-top {
    margin-top: 110px !important;
}
.padding10 {
    padding: 10%;
}
.download {
    color: var(--text-color);
}
.download::before {
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    content: "\f019";
    font-size: 14px;
    margin-right: 20px;
}
.height_custom {
    padding-top: 5vmax;
    padding-bottom: 5vmax;
}
.l-section-shape {
    overflow: hidden;
    left: 0;
    right: 0;
    height: 15vmin;
    color: var(--white);
    position: absolute;
}
.l-section-shape.pos_top {
    top: -1px;
    transform: rotateX(180deg);
    height: 12vmin;
    color: var(--white);
}
.l-section-shape.pos_bottom {
    bottom: -1px;
}

/* Header */
.toolbar-fixed.toolbar-tray-open {
    --header-space: 29px;
}
.toolbar-fixed {
    --header-space: 39px;
}
.toolbar-fixed.toolbar-horizontal.toolbar-tray-open {
    --header-space: 79px;
}
#page > header {
    position: fixed;
    width: 100%;
    background-color: var(--white);
    top: var(--header-space);
    z-index: 300;
    box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1), 0 2px 1px -1px rgba(0, 0, 0, 0.05);
}
#page > header * {
    transition-property: transform, background, box-shadow, line-height, height;
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(.78,.13,.15,.86);
}
#header_top_wrapper {
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--white);
    line-height: 36px;
    height: 36px;
}
#page.header_fixt > header #header_top_wrapper {
    line-height: 0;
    height: 0;
    overflow: hidden;
}
#header_top {
    align-items: center;
}
#header_top a {
    color: var(--white);
}
#header_top a:hover {
    color: var(--red);
}
#header_top_inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}
#header_inner_wrapper {
    height: 90px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
}
#page.header_fixt > header #header_inner_wrapper {
    height: 60px;
}
#header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}
#logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
#logo img {
    width: auto;
    height: 60px;
}
#page.header_fixt > header #logo img {
    height: 40px;
}

/* Header Image */
#preface_top {
}
.headerbild {
    position: relative;
}
.headerimage {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.headerimage * {
    width: 100%;
}
.headerimage img {
    display: block;
    width: 110%;
    max-width: unset;
    height: 500px;
    object-fit: cover;
}

/* Headertext */
.headertext {
    position: absolute;
    width: 100%;
    bottom: 0;
}
.headertext .l-section-shape {
    display: none;
}
.headertext .slideshow_content_wrapper {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}
.headertext .slideshow_content {
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    width: 25%;
}

/* Login Logout Bar */
.login_out_block a {
    display: flex;
    align-items: center;
    font-family: var(--font-h);
    font-size: 18px;
    color: var(--white);
    hyphens: none;
    text-decoration: none;
    font-weight: normal;
    margin: 0;
}

/* Primary Menu */
#primary-menu {
    display: flex;
    padding: 17px 0;
}
#primary-menu .block-superfish {
    width: auto;
}
#primary-menu .content,
#primary-menu .content > .menu {
    line-height: normal;
}
#primary-menu .content .menu {
    display: flex;
    gap: 40px;
}
#primary-menu .content > .menu > li {
    display: flex;
}
#primary-menu .content .sf-menu > li ul {
    background: var(--white) !important;
    opacity: 1;
    width: auto !important;
    border-top: none;
    top: 43.5px;
    padding-top: 10px;
    padding-bottom: 15px;
}
#primary-menu .content .sf-menu > li ul a {
    padding: 4px 20px;
}
#primary-menu .content ul li a {
    font-family: var(--font-h);
    color: var(--text-color);
    background-color: transparent;
    line-height: normal;
}
#primary-menu .content .sf-menu > li > a {
    color: var(--white);
    padding: 0;
    font-weight: normal;
    line-height: normal;
}
#primary-menu .content .sf-menu > li > a:after,
.login_out_block a:after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    bottom: -.4em;
    margin: 0 auto -2px;
    height: 2px;
    width: 100%;
    background: currentColor;
    opacity: 0;
    transition: all .3s;
    color: var(--white);
}
#primary-menu .content .sf-menu > li > a:hover:after,
.login_out_block a:hover:after {
    bottom: -2px;
    opacity: 1;
}
#primary-menu .content .sf-menu > li.active-trail > a {
    /* color: var(--secondary); */
}

a:hover,
a:active,
a:focus,
.link:hover,
.link:active,
.link:focus {
    text-decoration: none;
    border-bottom-style: none;
}

#navigation_wrapper {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

/* Mobile Menu */
#mm_navibutton_wrapper {
    /* display: none; */
}
.hamburger {
    padding: 18px 0 10px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}
.hamburger.is-active:hover,
.hamburger:hover {
    /* opacity: 0.7; */
}
.hamburger-box {
    width: 22px;
    height: 18px;
    display: inline-block;
    position: relative;
}
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
    width: 22px;
    height: 3px;
    background-color: var(--white);
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::after,
.hamburger.is-active .hamburger-inner::before {
    background-color: var(--white);
}
.slick-list,
.slick-slider,
.slick-track {
    position: relative;
    display: block;
}
.hamburger-inner::after,
.hamburger-inner::before {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -7px;
}
.hamburger-inner::after {
    bottom: -14px;
    right: 0;
}
.hamburger--slider .hamburger-inner {
    top: 2px;
}
.hamburger--slider .hamburger-inner::before {
    top: 7px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
    top: 14px;
}
.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0, 7px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.43px, -10px, 0);
    opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(-90deg);
}
#mobile_menu_wrapper {
    background: rgba(88, 116, 141, 0.9);
    position: fixed;
    height: 100vh;
    width: 0%;
    top: 0;
    right: 0;
    transition: width 0.5s;
    z-index: 20;
}
#mobile_menu_wrapper.open {
    width: 100%;
}
#mobile_menu_wrapper #menu {
    width: 66.6666666667%;
    position: absolute;
    right: 0;
    top: var(--header-space);
    height: calc(100vh - var(--header-space));
    overflow: auto;
}
#mobile_menu_wrapper #menu > div {
    padding: 9rem 2rem 2rem 8rem;
}
#mobile_menu_wrapper #menu > div > .menu > .menu-item,
#mobile_menu_wrapper .content > .menu > .menu-item {
    padding-bottom: 1rem;
}
#mobile_menu_wrapper ul.menu li {
    list-style: none;
}
#mobile_menu_wrapper ul.menu li a {
    color: var(--white);
    font-family: var(--font-h);
    font-weight: 700;
    width: 100%;
    position: relative;
    z-index: 2;
    line-height: 2;
}
#mobile_menu_wrapper ul.menu li li a {
    font-family: var(--font);
    margin-left: 2em;
}
#mobile_menu_wrapper ul.menu li a:hover::after {
    right: -15px;
}
#menu .navigation-trigger {
    position: absolute;
    top: 0;
    right: 0;
}
.login-logout-mobile {
    display: none;
    float: left;
    padding: 0 20px;
}
.login-logout-mobile .anmelden_toggle,
.login-logout-mobile .abmelden_toggle {
    color: var(--primary);
    font-weight: 600;
    position: relative;
    background: none;
    line-height: 40px;
    padding: 0;
    border: none;
}

.ee_content_row {
    /* margin-bottom: 80px; */
}

/* Form */
body .form-text,
body .form-email,
body .form-select,
body .form-textarea {
    width: 100%;
    font-size: 1em;
    line-height: 3.4em;
    font-family: var(--font);
    background-color: var(--white);
    padding: 0 20px!important;
    max-width: unset !important;
    color: var(--text-color) !important;
    border-radius: .3em;
    border: none !important;
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, .15);
    letter-spacing: 0em;
    transition: all .2s;
}
body .form-textarea {
    min-height: 160px;
}
.webform-button--submit {
    float: right;
}
.webform-submission-form .form-item label {
    display: inline;
}

/* FAQ */
.block-ee-faq {
    width: 100%;
}
.faq_headline,
.block-ee-faq > h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    text-transform: none;
}
.faq_block {
    width: 100%;
    margin: 0 auto;
    padding: 1em 0;
}
.faq_block .accordion {
    border-bottom: 1px solid rgba(255,255,255,.15);
}
.block-ee-faq .ui-accordion-header-icon {
    display: none;
}
.block-ee-faq .ui-accordion-header {
    color: var(--primary);
    font-size: 25px;
    line-height: 1.5;
    padding: 1em 1.5em;
    padding-right: 2.2em;
    border: none;
    background: transparent;
    font-weight: 700;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-radius: 0;
}
.block-ee-faq .ui-accordion-header:hover {
    background: rgba(0, 0, 0, .04);
}
.block-ee-faq .ui-accordion-header.ui-accordion-header-active {
    color: var(--primary);
    padding: 1em 1.5em;
}
.block-ee-faq .ui-accordion-header::before {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    color: var(--primary);
    position: absolute;
    right: 25px;
    font-weight: bold;
}
.block-ee-faq .ui-accordion-header.ui-accordion-header-active::before {
    content: "\f077";
}
.block-ee-faq .ui-accordion-content {
    border: none;
    color: var(--white);
    border-radius: 0;
    background: transparent;
    margin-top: 0px;
    padding: 1.5rem;
}

/* Div Table */
.divTable {
    display: table;
    width: 100%;
}
.divTableRow {
    display: table-row;
}
.divTableHeading {
    background-color: #eee;
    display: table-header-group;
}
.divTableCell,
.divTableHead {
    display: table-cell;
    padding-top: 1rem;
    padding-right: 0.5rem;
}
.divTableHeading {
    background-color: #eee;
    display: table-header-group;
    font-weight: bold;
}
.divTableFoot {
    background-color: #eee;
    display: table-footer-group;
    font-weight: bold;
}
.divTableBody {
    display: table-row-group;
}

/* Datenschutz */
.divrow {
    display: table-row;
}
.divrow > div {
    display: table-cell;
    padding: 0.5rem 0;
}
.divrow:first-child > div {
    border-top: none;
}
.divtable .divrow > div:first-child {
    width: 38%;
}
.divtable .divrow > div:last-child {
    text-align: right;
    width: 60%;
}
.divtable .divrow:last-child > div {
    border-bottom: none;
}
.datenschutz .divrow > div {
    display: table-cell;
    border-bottom: 1px solid var(--primary);
    padding: 10px;
}
.datenschutz .divrow > div:nth-child(3) {
    width: 150px;
}
.datenschutz .divrow > div:first-child {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-hover);
}
.datenschutz .divrow > div:first-child {
    font-weight: 600;
    font-size: inherit;
    color: var(--primary-hover);
    width: auto;
}
.datenschutz .divrow.th {
    font-weight: 600;
    color: var(--primary-hover);
}
.datenschutz .divrow > div:last-child {
    text-align: left;
    width: auto;
}
.datenschutz .divrow {
    width: 100%;
    float: none;
    display: table-row;
    padding-right: 5%;
    border-left: none;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-bottom: 1px solid var(--primary);
}
.datenschutz.divtable .divrow:last-child > div {
    border-bottom: 1px solid var(--primary) !important;
}

#main-content:has(#content_top_wrapper) {
    display: flex;
}
#main-content #content_top {
    margin: 0;
}
#main-content .region-content {
    flex-grow: 1;
    margin-top: 2.5rem;
}

/* Grid Container */
.grid_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.grid_container h3,
.grid_container h4,
.grid_container a {
    color: var(--white);
}
.grid_container a {
    text-decoration: underline;
}
.grid_container li::marker {
    font-size: 20px;
    color: var(--white);
}
.grid_container .text {
    background-color: var(--primary);
    color: var(--white);
    padding: 30px;
}
.grid_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grid_container .hinweis {
    padding: 1em 2em;
}
.grid_container .button {
    display: block;
    width: fit-content;
    background-color: var(--white);
    color: var(--primary);
    text-decoration: none;
    margin: 0 auto;
    margin-bottom: 1em;
    font-family: var(--font-h);
    font-size: 20px;
    padding: 15px;
}

/* Info */
.beteiligung_outer {
    min-height: 460px;
}
.container.beteiligung {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.container.beteiligung .info_wrapper .info {
    display: none;
}
.container.beteiligung .info_wrapper {
    width: 23.8%;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--secondary);
    color: var(--white);
}
.info_inner_wrapper {
    position: relative;
    width: 100%;
    padding-top: 24px;
}
.container.beteiligung .info_wrapper .info {
    padding: 24px;
    padding-top: 0;
    width: 100%;
}
.container.beteiligung .info_wrapper:hover > .info_inner_wrapper > .info {
    display: block;
    position: relative;
    top: 0px;
}
.info_wrapper h4 {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    text-align: center;
    color: var(--white);
}
.info_wrapper > svg:first-child path {
    fill: var(--white);
}
.container.beteiligung .info_wrapper:hover > h4 + svg {
    display: none;
}

/* Über Uns */
#ueber_uns .flex_block.two {
    align-items: center;
}
#ueber_uns .image {
    margin-right: 7%;
}

/* Kontakt */
.kontakt_wrapper  h3 {
    padding: 0;
}
.kontakt_wrapper .flex_block {
    flex-wrap: wrap;
}
.kontakt_wrapper .flex_block > div {
    width: 100%;
}
.kontakt_wrapper .flex_block > .form-wrapper {
    width: 47%;
}
.kontakt_wrapper .flex_block > .form-actions {
    width: auto;
}

/* Footer */
footer {
    font-size: 18px;
    line-height: 27px;
}
footer a {
    color: var(--white);
}
footer a:hover {
    color: var(--red);
}
.region-footer {
    display: flex;
    gap: 58px;
    padding-top: 5vmax !important;
    padding-bottom: 3vmax !important;
}
.region-footer .block {
    width: 50%;
}
#footer {
    background: none;
    background-color: var(--primary);
    color: var(--white);
}
#footer_wrapper {
    width: 100%;
    padding: 1rem 0;
    padding-bottom: 3rem;
    overflow: hidden;
}
#footer h4 {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 700;
    margin: 0;
    padding: 0;
}
.w-separator.size_small:empty {
    height: 1.5rem;
}
.w-iconbox.iconpos_left,
.w-iconbox.iconpos_right {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
}
.w-iconbox.iconpos_left.no_text,
.w-iconbox.iconpos_left.no_title,
.w-iconbox.iconpos_right.no_text,
.w-iconbox.iconpos_right.no_title {
    align-items: center;
}
.w-iconbox.style_default.iconpos_left .w-iconbox-icon,
.w-iconbox.style_default.iconpos_right .w-iconbox-icon {
    width: 1.1em;
}
.w-iconbox.iconpos_left .w-iconbox-icon {
    margin-right: calc(15px + .2em);
    font-size: 1.2rem;
}
.footer_wrapper {
    position: relative;
    background-color: var(--secondary);
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.footer_wrapper .type_zigzag {
    height: 3vh;
    color: var(--primary);
}
.region-footer-middle {
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.region-footer-bottom {
    display: flex;
    justify-content: space-between;
}
#block-eueco-site-menu-menu-footermenu {
    width: 100%;
    margin: 0;
}
#block-eueco-site-menu-menu-footermenu ul {
    text-align: right;
    display: flex;
    justify-content: end;
    gap: 25px;
}
footer .content ul.menu li {
    line-height: normal;
    padding: 0;
    margin: 0 !important;
}
footer .content ul.menu li:last-child {
    border: none;
    margin: 0;
}
footer .content ul.menu a {
    display: block;
    font-size: 17px;
    padding: 0.8em;
}

.eu-cookie-compliance-more-button {
    color: var(--text-color) !important;
}