/**
 * desoslide - Take control of your slideshow with this powerful jQuery plugin
 * @version 2.2.0
 * @link https://github.com/sylouuu/desoslide
 * @license MIT
 */

.desoslide-wrapper {
    width: 91%;
}

.desoslide-thumbs-vertical {
    width: 100%;
    height: 650px;
    overflow-y: scroll;
}

.desoslide-thumbs-vertical img {
    width: 100%;
}

.secondary-image {
    cursor: pointer;
    height: 265px;
    overflow: hidden;
    margin-bottom: 5px;
}

.desoslide-wrapper {
    position: relative;
    text-align: center;
}

.desoslide-controls-wrapper {
    position: relative;
    float: none;
    height: 50px;
    bottom: 0;
    z-index: 100;
    opacity: 1;
}

.desoslide-controls-wrapper a:hover {
    opacity: 0.7;
}

.desoslide-overlay {
    position: absolute;
    z-index: 10;
    opacity: 0;
    top: 50% !important;
    right: 0;
    left: 0 !important;
}

.desoslide-overlay>a {
    position: relative;
    top: -1px;
    color: white;
}

.desoslide-overlay .desoslide-caption-title {
    display: inline-block;
    position: relative;
    top: -1px;
    max-width: 90%;
    max-height: 24px;
    font-size: 14px;
    overflow: hidden;
}

.desoslide-controls {
    display: inline-block;
    /*background: url('../../images/desoslide_controls.png') no-repeat 0 0;*/
    position: absolute;
}

.desoslide-controls.prev {
    width: 50px;
    height: 60px;
    background: url(../../images/prev.png) no-repeat 0 0;
    left: 0;
}

.desoslide-controls.pause {
    width: 16px;
    height: 16px;
    background-position: 0 -18px;
}

.desoslide-controls.play {
    width: 16px;
    height: 16px;
    background-position: 0 -36px;
}

.desoslide-controls.next {
    width: 50px;
    height: 60px;
    background: url(../../images/next.png) no-repeat 0 0;
    right: 10px;
}