/*!
* Responsive Video Gallery - A jQuery plugin that provides a slider with horizontal and vertical thumb layouts for video galleries.
* @version 1.0.9
* @link http://fooplugins.github.io/rvslider/
* @copyright Steven Usher & Brad Vincent 2015
* @license Released under the GPLv3 license.
*/


/* General */

.rvs-container,
.rvs-empty,
.rvs-item-container,
.rvs-item-stage,
.rvs-item,
.rvs-nav-container,
.rvs-nav-stage,
.rvs-nav-item,
.rvs-nav-prev,
.rvs-nav-next,
.rvs-item-content,
.rvs-item-text {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.rvs-container {
    display: block;
    width: auto;
    height: 335px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    padding-right: 100px;
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
}

.rvs-item-container,
.rvs-nav-container {
    display: block;
    height: 100%;
    overflow: hidden;
}

.rvs-empty {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: inherit;
}

.rvs-item-container {
    height: 100%;
    background-color: inherit;
}

.rvs-item-stage {
    height: 100%;
    max-height: 100%;
    position: relative;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
    background-color: inherit;
}

.rvs-item {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    background: no-repeat center center;
    background-size: cover;
    background-color: inherit;
}

.rvs-item-content,
.rvs-item-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    margin: 0;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
}

.rvs-item-content.rvs-bottom-left,
.rvs-item-content.rvs-bottom-right,
.rvs-item-content.rvs-bottom-center,
.rvs-item-text.rvs-bottom-left,
.rvs-item-text.rvs-bottom-right,
.rvs-item-text.rvs-bottom-center {
    top: auto;
    bottom: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    transform: translateY(30px);
}

.rvs-item-content.rvs-top-left,
.rvs-item-content.rvs-bottom-left,
.rvs-item-text.rvs-top-left,
.rvs-item-text.rvs-bottom-left {
    text-align: left;
}

.rvs-item-content.rvs-top-right,
.rvs-item-content.rvs-bottom-right,
.rvs-item-text.rvs-top-right,
.rvs-item-text.rvs-bottom-right {
    text-align: right;
}

.rvs-item-content.rvs-top-center,
.rvs-item-content.rvs-bottom-center,
.rvs-item-text.rvs-top-center,
.rvs-item-text.rvs-bottom-center {
    text-align: center;
}

.rvs-active .rvs-item-content,
.rvs-active .rvs-item-text {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}

.rvs-item-text {
    font-size: 14px;
    padding: 12px;
}

.rvs-item-text small {
    display: block;
    font-size: 80%;
    text-align: inherit;
}


/* Hide Credits */

.rvs-hide-credits .rvs-item-text small {
    display: none;
}

.rvs-player {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
}

.rvs-player>video {
    background-color: #000;
}

.rvs-container a.rvs-close,
.rvs-container a.rvs-play-video {
    position: absolute;
    display: inline-block;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    outline: none;
    opacity: 0;
    box-shadow: none;
}

.rvs-container a.rvs-close:active,
.rvs-container a.rvs-close:focus,
.rvs-container a.rvs-close:hover,
.rvs-container a.rvs-play-video:active,
.rvs-container a.rvs-play-video:focus,
.rvs-container a.rvs-play-video:hover {
    text-decoration: none;
    outline: none;
    border: none;
    box-shadow: none;
}

.rvs-container a.rvs-close {
    top: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
    font-size: 28px;
    font-weight: bold;
    z-index: 2;
}

.rvs-container a.rvs-play-video {
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    font-size: 32px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.rvs-container .rvs-player:hover a.rvs-close,
.rvs-container .rvs-active a.rvs-play-video {
    opacity: 1;
}

.rvs-container.rvs-show-play-on-hover .rvs-active a.rvs-play-video {
    opacity: 0;
}

.rvs-container.rvs-show-play-on-hover .rvs-active:hover a.rvs-play-video {
    opacity: 1;
}

.rvs-container .rvs-video-active a.rvs-play-video {
    display: none;
}

.rvs-player-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: inherit;
}

.rvs-error-icon {
    display: inline-block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-style: solid;
    border-radius: 50%;
    background-color: #CA3030;
    border-width: 12px;
    width: 140px;
    height: 140px;
    font-size: 180px;
}

.rvs-nav-container {
    width: 100px;
    position: absolute;
    top: 0;
    right: 0;
}

.rvs-nav-container a.rvs-nav-prev,
.rvs-nav-container a.rvs-nav-next {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 6px 8px;
    font-size: 16px;
    font-weight: bold;
    opacity: 0;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    z-index: 2;
}

.rvs-nav-container a.rvs-nav-prev:hover,
.rvs-nav-container a.rvs-nav-next:hover {
    color: inherit;
    text-decoration: none;
}

.rvs-nav-container:hover a.rvs-nav-prev,
.rvs-nav-container:hover a.rvs-nav-next {
    opacity: 0.5;
}

.rvs-nav-container a.rvs-nav-prev:hover,
.rvs-nav-container a.rvs-nav-next:hover {
    opacity: 1;
}

.rvs-nav-container a.rvs-nav-prev {
    top: 0;
    border-bottom: solid 1px transparent;
}

.rvs-nav-container a.rvs-nav-next {
    bottom: 0;
    border-top: solid 1px transparent;
}

.rvs-nav-container a.rvs-nav-stage {
    -webkit-transform: translateX(0px) translateY(-1px);
    -ms-transform: translateX(0px) translateY(-1px);
    transform: translateX(0px) translateY(-1px);
    width: 100%;
    z-index: 1;
}

.rvs-nav-container a.rvs-nav-item {
    display: block;
    position: relative;
    width: 100%;
    height: 56px;
    padding: 4px 6px;
    border-top: solid 1px transparent;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    text-decoration: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.rvs-nav-container a.rvs-nav-item:hover {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.rvs-nav-container a.rvs-nav-item:before {
    display: table;
    content: ' ';
}

.rvs-nav-container a.rvs-nav-item:first-child {
    border-top-color: transparent;
    border-top-width: 2px;
}

.rvs-nav-container span.rvs-nav-item-thumb {
    display: none;
    float: left;
    margin-left: -8px;
    margin-right: 8px;
    width: 60px;
    height: 60px;
    background: no-repeat center center;
    background-size: cover;
}

.rvs-nav-container h4.rvs-nav-item-title {
    display: block;
    max-height: 30px;
    line-height: 15px;
    font-size: 12px;
    margin: 9px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    clear: none;
}

.rvs-nav-container small.rvs-nav-item-credits {
    display: block;
    max-height: 15px;
    line-height: 15px;
    font-size: 11px;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    clear: none;
}


/* Thumb Play */

.rvs-thumb-play .rvs-nav-container span.rvs-nav-item-thumb:before {
    padding: 6px 7px 8px 7px;
    border-radius: 4px;
    display: inline-block;
    width: 28px;
    height: 28px;
}

.rvs-thumb-play .rvs-nav-container .rvs-video-active span.rvs-nav-item-thumb:before {
    padding: 1px 8px 7px;
    font-size: 20px;
}


/* Large Thumbs */

.rvs-large-thumbs .rvs-nav-container span.rvs-nav-item-thumb {
    height: 60px;
    width: 98px;
}


/* Hide Credits */

.rvs-hide-credits .rvs-nav-container small.rvs-nav-item-credits {
    display: none;
}

.rvs-hide-credits .rvs-nav-container h4.rvs-nav-item-title {
    white-space: normal;
}

.rvs-animate .rvs-item-stage,
.rvs-animate .rvs-nav-stage {
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-transition: -moz-transform 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: transform 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.rvs-animate .rvs-nav-item {
    -webkit-transition: background-color 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95), border-color 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-transition: background-color 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95), border-color 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: background-color 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95), border-color 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.rvs-animate .rvs-close,
.rvs-animate .rvs-play-video {
    -webkit-transition: background-color 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95), color 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95), border-color 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-transition: background-color 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95), color 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95), border-color 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: background-color 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95), color 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95), border-color 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.rvs-animate .rvs-item-content,
.rvs-animate .rvs-item-text {
    -webkit-transition: opacity 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95), -webkit-transform 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-transition: opacity 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95), -moz-transform 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: opacity 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95), transform 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.rvs-animate .rvs-nav-prev,
.rvs-animate .rvs-nav-next {
    -webkit-transition: opacity 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-transition: opacity 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: opacity 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition-delay: 0.5s;
}

.rvs-animate .rvs-nav-prev:hover,
.rvs-animate .rvs-nav-next:hover {
    transition-delay: 0s;
}

.rvs-animate .rvs-nav-item h4,
.rvs-animate .rvs-nav-item small {
    -webkit-transition: color 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-transition: color 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: color 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.rvs-animate .rvs-nav-item span {
    -webkit-transition: background-color 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-transition: background-color 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition: background-color 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}


/* rvs-xs - Custom, iPhone Retina */


/* rvs-sm - Small Devices, Phones */

.rvs-container.rvs-xs.rvs-sm {
    padding-right: 150px;
}

.rvs-xs.rvs-sm .rvs-item-text {
    font-size: 16px;
    padding: 14px;
}

.rvs-xs.rvs-sm .rvs-nav-container {
    width: 150px;
}


/* rvs-md - Small Devices, Tablets */

.rvs-container.rvs-xs.rvs-sm.rvs-md {
    height: 467px;
    padding-right: 220px;
}

.rvs-xs.rvs-sm.rvs-md .rvs-item-text {
    font-size: 18px;
    padding: 16px;
}

.rvs-xs.rvs-sm.rvs-md .rvs-nav-container {
    width: 220px;
}

.rvs-xs.rvs-sm.rvs-md .rvs-nav-container a.rvs-nav-item {
    height: 78px;
    padding: 8px 16px;
}

.rvs-xs.rvs-sm.rvs-md .rvs-nav-container h4.rvs-nav-item-title {
    margin: 10px 0 2px 0;
    max-height: 40px;
    line-height: 39px;
    font-size: 16px;
    font-weight: 600;
}

.rvs-xs.rvs-sm.rvs-md .rvs-nav-container small.rvs-nav-item-credits {
    font-size: 14px;
}

.rvs-xs.rvs-sm.rvs-md .rvs-nav-container span.rvs-nav-item-thumb {
    display: block;
}

.rvs-xs.rvs-sm.rvs-md .rvs-error-icon {
    border-width: 18px;
    width: 200px;
    height: 200px;
    font-size: 250px;
}


/* rvs-lg - Medium Devices, Desktops */

.rvs-container.rvs-xs.rvs-sm.rvs-md.rvs-lg {
    height: 545px;
    padding-right: 280px;
}

.rvs-xs.rvs-sm.rvs-md.rvs-lg .rvs-item-text {
    font-size: 20px;
    padding: 20px;
}

.rvs-xs.rvs-sm.rvs-md.rvs-lg .rvs-nav-container {
    width: 280px;
}


/* rvs-xl - Large Devices, Wide Screens */

.rvs-container.rvs-horizontal {
    padding-right: 0;
    padding-bottom: 56px;
}

.rvs-horizontal .rvs-item-container,
.rvs-horizontal .rvs-nav-container {
    width: 100%;
}

.rvs-horizontal .rvs-nav-container {
    height: 56px;
    top: auto;
    bottom: 0;
}

.rvs-horizontal .rvs-nav-container a.rvs-nav-prev,
.rvs-horizontal .rvs-nav-container a.rvs-nav-next {
    left: auto;
    top: 0;
    width: auto;
    height: 56px;
    line-height: 56px;
    border-top: none;
    border-bottom: none;
}

.rvs-horizontal .rvs-nav-container a.rvs-nav-prev {
    top: auto;
    left: 0;
    border-right-style: solid;
    border-right-width: 1px;
}

.rvs-horizontal .rvs-nav-container a.rvs-nav-next {
    bottom: auto;
    right: 0;
    border-left-style: solid;
    border-left-width: 1px;
}

.rvs-horizontal .rvs-nav-container .rvs-nav-stage {
    -webkit-transform: translateX(0px) translateY(0px);
    -ms-transform: translateX(0px) translateY(0px);
    transform: translateX(0px) translateY(0px);
    height: 100%;
}

.rvs-horizontal .rvs-nav-container a.rvs-nav-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    border-top: none;
    border-left-style: solid;
    border-left-width: 1px;
}

.rvs-horizontal .rvs-nav-container a.rvs-nav-item:first-child {
    border-left-color: transparent;
    border-left-width: 2px;
}


/* Make sure to override the large thumbs in horizontal mode */

.rvs-large-thumbs.rvs-horizontal .rvs-nav-container span.rvs-nav-item-thumb {
    width: 60px;
    height: 60px;
}


/* rvs-xs - Custom, iPhone Retina */


/* rvs-sm - Small Devices, Phones */

.rvs-container.rvs-horizontal.rvs-xs.rvs-sm {
    padding-right: 0;
    height: 420px;
}

.rvs-horizontal.rvs-xs.rvs-sm .rvs-nav-container {
    width: 100%;
}


/* rvs-md - Small Devices, Tablets */

.rvs-container.rvs-horizontal.rvs-xs.rvs-sm.rvs-md {
    padding-right: 0;
    padding-bottom: 78px;
    height: 520px;
}

.rvs-horizontal.rvs-xs.rvs-sm.rvs-md .rvs-nav-container a.rvs-nav-prev,
.rvs-horizontal.rvs-xs.rvs-sm.rvs-md .rvs-nav-container a.rvs-nav-next {
    height: 100%;
    line-height: 78px;
}

.rvs-horizontal.rvs-xs.rvs-sm.rvs-md .rvs-nav-container {
    width: 100%;
    height: 78px;
}

.rvs-horizontal.rvs-xs.rvs-sm.rvs-md .rvs-nav-container a.rvs-nav-item {
    height: 100%;
}


/* rvs-lg - Medium Devices, Desktops */

.rvs-container.rvs-horizontal.rvs-xs.rvs-sm.rvs-md.rvs-lg {
    height: 546px;
    padding-right: 0;
}

.rvs-horizontal.rvs-xs.rvs-sm.rvs-md.rvs-lg .rvs-nav-container {
    width: 100%;
}


/* rvs-xl - Large Devices, Wide Screens */

.rvs-close,
.rvs-play-video,
.rvs-error-icon,
.rvs-nav-prev,
.rvs-nav-next,
.rvs-thumb-play .rvs-nav-item-thumb {
    font-family: "Andale Mono", Arial, "Courier New", sans-serif;
    line-height: 1;
    text-align: center;
}

.rvs-close:before,
.rvs-play-video:before,
.rvs-error-icon:before,
.rvs-horizontal .rvs-nav-prev:before,
.rvs-horizontal .rvs-nav-next:before,
.rvs-thumb-play .rvs-nav-item-thumb:before {
    display: inline-block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.rvs-horizontal .rvs-nav-prev,
.rvs-horizontal .rvs-nav-next {
    width: auto;
    height: 78px;
}

.rvs-close:before,
.rvs-error-icon:before {
    content: '\00D7';
}

.rvs-play-video:before,
.rvs-thumb-play .rvs-nav-item-thumb:before {
    content: '\25ba';
}

.rvs-thumb-play .rvs-video-active .rvs-nav-item-thumb:before {
    content: '\25A0';
}

.rvs-nav-prev:before {
    content: '\25b2';
}

.rvs-nav-next:before {
    content: '\25bc';
}

.rvs-horizontal .rvs-nav-prev:before {
    content: '\25c0';
}

.rvs-horizontal .rvs-nav-next:before {
    content: '\25b6';
}

.rvs-container.rvs-flat-circle-play a.rvs-play-video {
    border-radius: 50%;
}

.rvs-container.rvs-flat-circle-play a.rvs-play-video:before {
    padding-left: 4px;
}

.rvs-container.rvs-plain-arrow-play .rvs-item a.rvs-play-video,
.rvs-container.rvs-plain-arrow-play .rvs-item a.rvs-play-video:active,
.rvs-container.rvs-plain-arrow-play .rvs-item a.rvs-play-video:hover,
.rvs-container.rvs-plain-arrow-play .rvs-item a.rvs-play-video:focus {
    background-color: transparent;
    font-size: 50px;
}

.rvs-container.rvs-youtube-play a.rvs-play-video {
    border-radius: 50% 50% 50% 50% / 15% 15% 15% 15%;
    font-size: 24px;
    height: 42px;
}

.rvs-container.rvs-bordered-circle-play .rvs-item a.rvs-play-video,
.rvs-container.rvs-bordered-circle-play .rvs-item a.rvs-play-video:active,
.rvs-container.rvs-bordered-circle-play .rvs-item a.rvs-play-video:hover,
.rvs-container.rvs-bordered-circle-play .rvs-item a.rvs-play-video:focus {
    background-color: transparent;
    border-radius: 50%;
    border-width: 4px;
    border-style: solid;
}

.rvs-container.rvs-bordered-circle-play a.rvs-play-video:before {
    padding-left: 4px;
}

.rvs-container,
.rvs-item-text,
.rvs-container a.rvs-close,
.rvs-container a.rvs-close:active,
.rvs-container a.rvs-close:focus,
.rvs-container a.rvs-close:hover,
.rvs-container a.rvs-play-video,
.rvs-container a.rvs-play-video:active,
.rvs-container a.rvs-play-video:focus,
.rvs-container a.rvs-play-video:hover,
.rvs-container a.rvs-nav-prev,
.rvs-container a.rvs-nav-prev:active,
.rvs-container a.rvs-nav-prev:focus,
.rvs-container a.rvs-nav-prev:hover,
.rvs-container a.rvs-nav-next,
.rvs-container a.rvs-nav-next:active,
.rvs-container a.rvs-nav-next:focus,
.rvs-container a.rvs-nav-next:hover,
.rvs-nav-item-title,
.rvs-thumb-play .rvs-nav-item-thumb:before,
.rvs-thumb-play .rvs-nav-item-thumb:hover:before {
    color: #FFF;
}

.rvs-container a.rvs-play-video,
.rvs-container a.rvs-play-video:active,
.rvs-container a.rvs-play-video:focus,
.rvs-container a.rvs-play-video:hover {
    border-color: #FFF;
}

.rvs-nav-item-credits {
    color: #767676;
}

.rvs-item-text {
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}

.rvs-container a.rvs-close,
.rvs-container a.rvs-play-video,
.rvs-nav-container span.rvs-nav-item-thumb,
.rvs-thumb-play .rvs-nav-container span.rvs-nav-item-thumb:before {
    background-color: rgba(23, 35, 34, 0.75);
}

.rvs-container,
.rvs-container a.rvs-nav-prev,
.rvs-container a.rvs-nav-next {
    background-color: #151515;
}

.rvs-container a.rvs-nav-item:active,
.rvs-container a.rvs-nav-item:focus,
.rvs-container a.rvs-nav-item:hover,
.rvs-container a.rvs-nav-prev:active,
.rvs-container a.rvs-nav-prev:focus,
.rvs-container a.rvs-nav-prev:hover,
.rvs-container a.rvs-nav-next:active,
.rvs-container a.rvs-nav-next:focus,
.rvs-container a.rvs-nav-next:hover {
    background-color: #000;
}

.rvs-nav-container,
.rvs-container a.rvs-nav-item,
.rvs-container a.rvs-nav-item:active,
.rvs-container a.rvs-nav-item:focus,
.rvs-container a.rvs-nav-item:hover,
.rvs-container a.rvs-nav-prev,
.rvs-container a.rvs-nav-prev:active,
.rvs-container a.rvs-nav-prev:focus,
.rvs-container a.rvs-nav-prev:hover,
.rvs-container a.rvs-nav-next,
.rvs-container a.rvs-nav-next:active,
.rvs-container a.rvs-nav-next:focus,
.rvs-container a.rvs-nav-next:hover {
    border-color: #2E2E2E;
}

.rvs-container a.rvs-nav-item:first-child {
    border-color: #151515;
}

.rvs-container a.rvs-nav-item:first-child:focus,
.rvs-container a.rvs-nav-item:first-child:hover {
    border-color: #000;
}

.rvs-light.rvs-container,
.rvs-light.rvs-container a.rvs-nav-prev,
.rvs-light.rvs-container a.rvs-nav-prev:active,
.rvs-light.rvs-container a.rvs-nav-prev:focus,
.rvs-light.rvs-container a.rvs-nav-prev:hover,
.rvs-light.rvs-container a.rvs-nav-next,
.rvs-light.rvs-container a.rvs-nav-next:active,
.rvs-light.rvs-container a.rvs-nav-next:focus,
.rvs-light.rvs-container a.rvs-nav-next:hover,
.rvs-light .rvs-nav-item-title {
    color: #333;
}

.rvs-light .rvs-nav-item-credits {
    color: #767676;
}

.rvs-light.rvs-container,
.rvs-light.rvs-container a.rvs-nav-prev,
.rvs-light.rvs-container a.rvs-nav-next {
    background-color: #c9bbae;
}

.rvs-light.rvs-container a.rvs-nav-item:active,
.rvs-light.rvs-container a.rvs-nav-item:focus,
.rvs-light.rvs-container a.rvs-nav-item:hover,
.rvs-light.rvs-container a.rvs-nav-prev:active,
.rvs-light.rvs-container a.rvs-nav-prev:focus,
.rvs-light.rvs-container a.rvs-nav-prev:hover,
.rvs-light.rvs-container a.rvs-nav-next:active,
.rvs-light.rvs-container a.rvs-nav-next:focus,
.rvs-light.rvs-container a.rvs-nav-next:hover {
    background-color: #F9F9F9;
}

.rvs-light .rvs-nav-container,
.rvs-light.rvs-container a.rvs-nav-item,
.rvs-light.rvs-container a.rvs-nav-item:active,
.rvs-light.rvs-container a.rvs-nav-item:focus,
.rvs-light.rvs-container a.rvs-nav-item:hover,
.rvs-light.rvs-container a.rvs-nav-prev,
.rvs-light.rvs-container a.rvs-nav-prev:active,
.rvs-container a.rvs-light .rvs-nav-prev:focus,
.rvs-light.rvs-container a.rvs-nav-prev:hover,
.rvs-light.rvs-container a.rvs-nav-next,
.rvs-light.rvs-container a.rvs-nav-next:active,
.rvs-light.rvs-container a.rvs-nav-next:focus,
.rvs-light.rvs-container a.rvs-nav-next:hover {
    border-color: #c9bbae;
}

.rvs-light.rvs-container a.rvs-nav-item:first-child {
    border-color: #c9bbae;
}

.rvs-light.rvs-container a.rvs-nav-item:first-child:focus,
.rvs-light.rvs-container a.rvs-nav-item:first-child:hover {
    border-color: #F9F9F9;
}

.rvs-container a.rvs-close:active,
.rvs-container a.rvs-close:focus,
.rvs-container a.rvs-close:hover,
.rvs-container a.rvs-play-video:active,
.rvs-container a.rvs-play-video:focus,
.rvs-container a.rvs-play-video:hover,
.rvs-container a.rvs-nav-item.rvs-active,
.rvs-container a.rvs-nav-item.rvs-active:active,
.rvs-container a.rvs-nav-item.rvs-active:focus,
.rvs-container a.rvs-nav-item.rvs-active:hover,
.rvs-container.rvs-thumb-play .rvs-nav-container span.rvs-nav-item-thumb:hover:before,
.rvs-container.rvs-thumb-play .rvs-nav-container .rvs-video-active span.rvs-nav-item-thumb:before {
    background-color: #a6118a;
}

.rvs-container a.rvs-play-video:active,
.rvs-container a.rvs-play-video:focus,
.rvs-container a.rvs-play-video:hover,
.rvs-container a.rvs-nav-item.rvs-active,
.rvs-container a.rvs-nav-item.rvs-active:active,
.rvs-container a.rvs-nav-item.rvs-active:focus,
.rvs-container a.rvs-nav-item.rvs-active:hover,
.rvs-container a.rvs-nav-item.rvs-active:first-child,
.rvs-container a.rvs-nav-item.rvs-active:first-child:active,
.rvs-container a.rvs-nav-item.rvs-active:first-child:focus,
.rvs-container a.rvs-nav-item.rvs-active:first-child:hover {
    border-color: #a6118a;
}

.rvs-container .rvs-active .rvs-nav-item-title,
.rvs-container .rvs-active .rvs-nav-item-credits {
    color: #FFF;
}

.rvs-green-highlight.rvs-container a.rvs-close:active,
.rvs-green-highlight.rvs-container a.rvs-close:focus,
.rvs-green-highlight.rvs-container a.rvs-close:hover,
.rvs-green-highlight.rvs-container a.rvs-play-video:active,
.rvs-green-highlight.rvs-container a.rvs-play-video:focus,
.rvs-green-highlight.rvs-container a.rvs-play-video:hover,
.rvs-green-highlight.rvs-container a.rvs-nav-item.rvs-active,
.rvs-green-highlight.rvs-container a.rvs-nav-item.rvs-active:active,
.rvs-green-highlight.rvs-container a.rvs-nav-item.rvs-active:focus,
.rvs-green-highlight.rvs-container a.rvs-nav-item.rvs-active:hover,
.rvs-green-highlight.rvs-thumb-play .rvs-nav-container span.rvs-nav-item-thumb:hover:before,
.rvs-green-highlight.rvs-thumb-play .rvs-nav-container .rvs-video-active span.rvs-nav-item-thumb:before {
    background-color: #02874A;
}

.rvs-green-highlight.rvs-container a.rvs-play-video:active,
.rvs-green-highlight.rvs-container a.rvs-play-video:focus,
.rvs-green-highlight.rvs-container a.rvs-play-video:hover,
.rvs-green-highlight.rvs-container a.rvs-nav-item.rvs-active,
.rvs-green-highlight.rvs-container a.rvs-nav-item.rvs-active:active,
.rvs-green-highlight.rvs-container a.rvs-nav-item.rvs-active:focus,
.rvs-green-highlight.rvs-container a.rvs-nav-item.rvs-active:hover,
.rvs-green-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child,
.rvs-green-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child:active,
.rvs-green-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child:focus,
.rvs-green-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child:hover {
    border-color: #02874A;
}

.rvs-blue-highlight.rvs-container a.rvs-close:active,
.rvs-blue-highlight.rvs-container a.rvs-close:focus,
.rvs-blue-highlight.rvs-container a.rvs-close:hover,
.rvs-blue-highlight.rvs-container a.rvs-play-video:active,
.rvs-blue-highlight.rvs-container a.rvs-play-video:focus,
.rvs-blue-highlight.rvs-container a.rvs-play-video:hover,
.rvs-blue-highlight.rvs-container a.rvs-nav-item.rvs-active,
.rvs-blue-highlight.rvs-container a.rvs-nav-item.rvs-active:active,
.rvs-blue-highlight.rvs-container a.rvs-nav-item.rvs-active:focus,
.rvs-blue-highlight.rvs-container a.rvs-nav-item.rvs-active:hover,
.rvs-blue-highlight.rvs-thumb-play .rvs-nav-container span.rvs-nav-item-thumb:hover:before,
.rvs-blue-highlight.rvs-thumb-play .rvs-nav-container .rvs-video-active span.rvs-nav-item-thumb:before {
    background-color: #0087be;
}

.rvs-blue-highlight.rvs-container a.rvs-play-video:active,
.rvs-blue-highlight.rvs-container a.rvs-play-video:focus,
.rvs-blue-highlight.rvs-container a.rvs-play-video:hover,
.rvs-blue-highlight.rvs-container a.rvs-nav-item.rvs-active,
.rvs-blue-highlight.rvs-container a.rvs-nav-item.rvs-active:active,
.rvs-blue-highlight.rvs-container a.rvs-nav-item.rvs-active:focus,
.rvs-blue-highlight.rvs-container a.rvs-nav-item.rvs-active:hover,
.rvs-blue-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child,
.rvs-blue-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child:active,
.rvs-blue-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child:focus,
.rvs-blue-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child:hover {
    border-color: #0087be;
}

.rvs-orange-highlight.rvs-container a.rvs-close:active,
.rvs-orange-highlight.rvs-container a.rvs-close:focus,
.rvs-orange-highlight.rvs-container a.rvs-close:hover,
.rvs-orange-highlight.rvs-container a.rvs-play-video:active,
.rvs-orange-highlight.rvs-container a.rvs-play-video:focus,
.rvs-orange-highlight.rvs-container a.rvs-play-video:hover,
.rvs-orange-highlight.rvs-container a.rvs-nav-item.rvs-active,
.rvs-orange-highlight.rvs-container a.rvs-nav-item.rvs-active:active,
.rvs-orange-highlight.rvs-container a.rvs-nav-item.rvs-active:focus,
.rvs-orange-highlight.rvs-container a.rvs-nav-item.rvs-active:hover,
.rvs-orange-highlight.rvs-thumb-play .rvs-nav-container span.rvs-nav-item-thumb:hover:before,
.rvs-orange-highlight.rvs-thumb-play .rvs-nav-container .rvs-video-active span.rvs-nav-item-thumb:before {
    background-color: #FF8E31;
}

.rvs-orange-highlight.rvs-container a.rvs-play-video:active,
.rvs-orange-highlight.rvs-container a.rvs-play-video:focus,
.rvs-orange-highlight.rvs-container a.rvs-play-video:hover,
.rvs-orange-highlight.rvs-container a.rvs-nav-item.rvs-active,
.rvs-orange-highlight.rvs-container a.rvs-nav-item.rvs-active:active,
.rvs-orange-highlight.rvs-container a.rvs-nav-item.rvs-active:focus,
.rvs-orange-highlight.rvs-container a.rvs-nav-item.rvs-active:hover,
.rvs-orange-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child,
.rvs-orange-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child:active,
.rvs-orange-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child:focus,
.rvs-orange-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child:hover {
    border-color: #FF8E31;
}

.rvs-red-highlight.rvs-container a.rvs-close:active,
.rvs-red-highlight.rvs-container a.rvs-close:focus,
.rvs-red-highlight.rvs-container a.rvs-close:hover,
.rvs-red-highlight.rvs-container a.rvs-play-video:active,
.rvs-red-highlight.rvs-container a.rvs-play-video:focus,
.rvs-red-highlight.rvs-container a.rvs-play-video:hover,
.rvs-red-highlight.rvs-container a.rvs-nav-item.rvs-active,
.rvs-red-highlight.rvs-container a.rvs-nav-item.rvs-active:active,
.rvs-red-highlight.rvs-container a.rvs-nav-item.rvs-active:focus,
.rvs-red-highlight.rvs-container a.rvs-nav-item.rvs-active:hover,
.rvs-red-highlight.rvs-thumb-play .rvs-nav-container span.rvs-nav-item-thumb:hover:before,
.rvs-red-highlight.rvs-thumb-play .rvs-nav-container .rvs-video-active span.rvs-nav-item-thumb:before {
    background-color: #F12B24;
}

.rvs-red-highlight.rvs-container a.rvs-play-video:active,
.rvs-red-highlight.rvs-container a.rvs-play-video:focus,
.rvs-red-highlight.rvs-container a.rvs-play-video:hover,
.rvs-red-highlight.rvs-container a.rvs-nav-item.rvs-active,
.rvs-red-highlight.rvs-container a.rvs-nav-item.rvs-active:active,
.rvs-red-highlight.rvs-container a.rvs-nav-item.rvs-active:focus,
.rvs-red-highlight.rvs-container a.rvs-nav-item.rvs-active:hover,
.rvs-red-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child,
.rvs-red-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child:active,
.rvs-red-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child:focus,
.rvs-red-highlight.rvs-container a.rvs-nav-item.rvs-active:first-child:hover {
    border-color: #F12B24;
}