.gallery-item {
    min-width: 120px;
    padding: var(--base-2);
}

.gallery-item a {
    display: block;
    cursor: pointer;
}

.gallery-item-thumbnail {
    height: 200px;
    background-color: rgba(0, 0, 0, .1);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.gallery-spotlight-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .75);
    visibility: hidden;
    opacity: 0;
    transition: opacity .1s ease-in-out;
}

.gallery-spotlight-container.open {
    visibility: visible;
    opacity: 1;
}

.gallery-spotlight-image-container {
    width: 80%;
    cursor: auto;
}

.gallery-spotlight-image {
    width: 100%;
    height: auto;
}

