@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

header {
  background: url("/images/header-map-bg.png") no-repeat top center;
}

header nav {
  background: rgba(255, 64, 129, .8);
}

nav .nav-wrapper {
  display: flex;
}

nav .nav-wrapper a.logo {
  flex: 1;
  text-align: center;
  padding-top: 4px;
}

.nav-wrapper .side-nav-collapse,
.nav-wrapper .left {
  margin-right: 16px;
  margin-left: 16px;
}

nav, nav .nav-wrapper i, nav a.side-nav-collapse, nav a.side-nav-collapse i {
  height: 120px;
  line-height: 120px;
}

nav .nav-wrapper i {
  font-size: 28px;
}

#map-wrapper .fixed-action-btn {
  bottom: 65px;
}

#map-wrapper .fixed-action-btn:hover {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

#map-wrapper .fixed-action-btn .btn-floating {
  cursor: auto;
  line-height: 30px;
  width: 168px;
  height: 168px;
  font-size: 22px;
}

#map-wrapper .fixed-action-btn .btn-floating div:first-child {
  margin-top: 38px;
}

.welcome-banner {
  left: auto;
  right: 50%;
  width: 415px;
  height: 245px;
  margin-right: -207px;
}

form#new-story-form {
  position: fixed;
  display: block;
  top: 15vh;
  right: 40px;
  width: 415px;
  max-height: 70vh;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s;
}

form#new-story-form.new-story-opened {
  opacity: 1;
  pointer-events: auto;
}

.new-story-step {
  display: block !important;
  position: relative;
  transform: none;
  transition: none;
}

form .new-story-step.new-story-step-closed,
.new-story-step-story .new-story-head,
.new-story-step-name .new-story-head,
.new-story-step .new-story-body .left-align,
.new-story-step.new-story-step-name .new-story-head,
.social-icon-whatsapp {
  display: none !important;
}

[type="radio"]:not(:checked), [type="radio"]:checked {
  left: auto;
  right: -9999px;
}
.new-story-step.new-story-step-story {
  border-top: 1px solid #ebebeb;
}

.new-story-step-story textarea {
  margin: 0 -4px;
}

.new-story-step.new-story-step-story .new-story-body {
  margin-bottom: 0;
}

.new-story-step-name .new-story-body {
  padding-top: 0;
}

.new-story-step .input-field {
  margin-top: 5px;
}

.new-story-step-name .btn {
  margin-top: 16px;
  font-size: 15px;
  padding: 0 1rem;
}

.new-story-step-name .row {
  margin-bottom: 0;
}

.hide-on-small-only .new-story-step.new-story-step-closed {
  position: absolute;
}

.hide-on-small-only .hearts-legend li {
  display: inline-block;
  margin-right: 1.5em;
}

.hide-on-small-only .hearts-legend .heart {
  line-height: 44px;
  vertical-align: middle;
}

.new-story-success .modal {
  width: 265px;
}