.carousel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}

.carousel__backdrop {
  background-color: rgba(0, 0, 0, .7);
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.carousel__container {
  align-items: center;
  display: flex;
  justify-content: center;
}
.carousel__container > svg {
  background-color: rgba(255, 255, 255, .2);
  border-radius: 50%;
  cursor: pointer;
  margin-top: 1.25em;
  padding: .3em;
  position: relative;
  width: 1.8em;
  height: 1.8em;
  z-index: 100;
}
@media (min-width: 45em) {
  .carousel__container > svg {
    padding: .5em;
    width: 2.2em;
    height: 2.2em;
  }
}
.arrow-left {
  margin-left: 1em;
}
.arrow-right {
  margin-right: 1em;
}
.carousel__container .arrow-left:hover,
.carousel__container .arrow-right:hover {
  transform: scale(1.1);
}
.carousel__close {
  align-items: center;
  background-color: rgba(0, 0, 0, .6);
  border-style: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  padding: .8em;
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  width: 3em;
  height: 3em;
  z-index: 10;
}
.carousel__close:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.carousel__close svg {
  width: 100%;
  height: 100%;
}
.carousel__container figure {
  flex: 1;
  margin: 0;
  margin-left: -4em;
  margin-right: -4em;
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1920px;
}
.carousel__container img {
  box-shadow: 0 0 2em 1em rgba(255, 127, 127, .3);
  display: block;
  margin-bottom: calc(2.5em * (-1));
  object-fit: contain;
  width: 100%;
  height: auto;
  max-height: 100vh;
}

.carousel__nav-points {
  align-items: center;
  display: flex;
  flex-basis: 2.5em;
  z-index: 100;
}
.carousel__nav-points span {
  background-color: rgba(255, 255, 255, .2);
  border-radius: 50%;
  cursor: pointer;
  width: .4em;
  height: .4em;
}
.carousel__nav-points span + span {
  margin-left: .5em;
}
@media (min-width: 45em) {
  .carousel__nav-points span {
    width: .65em;
    height: .65em;
  }
  .carousel__nav-points span + span {
    margin-left: .75em;
  }
}
.carousel__nav-points span.active {
  background-color: cyan;
}

.cls-1 {
  stroke: white;
  stroke-linecap: round;
  stroke-width: 4;
}
