/* Lightbox */

.modal {
    display: none;
    background-color: var(--clr-support-300);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 11000;
}

.modal-content {
    height: inherit;
    width: 100%;
}

.slide {
    height: inherit;
    width: inherit;
}

.image-slide {
    height: 280px;
    margin: 0 auto;
    height: inherit;
    width: 100%;
    object-fit: contain;
}

  /* || Close button */

  .close-button {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: transparent;
  }

  .fa-xmark {
    background: var(--clr-primary-500); 
    color: var(--clr-support-300);
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 70%;
    transition: 0.3ms;
  }

  .fa-xmark:hover {
    opacity: 1;
  }