@-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: #eaeaea;
  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: #4bacbd;
  color: #fff;
  border-radius: 3px;
}

.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: 90px;
  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: #000000 0 1px;
  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: #222222;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid #000000;
}
#sun_timeSlider .ui-slider-handle {
  position: absolute;
  margin-left: -9px;
  width: 20px;
}
#sun_timeSlider .ui-slider-handle #sun_handle-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  margin-top: -9px;
  border-radius: 12px;
  background: #ffffff;
  background: -webkit-linear-gradient(#ffffff 0%, #e3e3e3 100%);
  background: -moz-linear-gradient(#ffffff 0%, #e3e3e3 100%);
  background: -ms-linear-gradient(#ffffff 0%, #e3e3e3 100%);
  background: -o-linear-gradient(#ffffff 0%, #e3e3e3 100%);
  background: linear-gradient(#ffffff 0%, #e3e3e3 100%);
  -pie-background: linear-gradient(#ffffff 0%, #e3e3e3 100%);
  border: 1px solid #eaeaea;
  box-shadow: inset 0px 0px 5px 0px #ffffff, 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: #000000 0 1px;
}
#sun_timeSlider .ui-slider-handle.sun_handleSelected #sun_handle-icon {
  background: -webkit-linear-gradient(#cccccc 0%, #ffffff 100%);
  background: -moz-linear-gradient(#cccccc 0%, #ffffff 100%);
  background: -ms-linear-gradient(#cccccc 0%, #ffffff 100%);
  background: -o-linear-gradient(#cccccc 0%, #ffffff 100%);
  background: linear-gradient(#cccccc 0%, #ffffff 100%);
  -pie-background: linear-gradient(#cccccc 0%, #ffffff 100%);
}

/*------------------ 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(0, 0, 0, 0.54) 0 1px;
  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));
}

/*------------------ PAGE ------------------ */
#sun_imgWrapper img {
  position: absolute;
  width: 100%;
  display: none;
}
#sun_imgWrapper img.sun_current {
  z-index: 1;
  display: inline;
}
#sun_imgWrapper img.sun_next {
  z-index: 2;
}

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

#sun_mainContainer {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 1024px;
  min-width: 440px;
}

#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_menu {
  position: absolute;
  width: 100%;
  height: 60px;
  background-color: #fff;
  font-size: 11px;
  line-height: 11px;
  z-index: 3;
}

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

/*------- 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;
  }
}
