@charset "UTF-8";

.image-viewer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.image-viewer::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 0;
}

.image-viewer>div {
    z-index: 1;
    position: relative;
    margin: auto;
    padding: 20px;
}

/* 
.image-viewer>div .image-item {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-viewer>div .image-item img {
    margin: auto;
    max-width: 90%;
    max-height: 80vh;
}

.image-viewer>div .slick-dots {
    bottom: 30px;
}

.image-viewer>div .slick-dots button::before {
    color: #fff;
} */