/** ***********************
 * @file ricc.emotion.slider.css
 * @brief CSS for the responsive emotion slider
 * @author Clemens Riccabona, Riccabona eSolutions, <https://www.Riccabona.IT/>
 * @copyright All rights reserved
 * @updated 14.11.2016
 *********************** **/


/** Default black skin of overlay **/
#riccEmoOverlay {
	color:#FFFFFF;
	background-color: rgba(0, 0, 0, 0.7);
}
#riccEmoOverlay *, #riccSliderPrev, #riccSliderNext {
	color:#FFFFFF;
}


#riccSliderPrev, #riccSliderNext {
	text-decoration:none;
	font-family: "Helvetica", Helvetica, Arial, sans-serif;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
	font-size:110px;
	top:35%;
	/** hide the buttons if no javascript available **/
	display:none;
        z-index: 1;
}

/** Position of Prev and Next **/
#riccSliderPrev {
	position:absolute;
	left:10px;
}

#riccSliderNext {
	position:absolute;
	right:10px;
}

/** Adjust header-image on viewport-height! **/
#riccEmotionSlider {
  height:280px;
  width:100%;
	position:relative;
}

/** Styles of overlay **/
#riccEmoOverlay {
  position:absolute;
	bottom:25px;
	margin:0px;
	margin-left:0px;
	display:none;
	width:420px;
	overflow:hidden;
	height:80px;
	padding-left:20px;
	padding-right:20px;
	padding-top:10px;
	padding-bottom:10px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
}

/** Settings of different viewports, depending on height of device **/
@media only screen and (min-height: 750px) {
  #riccEmotionSlider {
    height:350px;
  }
}
@media only screen and (min-height: 950px) {
  #riccEmotionSlider {
    height:450px;
  }
}
@media only screen and (min-height: 1050px) {
  #riccEmotionSlider {
    height:550px;
  }
}

/** EOF **/
