/*
 * Theme Name: ADHS easy
 * Theme URI: https://adhseasy.de
 * Description: Chronus-Child for ADHS easy
 * Author: ADHS easy
 * Template: chronus
 * Version: 1.1.0
*/

/* Indiv. */

.no-decoration a{
  text-decoration: none;
  font-weight: normal;
	!important;
}

.round-corner {
  border-radius: 10px;
} 

.round-corner-border {
  border-radius: 25px;
	border: 2px solid #000000;
} 

/* weiße Boxen mit Rand */

.box {
  border-radius: 20px!important;
  border: 1px solid #c3c3c3;
} 

/* PDF-Download-Boxen */

.pdfbox {
  border-radius: 20px;
  border: 1px solid #c3c3c3;
} 


/* Hinweis mit grauem Hintergrund */

.hinweis {
  border-radius: 20px;
  padding-top: 30px!important;
  position: relative;
  margin-top: 60px!important;
  border: 1px solid #333;
}

.hinweis::before {
  content: "Hinweis";
  position: absolute;
  top: -20px;
  left: 10px;
  background-color: #ddded4;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  border-radius: 10px;
  border: 1px solid #333;
}

/*.hinweis::before {
  content: "Hinweis";
  position: absolute;
  top: -20px;
  left: 10px;
  background-color: #c3c3c3;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  border-radius: 10px;
}*/

/* T I P P  mit grauem Hintergrund */

.tipp {
  border-radius: 20px;
  padding-top: 30px!important;
  position: relative;
  margin-top: 60px!important;
  border: 1px solid #333;
}

.tipp::before {
  content: "💡 T I P P ";
  position: absolute;
  top: -20px;
  left: 10px;
  background-color: #ddded4;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  border-radius: 10px;
  border: 1px solid #333;
}

/* Graue Box ohne HEAD oder Tipp */

.grauebox {
  border-radius: 20px;
  position: relative;
  border: 1px solid #333;
}

.head-decide {
    font-size: 28px;
    font-size: 1.75rem;
	  font-weight: bold;
	  margin-bottom: 0.75em;
	  margin-top: 60px;
	  height: 39px;
	  !important;
} 

.no-wrap {
    flex-wrap: nowrap!important;
} 

.sprechblase {
  position: relative;
  background: #ffffff;
  border: 2px solid #333; /* Rahmenfarbe und Dicke */
  border-radius: 10px; /* Abgerundete Ecken */
  padding: 15px;
  font-family: sans-serif;
}

/* Der Pfeil (unten links) */
.sprechblase::after {
  content: '';
  position: absolute;
  bottom: -12px; /* Positionierung */
  left: 20px;
  border-width: 12px 12px 0;
  border-style: solid;
  border-color: #333 transparent transparent; /* Farbe des Rahmens */
  display: block;
  width: 0;
}

/* Das innere Dreieck, um den Border zu füllen */
.sprechblase::before {
  content: '';
  position: absolute;
  bottom: -9px; /* Etwas weiter oben als ::after */
  left: 22px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #ffffff transparent transparent; /* Hintergrundfarbe */
  display: block;
  width: 0;
  z-index: 1; /* Über dem Pfeil-Border */
}