.slider-nav{
	position : absolute;
	height : 100%;
	width : 100%;
	
	/*pointer-events: none;*/
  
  display : none;

}
.slider-arrow{
	transition : all 0.1s ease;
	z-index : 3;
}
.slider-arrow:hover{
	width : 25px;
	height : 25px;
	top : calc(50% - 12.5px);
}
.slider-left-arrow:hover{
	left : 19.5px;
}

.slider-right-arrow:hover{
	left : calc(100% - 40px - 4px - 4.5px);
}
.slider-left-arrow{
	border-left : 4px solid #669999;
	border-top : 4px solid #669999;
	
	width : 20px;
	height : 20px;
	
	transform:rotate(-45deg);
	
	position : absolute;
	
	top : calc(50% - 10px);
	left : 20px;
	
	opacity : 0.0;
	pointer-events : none;
	
	
	cursor : pointer;
}

.slider-right-arrow{
	border-right : 4px solid #669999;
	border-top : 4px solid #669999;
	
	width : 20px;
	height : 20px;
	
	transform:rotate(45deg);
	
	position : absolute;
	
	top : calc(50% - 10px);
	left: calc(100% - 44px);
	

	cursor : pointer;
}