/* Background */
.rsDefault, .rsDefault .rsOverflow, .rsDefault .rsSlide, .rsDefault .rsVideoFrameHolder, .rsDefault .rsThumbs {
  background: #fff;
}


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

.rsDefault .rsArrow {
  position: absolute;
  z-index: 21;
  display: block;
  width: 70px;
  height: 100%;
  cursor: pointer;
  transition: background-color .2s ease-in-out, color .2s ease-in-out;
          color: #3ebdb2;
}
.rsDefault .rsArrow:hover {
  background-color:rgba(62, 189, 178, 0.3);
  color:white;
}
.rsDefault.rsVer .rsArrow {
  width: 100%;
  height: 44px;
}
.rsDefault.rsVer .rsArrowLeft {
  top: 0;
  left: 0;
}
.rsDefault.rsVer .rsArrowRight {
  bottom: 0;
  left: 0;
}

.rsDefault.rsHor .rsArrowLeft {
  top: 0;
  left: 0;
}
.rsDefault.rsHor .rsArrowRight {
  top: 0;
  right: 0;
}

.rsDefault .rsArrowIcn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  cursor: pointer;
  font-size:32px;

  font-family: 'smooth-skin-2016' !important;
  font-weight: normal !important;
  font-style: normal !important;
  font-variant: normal !important;
  line-height: 1;
  text-transform: none !important;

  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.rsDefault.rsHor .rsArrowLeft .rsArrowIcn:before {
  content: '\68';
}
.rsDefault.rsHor .rsArrowRight .rsArrowIcn:before {
    content: '\67';
}

.rsDefault.rsVer .rsArrowLeft .rsArrowIcn {
  content: '\68';
}
.rsDefault.rsVer .rsArrowRight .rsArrowIcn {
  content: '\67';
}

.rsDefault .rsArrowDisabled .rsArrowIcn {
  opacity: .2;

  filter: alpha(opacity=20);
  *display: none;
}


/***************
*
*  2. Bullets
*
****************/

.rsDefault .rsBullets {
  position: relative;
  z-index: 35;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
.rsDefault .rsBullet {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 5px;
  padding: 0;
  vertical-align: middle;
}
.rsDefault .rsBullet span {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(62, 189, 178, .3);
}
.rsDefault .rsBullet.rsNavSelected span {
  background-color: #3ebdb2;
}

/***************
*
*  4. Tabs
*
****************/

.rsDefault .rsTabs {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}
.rsDefault .rsTab {
  display: inline-block;
  width: auto;
  height: auto;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.rsDefault .rsTab.rsNavSelected {
}

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

.rsDefault .rsPreloader {
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  background-image: url(../preloaders/preloader-white.gif);
}



/***************
*
*  8. Global caption
*
****************/
.rsDefault .rsGCaption {
  position: absolute;
  float: none;
  bottom: 0;
  left: 0;
  right:0;
  text-align: left;
  z-index:1000;
  background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.75);

  color: #FFF;
  padding: 15px;
  width: auto;
  font-size: 110%;
  border-radius: 2px;
  -webkit-backface-visibility: none;
          backface-visibility: none;
}
@media screen and (max-width:720px) {
  .rsDefault .rsGCaption {
    font-size:100%;
    padding:6px 10px;
  }
}