

/******************************
*
*  RoyalSlider Default Skin 
*
*    1. Arrows 
*    2. Bullets
*    3. Thumbnails
*    4. Tabs
*    5. Fullscreen button
*    6. Play/close video button
*    7. Preloader
*    8. Caption
*    
*  Sprite: 'rs-default.png'
*  Feel free to edit anything
*  If you don't some part - just delete it
* 
******************************/

.rsDefault {    
    touch-action: pan-x pan-y pinch-zoom !important;
}



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




.royalSlider a.rsLink {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.royalSlider img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.rsThumbs,
.rsThumbs * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}











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

/* Ensure the whole side strip is clickable */
.rsDefault .rsArrow {
  width: 44px;
  height: 100%;
  cursor: pointer;
}


/* Shared styles for both arrows */
.rsDefault .rsArrowIcn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1em;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
  color: black;
  background: none !important;
  padding: 200px 5px; /* makes it easier to click or tap */
  box-sizing: content-box;
  cursor: pointer;
}



/* Align icons inside their visual edge */
.rsDefault.rsHor .rsArrowLeft .rsArrowIcn {
  left: 6px;
}

.rsDefault.rsHor .rsArrowRight .rsArrowIcn {
  right: 6px;
}

/* Hover effect from parent arrow strip */
.rsDefault.rsHor .rsArrowLeft:hover .rsArrowIcn,
.rsDefault.rsHor .rsArrowRight:hover .rsArrowIcn {
  color: #FF3399;
}

/* Arrow glyphs */
.rsDefault.rsHor .rsArrowLeft .rsArrowIcn::before {
  content: '❮';
}
.rsDefault.rsHor .rsArrowRight .rsArrowIcn::before {
  content: '❯';
}


/* Disabled arrow state */
.rsDefault .rsArrowDisabled .rsArrowIcn { opacity: .2; filter: alpha(opacity=20);  *display: none; }


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

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

.rsDefault .rsThumbsHor {
	width: 100%;
	height: 60px;
}
.rsDefault .rsThumbsVer {
	width: 60px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.rsDefault.rsWithThumbsHor .rsThumbsContainer {
	position: relative;
	height: 100%;
}
.rsDefault.rsWithThumbsVer .rsThumbsContainer {
	position: relative;
	width: 100%;
}
.rsDefault .rsThumb {
	float: left;
	overflow: hidden;
	width: 60px;
	height: 62px; /*added 2px because images were not proportiona Jan 7 2026*/
	  padding-top: 2px; /* creates internal gap */
  box-sizing: border-box; /* ensures height stays at 62px including padding */

}
.rsDefault .rsThumb img {
	width: 100%;
	height: 100%;
}
.rsDefault .rsThumb.rsNavSelected {
    background-color: #FF3399;
    transition: background-color 2s ease;
}







.rsDefault .rsThumb.rsNavSelected img {
	opacity: 1;
	filter: alpha(opacity=100);
}
.rsDefault .rsTmb {
	display: block;
}




/* Thumbnails arrow icons */



.rsDefault .rsThumbsArrow {
  height: 100%;
  width: 20px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21;
  background: rgba(255, 255, 255, 0.75);
}



/* Horizontal thumbs positioning */
.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft {
  left: 0;
  top: 0;
}
.rsDefault.rsWithThumbsHor .rsThumbsArrowRight {
  right: 0;
  top: 0;
}

/* Icon style */
/* Shared icon style for thumbnails */
.rsDefault .rsThumbsArrowIcn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none !important;
  cursor: pointer;
  font-size: .9em;
  font-weight: bold;
  
  box-sizing: content-box;
}

/* Align left arrow icon */
.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn {
  left: 6px;
  right: auto;
}

/* Align right arrow icon */
.rsDefault.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn {
  right: 6px;
  left: auto;
}


/* Directional glyphs */
.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn::before {
  font-size: .9em;
  font-weight: bold;
  content: '❮';
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn::before {
  font-size: .9em;
  font-weight: bold;
  content: '❯';
}

/* Hover effect for thumbnail arrows */
.rsDefault .rsThumbsArrow:hover .rsThumbsArrowIcn::before {
  color: #FF3399;
}

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



/* Thumbnails resizing on smaller screens */
@media screen and (min-height: 0px) and (max-height: 480px) {
	.rsDefault .rsThumb {
		width: 0px;
		height: 0px;
	}
	.rsDefault .rsThumbsHor {
		height: 0px;
	}
	.rsDefault .rsThumbsVer {
		width: 0px;
	}
}

/* Hide thumbnails completely if there's only one media item */
.royalSlider.no-thumbs .rsThumbs,
.royalSlider.no-thumbs .rsThumbsContainer {
    display: none !important;
}





/***************
*
*  4. Tabs
*
****************/
/***************
*
*  5. Fullscreen button
*
****************/

.rsDefault .rsFullscreenBtn {
	right: 0;
	top: 40px;
	width: 40px;
	height: 40px;
	z-index: 22;
	display: block;
	position: absolute;
	cursor: pointer;
	
}
.rsDefault .rsFullscreenIcn {
	display: block;
	margin: 6px;
	width: 30px;
	height: 30px;

	background: url('rs-default-inverted.png') 0 0;
	background-color: #fff;
	background-color: rgba(255,255,255,0.75);
	*background-color: #fff;
	border-radius: 0px;

}
.rsDefault .rsFullscreenIcn:hover {
	background-color: rgba(255,255,255,0.9);
}
.rsDefault.rsFullscreen .rsFullscreenIcn {
	background-position: -32px 0;
}

  
/* turns thumbnails off in fullscreen mode */
.rsFullscreen .rsNav {
    display:none;
    height: 0;
}





/***************
*
*  6. Play/close video button
*
****************/

.rsDefault .rsPlayBtn {
	-webkit-tap-highlight-color:rgba(0,0,0,0.3);
	width:64px;
	height:64px;
	margin-left:-32px;
	margin-top:-32px;
	cursor: pointer;
}
.rsDefault .rsPlayBtnIcon {
	width:64px;
	display:block;
	height:64px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	
	-webkit-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;

	background:url(rs-default-inverted.png) no-repeat 0 -32px;
	background-color: #fff;
	background-color: rgba(255,255,255,0.75);
	*background-color: #fff;
}
.rsDefault .rsPlayBtn:hover .rsPlayBtnIcon {
	background-color: rgba(255,255,255,0.9);
}
.rsDefault .rsBtnCenterer {
	position:absolute;
	left:50%;
	top:50%;
}
.rsDefault .rsCloseVideoBtn {
	right: 0;
	top: 0;
	width: 44px;
	height: 44px;
	z-index: 500;
	position: absolute;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	
}
.rsDefault .rsCloseVideoBtn.rsiOSBtn {
	top: -38px;
	right: -6px;
}

.rsDefault .rsCloseVideoIcn {
	margin: 6px;
	width: 32px;
	height: 32px;
	background: url('rs-default-inverted.png') -64px 0;
	background-color: #fff;
	background-color: rgba(255,255,255,0.75);
	*background-color: #fff;
}
.rsDefault .rsCloseVideoIcn:hover {
	background-color: rgba(255,255,255,0.9);
}



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

.rsDefault .rsPreloader {
	width:20px;
	height:20px;
	background-image:url(preloader-white.gif);

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













/***************
*
*  9. slide link
*
****************/

.rsLink {
	left:0;
	top:0;
	position:absolute;
	width:100%;
	height: 100%;
	display:block;	
	z-index: 20;
	background: url(blank.gif);
	text-align: center;
}












