/* main.css */
#main-content {
  display: none;
}
html, body {
  font-size: 14px;
  color: #385164;
  font-family: 'Oswald', sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.qv-object {
  width: 100%;
  height: 500px;
}
.qmap-layer {
  display: none;
  width: 0;
  height: 0;
}
h1, h2, h3, h4, h5, h6, .kpi-title {
  font-family: 'Raleway', sans-serif;
  /*text-transform: uppercase;*/
}
p {
  font-size: 1.1rem;
}
section {
  padding: 4rem 0;
}
section:last-of-type {
  padding-bottom: 0;
}
.dropdown li.S {
  background: #52cc52;
  color: #fff;
}
.dropdown li.S span {
  color: #fff;
}
/*.dropdown li.A {
  background: #ddd;
}
.dropdown li.X, .dropdown li.XS {
  background: #a9a9a9;
  color: #fff;
}*/
.dropdown-item>:focus, .dropdown-item:hover {
  color: inherit;
  background-color: inherit;
  opacity: 0.8;
}
.dropdown-menu>li>input, .dropdown-menu .items li {
  display: block;
  width: 100%;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu .items li {
  cursor: pointer;
}
.search-icon {
  height: 20px;
  position: absolute;
  top: 5px;
  right: 0;
}

.dropdown .btn {
  text-align: left;
  min-width: 140px;
  border-radius: 0;
  color: #385164;
  padding: 0 1rem;
}
.dropdown-toggle::after {
  float: right;
  margin-top: 0.5rem;
}

.dropdown-menu {
  font-size: 1rem;
  padding: 0;
}
.dropdown-menu input {
  font-size: inherit;
  width: 100%;
  border: 1px solid rgba(0,0,0,.3);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding: 0 1rem;
}
.dropdown-item {
  padding: 0 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.15);
}

#location-filter .dropdown .btn {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  cursor: pointer;
}
#location-filter .dropdown-menu {
  font-size: 1.2rem;
}

.jumbotron {
  min-height: 600px;
  background-image: url(jumbo_background.jpg);
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.jumbotron p {
  color: #76899d;
  font-size: 1.4rem;
}
.jumbo-type, .jumbo-type-mobile {
  max-width: 100%;
}
.jumbo-type-mobile {
  display: none;
}
@media (max-width: 767px) {
  .jumbotron {
    background-image: url(jumbo_background_mobile.jpg);
  }
  .jumbo-type {
    display: none;
  }
  .jumbo-type-mobile {
    display: initial;
    margin-bottom: 2rem;
  }
}

.kpi {
  font-size: 0.8rem;
  flex-grow: 1;
}
.kpi-title {
  font-size: 1.1rem
}
.kpi-value {
  font-size: 1.5rem;
  margin-top: -8px;
}

#detail-mask {
  position: absolute;
  width: 100%;
  height: calc(100% - 20px);
  background: #fff;
  opacity: 0.9;
  z-index: 1;
}
#detail-mask-msg {
  position: absolute;
  z-index: 2;
  font-size: 1.1rem;
  width: 350px;
  height: 225px;
  display: flex;
  justify-content: center;
  align-items: center;
}

input[type="checkbox"]{
  display: none;
}
.input-container {
  display: inline-block;
  padding-left: 45px;
  margin-right: 8px; 
}
.states .input-container {
  /*padding-left: 3.5rem;
  margin-right: 1rem;
  font-size: 1.5rem;*/
}
.input-container label {
  position: relative;
}
.input-container span::before,
.input-container span::after {
  content: '';
  position: absolute;
  top: 2px;
  bottom: 0;
  margin: auto;
}
.input-container span.radio::before {
  left: -1.5em;
  width: 1em;
  height: 1em;
  border: 1px solid #666;
  border-radius: 1em;
}
.input-container span.radio::after {
  left: -1.5em;
  width: 1em;
  height: 1em;
  border: 1px solid #666;
  border-radius: 1em;
  transition: background-color .25s;
}
input[type="radio"]:checked + label span.radio::after {
  background-color: #385164;
}

.input-container span.checkbox::before {
  left: -2em;
  width: 1em;
  height: 1em;
  border: 1px solid #666;
  border-radius: 1em;
}
.input-container span.checkbox::after {
  left: -2em;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  transition: background-color .25s;
}
input[type="checkbox"]:checked + label[for="total-checkbox"] span.checkbox::after {
  background-color: #385164;
}
input[type="checkbox"]:checked + label[for="partial-checkbox"] span.checkbox::after {
  background-color: #85a6bf;
}
#gmap {
  width: 100%;
  height: 300px;
}
#eclipse-viz {
 position: relative;
 background-color: #87ceeb;
 height: 225px;
 width: 100%;
 cursor: pointer;
 overflow: hidden;
}
#sun {
  background: #fff;
  width: 150px;
  height: 150px;
  border-radius: 150px;
  box-shadow: 0 0 30px 10px #fff, 0 0 30px 20px #fbe602
}
#obscuration-circle {
  background: black;
  width: 150px;
  height: 150px;
  border-radius: 150px;
  position: absolute;
  top: calc(50% - 75px);
  left: 100%;
}
#solar-glow {
  background: red;
  background: -webkit-radial-gradient(rgba(255,128,0,1) 12%, rgba(255,255,0,1), rgba(0,128,0,0) 70%); 
  background: -o-radial-gradient(rgba(255,128,0,1) 12%, rgba(255,255,0,1), rgba(0,128,0,0) 70%);
  background: -moz-radial-gradient(rgba(255,128,0,1) 12%, rgba(255,255,0,1), rgba(0,128,0,0) 70%);
  background: radial-gradient(rgba(255,128,0,1) 12%, rgba(255,255,0,1), rgba(0,128,0,0) 70%);
  width: 225px;
  height: 225px;
  position: absolute;
  top: 0;
  left: 0px;
}

#countdown {
  font-size: 2rem;
}


@keyframes blink {
    0% {
      opacity: .2;
    }
    20% {
      opacity: 1;
    }
    100% {
      opacity: .2;
    }
}
.loading-dots span {
    animation-name: blink;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}
.loading-dots span:nth-child(2) {
    animation-delay: .2s;
}
.loading-dots span:nth-child(3) {
    animation-delay: .4s;
}

.wyws-text {
  display: none;
}

.banner-link {
  position: absolute; 
  bottom: 0; 
  width: 100%; 
  min-height: 3rem; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  font-family: 'Raleway', sans-serif; 
  background: url(banner_purple.png); 
  background-position: center;
}
.banner-link a {
  color: white;
}
.banner-link a:hover, footer a:hover {
  text-decoration: none;
}
.banner-link span {
  font-size: 1.4rem;
}
#qlik-logo {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

.link {
  font-size: 18px;
  text-decoration: underline;
}

.returnlink {
  display: block;
  margin-bottom: 40px;
  color: #4c4c4c;
}

.destination-name {
  font-weight: bolder;
}

footer {
  margin-top: auto;
}