     /* Leicht zu ändern */
                :root{
                    --dw-color:#e4096e;
                    --dw-color-inner: rgb(255,255,255);
                    --dw-text: rgb(53, 53, 53);
                    --dw-bg: white;
                    --dw-radius: 10px;
                }
                .dw-popup{
                    opacity: 0;
                    visibility: hidden;
                    position: fixed;
                    z-index: 99999999;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 20px;
                    overflow: hidden;
                    box-shadow:0px 20px 20px 20px rgba(0,0,0,0.2);
                    transition: 0.5s;
                }
                .dw-popup.open{
                    opacity: 1;
                    visibility: visible;
                }
                .dw-popup *{
                    box-sizing: border-box;
                }
                .dw-popup-overlay{
                    position: absolute;
                    top:0;
                    left:0;
                    right:0;
                    bottom:0;
                    background-color: rgba(0,0,0,0.5)
                }
                .dw-popup-window{
                    position: relative;
                    background-color: var(--dw-bg);
                    max-height: 90vh;
                    color:var(--dw-text);
                    overflow-y: auto;
                    border-radius:var(--dw-radius);
                    box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4)
                }
                .dw-popup-window-inner{
                    position: relative;
                    display: flex;
                    flex-wrap: wrap;
                    width: 100%;
                    max-width: 750px;
                    overflow-y: auto;
                    overflow-x: hidden;
                    max-height: 100%;
                }
                @media screen and (max-width:640px){
                        .dw-popup-window-inner.dw-mit-img{max-width:300px;
                    }
                }
                .dw-popup-img{
                    flex-grow:1;
                    width: 50%;
                    img{
                        width: 100%;
                    }
                }
                .dw-popup-content{
                    flex-grow: 1;
                    min-width: 200px;
                    width: 50%;
                    padding: 20px;
                }
                .dw-popup-close{
                    height: 30px;
                    width: 30px;
                    position: absolute;
                    right:5px;
                    top:5px;
                    background-color: var(--dw-color);
                    cursor: pointer;
                    z-index: 1;
                    border-radius: 6px;
                }
                .dw-popup-close span{
                    position: absolute;
                    height: 2px;
                    width: 70%;
                    background-color: var(--dw-color-inner);
                    top: calc(50% - 1px);
                    left: calc(50% - 35%);
                }
                .dw-popup-close span:first-child{
                    transform: rotate(-45deg);
                }
                .dw-popup-close span:last-child{
                    transform: rotate(45deg);
                }
                .dw-popup-btn{
                 background-color: var(--dw-color);
  color: var(--dw-color-inner);
  border-radius: calc(var(--dw-radius) / 2.5);
  padding:
10px 18px;
  margin-top: 15px;
  display: inline-block;
  text-decoration:
none;
  margin-left: 5px;
                }
                 .dw-popup-btn:hover, .dw-popup-close:hover{
                    filter: brightness(0.9);
					color:#ffffff;
                }
                html.anti-scroll{
                    overflow: hidden;
                }
				
				.dw-popup-content p{
						margin-top: 10px;
					}