body {
  background: #17437c;
}

.brand-logo img {
  max-width: 200px;
}

.buy-button {
  border: 1px solid red;
  background: none;
  padding: 12px 20px;
  border-radius: 4px;
}

.side-nav {
  background: rgba(10, 10, 10, 0.9);
}

.nav-wrapper {
  padding-right: 30px;
}

form {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

#explosion-container {
  position: absolute;
  opacity: 0.2;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

a:hover {
  cursor: pointer !important;
}

.map-image {
  width: 100%;
}

.btn-big {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  width: 270px;
  font-weight: bold;
  padding: 14px 0px;
  border: 3px solid #df3c00;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  background: transparent;
  z-index: 2;
}
.btn-big:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: #df3c00;
  z-index: -1;
}
.btn-big:hover:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}
.btn-big:focus:before {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.date-select {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
}

.question {
  text-align: center;
}
.answer {
  text-align: center;
  padding-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  .brand-logo img {
    max-width: 100px;
  }
}
