@font-face {
  font-family: Axiforma;
  src: url('/media/axiforma-regular-webfont.woff') format('woff2');
	font-weight: normal;
	font-style: normal;

}

@font-face {
	font-family: Axiforma;
  src: url('/media/axiforma-bold-webfont.woff') format('woff2');
	font-weight: bold;
	font-style: normal;
}

:root {
	--gold: #dda02c;
	--orange: #ed6b17;
	--white: #fff;
	--background-dark-blue: #091c48;
	--dark-green:#00733D;
    --portalThemeColor1: #091c48; 
    --portalThemeColor4: #dda02c;
    --portalThemeColor8: #fff;
}

body{
    background-color: var(--background-dark-blue);
    color: var(--white);
    /*font-family: Axiforma, Inter, sans-serif;*/
	font-family: Axiforma,  Inter, sans-serif;
	font-size: 1rem;
    font-weight: normal;
    line-height: 1.75;
    margin: 0;
    padding: 0;
}

html, body{
	overflow-x: hidden;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-family: Axiforma, Inter, sans-serif;
    font-size: 100%;
    font-weight: bold;
    line-height: 1;
    margin-bottom: .3333333333em;
    margin-top: 0;
}


.h1,h1 {
	font-size: 1.625rem;
	line-height: 1.615385
}

@media (min-width: 768px) {
	.h1,h1 {
		font-size:calc(1.5rem + 3vw);
		line-height: 1.366667
	}
}

@media (min-width: 768px) and (min-width:1200px) {
	.h1,h1 {
		font-size:3.75rem
	}
}

.h2,h2 {
	font-size: 1.5rem;
	line-height: 1.5;
	margin-bottom: .2em
}

@media (min-width: 768px) {
	.h2,h2 {
		font-size:calc(1.4375rem + 2.25vw);
		line-height: 1.6
	}
}

@media (min-width: 768px) and (min-width:1200px) {
    .h2,h2 {
        font-size:3.125rem
    }
}

.h3,h3 {
    font-size: 1.375rem;
    line-height: 1.545455
}

@media (min-width: 768px) {
    .h3,h3 {
        font-size:calc(1.35rem + 1.2vw);
        line-height: 1.333333
    }
}

@media (min-width: 768px) and (min-width:1200px) {
    .h3,h3 {
        font-size:2.25rem
    }
}
@media(min-width:1200px){
	.container{
		width:1350px;
	}
}

.team-grid {
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	display: grid;
	grid-auto-flow: dense;
	grid-auto-rows: -webkit-min-content;
	grid-auto-rows: min-content;
	grid-template-columns: repeat(1,1fr);
	margin-bottom: 5.625rem;
	margin-top: 3.125rem;
	row-gap: 2.75rem
}

.employee-grid h2{
	color: var(--gold);
}

.employee-grid .team-grid {
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    display: grid;
    grid-auto-flow: dense;
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
    grid-template-columns: repeat(1,1fr);
    margin-bottom: 5.625rem;
    margin-top: 3.125rem;
    row-gap: 2.75rem
}

@media (min-width: 440px) {
    .employee-grid .team-grid {
        grid-template-columns:repeat(2,1fr)
    }
}

@media (min-width: 576px) {
    .employee-grid .team-grid {
        -moz-column-gap:5rem;
        column-gap: 5rem;
        row-gap: 2.75rem
    }
}

@media (min-width: 768px) {
    .employee-grid .team-grid {
        grid-template-columns:repeat(3,1fr);
        margin-top: 5.1875rem
    }
}

@media (min-width: 992px) {
    .employee-grid .team-grid {
        grid-template-columns:repeat(4,1fr)
    }
}

/*
@media (min-width: 440px) {
	.team-grid {
		grid-template-columns:repeat(2,1fr)
	}
}
*/

@media (min-width: 576px) {
	.team-grid {
		-moz-column-gap:5rem;
		column-gap: 5rem;
		row-gap: 2.75rem
	}
}

@media (min-width: 768px) {
	.team-grid {
		/*grid-template-columns:repeat(3,1fr);*/
		margin-top: 5.1875rem
	}
}
/*
@media (min-width: 992px) {
	.team-grid {
		grid-template-columns:repeat(4,1fr)
	}
}
*/

.team-grid-fund-management {
	margin-bottom: 5rem;
}

@media (min-width: 768px) {
	.team-grid-fund-management {
		margin-top:3.125rem
	}
}

@media (min-width: 768px) {
    body {
        font-size: 1rem;
        line-height: 2;
    }
	.navbar-logo svg {
		height: 5.6875rem;
	}
}

.team-card {
	position: relative;
	text-align: center
}

.team-card-image {
	-webkit-clip-path: url(#team-card-clip-path);
	clip-path: url(#team-card-clip-path);
	overflow: hidden;
	position: relative;
}

@media (max-width: 991px) {
	.team-card-image{
		width: 75%;
		max-width: 400px;
		margin: 0 auto;
	}
	
}

.team-card-image:before {
	content: "";
	float: left;
	height: 0;
	margin-left: -1px;
	padding-bottom: 100%;
	width: 1px
}
.team-card-image:after {
	clear: both;
	content: "";
	display: table
}

.team-card-image img {
	bottom: 0;
	height: 100%;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute;
	right: 0;
	top: 0;
	transition: width .2s cubic-bezier(.63,.01,.47,1),height .2s cubic-bezier(.63,.01,.47,1);
	width: 100%;
}

.team-card-body {
	margin-top: 1.75rem
}

.team-card-title {
	font-size: 1.25rem;
	line-height: 1.9;
	margin-bottom: 0
}

.team-card-function {
	font-size: 1rem;
	line-height: 1.5625;
	margin-top: .1875rem;
	padding: 0px 5px;
	min-height: 5rem;
}

.team-card-contactinfo, .team-card-contactinfo a{
	color: #fff;
	font-size: 0.875rem;
}
.team-card-contactinfo a{
	padding-left:0.2rem;
}

.info-container {
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	display: grid;
	grid-auto-flow: dense;
	grid-auto-rows: -webkit-min-content;
	grid-auto-rows: min-content;
	grid-template-columns: repeat(4,1fr);
	margin-bottom: 5.625rem;
	margin-top: 3.125rem;
	row-gap: 2.75rem
}

.fund-value-item .fund-label{
	color: var(--gold);
	font-weight: bolder;
}

.fund-documents .fund-documents-list h3{
	color: var(--gold);
}

.fund-documents .fund-documents-list .fund-document-item a{
	color: var(--white);
}
.fund-document-item a{
	display:flex;
	align-items: baseline;
	gap: 0.9375rem;
}

.fund-document-item a span.download-icon::before {
	content: '';
	display: inline-block;
	width: 16px; /* Adjust width as needed */
	height: 16px; /* Adjust height as needed */
	margin-right: 8px; /* Space between the SVG and the text */
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgc3R5bGU9ImZpbGw6bm9uZTsiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zLjU3MiA4LjMgOSAxMy40OTIgMTQuNDI4IDguM2wtMS4yMS0xLjE1Ni0zLjM3NCAzLjIyOFYwLjM5Mkg4LjE1NnY5Ljk4TDQuNzgxIDcuMTQ0IDMuNTcxIDguM1pNIDAgMTIuMTQ3djUuNDYxaDE4di01LjQ2aC0xLjY4OHYzLjg0NkgxLjY4OHYtMy44NDdIMFoiIGZpbGw9IndoaXRlIj48L3BhdGg+PC9zdmc+');
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle; /* Align the SVG with the text */
}


.fund-performance-graph img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Optional */
}

.home .navbar-static-top.navbar-inverse {
	position: absolute;
}

.navbar{
	--bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
    --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
    --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-brand-padding-y: 0.3125rem;
    --bs-navbar-brand-margin-end: 1rem;
    --bs-navbar-brand-font-size: 1.25rem;
    --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-nav-link-padding-x: 0.5rem;
    --bs-navbar-toggler-padding-y: 0.25rem;
    --bs-navbar-toggler-padding-x: 0.75rem;
    --bs-navbar-toggler-font-size: 1.25rem;
    --bs-navbar-toggler-icon-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e);
    --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
    --bs-navbar-toggler-border-radius: 0.375rem;
    --bs-navbar-toggler-focus-width: 0.25rem;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
	--bs-navbar-color: rgba(255, 255, 255, 0.55);
    --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
    --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
    --bs-navbar-active-color: #fff;
    --bs-navbar-brand-color: #fff;
    --bs-navbar-brand-hover-color: #fff;
    --bs-navbar-toggler-border-color: var(--gold);
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")

}

.navbar-static-top.navbar-inverse {
    background-color: #091c48;
    top: 0;
    z-index: 300;
    background-color: unset !important;
    padding: 1.4375rem 0 0;
    transition: padding .2s cubic-bezier(.63,.01,.47,1);
    width: 100%;
    box-shadow:unset;
}

.navbar-inverse .navbar-nav .open .dropdown-menu{
	background-color:var(--background-dark-blue);
}

.navbar-inverse .navbar-nav .open .dropdown-menu li{
	background-color:unset;
	margin-top:5px
}

.navbar-static-top.navbar-inverse .navbar-brand a {
    color: var(--white);
}

.navbar .ji-container{
	opacity: 1;
	width: 100%;
}

.ji-container .navbar-header{    
	position: unset;
    display: flex;
    gap: 1.875rem;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

#navbar ul.nav.navbar-nav.weblinks li a {
	color:var(--white);
}
#navbar ul.nav.navbar-nav.weblinks li a:hover{
	text-decoration:none;
	background-color: unset;
} 
.navbar-inverse .navbar-nav > .open > a:focus {
	background-color: unset;
	text-decoration: none; 
}
.navbar-inverse .navbar-nav > .open > a {
	color: var(--white);
	background-color:unset;
	text-decoration: none; 
}

.navbar-logo{
	display: inline-block;
    margin-right: auto;
    overflow: hidden;
    z-index: 150;
}

@media (min-width: 768px) {
    .navbar-logo {
        margin-top: 2.6875rem;
    }
}

.navbar-logo svg {
	color: var(--white);
	display: block;
	height: 3.8125rem;
	width: auto;
}

.ji-container #navbar .navbar-nav.weblinks .weblink a:focus{
	border:none!important;
	outline:none;
    background-color:unset;
	text-decoration:none;
}

.ji-container {
    position: relative; /* Ensure the container has a relative position */
}

@media (min-width: 768px) {
   .weblinks .weblink a.top:before {
		background: #dda02c;
		content: "";
		height: .125rem;
		position: absolute;
		top: .3438rem;
		transform: scale(0);
		transform-origin: left;
		transition: transform .2s cubic-bezier(.63,.01,.47,1);
		/*width: calc(100% - 1rem);*/
	   left: 5px;
	   right: 5px;
	}
	.navbar-collapse {
        align-items:center;
        gap: 1.875rem;
        margin-left: auto;
        top: 5.375rem;
        transform: none!important;
        transition: transform .2s cubic-bezier(.63,.01,.47,1);
        z-index: 100;
		position: absolute; /* Change to absolute positioning */
        right: 0; /* Align with the right edge of the container */
    }
}

.navbar-collapse{
	display: flex;
	top: 0;
	will-change: transform
}
.nav-item.weblink a, .nav-item.weblink a:hover,.navbar-dark .navbar-nav > li > a:hover {
    background-color:#091c48;
	text-decoration:none;
}
.weblinks .weblink a.top:hover:before {
	transform: scale(1);
}

.navbar>.ji-container{
    display: flex;
    flex-wrap: inherit;
    align-items: center;
}

.ji-container .navbar-brand {
    padding: 8px;
}
.ji-container .navbar-brand {
    line-height: 37px;
}
@media (min-width: 1200px) {
   .ji-container .navbar-brand {
        display: flex !important;
    }
}
.ji-container {
  flex-wrap: wrap !important;
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-right: auto;
	margin-left: auto 
}

.ji-container{
	max-width: 1350px;
}

.ji-container .navbar-brand {
    align-items: center;
	height: unset;
}

.ji-container .ms-auto{
	margin-left: auto!important
}

.ji-container .custom-navbar-toggler{
	margin-left:auto;
}

.skip-to-content{
	display:none;
}

.breadcrumb > li a{
	color: var(--white);
	opacity: 0.5;
}

.breadcrumb > .active {
    color: var(--white);
}

.breadcrumb>li+li:before{
	color: var(--gold);
}

.alert-danger{
	background-color: var(--orange)!important;
	border-color: var(--orange);
	color:var(--white);
}

.alert-info{
	background-color:var(--gold);	
}

.alert-success{
	background-color: var(--dark-green);
}

p, .p, .page_section p, .section-diagonal-left p, .section-diagonal-right p {
	color: var(--white);
	font-family: Axiforma, Inter, sans-serif;
}

h2, .h2, .section-landing .row > div .section-landing-sub-heading, .page_section h2, .color-inverse h2, h2 p{
	color: var(--white);
}

.btn-info{
	background-color: unset;
	border-color: rgb(0,115,61);
}

.alert{
    border-radius: 0.8rem;
}

.crmEntityFormView, .entitylist, .modal-content, .popover-content {
    /*background-color: var(--white);*/
    color: var(--portalThemeColor1);
    /*border: 1px solid #f2f2f2;*/
    border-radius: 0.8rem;
    padding: 1.2rem;
}

.footer{
	background-color: #091c48;
	border-top: 4px solid rgba(221, 160, 44, 1);
}

.footer-bottom{
	max-width:1350px;
	margin-left:auto;
	margin-right:auto;
	/*padding-left: 1.4375rem;
    padding-right: 1.4375rem;*/
    width: 100%;
}

footer .footer-bottom{
	background-color: unset;
}

@media(min-width: 768px){
	.footer{
		padding-bottom: 2.5rem;
		padding-top: 4.1875rem;
	}

	.footer-bottom{
		/*padding-left: 1.875rem;
		padding-right: 1.875rem;*/
	}
}

.hero{
	position: relative;
}

.hero-videocontainer{
    align-items: center;
    aspect-ratio: 16 / 9;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;	
}

.hero-video{
	aspect-ratio: 16 / 9;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.hero-container{
	max-width: 1350px;
	width: 100%;
	margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .hero-container{
		padding-left: 1.875rem;
        padding-right: 1.875rem;
    }
}

.hero-content{
	max-width: 40%;
	padding-block: 3rem;
}

.hero-text p{
	margin: unset;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 2.625rem 0;
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        top: 50%;
    }
}

@media (min-width: 992px) {
    .hero-content {
        position: absolute;
        top: 50%;
        translate: 0 -50%;
        z-index: 2;
    }
}

/*@media (min-width: 768px) and (min-width: 1200px) {
    .hero-title {
        font-size: 3.75rem;
    }
}*/

@media (min-width: 768px) {
    .hero-title {
        color: var(--white);
        /*font-size: calc(1.5rem + 3vw);*/
        line-height: 1.366667;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .hero-text, .hero-text p {
        color: var(--white);
        font-size: 1.25rem;
        line-height: 1.6;
        max-width: 50ch;
    }
}

.entitylist{
	/*border: 1px solid #dda02c; */
}

html, body{
    height:100%;
}

#mainContent{
    min-height: 60vh;
    /*margin-bottom: 250px;*/
	position: relative;
}

div.entity-form{
	/*border: 1px solid #dda02c;*/
    /*border-radius: 0.8rem;*/
    padding-top: 1rem;
}

/*
.contact-wrapper{
    background-color: var(--white);
    color: black;
    padding: 1rem;
    border-radius: 0.8rem;
    margin: 0.5rem;
}

.contact-info{
    min-height:20em;
    border-radius:0.8rem;
    border: 1px solid #dda02c;
    padding: 10px;
    display: flex; 
}

.contact-info .left, .contact-info .right{
    flex: 50%;
}
*/
.news-header {
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
	margin-bottom: 5rem
}

@media (min-width: 768px) {
	.news-header {
		align-items:flex-end;
		flex-direction: row;
		justify-content: space-between;
		margin-bottom: 6.25rem
	}
}

.news-grid {
	grid-row-gap: 2.5rem;
	display: grid;
	grid-template-columns: repeat(1,1fr);
	grid-template-rows: 1fr;
	margin-top: 1.125rem
}

@media (min-width: 768px) {
	.news-grid {
		grid-row-gap:7.3125rem;
		grid-column-gap: 1.875rem;
		grid-template-columns: repeat(2,1fr);
		margin-bottom: 2rem;
		margin-top: 1.875rem
	}
}

@media (min-width: 992px) {
	.news-grid {
		grid-template-columns:repeat(3,1fr)
	}
}

.news-card {
	color: var(--white);
	display: block;
	padding-top: 1.25rem;
	position: relative;
	text-decoration: none
}

body.page-template-article .news-card,body.page-template-default .news-card {
	color: #091c48
}

@media (min-width: 768px) {
	.news-card {
		padding-top:1.625rem
	}
}

.news-card__date { 
	color: #dda02c;
	font-size: 1rem;
	line-height: 2.375;
	margin-bottom: .3125rem
}

@media (min-width: 768px) {
	.news-card__date {
		margin-bottom:.5rem
	}
}

.news-card__title {
	font-size: 1.625rem;
	line-height: 1.461538;
	margin-bottom: 0
}

@media (min-width: 768px) {
	.news-card__title {
		font-size:1.75rem;
		line-height: 1.428571
	}
}

.news-card__tags {
	align-items: center;
	-moz-column-gap: .625rem;
	column-gap: .625rem;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: .75rem;
	margin-top: .75rem;
	row-gap: .625rem
}

.news-card:before {
	background-color: var(--white);
	content: "";
	height: .125rem;
	left: 0;
	position: absolute;
	top: 0;
	transform-origin: right;
	transition: transform .6s cubic-bezier(.63,.01,.47,1);
	width: 100%
}

body.page-template-article .news-card:before {
	background-color: #091c48
}

.news-card:hover:before {
	transform: scale(0,100%)
}

@media (min-width: 768px) and (min-width: 1200px) {
    .h2, h2 {
        /*font-size: 3.75rem;*/
    }
}

.filter {
	display: flex;
	flex-wrap: wrap;
	gap: 1.875rem;
	margin-top: 3.125rem
}

.filter.filter--news {
	margin-top: 0;
}

@media (min-width: 768px) {
	.filter.filter--news {
		justify-content:flex-end;
		margin-bottom: 1.25rem
	}
}

.filter__item {
	color: var(--white); 
	font-family: Axiforma,sans-serif;
	font-size: 1rem;
	line-height: 1.5625;
	position: relative;
	text-decoration: none
}

.filter__item label {
	cursor: pointer
}

.filter__item span:after {
	background-color: var(--white);
	bottom: -.5rem;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scale(0);
	transform-origin: left;
	transition: transform .2s cubic-bezier(.63,.01,.47,1);
	width: 100%
}

.filter__item input:checked+span:after {
	transform: scale(1)
}

.u-visually-hidden {
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
}

.tag {
    align-items: baseline;
    display: flex;
    font-family: Axiforma,sans-serif;
    font-size: .625rem;
    gap: .625rem;
    letter-spacing: .05em;
    line-height: 1.335;
    text-transform: uppercase
}

.tag:before {
    background-color: #091c48;
    border-radius: .4375rem;
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    height: .4375rem;
    width: 1.875rem
}

.tag--gold:before {
    background-color: #dda02c
}

.tag--green:before {
    background-color: #00733d
}

.tag--orange:before {
    background-color: #ed6b17
}

.file-downloader{
	padding: 3rem 28px 0 28px;
	display:flex;
	flex-direction:column;
}

.file-downloader .fund-documents{
    margin-bottom: 3rem;
}

.download-list-link {
	align-items: baseline;
	display: flex;
	font-family: Axiforma,sans-serif;
	font-size: 1rem;
	gap: .9375rem;
	line-height: 1.75;
	text-decoration: none
}


@media (min-width: 768px) {
    .download-list-link {
        font-size: 1.125rem;
        line-height: 1.666667;
    }
}

/*
.account-row{
	display: flex;
	gap:10px;
}

.account-row .card-label{
	flex: 0 0 auto;
	width: 180px;
}

.contact-row {
	display: flex;
	gap: 10px;
}
.contact-row .card-label, .primary-contact .card-label  {
	color: #000;
	flex: 0 0 auto;
	width: 180px;
}

.salutation, .address-composite {
	flex: 1;
}

.primary-contact{
    display: flex;
    gap: 10px;
    padding-left: 10px;	
}

.contacts {
	display: flex;
	gap: 10px; 
	flex-direction: column;
}

.contact {
	flex: 1;
}
	*/

thead th,thead th a{
	font-weight: 400;
	font-size: 1.4rem;
}
/*
div.participaties tbody tr{
	display:none;
}
*/

div.participaties tbody tr{
	display:table-row;
}

#link-template{
	display:none;
}

/* Enhanced Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(
        to right,
        #f6f7f8 0%,
        #edeef1 20%,
        #f6f7f8 40%,
        #f6f7f8 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear; /* Slower animation */
    padding: 5px; /* Adjust padding to reduce the size of the shimmer effect */
    border-radius: 4px; /* Optional: Add rounded corners */
}

.link-wrapper {
    width: 100%;
    height: 100%;
	display: inline-block; /* Ensure the shimmer effect doesn't cover the entire td */
}

.link-wrapper.shimmer a svg{
	/* display:none; */
	visibility:hidden;
}
.home .navbar-inner {
    top: 1.4375rem;
}

.home .navbar-inner{
	position:static;
}
@media(min-width: 768px){
	.home .navbar-inner{
		position:absolute;
	}
}


.navbar-inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.navbar-nav.weblinks{
	display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: .5rem;
    list-style: none;
    margin: 0;
    padding: 0 2.1875rem;
    width: calc(100% - 2rem);
}

.navbar a{
	font-family: Axiforma, Inter, sans-serif !important;
}

.navbar.home{
	background-color: #fff;
    padding: 0;
}
@media (max-width:768px){
	.navbar-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}

    .footer-logo svg {
		height:4.5rem;
        width: auto;
	}

    .footer-inner{
        padding: 0px 30px;
    }

    footer .footer-bottom{
        align-items: start;
        flex-direction: column;
    }

    footer .footer-bottom p{
        font-size: 1rem;
        margin-top: 1rem;
    }

    .text-right{
        text-align: left;
    }

    footer .container {
        margin: 0px;
        padding-left: 30px;
    }

}

.navbar-collapse{
	display: flex;
	position: relative;
	will-change: transform;
}

@media (min-width: 768px) {
    .home .navbar-inner {
        position: unset;
    }
	.navbar-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
	
	.navbar-logo svg, .footer-logo svg {
		height:4.5rem
	}
	    
	.navbar-logo {
		margin-top:2.75rem
	}

	.navbar-collapse {
		align-items:center;
		gap: 1.875rem;
		margin-left: auto;
		top: 3.5rem;
		transform: none!important;
		transition: transform .2s cubic-bezier(.63,.01,.47,1);
		z-index: 100;
		position:absolute;
	}
	.navbar-nav.weblinks{
		flex-direction: row;
		gap: 0.175rem;
		padding: 0;
		width: auto;
	}
	.navbar.home
	{   
		position: absolute;
        top: 0;
        z-index: 300;
	}
	.navbar {
        background-color: unset !important;
        padding: 0;
    }
}

.collapse {
	display: none;
	visibility: hidden;
}

.navbar-inner-header{
	width:100%
}

@media(min-width:768px){
	.collapse {
		display: block;
		visibility: visible;
	}

	.navbar-inner-header{
		width: unset;
	}
}

.collapse.in {
	display: block;
	visibility: visible;
}
  

.navbar-toggle {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

.navbar-toggle {
  background-color: var(--gold);
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.container.juno-funds{
	margin-top:4rem;
	max-width:1350px;
	width:100%;
}

.entry-item input{
	color: #000;
}

.row.signin{
	min-height:100vh;
	margin-top:20px
}


.row.signin .api-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Full width */
}

.row.signin .api-wrapper input{
	width:100%;
    border-radius: 10px;
    padding: 5px;
    font-family: sans-serif;
}

.row.signin .api-wrapper #api {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*background-color: white;*/
  padding: 20px;
  border-radius: 10px;
  max-width:510px;
}

.api-wrapper h1, .api-wrapper h2{
	color:var(--gold);
    line-height: 1.4;
}

.api-wrapper h1{
	display:none;
}
.api-wrapper .error.itemLevel p{
	color:var(--orange)
}

.api-wrapper #next{
	background-color: var(--gold);
	border-radius:10px;
}

.api-wrapper .entry-item label, 
.api-wrapper .attrEntry .verificationInfoText,
.api-wrapper .attrEntry label{
	color: var(--gold);
}

.api-wrapper .intro p {
    color: var(--gold);
    font-size: 1.8rem;
}

.api-wrapper .helpLink{
	display:none;
}

.api-wrapper .textInput{
	color: #000;
}

.api-wrapper button{
	background-color: var(--gold);
	border-radius: 10px;
	padding:5px
}

.api-wrapper ul{
	padding:0px;
}

.api-wrapper .buttons{
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.api-wrapper .buttons.verify {
  display: grid;
  flex-direction: column;
  gap: 1rem; /* Add space between rows */
  grid-template-columns:repeat(2,1fr);
}

.api-wrapper .buttons.verify > *:not(button) {
  order: 1; /* Ensure non-button elements are in the first row */

}

.api-wrapper .buttons.verify > button {
  order: 2; /* Ensure button elements are in the second row */
}

.api-wrapper .buttons.verify > button {
  display: flex;
  justify-content: center;
  gap: 0.5rem; /* Add space between buttons */
}

.api-wrapper .buttons.verify > button {
  flex: 1; /* Distribute buttons evenly */
}

.api-wrapper .buttons.verify > label, .api-wrapper .buttons.verify > input{
	grid-column: span 2;
}

.api-wrapper .verifyInput{
	color:#000;
}
/*
.participant-list {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

.participant-list .participant{
	flex: 1 1 15rem;
	min-height: 30vh;
	max-height: calc(50vh - 0.5rem);
}

.participant-list .participant{
	min-width: 40rem;
	min-width: 50%;
	max-width: 50%;
}

 .participant-list .participant.account.family{
	 min-width: 80rem;
	 min-width: 100%;
 }

.participant-list .participant.account{
	min-width: 80rem;
	min-width:100%;
}

.contact-info{
	font-size: 1.0rem;
}

.contact-info, .account.family .contact-info, .account .accountcard .contact-info {
	flex-direction: column;
}

.account .contact-info{
	flex-direction: row;
}

.account-info .ubo-list{
	padding-left:10px;
}

.account-info .ubo-list .ubos ul{
	list-style-type: none;
    padding-left: 20px;
}

.familyCard .contact-info .contact{
	padding-left: 10px;
	padding-bottom: 10px;
}

.contact-info .address-composite{
	white-space: pre-wrap;
}

.account-wrapper{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.account-wrapper .account-info{
	flex: 1;
}
.accountcard .contact-info .account-info{
	padding-left: 10px;
	padding-bottom: 10px;
}

.participant.account.family{
	width:100%;
}


@media (min-width: 768px) {
	.contact-info{
		flex-direction: column;
	}
	.participant-list .participant, .participant-list .participant.account.family{
		min-width: 20rem;
		min-width: 50%;
		max-width: 50%;
	}

	.participant-list .participant.account{
		min-width: 40rem;
		min-width: 100%;
	}

	.contact-info{
		font-size: 1.2rem;
	}
}
*/
@media(min-width: 768px){

	.navbar-toggle.custom-navbar-toggler{
		display:none;
	}
}

.entity-grid.entitylist tbody a.details-link.has-tooltip{
	color:var(--gold);
	text-decoration:underline;
}

@media (max-width: 767px) {
    div.participaties tbody tr.finished td:not([aria-label='actiemenu'])::before {
        content: attr(data-th) ': ';
        margin-bottom: 1px;
    }
	div.participaties table {
		width:100%;
		border-collapse:collapse;
	}
	div.participaties thead{
		display:none;
		visibility: hidden;
	}
	div.participaties tbody tr{
		display: block;
		width:100%;
		overflow:hidden;
	}
	
	div.participaties tbody tr td{
		display:block;
	}
}
/* participanten */
.participants-grid{
	-moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    display: grid;
    grid-auto-flow: dense;
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .participants-grid {
        grid-template-columns:repeat(2,1fr);
    }
}
.participant{
	padding-bottom: 1rem;
}
@media (min-width: 1200px) {
    .participants-grid {
        grid-template-columns:repeat(3,1fr);
    }
}

.participant{
	padding-bottom: 1rem;
}
.participant-header{
	background-color: var(--gold);
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.participant-body{
	background-color: #fff;
	padding: 10px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	color: var(--background-dark-blue);
}

.card-label{
	font-weight: bold;

}

.address-composite{
	white-space: pre-wrap;
}
.participant-row .info{
	padding: 0px 10px;
}


/* end particpanten */

/* start documents */
.all-fund-documents .fund-document-item a{
}

.all-fund-documents .fund-document-item a span.download-label{
    /*width:90%;*/
}

.all-fund-documents .fund-document-item a span.download-icon::before{
    /*background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgc3R5bGU9ImZpbGw6bm9uZTsiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zLjU3MiA4LjMgOSAxMy40OTIgMTQuNDI4IDguM2wtMS4yMS0xLjE1Ni0zLjM3NCAzLjIyOFYwLjM5Mkg4LjE1NnY5Ljk4TDQuNzgxIDcuMTQ0IDMuNTcxIDguM1pNIDAgMTIuMTQ3djUuNDYxaDE4di01LjQ2aC0xLjY4OHYzLjg0NkgxLjY4OHYtMy44NDdIMFoiIGZpbGw9IiMwOTFjNDgiPjwvcGF0aD48L3N2Zz4=');*/
}

.fund-documents-list{
	/*padding-bottom:2rem;*/
}

.fund-document-header{
	/*background-color: var(--gold);
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;*/
}

.fund-document-body{
    /*border: 1px solid #fff;
	background-color: #fff;
	padding: 1rem;
	color: var(--background-dark-blue);*/
	color: #fff;
}
.fund-documents-grid{
	-moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    display: grid;
    grid-auto-flow: dense;
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
    grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
	.fund-documents-grid{
		 font-size: 0.8rem; 
	}

	.fund-documents-grid .fund-document-header h3{
		font-size:1.0rem;
	}
    .fund-documents-grid{
        /*grid-template-columns:repeat(2,1fr);*/
    }
}

@media (min-width: 1200px) {
	.fund-documents-grid{
		font-size:1.25rem;
	}
	.fund-documents-grid .fund-document-header h3{
		font-size: 2.25rem;
	}
}
/* end documents */

div.direct-links{
	padding-top:2rem;
}
ul.direct-links{
	list-style-type:disc;
}

ul.direct-links li a{
	color:#fff;
	font-size:1.25rem;
}
.sign-out i{
    padding-right:5px;
}

#navbar{
    padding-left:5px;
}

#navbar nav ul.nav{
    padding-left:0px;
}

#navbar nav ul.nav a{
    padding-left:0px;
}
.navbar-inverse .navbar-nav .open .dropdown-menu li{
    background-color:unset;
}    

@media (min-width: 0px) {
	.info-container {
		grid-template-columns:repeat(1,1fr);
		column-gap: 0px;
	}

	.info-container  .info-text{
		grid-column: span 1;
	}

	.info-container .fund-performance-graph{
		grid-column: span 1; 
	}

    #navbar{
        padding-left:5px;
    }

    #navbar nav ul.nav{
        padding-left:0px;
    }

    #navbar nav ul.nav a{
        padding-left:0px;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu li{
        background-color:unset;
    }    
}


@media (min-width: 576px) {
	.info-container{
		grid-template-columns:repeat(2,1fr);
		-moz-column-gap:5rem;
		column-gap: 5rem;
		row-gap: 2.75rem
	}
	.info-container .info-text{
		grid-column: span 2;
	}
	.info-container .fund-value{
		grid-column: span 2;
	}
	.info-container .fund-performance-graph{
		grid-column: span 2; 
	}
    #navbar{
        padding-left:15px;
    }

    #navbar nav ul.nav{
        padding-left:35px;
    }

    #navbar nav ul.nav a{
        padding-left: 8px;
		padding-right: 8px;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu li{
        /*background-color:#156082;*/
        text-align: right;
        padding: 10px 0px;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu li:not(:last-child){
        border-bottom: 1px solid white;
    }
}

@media (min-width: 768px) {
	.info-container{
		grid-template-columns:repeat(3,1fr);
		margin-top: 5.1875rem
	}
	.info-container .info-text{
		grid-column: span 3;
	}
	.info-container .fund-value {
        grid-column: span 3;
    }
	.info-container .fund-performance-graph{
		grid-column: span 3; 
	}
}

@media (min-width: 992px) {
	.info-container {
		grid-template-columns:repeat(4,1fr)
	}
	.info-container .fund-value{
		grid-column: span 1;
	}
	.info-container .fund-performance-graph{
		grid-column: span 3; 
	}
	.info-container .info-text{
		grid-column: span 4;
	}
	.info-container .fund-documents{
		grid-column: span 2;
	}
	
	.mobile-only{
		display: none;
		visibility: hidden;
	}
}

@media (max-width){
	
}

.fund-performance-graph iframe{
	border: none;
}

.fund-performance-graph .powerbi-visual{
	padding-bottom: 2rem;
	/*max-width: 960px;*/
	/*margin: 0 auto;*/
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.img--full-width{
	width: 100%;
	grid-column: span 4;
	border-radius: 8px;
	margin: 4rem 0;
	object-fit: cover;
	aspect-ratio: 2/1;
    background-color: white;
}

.center{
	margin: 0 auto;
}

.title{
	margin: 0 auto;
	max-width: 800px;
	margin-top: 5rem;
}

.info-text{
	max-width: 800px;
	margin: 0 auto;
}

.spacer{
	height: 4rem;
	display: block;
}

.spacer-small{
	height: 2rem;
	display: block;
}

footer .container {
	align-self: stretch;
	vertical-align: text-bottom;
	align-content: end;
}

.footer-copyright{
	font-size: 1rem;
	opacity: 0.5;
}

.fund-documents h3{
	font-size: 1.25rem;
}

.download-label{
	font-size: 1rem;
	line-height: 3rem;
}

.view-empty{
	font-size: 1rem;
	opacity: 0.5;
}

.divider{
	border-top: 1px solid white;
	margin-bottom: 3rem;
}

.divider.blue{
	border-top: 1px solid var(--portalThemeColor1);
}

#navbar{
	width: 100%;
}

.navbar-static-top.navbar .menu-bar > .navbar-nav > li > a{
	font-size: 16px;
}

a, .a{
	font-family: Axiforma,  Inter, sans-serif;
}



/* PARTICIPATIE PAGINA STYLING */

.info .field-label, .info .form-control, .info .input-group-addon{
	margin-bottom: 0px;
	margin-top: 0px;
}

#mainContent .entitylist,
#mainContent #EntityFormPanel{
	padding-top: 4rem;
}

#mainContent .entitylist::after,
#mainContent #EntityFormPanel::after{
	content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    width: 200vw;
    /*height: 100%;*/
    top: 0px;
    bottom: 0px;
    background-color: #fff;
    transform: translateX(-50%);
    z-index: -1;
	border-top: 8px solid var(--gold);
}

.crmEntityFormView, .entitylist{
	background-color: transparent !important;
	border: 0px !important;
    min-height:55vh;
}

.help-block.error, label.control-label.required:before, .crmEntityFormView .cell div.info.required label:after, .crmEntityFormView .cell div.info div.validators, .crmEntityFormView .validator-text, .crmEntityFormView .rank-order-cell .validator-text, .crmEntityFormView .constant-sum-cell .validator-text, .crmEntityFormView .stack-rank-cell .validator-text {
    color: var(--gold);
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover {
    background-color: var(--gold) !important;
}

.fund-document-item a{
	color: #fff;
}

.fund-document-header h3{
	font-size: 22px !important;
	color:var(--gold);
	margin-bottom: 20px;
}

.table>tbody>tr>td{
	vertical-align: inherit;
	line-height: inherit;
}

.breadcrumb > li a:hover {
    color: #FFFFFF;
}

.fund-documents-grid .all-fund-documents{
	padding: 3rem 0px 1rem 0px;
    border-top: 1px solid white;
}

.fund-documents-grid .fund-documents {
    margin-bottom: 2rem;
}

.dropdown-menu{
    -webkit-box-shadow: none;
    box-shadow: none;
}
.video-thumbnail-container {
    width: 150px; /* Same as SVG styling */
    height: 150px;
    overflow: hidden;
    /*clip-path: url(#team-card-clip-path);*/ /* Ensures consistency with SVG */
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fit properly */
}

.video-list {
    list-style: none;
    padding: 0;
}

.video-list li {
    margin-bottom: 20px;
}

@media (min-width: 992px) {

    .video-list li{
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .video-thumbnail-container {
        flex-shrink: 0;
    }

    .video-thumbnail-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .text-container {
        display: flex;
        flex-direction: column;
    }

}

.fund-document-header {
    font-size: 1.5rem;
    color: var(--gold); /* Matches other document headers */
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid white;
}
.videos .info-text {
    font-size: 1rem; /* Adjust to match the main body text */
    line-height: 1.75; /* Match the spacing */
    color: var(--white); /* Ensures text color consistency */
    font-family: Axiforma, Inter, sans-serif; /* Uses the same font */
    margin: 0px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 20px;
    width: 50%;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.hidden-document {
    display: none;
}

.show-more-button {
    display: block;
    margin: 10px 0; /* Adjusted margin to align the button to the left */
    padding: 10px 15px;
    font-size: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.show-more-button:hover {
    background-color: #0056b3;
}

.video-link{
    color: #fff;
}

th.sort-disabled {
    color: var(--gold);
}