/* Import: Boilerplate */
@import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600);
* {
  margin: 0em;
  padding: 0em;
  list-style: none;
  border: 0em;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 1em;
  line-height: 1.2;
  font-family: inherit;
  background-repeat: no-repeat;
  -webkit-border-radius: 0;
          border-radius: 0;
  text-decoration: none;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-font-smoothing: subpixel-antialiased;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-moz-selection {
  color: #f698a9;
  background: #f5002c;
}

::selection {
  color: #f698a9;
  background: #f5002c;
}

body {
  color: #000;
  font-family: 'Source Sans Pro', sans-serif;
  margin: 0 auto;
  position: relative;
}

a {
  color: #FE4365;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

a:hover, a:active {
  color: #f5002c;
}

button {
  cursor: pointer;
}

/* Import: Customs */
#map {
  height: 100%;
}

html, body {
  height: 100%;
}

.profile {
  position: fixed;
  top: -300px;
  left: -300px;
  width: 80px;
  cursor: pointer;
  background-color: rgba(250, 250, 250, 0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  -webkit-transform: none;
          -ms-transform: none;
      transform: none;
  will-change: left, top, width, height;
  z-index: 2;
  display: none;
  margin-top: 30px;
  margin-left: 15px;
}

@media (min-width: 800px) {
  .profile {
    width: 110px;
    margin-top: auto;
    margin-left: auto;
  }
}

.profile:hover {
  -webkit-transform: scale(1.1);
          -ms-transform: scale(1.1);
      transform: scale(1.1);
}

.profile.insideview {
  display: block;
}

.profile-image {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 100%;
          border-radius: 100%;
  border: 5px solid #f00;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: rgba(255, 0, 0, 0.5);
}

@media (min-width: 800px) {
  .profile-image {
    width: 110px;
    height: 110px;
  }
}

.profile-name {
  position: absolute;
  bottom: 15px;
  min-width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #f00;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  word-wrap: break-word;
}

.profile-age {
  font-size: 0;
  padding: 0;
}

.profile-text {
  overflow: hidden;
  max-height: 0px;
  padding: 0;
}

.profile-button {
  font-size: 26px;
  text-align: center;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  background-color: #0a0;
}

.profile.profile-open {
  background-color: rgba(250, 250, 250, 0.9);
  width: 150px;
  -webkit-border-radius: 0;
          border-radius: 0;
  z-index: 3;
}

@media (min-width: 800px) {
  .profile.profile-open {
    width: 300px;
  }
}

.profile.profile-open .profile-image {
  width: 150px;
  height: 150px;
  border: 0px solid #f00;
  -webkit-border-radius: 0;
          border-radius: 0;
}

@media (min-width: 800px) {
  .profile.profile-open .profile-image {
    width: 300px;
    height: 300px;
  }
}

.profile.profile-open .profile-name {
  background-color: rgba(255, 0, 0, 0);
  color: #000;
  text-align: left;
  padding: 10px 20px 0;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  bottom: auto;
}

@media (min-width: 800px) {
  .profile.profile-open .profile-name {
    font-size: 25px;
  }
}

.profile.profile-open .profile-age {
  -webkit-transition: max-height .5s ease;
  -o-transition: max-height .5s ease;
  transition: max-height .5s ease;
  -webkit-transition-delay: .2s;
          -o-transition-delay: .2s;
     transition-delay: .2s;
  font-size: 16px;
  padding: 0 5px;
}

.profile.profile-open .profile-text {
  -webkit-transition: max-height .5s ease;
  -o-transition: max-height .5s ease;
  transition: max-height .5s ease;
  -webkit-transition-delay: .2s;
          -o-transition-delay: .2s;
     transition-delay: .2s;
  padding: 5px 20px 20px;
  max-height: 500px;
  font-size: 14px;
}

@media (min-width: 800px) {
  .profile.profile-open .profile-text {
    font-size: 16px;
  }
}

.profile.profile-open .profile-button {
  -webkit-transition: max-height .5s ease;
  -o-transition: max-height .5s ease;
  transition: max-height .5s ease;
  -webkit-transition-delay: .2s;
          -o-transition-delay: .2s;
     transition-delay: .2s;
  padding: 10px 20px 15px;
  max-height: 500px;
  color: #fff;
  font-size: 14px;
}

@media (min-width: 800px) {
  .profile.profile-open .profile-button {
    font-size: 25px;
  }
}

.profile.profile-open .profile-button:hover {
  background-color: #0d0;
}

.locationizer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.7);
}

.locationizer.locationizer-closed {
  display: none;
}

.locationizer-container {
  -webkit-border-radius: 13px;
          border-radius: 13px;
  max-width: 100%;
  width: 300px;
  padding: 30px;
  background-color: #d00;
}

.locationizer-container label {
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.locationizer-container input {
  margin: 10px 0 0;
  width: 100%;
  padding: 10px;
  display: block;
}

.overlay {
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          -webkit-flex-direction: column;
          flex-direction: column;
}

.overlaysignup {
  color: white;
  font-size: 30px;
  padding-bottom: 20px;
  font-weight: bold;
}

.overlay.overlay-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.overlay .signup {
  background-color: #900;
  padding: 30px;
  -webkit-border-radius: 15px;
          border-radius: 15px;
  color: #fff;
  max-width: 400px;
}

.overlay .signup .row {
  margin: 10px 0;
}

.overlay .signup input[type=text],
.overlay .signup input[type=email],
.overlay .signup input[type=submit] {
  width: 100%;
  padding: 10px;
}

.overlay .signup input[type=submit] {
  background-color: #000;
  color: #fff;
  cursor: pointer;
}

.overlay .signup input[type=checkbox],
.overlay .signup a {
  cursor: pointer;
}

.overlay .signup a {
  color: white;
  text-decoration: underline;
}

.overlay .signup .error {
  font-size: 11px;
  background: #ffb8b8;
  color: #f00;
  padding:4px;
}

.footer {
  position: absolute;
  z-index: 3;
  bottom: 0;
  width: 100%;
  display: none;
}
#disclaimer {
  position: absolute;
  bottom: 0;
  text-align: center;
  z-index: 99;
  width: 100%;
  font-size: 11px;
}
#disclaimer a {
  color: #9e9e9e;
}
@media (min-width: 800px) {
  .footer {
    display: block;
  }
}

.footer-alerta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: #fff;
  font-weight: bold;
}

.footer-alerta-alert {
  padding: 27px 30px 29px;
  font-size: 22px;
  background-color: #f00;
}

.footer-alerta-text {
  font-size: 18px;
  padding: 30px 20px 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          -webkit-align-items: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
}

.footer-alerta-button {
  font-size: 22px;
  padding: 27px 30px 29px;
  background-color: rgba(0, 160, 0, 0.9);
  cursor: pointer;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-alerta-button:hover {
  background-color: #00a000;
}