/* Farbe definieren */
:root {
  --link-farbe: #ffffff; /* Variable für die Farbe des Unterstrichs unter dem Link */
  --icon-color: #e4e4e4; /* Variable für die Farbe der Icons nach dem Link */
  --link-unterstrich-color: #adadad; /* Variable für die Farbe des Unterstrichs unter dem Link */
  --link-farbe-hover: #e5e5e5;
}

.text-marker {
  background-color: rgba(221, 165, 75, 0.75) !important; /* Marker-Farbe */
  color: #171717;
  box-shadow: 0 2px 6px rgba(182, 221, 75, 0.0), 
              0 -2px 6px rgba(182, 221, 75, 0.0); /* Unregelmäßige Schatten */
  border-radius: 3px; /* Für etwas weichere Kanten */
  padding: 0 2px; /* Platz für den Marker-Effekt */
}
/* Links auf der allgemeinen Seiten mit Icon markieren */
.link-icon-blog a {
  text-decoration: none;
  color: var(--link-farbe) !important;
  position: relative;  
}
.link-icon-blog a:hover {
  color: var(--link-farbe-hover) !important; /* Die Farbe beim Hover */
}
/* Google Links */
.link-icon-blog a[href*=".google."]:not([href*="play.google."])::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 300;
  content: "\f1a0";
  color: var(--icon-color);
  font-size: 12px;
  vertical-align: middle;
  margin-left: 2px;
}
/* GooglePlaystore Links */
.link-icon-blog a[href*="play.google."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 300;
  content: "\f3ab";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* AppStore Links */
.link-icon-blog a[href*="apps.apple."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 300;
  content: "\f370";
  color: var(--icon-color);
  font-size: 14px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Wikipedia Links */
.link-icon-blog a[href*="wikipedia."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f266";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Amazon Wunschliste Links */
/* https://www.amazon.de/hz/wishlist/ls/FZUHI7CEUWDG?ref_=wl_share */
.link-icon-blog a[href*="amazon."][href*="/wishlist/"]::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  content: "\f06b";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Amazon Links */
.link-icon-blog a[href*="amazon."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f270";
  color: var(--icon-color);
  font-size: 14px;
  vertical-align: middle;
  margin-left: 2px;
}
/* PayPal Links */
.link-icon-blog a[href*="paypal."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f1ed";
  color: var(--icon-color);
  font-size: 14px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Interne Links */
.link-icon-blog a[href*="seelen-tagebuch."]::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  content: "\f0c6";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Externe und alle anderen Links */
.link-icon-blog a[href^="http"]:not([href*="paypal."]):not([href*="play.google."]):not([href*="apps.apple"]):not([href*="google."]):not([href*="wikipedia."]):not([href*="amazon."]):not([href*="seelen-tagebuch.de"])::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  content: "\f08e";
  color: var(--icon-color);
  font-size: 12px;
  vertical-align: middle;
  margin-left: 2px;
}

/* Links mit Icon maskieren*/
.link-icon a {
  text-decoration: none;
  color: var(--link-farbe) !important;
  position: relative;  
}
.link-icon a:hover {
  color: var(--link-farbe-hover) !important; /* Die Farbe beim Hover */
}

/* Google Links */
.link-icon a[href*=".google."]:not([href*="play.google."])::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 300;
  content: "\f1a0";
  color: var(--icon-color);
  font-size: 12px;
  vertical-align: middle;
  margin-left: 2px;
}
/* GooglePlaystore Links */
.link-icon a[href*="play.google."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 300;
  content: "\f3ab";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* AppStore Links */
.link-icon a[href*="apps.apple."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 300;
  content: "\f370";
  color: var(--icon-color);
  font-size: 14px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Wikipedia Links */
.link-icon a[href*="wikipedia."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f266";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Amazon Wunschliste Links */
/* https://www.amazon.de/hz/wishlist/ls/FZUHI7CEUWDG?ref_=wl_share */
.link-icon a[href*="amazon."][href*="/wishlist/"]::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  content: "\f06b";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Amazon Links */
.link-icon a[href*="amazon."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f270";
  color: var(--icon-color);
  font-size: 14px;
  vertical-align: middle;
  margin-left: 2px;
}
/* PayPal Links */
.link-icon a[href*="paypal."]::after {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  content: "\f1ed";
  color: var(--icon-color);
  font-size: 14px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Interne Links */
.link-icon a[href*="seelen-tagebuch."]::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  content: "\f0c6";
  color: var(--icon-color);
  font-size: 13px;
  vertical-align: middle;
  margin-left: 2px;
}
/* Externe und alle anderen Links */
.link-icon a[href^="http"]:not([href*="paypal."]):not([href*="play.google."]):not([href*="apps.apple"]):not([href*="google."]):not([href*="wikipedia."]):not([href*="amazon."]):not([href*="seelen-tagebuch.de"])::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  content: "\f08e";
  color: var(--icon-color);
  font-size: 12px;
  vertical-align: middle;
  margin-left: 2px;
}

.onoffswitch {
    position: relative; width: 77px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
  }
  input[type="checkbox"]:disabled + label,
  input[type="radio"]:disabled + label {
  cursor: not-allowed;
  }
  .onoffswitch-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 2px solid #3b3b3b; border-radius: 15px;
  }
  .onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
  }
  .onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 32px; padding: 0; line-height: 32px;
    font-size: 24px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
    box-sizing: border-box;
  }
  .onoffswitch-inner:before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    content: "\f00c";
    padding-left: 18px;
    background-color: #3d3d3d; color: #2baa2b;
  }
  .onoffswitch-inner:after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    content: "\f00d";
    padding-right: 18px;
    background-color: #3d3d3d; color: #999999;
    text-align: right;
  }
  .onoffswitch-switch {
    display: block; width: 24px; margin: 6px;
    background: #999999;
    position: absolute; top: 0; bottom: 0;
    right: 41px;
    border: 2px solid #272727; border-radius: 50px;
    transition: all 0.3s ease-in 0s; 
  }
  .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
  }
  .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
    background-color: #3BC76A; 
  }

.rund {
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
}

/* Abstand und Positionierung der Warnmeldung */
.warning-message {
  display: block !important;
  width: 100%;
  max-width: 100%;
  margin-bottom: 3px;
  font-size: 12px;
  color: #D9534F;
  margin-left: 10px !important; /* Schiebt das Element nach rechts */
}

.alert-signatur {
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
  color: #d6d4d4;
  background-color: #3f3f3f;
  border: 0 !important;
  box-sizing: border-box;
  white-space: normal;
  overflow: hidden;
  line-height: 1.3 !important; /* Optional: Kontrolle des Zeilenabstands */
}
.alert-signatur a {
  border-bottom: 1px dotted;
  border-bottom-color: #c5c2c2 !important;
  color: #c5c2c2 !important;  
}
.alert-signatur a:hover {
  border-bottom-color: #f0f0f0 !important;
  color: #b1adad !important; /* Die Farbe beim Hover */
}


.alert-custom {
  display: block !important;
  width: 100%;
  max-width: 100%;
  margin-top: 5px !important;
  border-radius: 8px !important;
  padding: 5px;
  overflow: hidden; /* Inhalt an die abgerundeten Ecken anpassen */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: small;
  color: #999999 !important;
  background-color: #3f3f3f;
}

.input-group-text {
  background-color: #3f3f3f !important;
  border-color: #4d4d4d !important;
  color: #999999 !important;
}

.form-textarea, .form-input {
  color: #999999 !important;
}

span.spoiler {
    text-shadow: 0 0 8px rgb(221, 218, 218);
    color: rgba(255, 255, 255, 0);
    margin-left: 0;
    padding: 0.2rem;
    filter: DXImageTransform.Microsoft.Blur(pixelradius=2);
    zoom: 1;
    pause-before: 2s;
    transition: 1s text-shadow linear;
}
  
span.spoiler:hover {
    text-shadow: none;
    color: rgb(221, 218, 218);
    filter: none;
}

.page_404{ padding:40px 0; background:#fff; font-family: 'Arvo', serif;
}

.page_404  img{ width:100%;}

.four_zero_four_bg1{
 
 background-image: url(/assets/img/404_1.gif);
    height: 400px;
    background-position: center;
 }

.four_zero_four_bg2{
 
    background-image: url(/assets/img/404_2.gif);
    height: 500px;
    background-position: center;
    }

.four_zero_four_bg3{
 
    background-image: url(/assets/img/404_3.gif);
    height: 550px;
    background-position: center;
}    
 
 
 .four_zero_four_bg h1{
 font-size:80px;
 
 }
 
  .four_zero_four_bg h3{
			 font-size:80px;
			 }
			 
.link_404{			 
	color: #fff!important;
    padding: 10px 20px;
    background: #39ac31;
    margin: 20px 0;
    display: inline-block;}
.contant_box_404{ margin-top:-50px;}   


.tags {
    list-style: none;
    margin: 0;
    overflow: hidden; 
    padding: 0;
  }
  
  .tags li {
    float: left; 
  }
  
  .tag {
    background: rgb(80, 80, 80);
    border-radius: 3px 0 0 3px;
    color: #999;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px 0 23px;
    position: relative;
    margin: 0 10px 10px 0;
    text-decoration: none;
    -webkit-transition: color 0.2s;
  }
  
  .tag::before {
    background: #1C1C1C;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: '';
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
  }
  
  .tag::after {
    background: #1C1C1C;
    border-bottom: 13px solid transparent;
    border-left: 10px solid rgb(80, 80, 80);
    border-top: 13px solid transparent;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
  }
  
  .tag:hover {
    background-color: #8db9ca;
    color: white;
  }
  
  .tag:hover::after {
     border-left-color: #8db9ca; 
  }

  .disabledatenschutz {
    padding: 15px;
    background-color: #02515a;
    border-radius:15px;
    opacity: 0.8;
  }

  /*AppStore Button*/
.fancy-input {
	margin: 1em 0 1em 0;
	position: relative;
}

.fancy-input label {
	position: absolute;
	color: #666;
	background: transparent;
	padding: 0 .5em;
	font-size: .8em;
	top: -.8em;
	left: .5em;
}
  /*AppStore Button Ende*/

  /*Datenschutz*/
.left-border-top {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-left-width:5px;
  border-right-width:2px;
  border-top-width:2px;
  border-bottom-width:1px;
  border-left-style:solid;
  border-right-style:solid;
  border-top-style:solid;
  border-bottom-style:solid;
  background-color:#272727;
  border-left-color:#7CC576;
  border-right-color:#5a5a5a;
  border-top-color:#5a5a5a;
  border-bottom-color:#5a5a5a;
  padding-left:20px;
  padding-top:15px;
  padding-bottom:15px;
}

.left-border {
	padding-left:15px;
	border-left-width:5px;
  border-right-width:2px;
  border-bottom-width:2px;
	border-left-style:solid;
  border-right-style:solid;
  border-bottom-style:solid;
	border-left-color:#7CC576;
  border-right-color:#5a5a5a;
  border-bottom-color:#5a5a5a;
}

.boxed {
	background-color:#353535;
	padding:10px;
}
/*Datenschutz Ende*/

/*Fun begins*/
.tab_container {
	width: 90%;
	margin: 0 auto;
	padding-top: 70px;
	position: relative;
}

.tap-input, .tap-section {
  clear: both;
  padding-top: 10px;
  display: none;
}

.label1 {
  font-size: 18px;
  display: block;
  float: left;
  width: 20%;
  padding: 1.5em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: #4d4d4d;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5 {
  display: block;
  padding: 20px;
  background: #1d1d1d;
  color: #fdfdfd;
  border-bottom: 2px solid #4d4d4d;
  border-left: 2px solid #4d4d4d;
  border-right: 2px solid #4d4d4d;
}

.tab_container .tab-content p,
.tab_container .tab-content h3 {
  -webkit-animation: fadeInScale 0.7s ease-in-out;
  -moz-animation: fadeInScale 0.7s ease-in-out;
  animation: fadeInScale 0.7s ease-in-out;
}
.tab_container .tab-content h3  {
  text-align: center;
}

.tab_container [id^="tab"]:checked + label {
  background: #1d1d1d;
  border-left: 2px solid #4d4d4d;
  border-right: 2px solid #4d4d4d;
  box-shadow: inset 0 3px #4d4d4d;
}

.tab_container [id^="tab"]:checked + label .fa {
  color: rgb(170, 71, 71);
}

label .fa {
  font-size: 1.3em;
  margin: 0 0.4em 0 0;
}

/*Media query*/
@media only screen and (max-width: 900px) {
  label span {
    display: none;
  }
  
  .tab_container {
    width: 98%;
  }
}

/*Content Animation*/
@keyframes fadeInScale {
  0% {
  	transform: scale(0.9);
  	opacity: 0;
  }
  
  100% {
  	transform: scale(1);
  	opacity: 1;
  }
}

/* Responsive Anpassungen Hilfe*/
@media (max-width: 768px) {
  /* Listengruppencontainer wird als Grid dargestellt */
  #list-example {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Zwei Spalten gleicher Breite */
    gap: 0.5rem; /* Abstand zwischen den Elementen */
  }

  /* Listenelemente mit abgerundeten Ecken */
  .list-group-help {
    text-align: center;
    padding: 0.75rem 0.5rem; /* Anpassung der Abstände für bessere Darstellung */
    border-radius: 8px; /* Abgerundete Ecken */
    padding: 5px 5px !important;
    border: none;
  } 

  /* Scrollbereich bei kleiner Ansicht angepasst */
  .scrollspy-example {
    overflow-y: visible; /* Kein Scrollen erforderlich auf Mobilgeräten */
    height: 300px !important; /* Höhe auf 300px setzen */
    border-color: #1C1C1C !important;
    background-color: #171717 !important;
  }
}

.list-group-help {
  text-align: center;
  padding: 0.75rem 0.5rem; /* Anpassung der Abstände für bessere Darstellung */
  padding: 5px 5px !important;
  background-color: #171717 !important;
  color: rgba(255, 255, 255, 0.548) !important;
}

.list-group-item.active {
  background-color: rgb(39, 39, 39) !important; /* Hintergrundfarbe für den aktiven Zustand */
  color: rgba(202, 202, 202, 0.863) !important; /* Textfarbe für den aktiven Zustand */
}

.scrollspy-example {
  border-color: #1C1C1C !important;
  background-color: #171717 !important;
}

.text-stumm {
  color: #4d4d4d;
}

.emergency-alert {
  background-color: #994242;
  border-left: 5px solid #d9534f;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 5px;
}

.helpline-card h4 {
  color: #e8e8e8;
  font-weight: 600;
}