/* 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] { outline: 2px dashed darkgrey; }		
[contenteditable]:focus { outline: 2px dashed green; }
.z-99 {z-index: 99;}
.breadcrumb-item.active{
  color: white;
}
.card{
  margin-bottom:1rem;
}

.scroll-to-top{
	position: fixed;
    bottom: 15px;
    right: 15px;
  	z-index:9;
}