/*Inbegrepen & aanbevolen activiteiten styling*/
.cpt-list a {
    text-decoration: none;
    font-weight: 600;
    color: black !important;
}

.cpt-list a:hover {
    text-decoration: underline;
}

.cpt-list em {
    font-weight: normal;
}

.cpt-list {
    list-style: none;
    padding-left: 0; /* Added this line */
}

.cpt-list li {
    padding: 8px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #fff;
}

.cpt-list li:last-child{
    border-bottom: 0;
}

/*Custom popup styling*/
.custom-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevent scrolling */
}

.custom-popup-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-popup-content {
    position: relative;
    width: 800px;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.4) 6px 6px 20px;
    background: white;
}

.custom-popup-content h2,
.custom-popup-content h3,
.custom-popup-content h4,
.custom-popup-content h5,
.custom-popup-content h6{
	font-family: 'roc-grotesk' !important;
}

.custom-popup-close {
    position: absolute;
    top: -50px; /* Adjust to place above the popup */
    right: 0; /* Adjust to place outside the popup */
    background: none;
    border: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 1001; /* Ensure it's above other elements */
}

.custom-popup-content .popup-intro {
    padding: 48px 80px;
    background: white;
}

@media (max-width: 767px) {
	.custom-popup-content .popup-intro {
		padding: 24px;
    	background: white;
	}
}

.custom-popup-content .popup-intro .popup-title {
    margin-top: 0;
    font-family: 'roc-grotesk' !important;
}
@media (max-width: 767px) {
	.custom-popup-content .popup-intro .popup-title {
		font-size: 20px !important;
		line-height: 1 !important;
	}
}

.custom-popup-content .popup-intro ul li{
	margin-bottom: 8px;
}

.custom-popup-content .flickity-carousel {
    margin-bottom: 0;
}

.custom-popup-content .flickity-carousel .flickity-viewport {
    height: 300px !important;
    border-radius: 16px 16px 0 0;
}

@media (max-width: 767px) and (min-width: 480px) {
    .custom-popup-content .flickity-carousel .flickity-viewport {
        height: 200px !important;
    }   
}

.custom-popup-content .carousel-cell {
    width: 100%;
    margin-right: 10px;
}

.custom-popup-content .carousel-cell img {
    display: block;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    height: 300px;
}

.flickity-prev-next-button {
    width: 44px;
    height: 44px;
    background: #333; /* Change color as needed */
    opacity: 0.75;
    color: #fff;
}

.flickity-prev-next-button:hover {
    background: #000;
}

.flickity-prev-next-button:disabled {
    opacity: 0.3;
}

.flickity-button-icon {
    fill: #fff;
}
