img.data-preview-img {
    cursor: zoom-in;
}
#preview-image-cover {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 52;
    text-align: center;
}
#preview-image-block {
    position: fixed;
    height:100%;
    width:100%;
    top:0;
    left:0;
    z-index:51;
    text-align:center;
}
#preview-image-bg {
    background:rgba(0,0,0,0.4);
    position:absolute;
    z-index:51;
    height:100%;
    width:100%;
}
#preview-image {
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 53;
    cursor: move;
}
video#preview-image {
    cursor: pointer;
}
#preview-image-bar {
    width: auto;
    z-index: 65;
    position: absolute;
    right: 0;
    top: 0;
}
#preview-image-bar svg {
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    font-weight: normal;
    width: 70px;
    padding: 1rem;
    margin: 1rem;
}
#preview-image-bar svg:hover {
    background: rgba(0,0,0,.6);
}
#preview-image-bar .preview__count {
    color: #fff;
    font-size: 1.6rem;
    padding: 5px 15px;
    top: 4px;
    position: relative;
}
.preview-prevnext {
    display: none;
}
.preview__title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: .5rem;
}
.preview__desc {
    font-size: .9rem;
}
.preview__desc p {
    margin-bottom: .2rem;
}
#preview-image-right,
#preview-image-left {
    position: absolute;
    z-index: 65;
    padding: 5px;
    top: 50%;
}
#preview-image-left {
    left: 0;
}
#preview-image-right {
    right: 0;
}
#preview-image-left svg:hover,
#preview-image-right svg:hover {
    opacity: .7;
    transition: .3s;
    cursor: pointer;
}
#preview-image-left > svg,
#preview-image-right > svg {
    top:50%;
    position: relative;
    width: 60px;
    opacity: .4;
    background: #1e1e1e;
    border-radius: .5rem;
    padding: .5rem;
}
.preview__cols {
    display: flex;
    width: 100%;
    height: 100%;
    padding: .5rem 5rem;
    position: absolute;
    top: 0;
    left: 0;
}
.preview__col {
    z-index: 52;
}
.preview__col:first-child {
    width: inherit;
    position: relative;
    text-align: center;
}
.preview__info {
    width: 300px;
    background: #fff;
    height: 100%;
    padding: 1rem;
    text-align: left;
    overflow: auto;
}
.preview__options span,
.preview__options a {
    display: inline-block;
    padding: .2rem .5rem;
    color: #000;
}
.preview__options svg {
    width: 25px;
}
@media only screen and (max-width : 992px){
    .preview__cols {
        display: grid;
        padding: 0.5rem;
        overflow: scroll;
    }
    .preview__col:first-child {
        height: 90vh;
    }
    .preview__info {
        width: 100%;
        overflow: auto;
    }
    #preview-image-left > svg,
    #preview-image-right > svg {
        width: 35px;
    }
}