/* SLIDER ----------------- ------------>  */

image-slider {
  position: relative;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
}

image-slider.lightbox img.sliderImg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: hsl(60, 3%, 6.5%);
  object-fit: contain;
}

image-slider.lightbox p {
  position: fixed;
  bottom: 0;
}

image-slider img.sliderImg {
  width: 100%;
  /* height: 100%; */
  /* object-fit:fill; */
  /* filter: none; */
}

@media (max-width:960px) {
  image-slider {
    width: 100%;
    /* voor 4:3 verhouding: */
    height: calc(100vw * .75);
  }
}

/* image-slider {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: auto;
  text-align: center;
  background-color: var(--sliderbg);
} */

image-slider p {
  position: absolute;
  display: flex;
  width: var(--space-big-x4);
  height: var(--space-big-x4);
  cursor: pointer;
}

/* image-slider .forward { */
image-slider p:nth-of-type(1) {

  right: 0;
  top:50%;
  
}
/* image-slider .forward img,
image-slider .back img,
image-slider .minmax img */
image-slider p:nth-of-type(1),
image-slider p:nth-of-type(2), 
image-slider p:nth-of-type(3) {
 
  filter:drop-shadow(1px 1px 2px rgb(223, 215, 215));
  opacity:.8;
}
/* image-slider .back { */
image-slider p:nth-of-type(2) {
  left: var(--space-big);
  top:50%;
}

/* image-slider .minmax { */
image-slider p:nth-of-type(3) {

  /* position: absolute; */
  top: var(--space-medium);
  right: var(--space-medium);
  /* align-self: flex-start; */
  /* margin-left: auto; */
}

/* image-slider.lightbox .minmax { */
image-slider.lightbox p:nth-of-type(3) {

  right: var(--space-mega);
}

image-slider footer {
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
}

image-slider .big {
  font-size: 200%;
}

image-slider h1 {
  margin-bottom: 0px;
}

image-slider blockquote {
  margin-top: 0;
}

/* HTML: <div class="corner-only"></div> */
.corner-only {
  --s: 15px; /* size of the corners */
  border: 8px solid #B38184; 
  padding: 10px;
  height: 250px;
  width: 300px;
  background: #f2f2f2 content-box;
  mask: 
    conic-gradient(#000 0 0) content-box,
    conic-gradient(at var(--s) var(--s),#0000 75%,#000 0) 
    0 0/calc(100% - var(--s)) calc(100% - var(--s));
}