.nk-popup-gallery,
.nk-video-gallery {
    .nk-gallery-item {
        cursor: url("../images/cursor-gallery-item.svg") 24 24, pointer;
    }
    .nk-gallery-item-box {
        width: 65%;
        margin: 0 auto;
        margin-bottom: 65px;

        > a {
            position: relative;
            display: block;
            transition: .5s transform ease;

            > img {
                width: 100%;
                height: auto;
            }

            &:hover,
            &.hover {
                transform: scale(.95);
            }
        }
        > a::after {
            content: "";
            position: absolute;
            display: block;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            box-shadow: inset 0 0 150px 30px rgba(0, 0, 0, .6);
            transition: .8s box-shadow;
        }
        > a:hover::after,
        > a.hover::after {
            box-shadow: inset 0 0 150px 30px rgba(0, 0, 0, 0);
        }
    }
}
.nk-popup-gallery-2-col,
.nk-video-gallery-2-col,
.nk-popup-gallery-3-col,
.nk-video-gallery-3-col {
    margin-right: -32.5px;
    margin-left: -32.5px;

    &::after {
        content: "";
        display: table;
        width: 100%;
        clear: both;
    }

    .nk-gallery-item-box {
        float: left;
        width: 50%;
        padding-right: 32.5px;
        padding-left: 32.5px;
    }

    @media #{$media_smaller_md} {
        margin-right: -15px;
        margin-left: -15px;

        .nk-gallery-item-box {
            padding-right: 15px;
            padding-left: 15px;
            margin-bottom: 30px;
        }
    }

    @media #{$media_smaller_xs} {
        .nk-gallery-item-box {
            width: 100%;
        }
    }
}

@media #{$media_larger_md} {
    .nk-popup-gallery-3-col,
    .nk-video-gallery-3-col {
        .nk-gallery-item-box {
            width: 33.333%;
        }
    }
}
