.jphotogallery
{
    width: 100%;
    position: relative;
    background-color: #bababa;
}

.jphotogallery-slides-box
{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.jphotogallery-slides
{
    display: inline-flex;
    overflow-x: auto;
}

.jphotogallery-slides-prev
,
.jphotogallery-slides-next
{
    margin: 10px;
}

.jphotogallery-slides > img
{
    width: 160px;
    margin: 10px;
    display: inline-block;
    border-radius: 4px;
    box-shadow: 1px 1px 14px 2px #00000030;
    user-select: none;

    transition: all .2s ease-in-out;
}

.jphotogallery-slides > img:hover
{
    box-shadow: 1px 1px 14px 2px #00000061;
}

.jphotogallery-current-image-box
{
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.jphotogallery-current-image-prev
{
    left: 0;
}

.jphotogallery-current-image
{
    width: 100%;
    height: 100%;
    
    /*overflow: auto;*/
    
    cursor: pointer;
}

.jphotogallery-current-image-next
{
    right: 0;
}

.jphotogallery-current-image-prev
,
.jphotogallery-current-image-next
{
    margin: 20px;
    z-index: 1;
}

.jphotogallery-current-image-box > div
{
    position: absolute;
}

.jphotogallery-current-image > img
{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    opacity: 0;

    transition: 1s opacity ease-in-out;
}

.jphotogallery-current-image > img[data-selected]
{
    opacity: 1;
}