:root {
  --bottom-height: 85px;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
}

iframe {
  height:100%; 
  width:100%;
  border: 0;
}

#map {
  height: calc(100% - var(--bottom-height));
  width: 100%;
  position: relative;
}

.fb-cta {
  position: absolute;
  bottom: 30px;
  right: 10px;
  width: 52.85px;
  height: 54px;
  border-radius: 5px;
  background: rgb(21, 133, 207);
}
.bounce {
  display: inline-block;
  position: absolute;
  animation: bounce 0.7s 5s 4 linear;
  color: #000;
}
#social {
  height: 100%;
  overflow: scroll;
}
@media (prefers-reduced-motion: reduce) {
  .bounce {
    animation: none;
  }
}
.fa-instagram{
  color: #fff;
  font-size: 30px;
  margin: 13px;
}
.taggbox-container {
  padding-top: 20px;
  background-color: #ffffff;
}
@keyframes bounce {
  0% { top: 0; }
  50% { top: -0.2em; }
  70% { top: -0.3em; }
  100% { top: 0; }
}

#social {
  display: none;
}

#social.visible {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: scroll;
}
#social.visible .taggbox-container {
  width: 80% !important;
  margin-left: 20%;
  margin-top: 10%;
}

#bottom {
  background-color: #FF00FF;
  height:var(--bottom-height);
  width:100%;
  background-color: #1585cf;
  clear: both
}
#bottom p {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;
  color: #FFFFFF;
  text-align: center;
  font-size:14px;
  padding-top:5px;
}

@media (min-width: 768px) {
  :root {
    --bottom-height: 40px;
  }

  body {
    display: grid;
    grid-template-columns: auto 350px;
    grid-template-rows: auto var(--bottom-height);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  #map { grid-area: 1 / 1 / 2 / 2; }
  #social { grid-area: 1 / 2 / 3 / 3; }
  #bottom { grid-area: 2 / 1 / 3 / 2; }

  #map {
    height: auto;
  }
  #social {
    display: block;
  }
  .fb-cta {
    display: none;
  }
}