.vd-slider_container {
    max-width: 1300px;
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    max-height: 400px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* background-color: blue; */
}

.vd-slider_navigation {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: coral;
}

.vd-slider_navi-button {
    background: none;
    border: none;
    outline: none;
    height: 40px;
    width: 40px;
    background-size: contain;
    margin: auto 0;
    top: 50%;
    overflow: hidden;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    transition: .5s;
}

.vd-slider_navi-button img {
    height: 100%;
    width: 100%;
}

.vd-slider_button-left img {
    transform: scale(-1);
}

.vd-slider_button-left {
    left: 20px;
    transform: translate(0, -50%);
    
} 

.vd-slider_button-right {
    right: 20px;
    transform: translate(0, -50%);
}

.vd-slider_slides-holder {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.vd-slider_slide {
    /* width: 100%; */
    height: 100%;
    flex-shrink: 0;
    width: 0;
    overflow: hidden;
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-slider_slide .cover {
    height: 100%;
    margin: 0 auto;
}

.vd-slider_slide.selected .cover {
    width: auto;
    height: 100%;
    display: block;
    margin: 0 auto;
}

.vd-slider_slide img.cover {
    max-width: none !important; 
}

.vd-slider_slide.selected {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: .3s;
}

.vd-slider_listing {
    position: absolute;
    transform: translate(-50%, -50%);
    bottom: 15px;
    left: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.vd-slider_container:hover .vd-slider_listing span {
    width: 13px;
    height: 13px;
}

.vd-slider_container:hover .vd-slider_listing span.selected {
    width: 60px;
}

.vd-slider_container:hover .vd-slider_navi-button {
    opacity: 1;
}
 
.vd-slider_listing span {
    display: block;
    width: 10px;
    height: 10px;
    background-color: #C4C4C4;
    border: none;
    border-radius: 20px;
    margin: 0 10px;
    cursor: pointer;
    transition: .5s;
}

.vd-slider_listing span.selected {
    width: 60px;
    background-color: transparent;
    border: #C4C4C4 2px solid;
}

.shine {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 100%;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: placeholderShimmer;
    -webkit-animation-timing-function: linear;
}

@-webkit-keyframes placeholderShimmer {
    0% {
      background-position: -468px 0;
    }
    
    100% {
      background-position: 468px 0; 
    }
  }


@media (max-width: 800px) {

    .vd-slider_navi-button {
        opacity: 1;
    }

    .vd-slider_navi-button img {
        opacity: .5;
    }

    .vd-slider_listing span {
        width: 5px;
        height: 5px;
    }

    .vd-slider_slide.selected {
        display: flex; 
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .vd-slider_slide.selected .cover {
        margin: 0;
        height: 100%;
        width: auto;
    }

    .vd-slider_container {
        height: 200px;
        border-radius: 0;
        width: 100%;
    }

    .vd-slider_container:hover .vd-slider_listing span {
        width: 5px;
        height: 5px;
    }
    
    .vd-slider_container:hover .vd-slider_listing span.selected {
        width: 60px;
    }

}