p,
.txtinclude-content p{
   text-align: justify;
   hyphens: auto;
}

h1,h2,h3,h4,h5,h6,
.txtinclude-content h1,h2,h3,h4,h5,h6{
    margin-bottom:20px;
}

.container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

.fss_pic_rounded {
  border-radius: 5px; 
  box-shadow: rgb(204, 204, 204) 10px 10px 5px;
}

.fss_crc_pic {
  box-shadow: rgb(204, 204, 204) 10px 10px 5px;
}

.fa{
   margin-top:10px;
   margin-bottom:10px; 
}

:root {
   --dss_blue_1: #2b3181;
    /* Royal Blue */
    --dss_royal-blue_1: #1d2163;
    --dss_royal-blue_2: #282d8a;
    --dss_royal-blue_3: #343ab2;
    --dss_royal-blue_4: #4d53cb;
    --dss_royal-blue_5: #757ad7;
    --dss_royal-blue_6: #9ca0e2;
    /* Soft Blue */
    --dss_soft-blue_1: #394e60;
    --dss_soft-blue_2: #4d6880;
    --dss_soft-blue_3: #60829f;
    --dss_soft-blue_4: #809bb3;
    --dss_soft-blue_5: #9fb4c6;
    --dss_soft-blue_6: #bfcdd9;
    /* Royal Yellow */
    --dss_soft-yellow_1: #997a00;
    --dss_soft-yellow_2: #cca300;
    --dss_soft-yellow_3: #e6b800;
    --dss_soft-yellow_4: #ffd11a;
    --dss_soft-yellow_5: #ffdb4d;
    --dss_soft-yellow_6: #ffeb99;
      /* Grey */
    --dss_grey_1: #404040;
    --dss_grey_2: #666666;
    --dss_grey_3: #8c8c8c;
    --dss_grey_4: #b3b3b3;
    --dss_grey_5: #cccccc;
    --dss_grey_6: #e6e6e6;
}


.fancy_table_1,
.txtinclude-content table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 10px 3px rgba(128, 128, 128, 0.7);
}

/* Tabellenüberschriften */
.fancy_table_1 th,
.txtinclude-content table th {
    color: white;
    font-weight: bold;
    font-size: medium;
    background-color: var(--dss_soft-blue_3);
    padding: 10px;
    text-align: left;
    border-bottom: 1pt solid rgb(121, 121, 121);
    border-top: none;
    border-left: none;
    border-right: none;
    height: 30px;
}

/* Zentrale Überschrift */
.fancy_table_1 th.banner,
.txtinclude-content table th.banner {
    text-align: center;
    padding: 10px 0;
}

/* Tabellenzellen */
.fancy_table_1 td,
.txtinclude-content table td {
    padding: 14px 10px;
    border-bottom: 1px solid #ddd;
    border-top: none;
    border-left: none;
    border-right: none
}

/* Zweite Spalte rechtsbündig und Breite setzten - nur für Henners Tabellen */
.txtinclude-content table td:nth-child(2) {
    text-align: right;
    width:100px;
}

/* Dritte Spalte - Breite setzten - nur für Henners Tabellen */
.txtinclude-content table td:nth-child(3) {
    width:100px;
}

/* Hover-Effekt */
.fancy_table_1 tr:hover td,
.txtinclude-content table tr:hover td {
    background-color: #ffffff;
}

/* Vertikale Ausrichtung */
.fancy_table_1 td[valign],
.txtinclude-content table td[valign] {
    vertical-align: top;
}

/* Abstand in erster Spalte */
.fancy_table_1 td:first-child,
.fancy_table_1 th:first-child,
.txtinclude-content table td:first-child,
.txtinclude-content table th:first-child {
    padding-left: 30px;
}

/* Abstand in letzter Spalte */
.fancy_table_1 td:last-child,
.fancy_table_1 th:last-child,
.txtinclude-content table td:last-child,
.txtinclude-content table th:last-child {
    padding-right: 30px;
}

/* Abwechselnde Zeilenfarben */
.fancy_table_1 tr:nth-child(even),
.txtinclude-content table tr:nth-child(even) {
    background-color: #eeeeee;
}

.fancy_table_1 tr:nth-child(odd),
.txtinclude-content table tr:nth-child(odd) {
    background-color: #e4e4e4;
}

/* Runde obere linke Ecke */
.fancy_table_1 tr:first-child th:first-child,
.txtinclude-content table tr:first-child th:first-child {
    border-radius: 5px 0 0 0;
}

.fancy_table_1 tr:first-child th[colspan]:first-child,
.txtinclude-content table tr:first-child th[colspan]:first-child {
    border-top-left-radius: 5px;
}

/* Runde obere rechte Ecke */
.fancy_table_1 tr:first-child th:last-child,
.txtinclude-content table tr:first-child th:last-child {
    border-radius: 0 5px 0 0;
}

/* Runde untere linke Ecke */
.fancy_table_1 tr:last-child td:first-child,
.txtinclude-content table tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}

/* Runde untere rechte Ecke */
.fancy_table_1 tr:last-child td:last-child,
.txtinclude-content table tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}

/* Links in Tabellen */
.fancy_table_1 a,
.txtinclude-content table a {
    color: var(--dss_royal-blue_2);
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.fancy_table_1 a::after,
.txtinclude-content table a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--dss_royal-blue_2);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.fancy_table_1 a:hover::after,
.txtinclude-content table a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}