div.photo_slider_next, div.photo_slider_prev {
    position: absolute;
    top: 10px;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color:rgba(0,0,0,0.6);
    cursor: pointer;
    background-size: 12px;

    background-repeat: no-repeat;
}
div.photo_slider_next {
    right: 15px;
    background-image: url("/images/right_w.svg");
    background-position: 10px 9px;
}
div.photo_slider_prev {
    left: 15px;
    background-image: url("/images/left_w.svg");
    background-position: 8px 9px;
}
div.photo_slider_cnt {
    background-color:rgba(0,0,0,0.6);
    color: white;
    position: absolute;
    font-size: 12px;
    width: 40px;
    padding: 10px 5px;
    border-radius: 5px;
    text-align: center;
    bottom: 10px;
    right: 10px;
    user-select: none;
}
div.photo_slider_fav {
    position: absolute;
    z-index: 999;
    width: 40px;
    height: 40px;
    top: 0px;
    right: 0px;
    cursor: pointer;
}
div.photo_slider_fav div {
    width: 35px;
    height: 35px;
    border-radius: 17.5px;
    background-color:rgba(0,0,0,0.6);
    background-image: url("/client/favorite/img/heart_w.svg");
    background-size: 20px;
    background-position: 8px 9px;
    background-repeat: no-repeat;
    top: 5px;
    right: 5px;
    position: absolute;
}
div.photo_slider_fav_selected div {
    background-image: url("/client/favorite/img/heart_selected.svg") !important;
}
div.photo_slide {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}