<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* ============================================================
   Base styles
   ============================================================*/

html,
button,
input,
select,
textarea {
    color: var(--text);
    /*color: #444444;*/
    padding: 0;
}

button, input[type="submit"], a {
    cursor: pointer;
}

a, a:link, a:visited, a:focus, a:hover, a:active {
    text-decoration: none;
}

.float {
    float: left;
}

.left {
    float: left;
}

.right {
    float: right;
}

.boldfont {
    font-weight:bold;
}

.italic {
    font-style: italic;
}

.nomarginpadding {
    margin: 0;
    padding: 0;
}

img {
    border:none;
    vertical-align: top;
}

form {
  margin:0px;
  padding:0px;
}

sub {
    font-size:smaller;
    line-height: 0;
    position: relative;
    top: 0.5em;
}

sup {
	font-size:smaller;
	line-height: 0;
	position: relative;
	top: -0.5em;
}



.zugeklappt .zuklappbar {
    display:none;
}
/* aufklappbar ist das Gegenstueck zu zuklappbar. Die Elemente sind also sichtbar, wenn das umgebende Element zugeklappt ist */
.aufgeklappt .aufklappbar {
    display:none;
}

/* Gleiche Funktionsweise wie aufklappbar und zuklappbar liefert auch ansichtsOptionX. Hier steht aber frei, wozu der Effekt genutzt wird.
Bei Bedarf koennen weitere ansichtsOptionen ergaenzt werden. */
.ansichtsOptionZeige1 .ansichtsOption2,
.ansichtsOptionZeige1 .ansichtsOption3,
.ansichtsOptionZeige2 .ansichtsOption1,
.ansichtsOptionZeige2 .ansichtsOption3,
.ansichtsOptionZeige3 .ansichtsOption1,
.ansichtsOptionZeige3 .ansichtsOption2 {
    display:none;
}
.ansichtsOptionZeige1 .platzeinnehmend_ansichtsOption2,
.ansichtsOptionZeige1 .platzeinnehmend_ansichtsOption3,
.ansichtsOptionZeige2 .platzeinnehmend_ansichtsOption1,
.ansichtsOptionZeige2 .platzeinnehmend_ansichtsOption3,
.ansichtsOptionZeige3 .platzeinnehmend_ansichtsOption1,
.ansichtsOptionZeige3 .platzeinnehmend_ansichtsOption2 {
    visibility:hidden;
}


.js_ausgeschaltet .bei_ausgeschaltetem_js_unsichtbar {
    display:none;
}

.boldtext {
    font-weight: bold;
}

div.cleardiv {
    clear:both;
    height:0px;
    overflow:hidden;
}

/* Zum umschliessen von floats; nicht in Verbindung mit margin/padding/border verwenden! */
div.block_formatting_context {
    overflow:hidden;
    width:100%;
}

.sichtbar_false {
    display:none;
}

.platzeinnehmend_sichtbar_false {
    visibility:hidden;
}

.cursor_pointer {
    cursor: pointer;;
}


/* nur vertikales Vergroessern erlauben */
textarea {
    resize: vertical;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
    /*MIGRATION*/
    background: var(--secondary);
    text-shadow: none;
}

/*
 * Stupid workaround for stupid IE10
 * https://connect.microsoft.com/IE/feedback/details/776537/text-in-right-aligned-input-gets-cuts-off-when-using-ms-clear#details
 * http://social.msdn.microsoft.com/Forums/ie/en-US/f4d2a698-2ae0-4a13-8893-2e96a1e54c43/ie10-right-aligned-input-cuts-off-text
 *
 * Blendet den IE-eigenen X-Button in Textfeldern aus, mit dem der Inhalt geloescht werden kann.
 */
input::-ms-clear {
    display: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 16px 0;
    padding: 0;
}

#sidebar .inhaltbox hr {
    border-style:dotted;
    /*border-color:#b3b3b3;*/
    border-color: var(--border);
}


/* ============================================================
   FARBEN:

   - S/W:
   Fastweiss - #f9f9f9 - Content Background
   Hellgrau - #c8c8c8
   Mittelgrau - #70706f
   Dunkelgrau - #575756

   - Bunt:
   Original mm Rot - #D10A10
   Dunkelkirschrot - #990000 - .box_container label color
   Hellblau - #2D6CA2 - .box_container h3 color
    ============================================================*/

.mm_rot {
    /*color: #D10A10;*/
    color: var(--primary);
}

/* BEGINN: LINKS */
a, a:link, a:visited, a:focus, a:hover, a:active {
    /*color: black;*/
    color: var(--text);
    text-decoration: underline;
}

/* blau */
a.link, a.link:link, a.link:visited {
    /*color: #3A3A3A;*/
    color: var(--text);
}

a.link:focus, a.link:hover, a.link:active {
    /*color: #DD0000;*/
    color: var(--primary);
}

/* blau mit Pfeilicon */
a.link.pfeil, a.link.pfeil:link, a.link.pfeil:visited {
    background-image: url("../../img/gui/icon_pfeil_link.png");
    background-position: 0 0;
    background-repeat: no-repeat;
    padding-left: 24px;
}

a.link.pfeil:focus, a.link.pfeil:hover, a.link.pfeil:active {
    background-position: 0 -23px;
}

/* reine anchor sollen nicht formatiert sein */
a.anchor, a.anchor:link, a.anchor:visited, a.anchor:focus, a.anchor:hover, a.anchor:active {
    text-decoration: none;
    width:0;
    height:0;
    float: left;
}
/* ENDE: LINKS */


label {
    /*MIGRATION*/
    color: var(--text);
}

label.sub {
    color: black;
}

label.deaktiviert {
    opacity: 0.3;
    filter: alpha(opacity=30);
}

span.hervorgehoben {
    /*MIGRATION*/
    color: var(--secondary);
}

.highlight {
    background-color: #b6d057;
}

* + p {
    /* ... */
}

p + * {
    margin-top: 0;
}

div#logos {
    min-height: 102px;
    width: 998px;
    padding: 10px 0 0 0;
    display: inline-block;
}

div#logos div#logo_customer {
    float: left;
    margin-top: 8px;
}

div#logos div#logo_provider {
    float: right;
    margin-top: 10px;
}

#main_container {
    width: 998px;
    margin: 20px auto 20px auto;
    position:relative;
}
#main_container.popup {
    width: 678px;
}

.mainbox {
    padding: 22px;
    z-index: 1;
    position: relative;
}

/* vorlaeufiges Styling fuer die alte Secnav */
#secnav {
    font: 11px 'OpenSansRegular', Arial, sans-serif;
}

#inhalt {
    float:left;
    width: 100%;
}

/* 2 Spalten: Inhalt + Sidebar*/
.two_columns_sidebar #inhalt,
.two_columns_sidebar_left #inhalt {
    width: 710px;
}

.two_columns_sidebar_left #inhalt {
    float: right;
}

#sidebar {
    float: right;
    width: 222px;
    margin: 0;
    font-size: 14px;
}

/* falls die Sidebar mal links sein soll */
.two_columns_sidebar_left #sidebar {
    float: left;
}

/* TODO delete? */
#mitscrollende_sidebar {
    width:222px;
    float:left;
}

.content-shadow-bottom {
    width: 1000px;
    height: 15px;
}

h1 {
    color: #fff;
    text-shadow: 0px 1px 2px #515151;
    font: 26px 'OpenSansRegular', Arial, sans-serif;
}

h2 {
    /*color: var(--s_dark_80);*/
    color: var(--text);
    font-size: var(--fs_x_medium);
    font-weight: normal;
    margin-bottom: 15px;
}

* + h2 {
    margin-top: 25px;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #444444;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #444444;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #444444;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #444444;
}

/* grosse rote Schrift */
h2.mm_rot {
    color: var(--primary);
    font: 26px/34px 'OpenSansSemibold',Arial,sans-serif;
    margin-bottom: 15px;
}

/* BEGINN: METAINFORMATIONEN */
#meta {
    color: #70706f;
    margin: 0 0 30px 0;
}

#meta img.pfeilbutton {
    background-image: url('../../img/gui/pfeil_toggle_rot.png');
    background-repeat: no-repeat;
    background-position: 0 -23px;
    height: 23px;
    cursor: pointer;
    float: left;
    margin-right: 10px;
}

#meta img.pfeilbutton_active {
       background-position: 0 0;
}

#meta .meta_container + .meta_container {
    margin-top: 15px;
}

#meta .metadata_spalte + .metadata_spalte {
/*     margin-left: 15px; */
}

#meta h2 {
    margin: 0 0 13px 0;
    font-size: 15px;
    color: black;
}

#meta h2 label + span {
    display: inline-block;
    width: 800px;
}

#meta label {
    float:left;
    width: 120px;
}
#meta .meta_subdata {
    padding-left:154px;
    width: 100%;
    display: inline-block;
    width: 800px;
    color: black;
}

#meta .meta_subdata.meta_subata_hinweis {
    padding-top: 15px;
}

#meta .meta_subdata label {
    color:#848484;
    width: 220px;
}

#meta .meta_subdata span {
    display: inline-block;
    max-width: 560px;
}

#meta .meta_subdata span.info_dringend {
    padding-left: 30px;
    margin-top: 10px;
}

span.info_dringend {
    background-image: url("../../img/gui/meldungen/alarm_hinweis.png");
    background-repeat: no-repeat;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    padding-left: 30px;
    font-family: 'OpenSansSemiBold', Arial, sans-serif;
    /*MIGRATION*/
    color: var(--mm-info);
    vertical-align: middle;
}

#meta .meta_subdata span.info_dringend img {
    vertical-align: middle;
    padding-left: 5px;
}

.kontaktinfos,
div.dokumentbox {
    background-color:#EEF5F7;
    padding:20px;
    border: 1px solid #D9E9EE;
}

.downloadBox {
    border: 1px solid #D9E9EE;
    background-color: #EEF5F7;
    margin: 10px 0px;
    padding: 20px;
    overflow: hidden;
}

.downloadBox + .downloadBox {
    margin-bottom: 10px;
}

.downloadBox &gt; .fileicon {
    float: left;
    margin-right: 20px !important;
}

.downloadBox &gt; .filetext {
    margin-left: 78px;
}

.downloadBox .filetext &gt; div {
    margin-bottom: 7px;
}

.downloadBox .filetext &gt; p {
    line-height: 22px;
    margin-bottom: 7px;
}

.downloadBox img {
    box-shadow: 2px 2px 2px #9EA2A4;
}

div.dokumentbox + div.dokumentbox {
    margin-top: 10px;
}

#meta div.metadata_spalte {
    float:left;
}

#meta .meta_subdata_container {
    padding-left: 154px;
}

/* Erweiterungen fuer 2spaltige Rahmendaten (vgl. BANF); passenden Labelbreiten im spez. Sheet vergeben */
#meta .meta_subdata_column_container {
    padding-left: 154px;
}

#meta .kontaktinfos_container {
    padding-left: 134px;
}

#meta .kontaktinfos_container div.personheader {
    color: rgb(51, 51, 51);
    font-family: 'OpenSansSemiBold',Arial,sans-serif;
    padding-bottom: 5px;
}

.meta_subdata_column_container.kontaktinfos_container +
.meta_subdata_column_container.kontaktinfos_container {
    padding-top: 15px;
}

#meta .meta_subdata_column {
    float: left;
    width: 386px;
}

#meta .meta_subdata_column.meta_sudata_second_column label {
    width: 120px;
}

#meta .meta_subdata_column .meta_subdata {
    padding-left: 0;
}

#meta .meta_subdata_column + .meta_subdata_column {
    margin-left: 20px;
}

#meta .meta_subdata_column + .meta_subdata_column.meta_sudata_second_column .meta_subdata {
    width: 310px;
}

#meta .meta_subdata_column + .meta_subdata_column.meta_sudata_second_column {
    margin-left: 80px;
    width: 310px;
}

#meta .meta_subdata_column .meta_subdata label,
#meta .meta_subdata_column .meta_subdata span {
    float: left;
}

#meta .meta_subdata_container .meta_subdata {
    padding-left: 0px;
}

#meta .meta_subdata_container .meta_subdata span {
    width: 555px;
    display: inline-block;
}

#meta a.feedback span {
    background-image: url("../../img/gui/suchergebnisliste/icon_feedback.png");
    background-repeat: no-repeat;
    color: #FFFFFF;
    display: inline-block;
    font: 9px/14px 'OpenSansSemiBold';
    height: 21px;
    margin-left: 5px;
    text-align: center;
    vertical-align: middle;
    width: 21px;
}

#meta .meta_subdata_column .meta_subdata {
    width: 410px;
}

#meta .meta_subdata_column .meta_subdata  span {
    width: 190px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

#meta .meta_subdata_column_single_column,
#meta .meta_subdata_column_single_column .meta_subdata,
#meta .meta_subdata_column_single_column .meta_subdata label{
    float: left;
}

#meta .meta_subdata_column_single_column .meta_subdata{
    padding-left: 0px;
}

#meta .meta_subdata_column_single_column .meta_subdata span{
    float: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}


/* ENDE: METAINFORMATIONEN */


/* BEGINN: BOX_CONTAINER UND INHALTBOX */
.box_container {
    background-color: #FFF;
    margin: 0 0 22px 0;
    border: 1px solid #c8c8c8;
}

#inhalt .box_container {
    margin: 0 0 22px 0;
    position: relative;
}

/* Accordion Optik */
#inhalt .accordion {
    margin: 0 0 22px 0;
}

/* Accordion Optik */
#inhalt .accordion .box_container {
/*     border: 1px solid #c8c8c8; */
    border: none;
    margin: 0 0 1px 0;
}

#inhalt .accordion .box_container:after {
    content: none;
    background-image: none;
    background-repeat: no-repeat;
    height: 0;
    width: 0;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    display: none;
}


/* box_container fuer die Sidebar */
#sidebar .box_container {
}

.inhaltbox {
    padding: 20px 30px 20px 30px;
}

.inhaltbox_padding_top {
    padding-top: 20px;
}

.inhaltbox + .inhaltbox,
.inhaltbox + * + .inhaltbox,
.inhaltbox.borderTop {
    border-top: 1px solid #C8C8C8;
}

#sidebar .inhaltbox {
    padding: 10px 10px 10px 10px;
}

#sidebar div.button,
#sidebar div.c2abutton {
    width: 154px;
}
#sidebar div.button.enter {
	width: auto;
}
#sidebar div.button_container.raumkalkulator div.left.button.blue input {
    text-align: left;
    padding: 0 0 0 0;
}

#sidebar .box_container .hilfe_anrufen_banner {
    background-image: url("../../img/gui/banner/banner_hilfe_anrufen.jpg");
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 200px;
    height: 187px;
    padding: 10px;
}

#sidebar .box_container .hilfe_anrufen_banner h2 {
    color: #2D6CA2;
    line-height: 30px;
    font-size: 20px;
    font-weight: bold;
    margin-botton: 15px;
    width: 150px;
}

#sidebar .box_container .hilfe_anrufen_text h4 {
    font-size: 15px;
    margin: 0;
    padding: 0;
    color: #666666;
}

#sidebar .box_container.hilfe_anfrageinfo_banner {
    color: #2D6CA2;
}

#sidebar .box_container.hilfe_anfrageinfo_banner .hilfe_anfrage_text {
    padding: 10px 10px 0px 10px;
}

#sidebar .box_container.hilfe_anfrageinfo_banner .hilfe_anfrage_text h4 {
    color: #848484;
}

#sidebar .box_container.hilfe_anfrageinfo_banner .hilfe_anfrage_text h4 + h4 {
    margin-bottom: 10px;
}

#sidebar .box_container.hilfe_anfrageinfo_banner h2 {
    color: #2D6CA2;
    font: 16px/30px 'OpenSansSemibold',Arial,sans-serif;
    margin-bottom: 2px;
}

#sidebar .box_container.hilfe_anfrageinfo_banner h4 {
    font: 14px/18px 'OpenSansSemiBold', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#sidebar .box_container.hilfe_anfrageinfo_banner .hilfe_anfrage_support {
    background-image: url("../../img/gui/banner/banner_anfrage_info_sidebar.jpg");
    background-repeat: no-repeat;
    background-position: 0 0;
    height: 130px;
}

#sidebar .box_container.hilfe_anfrageinfo_banner .hilfe_anfrage_button {
    margin-top: 10px;
    padding: 0 10px 0 10px;
}

#sidebar div.button_container.hilfe_anfrage_button div.blue {
    margin-top: 0;
    background-color: #2D6CA2;
}

#sidebar div.button_container.hilfe_anfrage_button div.blue:active {
    background-image: linear-gradient(top, #2D6CA2 16%, #2d80bb 65%);
    background-image: -o-linear-gradient(top, #2D6CA2 16%, #2d80bb 65%);
    background-image: -moz-linear-gradient(top, #2D6CA2 16%, #2d80bb 65%);
    background-image: -webkit-linear-gradient(top, #2D6CA2 16%, #2d80bb 65%);
    background-image: -ms-linear-gradient(top, #2D6CA2 16%, #2d80bb 65%);
    -pie-background: linear-gradient(left , #2D6CA2 16%, #2d80bb 65%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.16, #2D6CA2), color-stop(0.65, #2d80bb));

    /* Nutzung von PIE zur Anzeige von CSS3 in den IEs */
    behavior:url('/direct/style/gui/PIE/PIE.htc');
}

#sidebar div.button_container.hilfe_anfrage_button  div.blue:hover {
    background-color: #2d80bb;
}

/* Rahmenprogramm Widget */
#sidebar .box_container .widget_rahmenprogramm_banner {
    background-image: url("../../img/gui/banner/banner_rahmenprogramm_widget_stadthelden.jpg");
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 200px;
    height: 330px;
    padding: 10px;
}

#sidebar .box_container .widget_rahmenprogramm_banner h2 {
    color: #ffffff;
    font: 16px/20px 'OpenSansBoldItalic',Arial,sans-serif;
    text-align: center;
    margin-top: 8px;
    width: 200px;
}

#sidebar .box_container .widget_rahmenprogramm_banner h4 {
    font: 14px/20px 'OpenSansSemiBold', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #666666;
}
/* ENDE: BOX_CONTAINER UND INHALTBOX */


/* BEGINN: UNTERUEBERSCHRIFTEN H3 */
.box_container h3 {
    font-size: var(--fs_x_medium);
    line-height: normal;
    font-weight: normal;
    /*color: var(--s_dark_80);*/
    color: var(--text);
    padding: 0;
    margin: 0 0 25px 0;
    vertical-align: middle;
}


.box_container * + h3 {
    margin-top: 25px;
}

.box_container div.actionmenu_container h3 {
    margin-top: 0px;
}

/* Ausnahme fuer ".box_container * + h3" */
.box_container .kommentarliste_zuklappbutton + h3,
.box_container .kommentarliste_aufklappbutton + h3 {
    margin-top: 0px;
}

.box_container h3 a.infoUndHilfe {
    position: absolute;
    margin-top: 5px;
}

.box_container .actionmenu_container {
    margin-bottom: 25px;
}

.box_container .actionmenu_container h3.highlight {
    background-color: #b6d057;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 5px;
    color: white;
}

.box_container .actionmenu_container h3 {
    float: left;
    margin-bottom: 0;
    width: 60%;
}

.box_container .actionmenu_container div.actionmenu {
    float: right;
}

.box_container .actionmenu_container div.actionmenu ul.actionmenu li.actionmenu_actions_thirdlevel {
    border: 1px solid #2d6ca2;
}

.box_container .actionmenu_container div.actionmenu ul.actionmenu li.actionmenu_mainItemHover,
.box_container .actionmenu_container div.actionmenu ul.actionmenu li.actionmenu_mainItemActive {
    border: 1px solid #CCD2D4;
    background-image: url('../../img/gui/bg_hamburger_dark.png');
}

.actionmenu_container.highlight {
    background-color: #b6d057;
    padding: 5px;
}

.actionmenu_container.highlight div.actionmenu {
    background-color: white;
}
/* ENDE: UNTERUEBERSCHRIFTEN H3 */

/* BEGINN: UNTERUEBERSCHRIFTEN H4 */
h4 {
    padding: 0;
    margin: 0;
    /*color: var(--dezent_80);*/
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}
/* ENDE: UNTERUEBERSCHRIFTEN H4 */


/* BEGINN: UNTERUEBERSCHRIFTEN H6 */
h6 {
	font-size: 15px;
	line-height: 15px;
    /*color: #4b4a46;*/
    color: var(--text);
    padding: 7px 10px 7px 10px;
    vertical-align: middle;
}

* + h6 {
    margin-top: 20px;
}

.h6-content-eingerueckt {
    padding-left: 10px;
    padding-right: 10px;
}

h6.toggleButtonH6 {
    padding-left: 35px;
    cursor: pointer;
}
/* ENDE: UNTERUEBERSCHRIFTEN H6 */


/* BEGINN: WEITERE STRUKTURIERENDE ELEMENTE */
div.eingerueckt {
    padding-left:30px;
}
h3 + .eingerueckt {
    margin-top:-15px;
}
/* ENDE: WEITERE STRUKTURIERENDE ELEMENTE*/


/* BEGINN: FORMULAR-STYLING */
.eingabe_falsch_true {
    background-color:#FCEFA1; /*gelblich*/
}

.inhaltbox .block {
    padding: 0;
    margin: 0 0 52px 0;
}

.inhaltbox .kompakt div.formularelement + div.formularelement {
    margin-top: 7px;
}

.inhaltbox div + .kompakt,
.inhaltbox div.kompakt + div {
    margin-top: 17px;
}

.inhaltbox div.formularelement + div.formularelement{
    margin-top: 17px;
}

.inhaltbox .formularelement.abstandUnten {
    margin-bottom: 17px;
}

.inhaltbox .formularelement.abstandOben {
    margin-top: 17px;
}

.inhaltbox .formularelement.abstandRechts {
    margin-right: 15px;
}

.inhaltbox .formularelement.abstandLinks {
    margin-left: 15px;
}

.inhaltbox .formularelement a.infoUndHilfe {
    position: absolute;
    margin-top: 7px;
}

.inhaltbox .formularelement .plaintext {
    float: left;
    padding-top: 5px;
    color: #444444;
}

.inhaltbox .formularelement label input[type="checkbox"] {
    margin-right: 9px;
}

.inhaltbox .formularzeile {
    position: relative;
    margin: 0;
    display: block;
}

.inhaltbox .formularzeile a.infoUndHilfe {
    position: absolute;
    top: 27px;
    left: -48px;
}

.inhaltbox .formularzeile + .formularzeile {
    margin-top: 27px;
}

.inhaltbox .kompakt .formularzeile + .formularzeile {
    margin-top: 7px;
}

.inhaltbox .formularzeile.labeled + .kompakt {
    margin-top: 0px;
}

.inhaltbox .formularzeile.labeled + .formularzeile {
    margin-top: 0px;
}

.inhaltbox .formularzeile.labeled label {
    margin-right: 17px;
}

.inhaltbox .formularzeile div.formularelement {
    float: left;
}

.inhaltbox .formularzeile div.formularelement + div.formularelement {
    margin-top: 0px;
}

.inhaltbox .formularzeile div.formularelement.indent {
    margin-left: 73px;
}

.inhaltbox label {
    display: block;
}

.inhaltbox label.column {
    float:left;
    padding-top: 5px;
    padding-right: 4px;
}

.inhaltbox label.column_zusatzlabel_vor_eingabefeld {
	display:block;
	float:left;
	width:50px;
	margin-left:-50px;
	color: #848484;
	padding-top: 5px;
}

.inhaltbox label.inline {
    display: inline;
    float: none;
}

.inhaltbox .kompakt .formularelement a.column {
    width: 150px;
    padding-right: 4px;
}

.inhaltbox .kompakt .formularelement a.column + a.column {
    width: 154px;
    padding-left: 5px;
}


/* BEGINN: CHECKBOX/RADIO + LABEL */
.inhaltbox .radio_or_checkbox_entry {
    width: 100%;
    overflow: hidden;
    padding: 4px 0;
    display: block;
}

/* fuer Elemente innerhalb einer Formularzeile */
.inhaltbox .radio_or_checkbox_entry_inline {
    overflow: hidden;
    padding: 4px 0;
    display: block;
}

.inhaltbox .radio_or_checkbox_entry input {
    float: left;
    margin-top: 3px;
    width: 13px;
    height: 13px;
    accent-color: var(--primary);
}
.inhaltbox .radio_or_checkbox_entry .radio_or_checkbox_label {
    display: block;
    margin-left: 25px;
}
.inhaltbox label.radio_or_checkbox_label,
.inhaltbox .radio_or_checkbox_entry .radio_or_checkbox_label label {
    display: inline;
}
.inhaltbox .radio_or_checkbox_entry label.radio_or_checkbox_label.alternativeColor,
.radio_or_checkbox_entry.sub label,
.radio_or_checkbox_entries_oneline.sub label {
    color: black;
}

#sidebar .inhaltbox .radio_or_checkbox_entry label.radio_or_checkbox_label {
    margin-top: 1px;
}
.radio_or_checkbox_entries_oneline {
    float:left;
}
.radio_or_checkbox_entries_oneline span {
    float:left;
}
.radio_or_checkbox_entries_oneline input {
    margin-top: 7px;
    padding:0;
    float:left;
    margin-right:3px;
}
#rahmendaten .radio_or_checkbox_entries_oneline input {
    margin-top: 5px;
    padding:0;
    float:left;
    margin-right:5px;

}
.radio_or_checkbox_entries_oneline label {
    margin-top: 5px;
    float:left;
    margin-right:7px;
}


.inhaltbox .radio_or_checkbox_entry input[type="text"] {
    height: 25px;
    width: 159px;
}

.inhaltbox .veranstaltungsanfragen label {
    width: 194px;
}

.inhaltbox .veranstaltungsanfragen p {
    /*MIGRATION*/
    color: var(--text);
    float: left;
    padding-top: 5px;
    padding-right: 4px;
}

/* BEGINN: Sidebar INPUT, SELECT und Checkbox */
#sidebar .chzn-single {
    line-height: 21px;
    height: 22px;
}

#sidebar select {
    padding-top:2px;
    padding-bottom:2px;
    height:24px;
}

#sidebar input[type="text"] {
    height: 20px;
    /* width: 100%; Wird das irgendwo benoetigt? Macht in der Suchergebnisliste Probleme. */
}

#sidebar input[type="text"].date {
    width: 151px;
}

#sidebar label.checkbox {
    padding-left: 18px;
    position: relative;
    color: #444444;
}

#sidebar label.checkbox input {
    position: absolute;
    left: 0;
    margin-top: 2px;
}
/* ENDE: Sidebar INPUT, SELECT und Checkbox */


/* zweispaltig Anordnung von Radio/Checkbox + Label */
.inhaltbox .zweispaltig {
    overflow: auto;
}

.inhaltbox .zweispaltig div.radio_or_checkbox_entry {
    width: 50%;
    float: left;
}

.two_columns_sidebar .inhaltbox .zweispaltig div.radio_or_checkbox_entry label.radio_or_checkbox_label {
    width: 280px;
}

.zweispaltig div.radio_or_checkbox_entry input.bigInput {
    width: 22px;
    height: 15px;
    margin-top: 0;
}
/* ENDE: CHECKBOX/RADIO + LABEL */


input[type="text"],
input[type="password"] {
    height: 25px;
    margin: 0 15px 0 0;
    font-size: 14px;
    line-height: 25px;
    border: 1px solid #aaa;
    border-radius: 2px;
    box-shadow: inset 0px 1px 2px #ccc;
    background-repeat: no-repeat;
    padding: 1px 8px 1px 8px; /* brauchen wir, da ich das Padding initial fuer ALLE input auf 0 stelle, propeller aber nicht */
}

input[type="password"] {
    font-family: 'OpenSansRegular', Arial, sans-serif;
}

input[type="checkbox"] {
    margin: 0;
    padding: 0;
}

input[type="text"].last,
input[type="password"].last {
    margin-right: 0px;
}

input[type="text"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    background-color:#D7E7EE;
    outline: 0;
}

/*Fuer den IE*/
input[type="text"]:disabled,
input[type="password"]:disabled,
select:disabled,
option:disabled,
textarea:disabled {
    background-color: #F0F0F0;
}

input.checkbox {
    margin: 8px 0 0 0;
}

input[type=checkbox] {
    accent-color: var(--primary);
}

input.number {
    text-align: right;
}

textarea.message_ohne_dateiupload,
textarea.message {
    height: 25px;
    font: 13px/25px 'OpenSansRegular', Arial, sans-serif;
    border: 1px solid #AAA;
    border-radius: 2px;
    box-shadow: inset 0px 1px 2px #CCC;
    min-height: 100px;
    padding: 0 8px 0 8px;
}
textarea.message {
    margin: 0 0 30px 0;
}
textarea.message_ohne_dateiupload {
    margin: 0;
}
textarea.textareasize{
    width: 626px;
}

#dialog_nachricht_erstellen textarea.textareasize {
    width: 586px;
    min-height: 170px;
}

#dialog_nachricht_erstellen #infoDetailInformationZurVa {
    right: auto;
    left: 14px;
    margin-top: 3px;
}

.inhaltbox .radio_or_checkbox_entry #detailInformationZurVaAnMeetingplanerContainer.radio_or_checkbox_label {
    margin-left: 0;
}

div#detailInformationZurVaAnMeetingplanerContainer.aufklappbares_radioauswahl_unterformularelement {
    padding:4px 0 4px 50px;
    background-image:url(../../img/icons/arrow_enter.png);
    background-repeat:no-repeat;
    background-position:30px 12px;
}

div#detailInformationZurVaAnMeetingplanerContainer.aufklappbares_radioauswahl_unterformularelement label {
    margin-left: 10px;
}

.inhaltbox .radio_or_checkbox_entry input#detailInformationZurVaAnMeetingplaner {
    margin-top: 8px;
}

.two_columns_sidebar textarea.message {
    width: 626px;
}

.two_columns_sidebar .formularelement .left textarea.message {
    width: 300px;
}

img.angebotFreigabeDetails
{
    padding-top: 4px;
}

img.externeAngebotFreigabeDetails {
    padding-top: 4px;
    width: 12px;
}

/* select-Formatierung fuer den nicht-chosen-Fall */
select {
    border-radius: 2px;
    border: 1px solid #aaaaaa;
    box-shadow: 0 1px 2px #CCCCCC inset;
    font: 13px/25px 'OpenSansRegular',Arial,sans-serif;
    height: 29px;
    padding-top: 4px;
    padding-bottom: 2px;
    padding-left: 4px;
    padding-right: 2px;
    color: #444444;
}

select {
    margin: 0 15px 0 0;
}

select option {
    font: 13px/25px 'OpenSansRegular',Arial,sans-serif;
    padding: 4px 0 4px 7px;
    color: #444444;
    background-color: white;
}

.sprachauswahl option {
    background-repeat: no-repeat;
    background-position: 2px center;
    padding-left: 22px;
}

/* gaengige Feldbreiten fuer das spaltenartige Formularlayout */
.labelbreite {
    width: 221px;
}

.sehrkurz {
    width: 100px;
}

.kurz {
    width: 159px;
}

select.kurz {
    width: 177px;
}

.lang {
    width: 353px;
}

select.lang {
    width: 371px;
}

.date,
.attendee {
    width: 128px;
}

.defaultSizeSelect {
    width: 196px;
}

#sidebar .defaultSizeSelect {
    width: 200px;
}

.defaultSizeInput {
    width: 178px;
}

#sidebar .defaultSizeInput {
    width: 182px;
}

.bigInput {
    width: 400px;
}

/* BEGINN: FERTIG-SCHRITT AM PROZESSENDE */
.erfolg {
    min-height: 400px;
    padding-top: 75px;
}

.erfolg .danke {
	font-size: 70px;
	font-weight: bold;
    text-align: center;
    display: block;
}

.erfolg .gesendet {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    display: block;
}

.erfolg .c2abutton {
    float: none;
    margin: 65px auto 0 auto;
    width: 393px; /* !!! im konkreten Stylesheet anpassen! */
}

/* ENDE: FERTIG-SCHRITT AM PROZESSENDE */


/* blauer Tooltiptext */
.bluenote {
    font-size: 12px;
    color: #2D6CA2;
    vertical-align: middle;
}

.plaintext .bluenote {
    vertical-align: baseline;
}

/* Waehrung */
.unit {
	font-size: 12px;
    color: #70706f;
    vertical-align: middle;
}

/* Sortiericon */
.sortbutton {
    cursor: move;
    position: absolute;
    left: -25px;
    top: 8px;
}

/* Papierkoerbe */
.formularzeile .delete {
    position: absolute;
    top: 4px;
    margin-left: 8px;
}

/* ENDE: HIGHLIGHTINGS */

.size-100-percent{width:100%;}
.size-626 {width: 626px;}
.size-614 {width: 614px;}
.size-600 {width: 600px;}
.size-498 {width: 498px;}
.size-446 {width: 446px;}
.size-393 {width: 393px;}
.size-353 {width: 353px;}
.size-334 {width: 334px;}
.size-327 {width: 327px;}
.size-318 {width: 318px;}
.size-243 {width: 243px;}
.size-215 {width: 215px;}
.size-188 {width: 188px;}
.size-186 {width: 186px;}
.size-179 {width: 179px;}
.size-168 {width: 168px;}
.size-159 {width: 159px;}
.size-128 {width: 128px;}
.size-93 {width: 93px;}
.size-40 {width: 40px;}
.size-56 {width: 56px;}

.full-length {
    width: 100%;
}
/* ENDE: FORMULAR-STYLING */

span.dateilist {
    display: inline-block;
}

/* BEGINN: HILFE-ICONS*/
a.infoUndHilfe {
    height: 14px;
    width: 14px;
    display: inline-block;
    left: -18px;
    background:transparent url('../../img/gui/info_toggle_dark.png') no-repeat right -15px;
}

a.infoUndHilfe.light {
    background:transparent url('../../img/gui/info_toggle_light.png') no-repeat right -15px;
}

#sidebar a.infoUndHilfe {
    left: auto;
    right: 5px;
}

a.infoUndHilfe, a.infoUndHilfe:link, a.infoUndHilfe:active,
a.infoUndHilfe:focus, a.infoUndHilfe:visited {
    color:#FFFFFF;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:11px;
    font-weight:normal;
    text-decoration:none;
}

a.infoUndHilfe:hover {
    background-position: 0px 0px;
    cursor: help;
}
/* ENDE: HILFE-ICONS*/


/* BEGINN: TOOLTIPS */
div.toolTipFix {
    border:1px solid #73C7FF;
    border-radius:4px;
    background-color:#FCFAF1;
    box-shadow:rgba(0,0,0,0.50) 5px 5px 4px;
    padding:10px;
}
/* ENDE: TOOLTIPS */


/*BEGINN: HINWEISE*/
span.wichtiger_hinweis {
    color:red;
    font-weight: normal;
}

div.wichtiger_hinweis {
    /*MIGRATION*/
    background-color: var(--mm-info-light); 
    font: 14px 'OpenSansSemiBold';
    /*color:#444444;*/
    color: var(--text);
    padding: 15px 15px 15px 15px;
    border: 1px solid var(--mm-info);
    margin-bottom:22px;
}

div.alarm_hinweis {
    background-color:#F8F546;
    font: 14px 'OpenSansSemiBold';
    color:#444444;
    padding: 15px 15px 15px 15px;
    border: 1px solid #AAAAAA;
    margin-bottom:22px;
}

div.wichtiger_hinweis_ueberschrift,
div.alarm_hinweis_ueberschrift {
    font: 15px 'OpenSansBold';
    padding-bottom:10px;
    padding-left: 30px;
    text-transform: uppercase;
    /*color: white;*/
    color: var(--text);
    min-height: 24px; /* falls man nur das Icon moechte und keinen Ueberschriftstext */
}

div.wichtiger_hinweis_ueberschrift {
    background-image:url(../../img/gui/meldungen/wichtiger_hinweis.png);
    background-repeat: no-repeat;
}

div.alarm_hinweis_ueberschrift {
    background-image:url(../../img/gui/meldungen/alarm_hinweis.png);
    background-repeat: no-repeat;
    color: #444444;
}

div.technischer_fehler {
    background-color:#F8F546;
    font: 14px 'OpenSansSemiBold';
    color:#444444;
    padding: 15px 15px 15px 15px;
    border: 1px solid #AAAAAA;
    margin-bottom:22px;
}

div.technischer_fehler_ueberschrift {
    background-image:url(../../img/gui/meldungen/technischer_fehler.png);
    background-repeat: no-repeat;
    font: 15px 'OpenSansBold';
    padding-left: 30px;
    padding-bottom:10px;
    text-transform: uppercase;
    color: #444444;
}

div.aktionsaufforderung {
    background-color: var(--mm-info-light);
    font: 14px 'OpenSansSemiBold';
    color:var(--text);
    background-image:url(../../img/gui/meldungen/aktionsaufforderung.png);
    background-position: 10px 13px;
    background-repeat: no-repeat;
    padding: 15px 15px 15px 40px;
    border: 1px solid var(--mm-info);
    margin-bottom:22px;
}

div.erfolgsnachricht {
    /*MIGRATION*/
    background-color: var(--mm-success-light);
    font: 14px 'OpenSansSemiBold';
    color:#444444;
    background-image:url(../../img/gui/meldungen/erfolgsnachricht.png);
    background-position: 10px 13px;
    background-repeat: no-repeat;
    padding: 15px 15px 15px 40px;
    border: 1px solid #AAAAAA;
    margin-bottom:22px;
}

/*
div.hinweis_im_kontext {
    background-color:#b6d057;
    color:#444444;
    padding: 15px;
    border: 1px solid #AAAAAA;
    margin-bottom:22px;
}
*/

div.hinweis_im_kontext {
    background-color: var(--mm-info-light);
    color: var(--text);
    padding: 15px;
    border: 1px solid var(--mm-info);
    margin-bottom:22px;
}

div.hinweis_im_kontext b {
	color:#313030;
}

/* Abstand falls ausserhalb eines box_containers */
div.inhaltbox div.wichtiger_hinweis {
    margin-bottom:0px;
}
div.inhaltbox div.alarm_hinweis {
    margin-bottom:0px;
}
div.inhaltbox div.technischer_fehler {
    margin-bottom:0px;
}
div.inhaltbox div.aktionsaufforderung {
    margin-bottom:0px;
}
div.inhaltbox div.erfolgsnachricht {
    margin-bottom:0px;
}
div.inhaltbox div.hinweis_im_kontext {
    margin-bottom:0px;
}

/* Auflistung innerhalb des Hinweises */
div.wichtiger_hinweis .auflistung li {
    color: #444444;
    font: 14px 'OpenSansSemiBold';
    height: 25px;
}

div.wichtiger_hinweis .auflistung li span {
    padding-top: 4px;
}

div.wichtiger_hinweis .auflistung.bullets li {
    background-position: 3px 12px;
    padding-left: 12px;
}
/*ENDE: HINWEISE*/


/* BEGINN: LEGENDE */
#legende_content {
    font-size: 14px;
}
#legende label {
    float:left;
}
#legende_content {
    margin-left:83px;
}
#legende_content .legende_entry_short,
#legende_content .legende_entry_medium,
#legende_content .legende_entry_long {
    float:left;
}
#legende_content .legende_entry_short {
    width:200px;
}
#legende_content .legende_entry_medium {
    width:400px;
}
#legende_content .legende_entry_long {
    width:561px;
}
#legende_content .legende_entry_long img.externeAngebotFreigabeDetails {
    padding-top: 4px;
}
/* ENDE: LEGENDE */


/* BEGINN: AKTIONEN UND BEMERKUNGEN */
.kommentarunten,
.kommentarunten_time {
    /*color:#4b4a46;*/
    color: var(--text);
}
.kommentarunten .kommentar_box {
    background-color:#eef5f7;
    padding:10px 10px 10px 10px;
    border-top: 1px solid white;
    word-wrap: break-word;
}
.kommentarunten th.kommentar_label {
    font: 14px 'OpenSansSemibold', Arial, sans-serif;
    padding-right:10px;
    text-align:left;
}
.kommentarunten div.kommentar_label {
    font: 14px 'OpenSansSemibold', Arial, sans-serif;
}
.kommentarunten_time {
    margin-top:10px;
    padding:2px 3px;
    /*MIGRATION*/
    background-color: var(--secondary);
    font-size: 14px;
}
.kommentarliste_aufklappbutton,
.kommentarliste_zuklappbutton {
    width:24px;
    height:24px;
    float:left;
    margin-right:6px;
    background-repeat:no-repeat;
    background-image:url(../../img/gui/pfeil_toggle_blau.png);
    cursor:pointer;
}
.kommentarliste_aufklappbutton {
    background-position:left top;
}
.kommentarliste_zuklappbutton {
    background-position:left bottom;
}

ul.datei_liste li {
    padding-top: 5px;
}

ul.datei_liste li span {
    padding: 0px;
    width: auto;
}
ul.datei_liste span.text {
    line-height:24px;
    vertical-align:middle;
}

ul.datei_liste li span.datei_icon {
    box-shadow: 2px 2px 2px #9EA2A4;
    width: 17px;
    height: 24px;
    display: block;
    float: left;
    margin-bottom: 5px;
    margin-right: 10px;
    background-image: url('../../img/gui/Sonstiges_Icon_17x24.png');
    border:none;
    background-repeat:no-repeat;
}

ul.datei_liste  li span.datei_icon.pdf {
    background-image: url('../../img/gui/PDF_Icon_17x24.png');
}

ul.datei_liste  li span.datei_icon.document {
    background-image: url('../../img/gui/Word_Icon_17x24.png');
}

ul.datei_liste  li span.datei_icon.table {
    background-image: url('../../img/gui/Excel_Icon_17x24.png');
}

table.geaenderte_projektdaten {
    font: 13px 'OpenSansRegular', Arial, sans-serif;
    table-layout:fixed;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}
table.geaenderte_projektdaten th,
table.geaenderte_projektdaten td {
    border-color: #fff;
    border-style:solid;
    border-width:0px 1px 1px 0px;
    text-align:left;
    vertical-align:top;
}
table.geaenderte_projektdaten td {
    background-color:#EAEAEA;
    padding:10px;
    background-color:#F2F2F2;
}
table.geaenderte_projektdaten th {
    /*MIGRATION 3.11*/
    background-color: var(--secondary);
    padding:5px 10px 5px 10px;
}
table.geaenderte_projektdaten td.singlecolcell,
table.geaenderte_projektdaten th.singlecolcell,
table.geaenderte_projektdaten td.singlecolcell div,
table.geaenderte_projektdaten th.singlecolcell div {
    word-wrap:break-word;
    width:130px;
}
/* ENDE: AKTIONEN UND BEMERKUNGEN */


/* START: GELBE HINTS (DEPRECATED, VORERST ABER NOCH VERWENDET) */
/* Hints die per JS angezeigt werden, wenn man irgendwo mit der Maus drueber faehrt */
div.hint {
    display:block;
    border:1px solid black;
    /*MIGRATION*/
    background-color: var(--mm-info-light);
    padding:10px;
    color:black;
    position:fixed;
    z-index:500;
    width:200px;
    font: 13px 'OpenSansRegular', Arial, sans-serif;
}
div.hint span.hint_caption {
    font-weight: bold;
}
div.hint p+p {
    margin-top:10px;
}
#hintdiv {
	padding: 8px 10px;
}
/* ENDE: GELBE HINTS */


/* BEGINN: BLAUE 'BUTTONS' Meetingplaner-Startseite */
div.zweispaltig div.spalte {
    float: left;
}

div.zweispaltig div.spalte.abstand {
    margin-left: 14px;
    width: 27%;
}

div.button_aufzaehlung {
    margin-bottom: 10px;
}

div.button_aufzaehlung a,
div.button_aufzaehlung a:hover,
div.button_aufzaehlung a:active {
    /*MIGRATION*/
    display: block;
    font-size: 1rem;
    font-weight: 300;
    color: var(--element-background);
    text-decoration: none;
    background-image: url("../../img/gui/pfeil_toggle_rechts.png");
    background-repeat: no-repeat;
    background-position: 5px;
    padding: 10px 10px 10px 35px;
    background-color: var(--primary);
    border-radius: 4px;
    width: 272px;
}
/* ENDE: BLAUE 'BUTTONS' Meetingplaner-Startseite */


/* BRAUCHEN WIR FOLGENDES ... WOLLEN WIR ES AUSLAGERN ..... !? */



/* ============================================================
   Helper classes
   ============================================================*/

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ============================================================
   EXAMPLE Media Queries for Responsive Design.
   Theses examples override the primary ('mobile first') styles.
   Modify as content requires.
   ============================================================*/

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min-resolution: 144dpi) {
    /* Style adjustments for high resolution devices */
}

/**
* Messekalender
*/
/** FIXME Diese ID gibts nicht mehr, eventuell loeschen*/
#mkPopup, #mkPopupResult {
    display: none;
}

div.navigate-buttons {
    margin-bottom: 10px;
    margin-right: 12px;
    text-align: right;
}

div.navigate-buttons a {
    background: none repeat scroll 0 0 white;
    border: 1px solid #A4A4A4;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 1px 2px 1px grey;
    color: #717171;
    font: 14px 'OpenSansSemiBold';
    height: 28px;
    margin-left: 15px;
    overflow: hidden;
    padding: 0;
    display: inline-block;
    text-decoration: none;
}


div.navigate-buttons a span.pfeil {
    background-color: #929192;
    background-image: -moz-linear-gradient(left center , #929192, #727272);
    display: block;
    float: left;
    height: 40px;
    width: 25px;
}


div.navigate-buttons a span.pfeil img {
    margin: 0;
    padding: 0;
    vertical-align: middle;
}


div.navigate-buttons a span.text {
    float: left;
    line-height: 26px;
    margin: 0 10px;
}


div.toolTip.passwortToolTip,
div.toolTip.passwortToolTip div.toolTipInhalt{
    width:620px;
}

.raumkalkulatorTextfield{
    width:180px;
}

/* BEGINN: Sidebar-Widgets, die in jedem Kontext auftauchen koennen */
#sidebar .messekalender .umkreis {
    width: 45px;
    margin-right: 0px;
}

#sidebar .messekalender .ort {
    width: 103px;
}
/* ENDE: Sidebar-Widgets, die in jedem Kontext auftauchen koennen */

.loading-window span {
    vertical-align: bottom;
    margin-left: 15px;
    white-space: nowrap;
}

.loading-window img {
    height: 25px;
}

ul.breadcrumb {
    list-style: none;
    margin:10px 22px 0 22px;
}
ul.breadcrumb li,
ul.breadcrumb li a {
    color: var(--text);
    font-size: 12px;
    margin: 0px;
    display: block;
    line-height: 1.4;
    float: left;
    text-decoration:none;
}
ul.breadcrumb &gt; li + li:before {
    float:left;
    content:"&gt;";
    margin-left:6px;
    margin-right:6px;
}
ul.breadcrumb li a:hover {
    color: var(--primary);
}
img.brotkrumen_aufklappfeil {
    width:7px;
    height:4px;
    vertical-align:middle;
    background-image:url(../../img/gui/brotkrumen_aufklappmenue_pfeil.png);
    background-position:top left;
}
ul.breadcrumb li a:hover img.brotkrumen_aufklappfeil {
    background-position:bottom left;
}
ul.brotkrumen_aufklappliste {
    position:absolute;
    right:0;
    top:15px;
    background-color: #EEF5F7;
    border: 1px solid #CCD2D4;
    padding:6px 6px 5px 6px;
    border-radius: 4px 0px 4px 4px;
    box-shadow: rgba(0, 0, 0, 0.506) 5px 5px 4px;
    display:none;
}
ul.brotkrumen_aufklappliste li {
    border-bottom:1px solid #EEF5F7;
    background-color:white;
}
ul.brotkrumen_aufklappliste li a {
    padding:4px 13px;
}
ul.brotkrumen_aufklappliste li,
ul.brotkrumen_aufklappliste li a {
    float:none;
    text-align:right;
}
div.brotkrumen_aufklappliste_container {
    float:left;
    position:relative;
    z-index:2;
}
div.brotkrumen_aufklappliste_container:hover ul.brotkrumen_aufklappliste {
    display:block;
}

img.anfrage_liste_eintrag_out_of_order {
    height: 18px;
    width: 18px;
    padding-right: 6px;
}

img.anfrage_liste_eintrag_out_of_order_info {
    width: 18px;
    height: 18px;
    padding-left: 5px;
    padding-right: 5px;
}

#vertretungDialog_inhalt {
        display: inline-block;
    max-height: 600px;
    overflow-y: scroll;
    width: 100%;

}

.suchergebnisliste span.vertretungListItemBearbeiterListItem {
    background-image: url("../../img/icons/arrow_enter.png");
    background-position: 0 4px;
    background-repeat: no-repeat;
    padding-left: 24px;
    font-size: inherit;
}

#vertretung_container label {
    width: 221px;
}

#vertretung_container select {
       width: 180px;
}

/* Message System */
#verhandlungskommentarliste_platzhalter {
    display: none;
}
#detailinformationzurva_platzhalter {
    display: none;
}

.ellipsis, .none-ellipsis {
    cursor: pointer;
}

.none-ellipsis {
    display: none;
}

.vkEmpfaengerPersonen.ellipsis {
    display: inline-block;
}

.vkEmpfaengerPersonen + .vkEmpfaengerRolle {
    font:14px 'OpenSansSemibold',Arial,sans-serif;
}

/* Message Dialog */
li.template{
  display: none;
}

ul.dialogTeammitgliederListe {
    margin-top: 10px;
}
div.auswahlcontainer ul.auflistung li span.delete{
    width: 555px;
}

/* Vertragskopie-Infos*/
div#vertragskopie label {
    width: 450px;
}

div#vertragskopie span {
    padding-top: 5px;
    padding-right: 4px;
    display: inline-block;
}

div.hotelAP_trigger, div.hotelAP_trigger_active {
    clear:both;
    width:200px;
    cursor: pointer;
    font-weight:bold;
    padding: 0;
    margin: 0;
}

/*
    Karte
*/

div.poimenu {
    cursor: pointer;
    margin: 5px;
    margin-right: 22px;
    position: absolute;
    right: 0;
    text-align: left;
    top: 0;
    width: 225px;
    z-index: 1;
}

div.poimenu div.poimenu_main {
    -moz-user-select: none;
    background-clip: padding-box;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 2px 2px 2px 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    color: #000000;direction: ltr;
    font-family: Roboto,Arial,sans-serif;
    font-size: 11px;
    font-weight: 500;
    overflow: hidden;
    padding: 1px 6px;
    position: relative;
    text-align: left;
}

div.poimenu div.poimenu_main:hover {
    background-color: #EBEBEB;
}

div.poimenu div.poimenu_choice {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-clip: padding-box;
    background-color: white;
    border-color: -moz-use-text-color rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15);
    border-image: none;
    border-style: none solid solid;
    border-width: 0 1px 1px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
/*     display: none; */
    padding-top: 2px;
    position: relative;
    text-align: left;
    z-index: -1;
}

div.poimenu div.poimenu_choice div.poimenu_choice_elem {
    -moz-user-select: none;
    background-color: #FFFFFF;
    color: #565656;
    font-family: Roboto,Arial,sans-serif;
    font-size: 11px;
    padding: 3px 5px;
}

div.poimenu div.poimenu_choice div.poimenu_choice_elem.va{
    color: #000000;
}

div.poimenu div.poimenu_choice div.poimenu_choice_elem.shift{
    padding-left: 15px;
}

div.poimenu div.poimenu_choice div.poimenu_choice_elem:hover {
    background-color: #EBEBEB;
    color: #000000;
}

#map_sidebar_poi {
    margin: 10px 22px 22px 22px;
    width: 222px;
    opacity: 0.9;
}

#map_sidebar_poi input[type=text] {
    margin: 0;
    width: 180px;
}


#map_sidebar_poi select {
    width: 198px;
    margin-bottom: 5px;
}

#addPackageForm #addPackageInfo {
    margin-top: 25px;
    margin-bottom: 20px;
}

p.dialogMessage_packageinfo {
    padding: 5px 5px 0 5px;
    float: left;
    width: 80%;
}

.slider  {
    display: block;
}

.slider .ui-widget-content {
    border: none;
    background: #919191;
}

.slider_bar {
    margin-top: 7px;
    margin-left: 5px;
    margin-right: 5px;
}

.slider_label {
    font-size: 12px;
    margin-top: 3px;
    margin-left: 0 !important;
    max-height: 16px;
}


.button_hide {
    display: none;
}

.info_wirdgesendet {
    padding-left: 15px;
    color: #70706f;
    font: 14px 'OpenSansRegular';
}

.verhandlungskommentar {
    /*color:#2D6CA2;*/
    color: var(--secondary-dark);
}

.big-blue-headline div.button {
    margin: 20px 20px 0;
    float: right;
}

#kontaktinfos_wrapper * + .kontaktinfos {
    margin-top: 10px;
}

#kontaktinfos_wrapper .kontaktinfos b {
    display: inline-block;
    margin-bottom: 5px;
}

/* ============================================================
  Anfang:  Suchergebnisliste
   ============================================================*/

.suchergebnisliste {
}

.suchergebnisliste .ergebnis {
    border-top: 2px #c8c8c8 dotted;
    border-bottom: 2px #c8c8c8 dotted;
    padding: 25px 30px 25px 15px;
}

.suchergebnisliste.kompakt .ergebnis {
    padding-top: 10px;
    padding-bottom: 10px;
}

.suchergebnisliste .ergebnis + .ergebnis {
    border-top: none;
}

.suchergebnisliste .odd,
.suchergebnisliste .even {
    position: relative;
}

.suchergebnisliste .odd {
    background-color: #f8f8f7;
}

.suchergebnisliste .even {
    background-color: #fff;
}

.suchergebnisliste .ergebnis.highlight,
.suchergebnisliste .ergebnis.first.highlight,
.suchergebnisliste .ergebnis.last.highlight,
.suchergebnisliste .ergebnis.odd.highlight,
.suchergebnisliste .ergebnis.even.highlight {
    background-color: #b6d057;
}

.suchergebnisliste .resultlist_image,
.google_info .resultlist_image {
    float: left;
    width: 125px;
}

.suchergebnisliste .resultlist_image img,
.google_info .resultlist_image img {
    border-radius: 5px;
}

.suchergebnisliste .resultlist_image img.spaceholder_resultlist,
.google_info .resultlist_image img.spaceholder_resultlist {
    width: 125px;
    height: 75px;
    background-image:url(../../img/v4/locationsuche-placeholder.png);
    background-repeat: no-repeat;
    background-size: 125px 75px;
}

.suchergebnisliste .resultlist_image span,
.google_info .resultlist_image span {
    display: block;
    width: 125px;
    height: 14px;
    background-repeat: no-repeat;
    margin-top: 5px;
}

.suchergebnisliste .info_area a.meetingpackage-link,
.suchergebnisliste .resultlist_image a.rating-link,
.google_info .resultlist_image a.rating-link {
    color:#444444;
    text-decoration:none;
}

.suchergebnisliste .info_area a.meetingpackage-link:hover,
.suchergebnisliste .resultlist_image a.rating-link:hover,
.google_info .resultlist_image a.rating-link:hover {
    cursor:help;
}

.suchergebnisliste .resultlist_image span.rating-superior,
.google_info .resultlist_image span.rating-superior {
    font: 11px 'OpenSansSemiBold';
    text-transform: uppercase;
    color: #444444;
    margin-top: 0;
}

.suchergebnisliste .resultlist_image span.rating-stars-1,
.google_info .resultlist_image span.rating-stars-1 {
    background-image: url("../../img/gui/suchergebnisliste/sprite_rating_star.png");
    background-position: 0 0;
}

.suchergebnisliste .resultlist_image span.rating-stars-2,
.google_info .resultlist_image span.rating-stars-2{
    background-image: url("../../img/gui/suchergebnisliste/sprite_rating_star.png");
    background-position: 0 -14px;
}

.suchergebnisliste .resultlist_image span.rating-stars-3,
.google_info .resultlist_image span.rating-stars-3 {
    background-image: url("../../img/gui/suchergebnisliste/sprite_rating_star.png");
    background-position: 0 -28px;
}

.suchergebnisliste .resultlist_image span.rating-stars-4,
.google_info .resultlist_image span.rating-stars-4 {
    background-image: url("../../img/gui/suchergebnisliste/sprite_rating_star.png");
    background-position: 0 -42px;
}

.suchergebnisliste .resultlist_image span.rating-stars-5,
.google_info .resultlist_image span.rating-stars-5 {
    background-image: url("../../img/gui/suchergebnisliste/sprite_rating_star.png");
    background-position: 0 -56px;
}

.suchergebnisliste .resultlist_image span.rating-points-1,
.google_info .resultlist_image span.rating-points-1 {
    background-image: url("../../img/gui/suchergebnisliste/sprite_rating_point.png");
    background-position: 0 0;
}

.suchergebnisliste .resultlist_image span.rating-points-2,
.google_info .resultlist_image span.rating-points-2 {
    background-image: url("../../img/gui/suchergebnisliste/sprite_rating_point.png");
    background-position: 0 -14px;
}

.suchergebnisliste .resultlist_image span.rating-points-3,
.google_info .resultlist_image span.rating-points-3 {
    background-image: url("../../img/gui/suchergebnisliste/sprite_rating_point.png");
    background-position: 0 -28px;
}

.suchergebnisliste .resultlist_image span.rating-points-4,
.google_info .resultlist_image span.rating-points-4 {
    background-image: url("../../img/gui/suchergebnisliste/sprite_rating_point.png");
    background-position: 0 -42px;
}

.suchergebnisliste .resultlist_image span.rating-points-5,
.google_info .resultlist_image span.rating-points-5 {
    background-image: url("../../img/gui/suchergebnisliste/sprite_rating_point.png");
    background-position: 0 -56px;
}

.suchergebnisliste .info_area,
.google_info .info_area {
    line-height: 23px;
    float: left;
    margin-left: 20px;
    width: 503px;
}

.google_info .info_area {
    margin-top: 10px;
    margin-left: 0;
    width: 350px;
}

.suchergebnisliste .info_area .resultlist_facts,
.google_info .info_area .resultlist_facts {
    margin-bottom: 12px;
}

.suchergebnisliste .info_area .resultlist_facts img.keintagungshotel,
.google_info .info_area .resultlist_facts img.keintagungshotel {
    margin-left: 7px;
    vertical-align: text-top;
}

.suchergebnisliste .info_area .resultlist_facts p,
.google_info .info_area .resultlist_facts p {
    font-size: 13px;
    margin: 0;
    padding: 0;
}

.google_info .info_area .resultlist_facts p {
    font-size: 12px;
}

.suchergebnisliste .info_area .resultlist_facts .resultlist_rahmenvertrag {
    display:inline-block;
    float:right;
    position:relative;
}

.suchergebnisliste .badges,
.google_info .badges  {
    font-size: 12px;
    /*color: #4b4a46;*/
    color: var(--text);
}

.suchergebnisliste .badges a,
.google_info .badges a {
    text-decoration: none;
    margin-right: 15px;
    /*color: #4b4a46;*/
    color: var(--text);
}

.suchergebnisliste .badges a:hover {
    text-decoration: underline;
}

.suchergebnisliste .badges a.feedback span,
.google_info .badges a.feedback span {
    background-image: url("../../img/gui/suchergebnisliste/icon_feedback.png");
    background-repeat: no-repeat;
    width: 21px;
    height: 21px;
    font: 9px 'OpenSansSemiBold';
    text-align: center;
    line-height: 14px;
    vertical-align: middle;
    color: #fff;
    display: inline-block;
    margin-left: 5px;
}

.suchergebnisliste div.badges span.zertifizierung img,
.google_info div.badges span.zertifizierung img {
    vertical-align: middle;
    margin-left: 5px;
}

.suchergebnisliste input[type="checkbox"] {
    float: right;
    margin: 0;
    padding: 0;
}

.suchergebnisliste + .inhaltbox {
    border-top: none;
}


/* kompakte Liste - Banf-Suche etc */
.suchergebnisliste.kompakt .ergebnis.first {
    border-top: 2px #c8c8c8 dotted;
}

.suchergebnisliste.kompakt .ergebnis.last {
    border-bottom: none;
}

.suchergebnisliste.kompakt .resultlist_facts,
.suchergebnisliste.kompakt .resultlistVp_facts {
    float: left;
}

.suchergebnisliste.kompakt .resultlistVp_facts img {
    vertical-align: inherit;
}

.suchergebnisliste.kompakt .resultlist_facts.withActions {
    width: 485px;
}

.suchergebnisliste.kompakt .resultlistVp_facts.withActions {
    width: 585px;
}

.suchergebnisliste.kompakt .resultlist_actions,
.suchergebnisliste.kompakt .resultlistVp_actions {
    float: right;
    width: 175px;
    text-align: right;
}

.suchergebnisliste.kompakt .resultlistVp_actions {
    width: 75px;
}

.suchergebnisliste.kompakt .resultlist_actions .action_item {

}

.suchergebnisliste span.ergebnisnummer {
    font-size: 14px;
}

.suchergebnisliste .highlight .resultlist_facts span {
    color: white;
}

.suchergebnisliste img.flag {
    margin-left: 5px;
    box-shadow: 2px 2px 2px #9EA2A4;
}

/* ============================================================
  Ende:  Suchergebnisliste
   ============================================================*/

table.farbig {
  border-collapse: collapse;
  border-spacing: 0px;
  font-size: 13px;
  margin-bottom: 5px;
  width: 100%;
}
table.farbig th {
  border-bottom: 3px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  font: 13px 'OpenSansSemiBold', Arial, sans-serif;
}
table.farbig th.farbig {
    background-color: #D8E7F0;
    border-bottom: 1px solid #FFFFFF;
    border-left: 1px solid #FFFFFF;
}

table.farbig th.keinabstandunten {
    border-bottom: 1px solid #FFFFFF;
}
table.farbig td {
  background-color: #D8E7F0;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
}
table.farbig th,
table.farbig td {
  vertical-align: top;
  min-width: 20px;
  padding: 5px;
  text-align: left;
}
table.farbig td.defaultcheck,
table.farbig td.deletelist{
  vertical-align: middle;
  min-width: 20px;
  padding: 5px;
  text-align: center;
}
table.farbig th.invoicelistname,
table.farbig th.invoicelist{
  /*MIGRATION*/
  color: var(--text);
}
table.farbig th.invoicelistname{
  text-align: left;
}
table.farbig td.listname{
  text-align: left;
}
table.farbig td.listname a:link{
  text-decoration: none;
}
table.farbig td.listname a:hover{
  text-decoration: underline;
}
table.farbig tr.liststyle td{
  background: #EEF5F7;
}
table.farbig tr.style1 th.nichtfarbig,
table.farbig tr.style1 td.nichtfarbig,
table.farbig tr.style2 th.nichtfarbig,
table.farbig tr.style2 td.nichtfarbig {
    background-color:white;
}
table.farbig tr.style2 td,
table.farbig tr.style2 th {
  /*MIGRATION*/
  background-color: var(--body-background);
}
table.farbig td.zeilenbeschriftung {
  font: 13px 'OpenSansSemiBold', Arial, sans-serif;
}
table.farbig td.abstandrechts,
table.farbig th.abstandrechts {
  border-right: 3px solid #FFFFFF;
}
table.farbig td.abstandunten {
    border-bottom: 3px solid #FFFFFF;
}
table.farbig label {
    display:inline;
}

table.farbig td .buttonCol {
    margin: auto;
    white-space: nowrap;
}

.text_abschneiden_bei_ueberbreite {
    overflow:hidden;
    text-overflow:ellipsis
}

#formblatt {
    padding-top: 15px;
    display: inline-block;
}

#formblatt img {
    box-shadow: 2px 2px 2px #9ea2a4;
    display:inline-block;
    height:24px;
    margin-bottom: 5px;
    margin-right:10px;
    width:17px;
}

.ui-tooltip {
    color: #444444;
}

.actionmenu_container span.anfrage_liste_icon {
    background-image: url("../../img/gui/toolbox/Actions-go-to-anfrageliste-icon_48.png");
    background-repeat: no-repeat;
    width: 48px;
    height: 48px;
    float: left;
    font: 10px "OpenSansBold";
    margin-left: -7px;
}

.actionmenu_container span.js_anfrage_liste_anzahl {
    color: #ffffff;
    padding-left: 5px;
    font: 10px "OpenSansBold";
    margin-left: -37px;
    float: left;
    padding-top: 6px;
}

.js_sidebar_auswahl_anzahl_value {
    margin-left: 10px;
    margin-top: 4px;
    color: #ffffff;
}


.email_to_deputy_planner,
.email_to_deputy_planner_state_yes,
.email_to_deputy_planner_state_no {
    display: none;
}

.email_to_deputy_planner.state_yes,
.email_to_deputy_planner.state_no {
    display: inline-block;
    width: 100%;
    font-size: 14px;
}

.email_to_deputy_planner.state_yes .email_to_deputy_planner_state_yes,
.email_to_deputy_planner.state_no .email_to_deputy_planner_state_no {
    display: inherit;
    font-size: 14px;
}

.email_to_deputy_support,
.email_to_deputy_support_state_yes,
.email_to_deputy_support_state_no {
    display: none;
}

.email_to_deputy_support.state_yes,
.email_to_deputy_support.state_no {
    display: inline-block;
    width: 100%;
    font-size: 14px;
}


.email_to_deputy_support.state_yes .email_to_deputy_support_state_yes,
.email_to_deputy_support.state_no .email_to_deputy_support_state_no {
    display: inherit;
    font-size: 14px;
}

#plzLeitregion_input input::-webkit-input-placeholder, #plz_input input::-webkit-input-placeholder {
    color: #bebebe;
}
#plz_input input:-moz-placeholder, #plzLeitregion_input input:-moz-placeholder {
    /* FF 4-18 */
    color: #bebebe;
}
#plz_input input::-moz-placeholder, #plzLeitregion_input input::-moz-placeholder {
    /* FF 19+ */
    color: #bebebe;
}
#plz_input input:-ms-input-placeholder, #plzLeitregion_input input:-ms-input-placeholder {
    /* IE 10+ */
    color: #bebebe;
}

div.zu_viele_treffer {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 15px;
}

.custom-tooltip-arrow, .arrow:after {
     background: #eef5f7;
      box-shadow: 0 0 7px grey;
  }
  .custom-tooltip-arrow {
    font: 14px 'OpenSansRegular', Arial, sans-serif;

/*     text-transform: uppercase; */
      box-shadow: 0 0 7px grey;
      max-width: 450px;
  }
  .arrow {
    width: 70px;
    height: 14px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
  }
  .arrow.top {
    top: -16px;
    bottom: auto;
  }
  .arrow.left {
    left: 20%;
  }

  .arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
/*     box-shadow: 6px 5px 9px -9px #eef5f7 url("images/ui-bg_flat_100_EEF5F7_40x100.png") repeat-x scroll 50% 50%; */
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .arrow.top:after {
    bottom: -20px;
    top: auto;
  }

#hilfevideos_videoauswahl a {
    float:left;
    width:480px;
    text-decoration:none;
}
#hilfevideos_videoauswahl a + a {
	margin-left:10px;
}
#hilfevideos_videoauswahl a img {
    width:480px;
    height:360px;
}
#hilfevideos_videoauswahl a span {
	display:block;
	margin-top:5px;
    text-align:center;
}
.reportByDateContainer div.formularelement {
    padding: 0px 0 0px 50px;
    background-image: url(../../img/icons/arrow_enter.png);
    background-repeat: no-repeat;
    background-position: 30px 8px;
}
.chzn-container .chzn-results .group-result {
	color: black;
	background-color:#D7E7EE;
}

.quellenangabe {
    font: 13px 'OpenSansRegular', Arial, sans-serif;
}
#terminliste li {
    margin-left: 220px;
}

.commenthint {
    color: #2D6CA2;
    vertical-align: top;
    font-size:smaller;
}

/* ============================================================
  start:  additionalHotelInfo
   ============================================================*/
#additionalHotelInfo {
	border: 1px solid #C8C8C8;
}
.additionalHotelInfoBoxConaiter {
	margin: 0 0 30px 0px;
}

#additionalHotelLzInfo {
	margin: 0px 0px 0px 0px;
}
.additionalHotelInfoInhaltbox {
	margin: 0px 0px 0px 0px;
}
.pdf_body #additionalHotelInfoContainer {
	padding: 0px 0px 0px 0px;
	border: none;
	height: auto;
	overflow: hidden;
}
#additionalHotelInfoContainer {
	height: 400px;
	overflow-y: scroll;
	overflow-x: hidden;
	padding: 0px 20px 0px 20px;
	box-shadow: 0 1px 2px #ccc inset;
    border-radius: 2px;
    border: 1px solid #aaa;
}

#additionalHotelInfoHeader {
    color: #70706f;
    margin: 10px 0 30px 0;
}
#additionalHotelInfoHeader .meta_subdata {
    width: 100%;
    display: inline-block;
    width: 800px;
    color: black;
}
#additionalHotelInfoHeader .meta_container {
    margin-top: 15px;
}
#additionalHotelInfoHeader .meta_subdata span {
    float: left;
}
#additionalHotelInfoHeader .meta_subdata label {
    float: left;
    width: 220px;
}
#additionalHotelInfoContainer h3 {
	color: #848484;
}
.connectedHotelInfo {
	margin-left: 28px;
	margin-bottom: 10px;
	font: 13px 'OpenSansRegular', Arial, sans-serif;
}
/* ============================================================
  ende:  additionalHotelInfo
   ============================================================*/

   
   
   
   
.specialsBackground #content.wrapper {
	background-color: transparent;
}  
#userbar_root {
	min-height: 66px;
}  

body#popup_body {
    overflow: auto;
}   
#react_iframe_container_header_close_button {
    position: absolute;
    right: 6px;
    top: 8px;
    cursor: pointer;
    padding: 3px 6px;
    margin-top: -3px;
}
#react_iframe_container_header_close_button + span {
    font-weight: 500;
    /*color: var(--highlight);*/
    color: var(--primary);
    font-size: var(--fs_x_small);
}
#react_iframe_container_header_close_button:hover {
	/*color: var(--highlight);*/
	color: var(--primary);
}


#login_eingabefelder_und_datenschutzhinweis {
	display: flex;
	justify-content:space-between;
}
#login_eingabefelder_und_datenschutzhinweis input {
	width: 182px;
	margin: 0;
}
#login_eingabefelder_und_datenschutzhinweis &gt; div:first-child {
	min-width: 380px
}

   
/* Duplizierter Code aus v4/style.css, fuer Angular abgeaendert */
body {
    /*MIGRATION*/
    overflow-x: auto;
    overflow-y: scroll;
    min-height: 100%;
    font-family: 'TheSansC5', Verdana, sans-serif;
    font-size: 15px;
    color: var(--text);
    letter-spacing: 0;
    line-height: normal;
    background-color: var(--background);
    min-height: 100%;
}
   
.brotschrift {
    font-size: var(--fs_medium);
    font-weight: normal;
    line-height: 33px;
    /*color: var(--s_dark_80);*/
    color: var(--text);
}

#content.wrapper {
	padding-top: 64px;
    min-height: calc(100vh - 64px - 55px);
}   
   
.mehrspaltiges_menue {
    display: flex;
    padding: 20px;
    gap: 20px;
}
.mehrspaltiges_menue &gt; div {
    display: flex;
    flex-direction: column;
}
.mehrspaltiges_menue &gt; div + div {
    padding-left: 20px;
    border-left: 1px solid #d9d9d9;
}
.mehrspaltiges_menue a {
    display: block;
    text-decoration: none;
    /*color: var(--s_dark_80);*/
    color: var(--text);
    font-weight: normal;
    font-size: var(--fs_x_small);
    padding: 10px 20px;
    line-height: 24px;
}
.mehrspaltiges_menue a:hover {
    /*MIGRATION*/
    background-color: var(--secondary);
    color: var(--primary);
    text-decoration: none;
}
.mehrspaltiges_menue a img.flagge {
    width: 32px;
    height: 32px;
    float: left;
    margin-top: -4px;
    margin-bottom: -4px;
    margin-right: 10px;
}
.mehrspaltiges_menue_untenbuendige_elemente {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.mehrspaltiges_menue_trenner {
    height: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #d9d9d9;
}

.zweispaltiges_grid {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 54px;
}   

input, select {
    font-family: inherit;
}

.stepper_footerleiste {
    border-top: 2px solid var(--s_dark_60);
    background-color: var(--hg_hell_100);
    flex-grow: 0;
}
.stepper_footerleiste_content {
    max-width: 1400px;
    padding: 0 30px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.stepper_mit_buttons {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 10px; 
    margin-bottom: 10px; 
}
.stepper_mit_buttons &gt; div:nth-child(1),
.stepper_mit_buttons &gt; div:nth-child(3) {
    width: 200px;
    flex-grow: 0;
}
.stepper_mit_buttons &gt; div:nth-child(1) {
    text-align: left;
}
.stepper_mit_buttons &gt; div:nth-child(3) {
    text-align: right;
}
.stepper_mit_buttons &gt; div:nth-child(2) {
    flex-grow: 1;
    text-align: center;
}

/* Fuer MoreDirect Einstellungen */
.update_data_button {
    display: flex;
    flex-flow: column nowrap;
}
   
#email_whitelist_box {
    display: flex;
    flex-wrap: wrap;
}

#email_whitelist_box .formularelement_text {
    margin: 2px 10px 2px 25px;
}

#whitelist_explanation {
    flex: 0 0 90%;
    padding: 10px 40px 10px 25px;
    margin-bottom: 20px;
}

#whitelist_explanation li {
    margin-left: 20px;
}

.statusUebersicht {
    white-space: nowrap;
    font-weight: bold;
}   

.gesamtsumme {
    float: right;
}</pre></body></html>