.royalSlider {
    width: 100%;
    height: 640px;
}

/* Background */
.rs,
.rs .rsOverflow,
.rs .rsSlide,
.rs .rsVideoFrameHolder,
.rs .rsThumbs {
    background: #FFF;
    color: #222;
}

/***************
*
*  1. Arrows
*
****************/

.rs .rsArrow {
    height: 100%;
    width: 46px;
    position: absolute;
    display: block;
    cursor: pointer;
    z-index: 21;
}

.rs.rsVer .rsArrow {
    width: 100%;
    height: 44px;
}

.rs.rsVer .rsArrowLeft {
    top: 0;
    left: 0;
}

.rs.rsVer .rsArrowRight {
    bottom: 0;
    left: 0;
}

.rs.rsHor .rsArrowLeft {
    left: 0;
    top: 0;
}

.rs.rsHor .rsArrowRight {
    right: 0;
    top: 0;
}

.rs .rsArrowIcn {
    width: 32px;
    height: 32px;
    top: 50%;

    position: absolute;
    cursor: pointer;
    background: url("skin.png") no-repeat;
    opacity: 0.7;
}

.rs .rsArrowIcn:hover {
    opacity: 1;
}

.rs.rsHor .rsArrowLeft .rsArrowIcn {
    background-position: -64px -32px;
}

.rs.rsHor .rsArrowRight .rsArrowIcn {
    background-position: -64px -64px;
}

.rs.rsVer .rsArrowLeft .rsArrowIcn {
    background-position: -96px -32px;
}

.rs.rsVer .rsArrowRight .rsArrowIcn {
    background-position: -96px -64px;
}

.rs .rsArrowDisabled .rsArrowIcn {
    filter: alpha(opacity=20);
    opacity: .2;
    *display: none;
}

/***************
*
*  3. Thumbnails
*
****************/

.rs .rsThumbsHor {
    width: 100%;
    height: 82px;
}

.rs .rsThumbsVer {
    width: 80px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.rs.rsWithThumbsHor .rsThumbsContainer {
    position: relative;
    height: 100%;
}

.rs.rsWithThumbsVer .rsThumbsContainer {
    position: relative;
    width: 100%;
}

.rs .rsThumb {
    float: left;
    overflow: hidden;
    width: 80px;
    height: 80px;
    margin-top: 2px;
}

.rs .rsThumb.rsNavSelected {
    background: #FFF;
    border-top: 2px solid #2f88d3;
    margin-top: 0;
}

.rs .rsThumb.rsNavSelected img {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.rs .rsTmb {
    display: block;
    top: 50%;
    left: 50%;
    position: relative;
    transform: translate(-50%, -50%);
}

/* Thumbnails with text */
.rs .rsTmb h5 {
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 20px;
}

.rs .rsTmb span {
    color: #DDD;
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 18px;
}

/* Thumbnails arrow icons */
.rs .rsThumbsArrow {
    height: 100%;
    width: 20px;
    position: absolute;
    display: block;
    cursor: pointer;
    z-index: 21;
    background: #FFF;
    background: rgba(255, 255, 255, 0.75);
}

.rs .rsThumbsArrow:hover {
    opacity: 1;
}

.rs.rsWithThumbsVer .rsThumbsArrow {
    width: 100%;
    height: 20px;
}

.rs.rsWithThumbsVer .rsThumbsArrowLeft {
    top: 0;
    left: 0;
}

.rs.rsWithThumbsVer .rsThumbsArrowRight {
    bottom: 0;
    left: 0;
}

.rs.rsWithThumbsHor .rsThumbsArrowLeft {
    left: 0;
    top: 0;
}

.rs.rsWithThumbsHor .rsThumbsArrowRight {
    right: 0;
    top: 0;
}

.rs .rsThumbsArrowIcn {
    width: 16px;
    height: 16px;
    top: 50%;
    position: absolute;
    cursor: pointer;
    background: url("skin.png") no-repeat;
    margin-top: -8px;
    opacity: 0.7;
}

.rs.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn {
    background-position: -128px -32px;
}

.rs.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn {
    background-position: -128px -48px;
}

.rs.rsWithThumbsVer .rsThumbsArrowLeft .rsThumbsArrowIcn {
    background-position: -144px -32px;
}

.rs.rsWithThumbsVer .rsThumbsArrowRight .rsThumbsArrowIcn {
    background-position: -144px -48px;
}

.rs .rsThumbsArrowDisabled {
    display: none !important;
}

/* Thumbnails resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 800px) {
    .rs .rsThumb {
        width: 59px;
        height: 44px;
    }

    .rs .rsThumbsHor {
        height: 44px;
    }

    .rs .rsThumbsVer {
        width: 59px;
    }
}

/***************
*
*  5. Fullscreen button
*
****************/

.rs .rsFullscreenBtn {
    right: 0;
    top: 0;
    width: 44px;
    height: 44px;
    z-index: 22;
    display: block;
    position: absolute;
    cursor: pointer;

}

.rs .rsFullscreenIcn {
    display: block;
    margin: 6px;
    width: 32px;
    height: 32px;

    background: url("skin.png") no-repeat 0 0;
    opacity: 0.7;
}

.rs .rsFullscreenIcn:hover {
    opacity: 1;
}

.rs.rsFullscreen .rsFullscreenIcn {
    background-position: -64px 0;
}

/***************
*
*  7. Preloader
*
****************/

.rs .rsPreloader {
    width: 32px;
    height: 32px;
    background-image: url('/img/ajax-loader.gif');

    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px;
}

.grab-cursor {
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.grabbing-cursor {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

.rsLink {
    background: none;
}