
.image-around-group {
    display: none;
    overflow: hidden;
}
.image-around-group.active {
    display: block;
}
.around-images {
    perspective: 800px;
    overflow: hidden;
    transition: transform .3s;
}
.around-images img {
    /*opacity: 0;*/
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.around-images img.prev1 {
    /*opacity: 1;*/
    z-index: 2;
}
.around-images img.prev2 {
    /*opacity: .5;
    transition: opacity .2s;*/
}
.around-images img.next1 {
    /*opacity: 0;*/
    z-index: 3;
}
.around-images img.next2 {
    /*opacity: 1;
    transition: opacity .2s;*/
}
.around-images-wrap, .around-images-holder {
    overflow: hidden;
    position: relative;
}
.psv-fullscreen-button, .psv-download-button {
    display: none;
}

.group-tabs {
    position: absolute;
    right: 5px;
    bottom: 5px;
    color: #fff;
    z-index: 92;
    display: flex;
}
.group-tabs > div {
    padding: 4px 10px;
    line-height: 20px;
    border: 1px solid #fff;
    margin-left: 10px;
    font-weight: 600;
    cursor: pointer;
}
.group-tabs > div:hover {
    background: #000;
}
.group-tabs > div.active {
    padding: 2px 8px;
    border: 3px solid #fff;
    cursor: default;
    background: #000;
}

.around-images-holder .play {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
}
.around-images-holder .play:before {
    content: '\f04b';
    font-family: FontAwesome;
}
.around-images-holder .play.pause:before {
    content: '\f04c';
}