/* CSS für den Spinner */
.custom-spinner-overlay {
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: calc(100% - 10px);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 98;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 50px 50px 50px 50px;
}

.custom-spinner-content {
    color: #fff;
    font-size: 24px;
}