/* To make the print css nicer */
* {
    -webkit-print-color-adjust: exact !important;   /* Chrome, Safari */
    color-adjust: exact !important;                 /*Firefox*/
}

/* To make the fixed top work, as well as the sticky footer */
html, body {
  height: 100%;
  min-height: 100vh;
}
body{
  display: flex;
  flex-direction: column;  
}
.wrap {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}

button.btn[aria-expanded='true'] span.fa-angle-down:before{
  content: "\f106";
}

.mvh-100{ 
  min-height: 100vh;
}

/* A way to force an element inside it's parent, with the same width / height */
.position-absolute-inside{
	top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
/* To visualise where the focus is (accessibility) */
.focus-light .btn.focus, .focus-light .btn:focus, .focus-light .form-control:focus{
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.75);
}
a:focus{
	outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,0,0,0.5);
    border-radius: 1px;
}

/* Quicklink feature (accessiblity): buttons to jump to specific parts in the web page */
a.quicklink{
    display: block;
    font-size: 1.3em;
    left: -1000em;
    position: absolute;
    z-index: 10;
}
a.quicklink:focus, a.quicklink:active {
    top: 1em;
    left: 1em;
    z-index: 99999;
    outline: none;
}

/* More elegant way to create an underline to a link in the contact area */
/* (Buttons and paging links don't need this styling, they're good the way they are) */
@media screen { 
  a{ 
    text-underline-offset: 3px;
  } 
}

/* Added this class to force the link color white on a container */
.link-white a:not(.btn){ color: #fff; }

/* to make an opacity area for a specific color */
.bg-opacity{ opacity: 0.85;}

/* Adjustments for the carousel */
.carousel-control-next, .carousel-control-prev{
  bottom: 30%;
  top: 30%;  
}
.carousel .pause{
  border: 0;
  background: transparent;
  color: #fff;
  left: 0;
  top: 0;
  position: absolute;
}

.carousel-control-prev:focus, .carousel-control-next:focus{
  box-shadow: inset 0 0 100px rgb(0 0 0 / 30%);
  border-radius: 5px;
}

.digid_icon{
  height: 40px;
}

.offcanvas.offcanvas-top { height: fit-content;}
[contenteditable='true'] { outline: 2px dashed darkgrey; }		
[contenteditable='true']:focus { outline: 2px dashed green; }
.z-99 {z-index: 99;}
.breadcrumb-item.active{
  color: var(--bs-dark);
}
.card{
  margin-bottom:1rem;
}
.dropdown-toggle::after{display:none;}

.scroll-to-top{
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index:9;
}

/*Planning cards*/
.planningstep{
  position:relative;
}
.planningstep:after{
  content:"";
  position:absolute;
  top:7px;
  left:12px;
  width:20px;
  height:20px;
  background-color: rgba(var(--bs-primary-rgb), 0.3) !important;
  border:2px solid var(--bs-primary);
  border-radius:50%;
}

/*Fotogalerij*/
.foto .carousel-control-prev,.foto .carousel-control-next{
  background-color:var(--bs-primary) !important; 
  border:2px solid white;
  height:50px !important;
  width:50px !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  top:50% !important;
}
.foto .carousel-control-prev{
  left:20px;
}
.foto .carousel-control-prev-icon{margin-left: -5px;}
.foto .carousel-control-next-icon{margin-right: -5px;}
.foto .carousel-control-next{
  right:20px;
}
@media (min-width: 768px) {
  .float-md-end{float:right !important;}
}
@media (max-width: 768px) {
  .topmenu .btn span,#print-webpage{font-size:1rem !important}
}

#foundblock .noticethirdparty{position:absolute; width:100%; left:0; top:0;}
.breadcrumb-item+.breadcrumb-item::before{height:24px;}
footer address *{color:var(--bs-black);}