@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Lato:100,400);
html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  justify-content: center;
  background: linear-gradient(to bottom right, #444444, #009a5b);
  font-size: 1.5rem;
}
body .map {
  height: 400px;
}
body .component-container {
  border-radius: 0.5em;
  padding: 1em;
}
body .map-container {
  margin-bottom: 1em;
}

main {
  color: #fff6d5;
  font-family: sans-serif;
  text-align: center;
}

.logo {
  height: 20em;
}

.heart:after {
  content: "❤️";
  font-size: 1.75em;
}

h1 + .subtitle {
  display: block;
  margin-top: -1.5em;
  font-size: 0.8em;
  color: #FAF9F6;
}

/* The CSS for the navbar and items were inspired by
Hans Engebretsen at https://codepen.io/hans/ */
.navbar {
  transform-style: preserver-3d;
  font-family: lato, sans-serif;
  display: block;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  min-width: 535px;
  position: relative;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}
.navbar:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAB9JREFUeNpiZmBg6AZiDiBWZ4YyQMCOCcYA4kMAAQYAHyYCCUdxidgAAAAASUVORK5CYII=");
}

.li {
  margin: 0 auto;
  display: inline-block;
  list-style: none;
  padding: 0;
}

.a {
  display: block;
  padding: 25px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  text-shadow: 1px 0px rgba(0, 0, 0, 0.4);
  color: #FAF9F6;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: color 200ms;
  transform-style: preserve-3d;
}
.a:hover {
  color: #009a5b;
}
.a:after {
  content: attr(data-title);
  position: absolute;
  display: block;
  top: 29%;
  left: 18px;
  padding: 5px 7px;
  color: transparent;
  transform-origin: 50% 0%;
  backface-visibility: hidden;
  transform: translate3d(0px, 105%, 0px) rotateX(-112deg);
  transform-style: preserve-3d;
  transition: all 200ms ease;
  z-index: -1;
}
.a:hover:after {
  transform: rotateX(0deg) translateZ(0px);
}

.a2 {
  display: block;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  text-shadow: 1px 0px rgba(0, 0, 0, 0.4);
  color: #FAF9F6;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: color 200ms;
  transform-style: preserve-3d;
}
.a2:hover {
  color: #009a5b;
}
.a2:after {
  content: attr(data-title);
  position: absolute;
  display: block;
  top: 29%;
  left: 18px;
  color: transparent;
  transform-origin: 50% 0%;
  backface-visibility: hidden;
  transform: translate3d(0px, 105%, 0px) rotateX(-112deg);
  transform-style: preserve-3d;
  transition: all 200ms ease;
  z-index: -1;
}
.a2:hover:after {
  transform: rotateX(0deg) translateZ(0px);
}

.search-box {
  background: #fff;
  height: 30px;
  border-radius: 30px;
  padding: 10px 20px;
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.3), -4px -4px 6px 0 rgba(116, 125, 136, 0.2), inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2), inset 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
}

.search-input {
  width: 650px;
  transition: 2s;
  border: none;
  border-left: 2px solid black;
}

.buttonClean {
  position: absolute;
  right: -20%;
  bottom: 2.5%;
  background: transparent;
  border: none !important;
  font-size: 0;
}

.buttonClean:hover {
  cursor: pointer;
}

.buddy {
  width: 35%;
  height: 35%;
}

/*.search-box .search-input{
  background: transparent;
  border: none;
  outline:none;
  width: 0px;
  font-weight: 500;
  font-size: 16px;
}*/
