.image-viewer-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    background: #000;
}

.image-viewer-toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 215;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.image-viewer-toolbar-button {
    margin: 0 0.5rem;
    cursor: pointer;
}

.image-viewer-close-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    z-index: 220;
    cursor: pointer;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.image-viewer-next,
.image-viewer-previous {
    position: absolute;
    top: 48px;
    bottom: 0;
    width: 48px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 215;
    cursor: pointer;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.image-viewer-next {
    right: 0;
}

.image-viewer-previous {
    left: 0;
}

.image-viewer-content {
    position: absolute;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 210;
}
