/* ===============================================
   TOAST MESSAGE BOX STYLES (unten links)
   =============================================== */

.toast-box {
	position: fixed;
	bottom: 20px;
	right: 25px;
	background-color: #fff;
	color: #333;
	border-radius: 8px;
	padding: 16px 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	z-index: 1050;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	transform: translateX(-100%);
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toastinner {
	position: relative;
	display: flex;
	padding-bottom: 0px;
}

/* Klasse, die per JS hinzugefügt wird, um die Box anzuzeigen */
.toast-box.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.toast-icon {
    font-size: 1.5rem; /* 24px */
    margin-right: 15px;
    color: #4CAF50; /* Grüne Farbe für das Häkchen */
}

.toast-message {
    font-size: 1rem; /* 16px */
	width: 100%;
   
}

.header-messagebox {
	padding: 0px 10px 5px 0;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1rem;
}

.message-to-display {
	display: flex;
	border-top: 1px dashed #ccc;
	padding-top: 15px;
	padding-bottom: 15px;
	align-content: center;
	align-items: center;
}

.toast-close-btn {
	background: transparent;
	border: none;
	color: #000;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	opacity: 0.7;
	margin-left: 20px;
	padding: 0;
	position: absolute;
	top: 0;
	right: 15px;
}

.toast-close-btn:hover {
    opacity: 1;
}

.toast-message-inner {
	margin-left: 15px;
	position: relative;
	width: 100%;
}

/* Richtet die Buttons in #kontaktMessage nebeneinander aus */
#kontaktMessage .toast-message-inner {
  display: flex;
  gap: 10px; /* Abstand zwischen den Buttons */
  width: 100%;
}

/* Sorgt dafür, dass beide Buttons den verfügbaren Platz gleichmäßig aufteilen */
#kontaktMessage .toast-message-inner .th-btn {
  flex: 1; /* Nimmt den gleichen Anteil am verfügbaren Platz ein */
  text-align: center;
  font-size: 13px; /* Ggf. Schriftgröße anpassen, damit es gut aussieht */
}

.btn-toast {
    background: var(--theme-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    
    /* Der Transition-Effekt */
    transition: background-color 0.3s ease;
}

.btn-toast:hover {
    background-color: var(--title-color);
    cursor: pointer; /* Ändert den Mauszeiger, um Klickbarkeit anzuzeigen */
	color: #fff;
}


.toast-select-link {
	display: inline-block;
	font-weight: 400;
	color: var(--theme-color);
	text-decoration: underline;
	font-size: 0.9rem;
	text-transform: uppercase;
}

@media (max-width: 768px) {
 .toast-box {
	position: fixed;
	bottom: 20px;
	right: 25px;
	background-color: #fff;
	color: #333;
	border-radius: 8px;
	padding: 5px 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	z-index: 1050;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	transform: translateX(-100%);
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
	left: 25px;
	/* transform: translateY(150%); */
	overflow: hidden;
}

.btn-toast {
	background: var(--theme-color);
	color: #fff;
	padding: 5px 15px;
	border-radius: 40px;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
}
}