@-webkit-keyframes rotation_keys {
  0% {
    -webkit-transform: rotate(0turn);
  }
  100% {
    -webkit-transform: rotate(1turn);
  }
}
@keyframes rotation_keys {
  0% {
    transform: rotate(0turn);
  }
  100% {
    transform: rotate(1turn);
  }
}
html {
  overflow: hidden;
}

body {
  font-family: Helvetica;
  background-color: #FFF;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
}

ul {
  margin: 0px;
  padding: 0px;
}

ul li {
  display: inline-block;
}

h1 {
  font-family: Helvetica, Arial, Sans-serif;
  font-size: 24px;
  text-align: center;
  font-weight: 100;
}

/*------------------ MAIN BUTTON ------------------ */
#sun_menuContainer {
  height: 27px;
  position: absolute;
  display: inline-block;
  left: 14px;
  top: 14px;
}

.sun_normalButton {
  background-color: #fdfdfd;
  color: #656565;
}

.sun_selectedButton {
  background-color: #f5f5f5;
  color: #ee7000;
}

.sun_unselected {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}

.sun_ulbtn {
  border-radius: 3px;
  border: 1px solid #efefef;
}

.sun_borderContainer {
  border-left: 1px solid #efefef;
  text-transform: uppercase;
}
.sun_borderContainer:first-child {
  border-left: none;
}

.sun_textHolder {
  position: relative;
  text-align: center;
  display: inline-block;
  padding: 10px 10px 9px;
}

.sun_seasonButton, .sun_timeButton, .sun_angleButton {
  cursor: pointer;
}

/*------------------ SEASON MENU ------------------ */
#sun_seasonMenuContainer {
  margin-right: 20px;
}

.sun_seasonButton {
  white-space: nowrap;
}

/*------------------ TIME MENU ------------------ */
#sun_timeSliderContainer {
  position: absolute;
  bottom: 84px;
  left: 20px;
  right: 20px;
}

#sun_timeSliderTimeContainer {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  opacity: .75;
}

.sun_sliderTime {
  position: absolute;
  top: -30px;
  color: #ffffff;
  text-shadow: rgba(50, 50, 50, 0.84) 2px 2px 2px;
  cursor: default;
  transition: opacity .5s;
}

.sun_sliderStart {
  left: 0;
}

.sun_sliderEnd {
  right: 0;
}

#sun_timeSlider {
  position: relative;
  height: 4px;
  border-radius: 3px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background: #3f3a37;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid #2b2623;
}
#sun_timeSlider .ui-slider-handle {
  position: absolute;
  margin-left: -9px;
  width: 20px;
}
#sun_timeSlider .ui-slider-handle #sun_handle-icon {
  cursor: pointer;
  position: absolute;
  width: 24px;
  height: 24px;
  margin-top: -13px;
  border-radius: 16px;
  background: #ffffff;
  background: -webkit-linear-gradient(#887f6f 0%, #e3e3e3 100%);
  background: -moz-linear-gradient(#887f6f 0%, #e3e3e3 100%);
  background: -ms-linear-gradient(#887f6f 0%, #e3e3e3 100%);
  background: -o-linear-gradient(#887f6f 0%, #e3e3e3 100%);
  background: linear-gradient(#ee7000 0%, #ee7000 100%);
  -pie-background: linear-gradient(#ee7000 0%, #ee7000 100%);
  border: 2px solid #eaeaea;
  box-shadow: inset 0px 0px 5px 0px #ee7000, 0px 1px 0px 0px rgba(0, 0, 0, 0.4);
}
#sun_timeSlider .ui-slider-handle #sun_handle-text {
  position: absolute;
  top: -30px;
  left: -50%;
  right: -50%;
  color: white;
  cursor: default;
  text-shadow: rgba(50, 50, 50, 0.84) 2px 2px 2px;
}
#sun_timeSlider .ui-slider-handle.sun_handleSelected #sun_handle-icon {
  background: -webkit-linear-gradient(#776b56 0%, #ffffff 100%);
  background: -moz-linear-gradient(#776b56 0%, #ffffff 100%);
  background: -ms-linear-gradient(#776b56 0%, #ffffff 100%);
  background: -o-linear-gradient(#776b56 0%, #ffffff 100%);
  background: linear-gradient(#776b56 0%, #776b56 100%);
  -pie-background: linear-gradient(#776b56 0%, #776b56 100%);
  box-shadow: inset 0px 0px 5px 0px #776b56, 0px 1px 0px 0px rgba(0, 0, 0, 0.4);
}

/*------------------ ANGLE MENU ------------------ */
#sun_angleMenuContainer {
  margin-right: 20px;
}

/*------------------ EXTEND BUTTONS ------------------ */
#sun_menuExtendContainer {
  height: 25px;
  position: absolute;
  display: inline-block;
  margin-top: 8px;
  right: 14px;
}

.sun_extendButton {
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin-left: 30px;
}

.sun_extendLable {
  position: relative;
  margin: 0px;
  display: block;
  color: #656565;
  text-align: center;
}

/*------------------ PLAY/PAUSE ------------------ */
#sun_playPauseButton .sun_pause {
  display: none;
}
#sun_playPauseButton.sun_playing .sun_play {
  display: none;
}
#sun_playPauseButton.sun_playing .sun_pause {
  display: inline;
}

/*------------------ FACEBOOK ------------------ */
#sun_facebookButton img {
  max-height: 20px;
  margin-left: 0px;
  margin-bottom: 2px;
}

/*------------------ LOADING ------------------ */
#sun_loading {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  z-index: 50;
  -webkit-animation: rotation_keys 0.5s linear infinite;
  -moz-animation: rotation_keys 0.5s linear infinite;
  -o-animation: rotation_keys 0.5s linear infinite;
  -ms-animation: rotation_keys 0.5s linear infinite;
  animation: rotation_keys 0.5s linear infinite;
}

.sun_preloader1 {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
}

/*------------------ TIME/SEASON ------------------ */
#sun_dateContainer {
  position: absolute;
  margin-left: 10px;
  margin-top: 10px;
  z-index: 50;
}
#sun_dateContainer div {
  position: relative;
  margin-left: 5px;
  margin-top: 0px;
  float: left;
  transform: translatez(0px);
  -webkit-transform: translateZ(0px);
}

#sun_date_text {
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
  text-shadow: rgba(30, 30, 30, 0.74) 3px 3px 4px;
  opacity: .8;
}

#sun_date_icons {
  padding: 4px 0 0 0;
  z-index: 51;
}
#sun_date_icons .svgIcon {
  fill: #ffffff;
  height: 20px;
  width: 20px;
  transition: opacity .5s;
  filter: drop-shadow(0px 1px 0px rgba(0, 0, 0, 0.54));
  -webkit-filter: drop-shadow(0px 1px 0px rgba(0, 0, 0, 0.54));
  -moz-filter: drop-shadow(0px 1px 0px rgba(0, 0, 0, 0.54));
}

#sun_menu {
	border: 1px solid lightgray;
	box-sizing: border-box;
	bottom: 0px;
  position: absolute;
  width: 100%;
  height: 60px;
  background-color: #fff;
  font-size: 11px;
  line-height: 11px;
  z-index: 3;
  max-width: 1024px;
}

#sun_ipadportrait {
  display: none;
}

#sun_branding {
  position: absolute;
  height: 20px;
  right: 7px;
  bottom: 7px;
  z-index: 50;
  overflow: hidden;
}
#sun_branding .svgIcon {
  fill: #ffffff;
  top: 8px;
  margin-top: -50%;
  width: 100px;
  height: 100px;
  position: relative;
  filter: drop-shadow(0px 0px 1px #505050);
  -webkit-filter: drop-shadow(0px 0px 1px #505050);
  -moz-filter: drop-shadow(0px 0px 1px #505050);
  opacity: .8;
}

.svgIcon {
  fill: #373232;
}

#sun_titleContainer {
  position: relative;
  bottom: -60px;
}
#sun_titleContainer h1 {
  font-size: 30px;
  line-height: 60px;
}


/*------------------ PAGE ------------------ */

#sun_wrap{
  position: absolute;
  width: 100%;
  height: 100%; 
}

#sun_mainContainer {
	margin: 0 auto;
	padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1024px;
  max-height: 600px;
  min-width: 320px;
  min-height: 400px;  
}

.sun_imgContainer {
  position: absolute;
  width: 0;
  height: 0;
  padding-right: 100%;
}

#sun_imgWrapper  {
  position: relative;  

}

#sun_imgWrapper img {
  position: absolute;
  top:0;
  left:0;
  max-height: 541px;
  display: none;
  
  }
#sun_imgWrapper img.sun_current {
  z-index: 1;
  display: inline;
}
#sun_imgWrapper img.sun_next {
  z-index: 2;
}

.instruction  {
	text-align: center;
	visibility: hidden;
	position: absolute;
	z-index:145;
	max-width:36%;
	top: 150px;
	left: 30%;
} 

#fader {
  opacity: 1;
  -webkit-transition: all 3.5s ease-in-out;
  -moz-transition: all 3.5s ease-in-out;
  -ms-transition: all 3.5s ease-in-out;
  -o-transition: all 3.5s ease-in-out;
  transition: all 3.5s ease-in-out;
}


/*------- TABLET ONLY (iPad-size) -----*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  body {
    background: white;
  }

  #sun_logos {
    margin-top: 5px;
    height: 28px;
  }
}
/* iPad portrait
------------------------------ */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  #sun_ipadportrait {
    display: inline;
  }
}

/* mobile
------------------------------ */
@media screen and (max-width: 600px), (max-height: 400px) {
  #sun_dateContainer {visibility: hidden;}
  #sun_branding {visibility: hidden;}
  #demoTitle {visibility: hidden;}
#sun_menuExtendContainer {right: 6px;}
.sun_textHolder {   padding: 10px 4px 9px;}
#sun_menuContainer
 { left: 8px;  top: 14px;}
 .sun_imgContainer {
  overflow-x: scroll;
  overflow-y: hidden;
  min-height: 400px;
}
 .instruction  {	visibility: visible;} 
 
 
}