/*Header*/
body {
    background-color: #ffffff; /* Zarte blaue Hintergrundfarbe */
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px; /* Logo Größe anpassen */
    margin-right: 10px;
}

.site-info {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-size: 20px; /* Kleinere Schriftgröße für den Seitentitel */
    font-weight: bold;
}

.home-link {
    font-size: 14px;
    color: #e79907;
    text-decoration: none;
}

.home-link:hover {
    text-decoration: underline;
}

.contact-info {
    display: flex;
    align-items: center;
}

.business-hours, .phone {
    margin-left: 20px;
    font-size: 16px;
}

.phone-icon {
    height: 20px; /* Telefonhörer Symbol Größe anpassen */
    margin-right: 5px;
}

@media (max-width: 768px) {
    .contact-info {
        display: none;
    }
}

/*Tarifauswahl*/
.frb {
	padding-right: 3%;
}

.frb input[type="radio"]:empty,
.frb input[type="checkbox"]:empty {
    /*display: none;*/
    opacity: 0;

}

.frb input[type="radio"] ~ label:before,
.frb input[type="checkbox"] ~ label:before{
	font-family: FontAwesome;
	content: '\f096';
	position: absolute;
	top: 50%;
	margin-top: -11px;
	left: 15px;
	font-size: 22px;
}

.frb input[type="radio"]:checked ~ label:before,
.frb input[type="checkbox"]:checked ~ label:before {
	content: '\f046';
}

.frb input[type="radio"] ~ label,
.frb input[type="checkbox"] ~ label
 {
	position: relative;
	cursor: pointer;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #f2f2f2;
}

.frb input[type="radio"] ~ label:focus,
.frb input[type="radio"] ~ label:hover,
.frb input[type="checkbox"] ~ label:focus,
.frb input[type="checkbox"] ~ label:hover {
	box-shadow: 0px 0px 3px #333;
}

.frb input[type="radio"]:checked ~ label,
.frb input[type="checkbox"]:checked ~ label {
	color: #fafafa;
}

.frb input[type="radio"]:checked ~ label,
.frb input[type="checkbox"]:checked ~ label {
	background-color: #f2f2f2;
}



.frb.frb-success input[type="radio"]:checked ~ label,
.frb.frb-success input[type="checkbox"]:checked ~ label {
	background-color: lightgray;
}

.frb.frb-info input[type="radio"]:checked ~ label,
.frb.frb-info input[type="checkbox"]:checked ~ label {
	background-color: #5bc0de;
}



.frb.frb-danger input[type="radio"]:checked ~ label,
.frb.frb-danger input[type="checkbox"]:checked ~ label {
	background-color: #d9534f;
}

.frb input[type="radio"]:empty ~ label span,
.frb input[type="checkbox"]:empty ~ label span {
	display: inline-block;
}

.frb input[type="radio"]:empty ~ label span.frb-title,
.frb input[type="checkbox"]:empty ~ label span.frb-title{
	font-size: 16px;
	font-weight: 700;
	margin: 5px 5px 5px 50px;
}

.frb input[type="radio"]:empty ~ label span.frb-praemie,
.frb input[type="checkbox"]:empty ~ label span.frb-praemie {
    color: #e79907;
    font-size: 30px;
    font-weight: 600;
    float: right;
	margin: 5px 5px 5px 50px;
}

.frb input[type="radio"]:empty ~ label span.frb-description,
.frb input[type="checkbox"]:empty ~ label span.frb-description {
	font-weight: normal;
	font-style: italic;
	color: #999;
	margin: 5px 5px 5px 50px;
}

.frb input[type="radio"]:empty:checked ~ label span.frb-description,
.frb input[type="checkbox"]:empty:checked ~ label span.frb-description {
	color: #fafafa;
}

.frb-sub-values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 5px 5px 0 50px;
}

.frb-sub-value-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.frb-sub-value-label {
    flex: 0 0 70%; /* 70% der Breite für das Label */
    text-align: left; /* Links ausrichten, optional */
    padding-left: 0px; /* Bezeichnung weiter nach rechts rücken */
}

.frb-sub-value {
    flex: 0 0 30%; /* 30% der Breite für die Values */
    text-align: right; /* Rechts ausrichten */
}

.frb input[type="radio"]:empty ~ label .frb-sub-value,
.frb input[type="checkbox"]:empty ~ label .frb-sub-value,
.frb input[type="radio"]:empty ~ label .frb-sub-value-label,
.frb input[type="checkbox"]:empty ~ label .frb-sub-value-label {
    color: #e79907;
    font-size: 15px;
    font-weight: 500;
    
}
/*für liste ohne radio*/

/* Neue Klasse für das Rahmenelement */
/* Neue Klasse für das Rahmenelement */
.custom-radio {
    position: relative;
    /*cursor: pointer;*/
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 10px;
    /*transition: box-shadow 0.3s ease, border-color 0.3s ease;*/
}

.custom-radio:hover,
.custom-radio:focus {
    box-shadow: 0px 0px 3px #333;
}

.custom-radio.selected {
    border-color: #5cb85c; /* Farbe des Rahmens bei Auswahl */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Schattierung bei Auswahl */
    background-color: #f2f2f2;
}

.custom-radio .frb-title,
.custom-radio .frb-praemie,
.custom-radio .frb-description {
    display: inline-block;
}


.custom-radio .frb-sub-value-label,
.custom-radio .frb-sub-value  {
    color: #337ab7;
    font-size: 15px;
    font-weight: 500;
}

.custom-radio .frb-description {
    font-weight: normal;
    font-style: italic;
    color: #999;
    margin: 5px 5px 5px 50px;
}

.custom-radio .frb-title {
    font-size: 16px;
    font-weight: 700;
    margin: 5px 5px 5px 50px;
}

.custom-radio .frb-praemie {
    color: #337ab7;
    font-size: 30px;
    font-weight: 600;
    float: right;
    margin: 5px 5px 5px 50px;
}


/*Loader Animation*/ 
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/*Simple Membership Customizing*/
.swpm-login-widget-form #forgot_pass {
    display: none;
}

.swpm-remember-me {
    display: none;
}


.close-modal, .button-bar {
	cursor: pointer;
}

#insurance-percent-from-sum-container {
	display: none;
}

.wpcf7 form p span input.width-75, .wpcf7 form p span textarea.width-75 {
  width: 75%;
}

.float-right {
  float: right;
}


.invalidCheckBox {
  color: red;
}


.text_color_gross {
    color: #337ab7;
    font-size: 30px;
    font-weight: 600;
    float: left;
}

.text_color {
    color: #337ab7;
}

.text_color_hinweis {
    color: red;
}

/*odi, 20180213*/
#tarifrechner-uebersicht td {
    padding: 0;
}

#tarifrechner-uebersicht .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

#tarifrechner-uebersicht .panel {
    padding-left: 0px;
    padding-right: 0px;
}

#containerElementarKeller .row ul {
    list-style: square;
    margin-left: 20px;
}

/*Werte in Übersicht*/
.text_color b div {
    text-align: right;
    padding-right: 30px;
}


/*odi, 201708906*/
.formSectionLabel {
  padding: 4px 0 4px 10px;

    /*lightgray;*/
  background-color: lightgray;
  font-weight: 400;
  /*alternativ blau?
  background-color: #337ab7;
  color: #ffffff;
  font-weight: 400;*/
}

/*odi, 20170906 Radio Button Style*/


.SingleRadioWrap {
  display: inline-block !important;
  border: 1px solid lightgray;
  width: 50%;
  height: 30px;
  padding-top: 2px;
  background-color: white;
  margin-bottom: 10px;
}

.myRadio  input[type="radio"] { /* Change width and height */
    width:1.5em;
    height:1.5em;
    }
	
.myRadio > .wpcf7-list-item  > .wpcf7-list-item-label {
    vertical-align: super;
    font-weight: normal;
}

.invalidRadio {
    color: red;
}


/*odi, 20170831 Hilfefunktion*/
.hilfe:before {
    content: '\f059';
    font-family: 'FontAwesome';
    font-size: 21px;
}

.hilfe {
color: #FBAF1D;
}

.hilfe:hover {
color: #E2001A;
}
 
.hilfetext {
display: none;
background-color: #cacaca;
color: #4d4d4d;
margin: 10px 0px 10px 0px;
padding: 10px 20px;
position: relative;
left: 0px;
font-size: 12px;
font-style: italic;
line-height: 18px;
}

.hilfetext:before {
border-bottom: 9px solid #cacaca;
border-left: 9px solid transparent;
border-right: 9px solid transparent;
content: "";
display: inline-block;
height: 0;
left: initial;
/*right: 27px;*/
right: 50%;
position: absolute;
top: -9px;
width: 0;
}

.checkbox label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    /*border-radius: .25em;*/
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.checkbox .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 20%;
}

.checkbox label input[type="checkbox"] {
    display: none;
}

.checkbox label input[type="checkbox"] + .cr > .cr-icon{
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled + .cr {
    opacity: .5;
}

/*Responsive Progress Bar*/
.progress {
    list-style: none;
    margin: 0;
    padding: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    color: #849397;
    background-color: transparent;
}
.progress > li {
    position: relative;
    display: table-cell;
    text-align: center;
    font-size: 0.8em;
}
.progress > li:before {
    content: attr(data-step);
    display: block;
    margin: 0 auto;
    background: #DFE3E4;
    width: 3em;
    height: 3em;
    text-align: center;
    margin-bottom: 0.25em;
    line-height: 3em;
    border-radius: 100%;
    position: relative;
    z-index: 1000;
}
.progress > li:after {
    content: '';
    position: absolute;
    display: block;
    background: #DFE3E4;
    width: 180%;
    height: 0.5em;
    top: 1.25em;
    left: 10%;
    margin-left: 1.5em\9;
    z-index: -1;
}
.progress > li:last-child:after {
    display: none;
}
.progress > li.is-complete {
    color: #2ECC71;
}
.progress > li.is-complete:before, .progress > li.is-complete:after {
    color: #FFF;
    background: #2ECC71;
}
.progress > li.is-active {
    color: #FBAF1D;
}
.progress > li.is-active:before {
    color: #FFF;
    background: #FBAF1D;
}
.progress__last {
    padding-left: 25%;
}

.progress__first {
    padding-right: 25%;
}

/**
 * Needed for IE8
 */
.progress__last:after {
    display: none !important;
}

/**
 * Size Extensions
 */
.progress--medium {
    font-size: 1.5em;
}

.progress--large {
    font-size: 2em;
}

/*20250215*/
.progress,
.progress-bar {
  border-radius: 0 !important;
}

/*odi, 20240326*/
.row {
    margin-bottom: 5px; /* Fügt 20px Abstand fuer jedes .row Element hinzu */
  }

 .tarif-button {
    width: 100%; /* Erzwingt, dass der Button die volle Breite einnimmt */
 }
 
 .erklaer-texte {
    font-size: small;
 } 

 .btn-custom {
    background-color: #e79907;  /* Eigene Hintergrundfarbe */
    border-color: #e79907;      /* Eigene Rahmenfarbe */
    color: #fff;                /* Textfarbe */
  }
  
  .btn-custom:hover,
  .btn-custom:focus,
  .btn-custom:active {
    background-color: #FBAF1D;  /* Alternative Farbe beim Hover/Fokus/Active */
    border-color: #FBAF1D;
    color: #fff;
  }



