
.modal {
	-webkit-backdrop-filter: blur(var(--blur-effekt, 5px));
	backdrop-filter: blur(var(--blur-effekt, 5px));
	background-color: rgba(0, 0, 0, 0.5) !important; /* Beispiel mit reduzierter Transparenz */
}
.bg-modal-content{
	background-color: #d1d1d1;
}

.modal-header {
	border-bottom:  1px solid #ffffff20;
}

.modal-header p.newsEntry-topic {
	margin: 0px;
	padding: 0px
}

.modal-header .btn-close {
    transition: transform 0.6s ease; /* sanfte Drehung */
}

.modal-header .btn-close:hover {
    transform: rotate(180deg); /* zwei volle Umdrehungen */
}


.modal-body {
	padding:15px;
}

.modal-body .isotope-gallery {
	margin: 0;

}

[id^="news-detail-modal-"] .modal-body a {
 color: #7464ea;
}

[id^="news-detail-modal-"] {
  /* deine CSS-Regeln hier */
}

.modal-body div {
  text-align: justify;
}

.modal-body .isotope-gallery {
  margin-top: 10px;
}

.modal-body h3 {
  color: deepskyblue;
  margin-bottom: .3rem;
  
}
.modal-body h4 {
  color: darkgray;
  font-size: clamp(1.1rem, 2.1vw, 1.2rem);
  margin-left: 10px;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background: #21252984;
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
	padding:  10px 10px 10px 10px;
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.6;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
    background-color: transparent;
}
.modal-footer {
    justify-content: flex-end;
    padding-top: 4px;
    padding-bottom: 0px;
    background-color: var(--bs-modal-footer-bg);

    border-top: 1px solid #ffffff20;
}

.modal .btn-facebook 	   {background-color: #4C67A1;}
.modal .btn-facebook:hover {background-color: rgba(0, 0, 255, 0.50);}
