.DD_slider {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, .7);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    z-index: 1000;
    top: 0px;
    opacity: 0;
    display: none;
    left: 0px;
}

.DD_slider .DD_slider_nav {
    width: 75px;
    position: absolute;
    cursor: pointer;
    z-index: 2;
    height: 100%;
    background-color: rgba(93, 93, 93, 0.42);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.DD_slider #DD_slider_images {
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.DD_slider #DD_slider_images img {
    max-width: 90vw;
    max-height: 90vh;
    position: absolute;
    -webkit-filter: blur(3px);
    opacity: 0;
    -webkit-user-select: none;
    pointer-events: none;
    left: 50% !important;
    top: 50% !important;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .4s;
}

.DD_slider #DD_slider_images img{
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
}

.DD_slider #DD_slider_images img.current {
    pointer-events: initial;
    opacity: 1;
    cursor: -webkit-zoom-in;
    -webkit-filter: blur(0px);
}

.DD_slider .DD_slider_nav p {
    opacity: .8;
}

.DD_slider .DD_slider_nav:hover {
    box-shadow: 0 0 1px #3C3C3C;
    background-color: rgba(93, 93, 93, 0.62);
}

.DD_slider .DD_slider_nav.left {
    left: 0px;
}

.DD_slider .DD_slider_nav.right {
    right: 0px;
}

.DD_slider .DD_slider_nav .DD_slider_arrow {
    color: #fff;
    position: absolute;
    font-size: 4em;
    opacity: .8;
    -webkit-user-select: none;
    top: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.DD_slider #image_counter {
    position: absolute;
    left: 80px;
    top: 0px;
    font-size: 3em;
    z-index: 999;
    padding: 15px;
    color: #EAEAEA;
}

.DD_slider #exit {
    position: absolute;
    right: 80px;
    top: 0px;
    font-size: 3em;
    cursor: pointer;
    -webkit-user-select: none;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    z-index: 999;
    padding: 15px;
    color: #EAEAEA;
}

.DD_slider #exit:hover {
    opacity: .7;
}