/* Place custom 360 styles here */

/*
Dark Blue
#002859
rgb(0,40,89)

Aqua
#00aec5
rgb(0,174,197)
*/

html,
body {
  font-family: Helvetica,Arial,sans-serif;
}
#help-screen h1 span,
#help-screen p,
#info-spot p {
  font-family: Helvetica,Arial,sans-serif;
}

/* =================== OVERLAYS ===================== */
#help-screen,
#info-spot {
  background-color: rgba(33,33,33,.85);
}
/* =================== FORWARDER ===================== */
#forwarder a {
  background-color: #002859;
}

/* =================== WELCOME SCREEN ===================== */
#welcome-screen {
  background-color: #fff;
  color: #111 !important;
  max-width: 580px;
  padding: 22px 36px;
}
#client-logo {
  float: right;
  height: auto;
  max-width: 100%;
  width: 240px;
}
#welcome-title {
  margin-bottom: 16px;
}
#welcome-title:after {
  content: "";
  display: block;
  clear: both;
}
#welcome-title h1 {
  float: left;
  font-size: 32px;
  line-height: 43px;
  max-width: 100%;
  width: 268px;
}
#welcome-title h1 span {
  /*display: inline;*/
}
#welcome-text {
  clear: both;
  text-align: center;
}
#welcome-screen p {
  margin-bottom: 14px;
  text-align: left;
}

#start-tour {
  text-transform: none;
  display: inline-block;
  background-color: #00aec5;
  color: #fff;
  line-height: 1;
  padding: 10px 20px;
  width: auto;
}

/* =================== FLOORPLAN ===================== */

.close-button {
  border-width: 0;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  z-index: 1;
}
.close-button .text {
  display: none;
}
.close-button .icon {
  color: #fff;
  display: block;
  font-size: 24px;
  line-height: 40px;
  float: none;
  padding: 0;
  width: auto;
}
.camera-icon svg .b {
  fill: #00aec5;
}
.camera-icon.visited svg .b {
  fill: #999;
}
.camera-icon.active svg .b,
.camera-icon.visited.active svg .b {
  fill: #002859;
}

.camera-label {
  background-color: #00aec5;
  color: #fff;
  text-transform: none;
}
.label-after {
  border-color: #00aec5 transparent transparent;
}

#fov-container {
  top:0;
}
.fov-radar {
  background: -webkit-linear-gradient(-45deg, #00aec5 0%, transparent 50%); /* Chrome10-25,Safari5.1-6 */
  background: -webkit-linear-gradient(315deg, #00aec5 0%, transparent 50%);
  background: linear-gradient(135deg, #00aec5 0%, transparent 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.fp-switch {
  line-height: 38px;
}
.fp-switch,
.fp-switch.active {
  color: #00aec5;
}
.fp-switch.active,
.fp-switch.active:hover {
  background-color: #00aec5;
  color: #fff;
}


/* =================== GUI ===================== */
.editor .button {
  background-color:rgba(0,196,150,.8);
  color: #fff;
}

.button,
#help-screen .button,
.open-button {
  background-color: #00aec5;
  color: #fff;
  text-transform: none;
}

.button.button-motion.enabled,
.button.button-auto.disabled {
  background-color: #002859;
  color: #fff;
}

.fs-close,
#info-close,
.close-button {
  background-color: #00aec5;
}

/* =================== HOTSPOTS ===================== */
.hotspot.info-rv,
.hotspot.gallery-rv,
.hotspot.video-rv,
.hotspot.nav-rv {background-color:rgba(0,174,197,.85)}

/* =================== INFOSPOTS ===================== */
#info-close {
  border-radius: 0;
}
#info-close .icon {
  font-size: 23px;
}
/* =================== ROOM TITLE ===================== */
.room-title {
  background-color: #00aec5;
  text-transform: none;
}

/* =================== HELP SCREEN ===================== */
#help-screen h1,
#help-inner {
  color: #212121;
}
#help-screen h1,
.diagrams {
  background-color: rgba(255,255,255,.75);
}


/* =================== MEDIA QUERIES ===================== */
@media only screen and (min-width: 768px)  and (max-width: 1024px) {
  .fp-switch {
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  #client-logo {
    float: none;
    margin: 0 auto 12px;
    width: 140px;
    display: block;
  }
  #welcome-title h1 {
    float: none;
    font-size: 22px;
    margin-bottom: 0;
    text-align: center;
    width: auto;
  }
  #welcome-screen p {
    font-size: 12px;
    margin-bottom: 10px;
    text-align: center;
  }
  #start-tour {
    font-size: 20px;
    margin-top: 12px;
    width: auto;
  }

  #info-close,
  #info-close:hover {
    background-color: transparent;
  }
}
@media only screen and (max-height: 400px) {
  #more-info-text {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .close-button {
    right: -20px;
    top: -20px;
  }
}

@media only screen and (min-width: 1025px) {
  #start-tour:hover {
    background-color:#002859
  }
  .fp-switch:hover {
    color: #002859;
  }
  .gui-container .button:hover,
  .button-gallery:hover,
  .open-button:hover {
    background-color: #002859;
    color: #fff;
  }
  .fs-close:hover,
  #info-close:hover,
  .close-button:hover {
    background-color: #002859;
  }
  .hotspot.info-rv:hover,
  .hotspot.gallery-rv:hover,
  .hotspot.video-rv:hover,
  .hotspot.nav-rv:hover {background-color:rgba(0,40,89,.85)}
}

#start-tour {
  -webkit-transition: background-color .6s;
  transition: background-color .6s;
}
#info-close,
.close-button {
  -webkit-transition: background-color .4s;
  transition: background-color .4s;
}