/*=================================================================================================*/        
/* SLIDER.CSS */
.screenshots_slider_holder{
    /*background-color:#ffffff;*/
    position: relative;
    overflow: hidden;
}
.sp_main_slider, .sp_scale_slider{
    position: relative;
    transform-origin: top center;
    perspective: 1300px;
}
.sp_one_slider{
    position: absolute;
    /*background-color: #dddddd;*/
    top: 50%; left: 50%;            
}
.sp_window_decoration, .sp_image_decoration{
    position: absolute;
    visibility: hidden;
    pointer-events: none;
}
.sp_main_slider img{
    display: block;
}
.sp_window_content_row{
    height: 100%;
    position: absolute;
}
.sp_window{            
    width: 100%;
    height: 100%;
    position: relative;
}
.sp_window img{
    width: 100%;
}
.sp_nav{
    display: flex;
    position: absolute;
    z-index: 1000;
    top: 50%; left: 50%;
    justify-content: center;
    flex-wrap: wrap;
    /*background-color: red;*/
}
.sp_nav_bullet {
    display: none;
    width: 13px;
    height: 13px;
    background-color: #00627e;
    margin: 10px 13px;
    border-radius: 50%;
}
.sp_selected_nav_bullet{
    background: #cafe49;
    cursor: default;
}
.sp_inactive_object{
    opacity: 0.5;
    pointer-events: none;
}

/*
.sp_prev, .sp_next{
    position: absolute;
    width: 20px;
    height: 55px;  
    background-position: center;
    background-size: contain;     
    background-repeat: no-repeat;     
    transition: all 0.5s ease;
}

.sp_prev{
    background-image: url('images/sp_prev.png');
    right: 50%;
}
.sp_next{
    background-image: url('images/sp_next.png');
    left: 50%;
}
*/
.sp_prev{
    border: solid black;
    border-width: 0 6px 6px 0;
    display: inline-block;
    padding: 6px;
    position: absolute;
    right: 50%;
    transition: all 0.5s ease;
    outline:none !important;
    box-shadow: none !important;
}
.sp_next{
    border: solid black;
    border-width: 0 6px 6px 0;
    display: inline-block;
    padding: 6px;
    position: absolute;
    left: 50%;
    transition: all 0.5s ease;
    outline:none !important;
    box-shadow: none !important;
}
.sp_next:focus, .sp_prev:focus{
    outline:none !important;
}



/*
.sp_prev:hover  {
    transform: translate(-440px, 0px) scale(1.2) !important;
}

.sp_next:hover{
    transform: translate(440px, 0px) scale(1.2) !important;
}
*/
@media only screen and (max-width: 1024px){
    .sp_prev {
        right: 30%;
        z-index: 9;
    }

    .sp_next {
        left: 30%;
        z-index: 9;
    }
}

@media only screen and (max-width: 768px) {
    .sp_nav_bullet{
        width: 15px;
        height: 15px;
        margin: 15px;
    }
}

@media only screen and (max-width: 512px) {
    .sp_prev {
        /*background-image: url(images/arrow-previous.png);*/
        right: 20%;
        z-index: 9;
        background-color: #ffffff6b;
        background-repeat: no-repeat;
        padding: 5px;
        background-position: center;
    }

    .sp_next {
        /*background-image: url(images/arrow-next.png);*/
        left: 20%;
        z-index: 9;
        background-color: #ffffff6b;
        background-repeat: no-repeat;
        padding: 5px;
        background-position: center;
    }

}     

@media only screen and (max-width: 450px) {
    .sp_nav_bullet{
        width: 25px;
        height: 25px;
        margin: 25px;
    }
}    

@media only screen and (max-width: 375px) {
    .sp_nav_bullet{
        width: 30px;
        height: 30px;
        margin: 30px;
    }
} 
/*=================================================================================================*/        