* {
  margin: 0;
  box-sizing: border-box; }

html {
  width: 100%;
  height: 100%; }

body {
  position: absolute;
  width: 100%;
  height: 100%;
  user-select: none;
  overflow: hidden; }
  body main {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif; }
    body main .logo {
      position: absolute;
      z-index: 100;
      width: 45%;
      margin: auto;
      left: 0;
      right: 0;
      top: 5px;
      height: 86px;
      pointer-events: none; }
      body main .logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center; }
    body main #search {
      position: absolute;
      top: 95px;
      z-index: 1;
      left: 0px;
      right: 0;
      margin: auto;
      width: 60%;
      border-radius: 5px;
      border: 1px solid;
      height: 30px; }
    body main .resultsCont {
      position: absolute;
      top: 125px;
      z-index: 1;
      left: 0;
      right: 0;
      margin: auto;
      width: 59%;
      max-height: 65%;
      background-color: white;
      display: none;
      overflow: auto; }
      body main .resultsCont ul {
        margin: 0;
        padding: 0; }
        body main .resultsCont ul li {
          list-style: none;
          color: #454545;
          font-weight: bold;
          margin: 5px;
          padding: 5px;
          border-bottom: 1px solid; }
          body main .resultsCont ul li a {
            text-decoration: none;
            color: #454545; }
        body main .resultsCont ul :nth-last-child(1) {
          border-bottom: none; }
    body main .map-cont {
      width: 100%;
      height: 100%; }
      body main .map-cont .marker {
        background-image: url("../assets/pin_pois.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        width: 30px;
        height: 40px;
        cursor: pointer; }
      body main .map-cont .mapboxgl-popup-content {
        padding: 3px 5px 3px; }
        body main .map-cont .mapboxgl-popup-content a {
          color: black; }
      body main .map-cont .mapboxgl-popup-tip {
        margin-bottom: 12px; }
    body main .hamburger {
      position: fixed;
      background-color: transparent;
      left: 0;
      top: 0;
      height: 30px;
      width: 30px;
      padding: 20px 20px;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
      transition: transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
      z-index: 1002;
      cursor: pointer;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
    body main .hamburger.is-active {
      background-color: none; }
    body main ._layer {
      background: #333333;
      margin-bottom: 4px;
      border-radius: 2px;
      width: 28px;
      height: 4px;
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
      transition: all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98); }
    body main .hamburger.is-active .-top {
      -webkit-transform: translateY(200%) rotate(45deg) !important;
      -ms-transform: translateY(200%) rotate(45deg) !important;
      transform: translateY(200%) rotate(45deg) !important; }
    body main .hamburger.is-active .-mid {
      opacity: 0; }
    body main .hamburger.is-active .-bottom {
      -webkit-transform: translateY(-200%) rotate(135deg) !important;
      -ms-transform: translateY(-200%) rotate(135deg) !important;
      transform: translateY(-200%) rotate(135deg) !important; }
    body main .menuppal.is_active {
      transform: translate3d(0px, 0px, 0px); }
    body main .menuppal {
      background-color: rgba(255, 255, 255, 0.95);
      bottom: 0;
      height: 100%;
      left: 0;
      overflow-y: scroll;
      position: fixed;
      top: 0;
      transform: translate3d(0px, -100%, 0px);
      transition: transform 0.35s cubic-bezier(0.05, 1.04, 0.72, 0.98) 0s;
      width: 100%;
      z-index: 1001; }
      body main .menuppal .listText {
        position: absolute;
        top: 17px;
        left: 70px;
        color: #192553;
        width: 70%; }
      body main .menuppal ul {
        margin: 0;
        padding: 0;
        height: 85%;
        overflow: auto;
        top: 10%;
        position: absolute;
        width: 100%; }
        body main .menuppal ul li {
          list-style: none;
          font-size: 1.3rem;
          line-height: 3em;
          height: 3em;
          color: #454545;
          text-transform: none;
          font-weight: bold;
          margin: 0 30px; }
          body main .menuppal ul li a {
            text-decoration: none;
            color: #454545; }

@media (min-width: 700px) {
  html main #search, html main .resultsCont {
    width: 25%; }
  html main .resultsCont {
    top: 175px; }
  html main .logo {
    width: 75%;
    top: 5px;
    height: 140px; }
  html main #search {
    top: 145px;
    height: 30px; } }
