.planet-slideshow-container-0
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    box-sizing: border-box;
    background: #FFFFFF;
    z-index: 25;
}
.planet-slideshow-container{
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #FFFFFF;
    box-sizing: border-box;
    display: none;
}
.planet-slideshow-container *{
    box-sizing: border-box;
}
.planet-slideshow-wrapper {
    max-width: calc(100vw);
    position: relative;
    margin: auto;
    box-sizing: border-box;
}
.planet-slideshow-close{
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    position: absolute;
    transition: 0.6s ease;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.05);
    display: block;
    z-index: 1;
    cursor: pointer;
    
}
.planet-slideshow-close:hover{
    background-color: rgba(0, 0, 0, 0.8);
}
.planet-slideshow-close::before, .planet-slideshow-close::after{
    content: "";
    height: 2px;
    width: 16px;
    
    background-color: #FFFFFF;
    position: absolute;
}
.planet-slideshow-close::before{
    margin-top: 15px;
    margin-left: 8px;
    transform: rotate(45deg);
}
.planet-slideshow-close::after{
    margin-top: 15px;
    margin-left: 8px;
    transform: rotate(-45deg);
}

/* Hide the images by default */
.planet-slideshow {
    display: none;
    height: calc(100vh - 60px);
    position: relative;
    width: 100%;
}

.slideshow-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    display: block;
    overflow: hidden;
}

.slideshow-image {
    max-height: calc(100vh - 60px);
    max-width: 100%;
}

/* next & previous buttons */
.planet-slideshow-prev,
.planet-slideshow-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.05);
}

/* Position the "next button" to the right */
.planet-slideshow-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.planet-slideshow-prev:hover,
.planet-slideshow-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fadeX;
    animation-duration: 1.5s;
}

.review-image-item img{
    cursor: pointer;
}

@keyframes fadeX {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@media screen and (max-width: 991px){
    .planet-slideshow {
        height: calc(100vh - 100px);
    }
    .slideshow-image {
        max-height: calc(100vh - 100px);
    }
}
@media screen and (min-width: 992px){
    .planet-slideshow-wrapper {
        max-height: calc(100vh - 60px);
        padding: 10px 0;
    }
    .slideshow-image {
        max-height: calc(100vh - 70px);
    }
}
