.img-dialog {
    justify-self: center;
    align-self: center;
    border: 0.15vw solid #282828;
    padding: 0;
    /* width: 60vw;
    height: 60vh; */
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.img-dialog-inner {
    position: relative;
    padding: 2vmin;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-dialog-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #111111;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.img-dialog-content {
    gap: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.img-slider {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr auto;
    align-items: center;
    gap: 12px;
}

.img-main {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.img-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #111111;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.img-nav:disabled {
    opacity: 0.4;
    cursor: default;
}

/* .img-nav.prev {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    justify-self: start;
}

.img-nav.next {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    justify-self: end;
} */

.img-dots {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.img-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #1f1f1f33;
    cursor: pointer;
}

.img-dot[data-active="true"] {
    background: #111111;
}

.viewer {
    user-select: none;
    border-radius: 10px;
    max-width: 80%;
    max-height: 80%;
}

.next, .prev {
    color: #ffffff;
    font-size: 1vw;
    cursor: pointer;
    border: 2px solid #282828;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background: #111111;
}

/* .next {

} */

/* .img-dialog {

}

.img-dialog-inner {

}

.img-dialog-close {

}

.img-dialog-content {

}

.img-slider {

}

.img-main {

}

.img-nav {

}

.img-nav:disabled {

}

.img-nav.prev {

}

.img-nav.next {

}

.img-dots {

}

.img-dot {

}

.img-dot[data-active="true"] {
    background: #111111;
} */
