@font-face {
    font-family: 'Chicago Plain';
    font-style: normal;
    font-weight: normal;
    src: url(font/Chicago.ttf);
    }

html, body {
  margin: 0;
  padding: 0;
user-select: none; 
overscroll-behavior: none;

}

#loading-desktop, #loading-mobile{
  font-family: Chicago Plain, sans-serif;
  font-size: 200%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 15;
}

canvas {
  display: block;
}

 body, main {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        overflow: hidden;
        }
      .image-container {
        position: relative;
        display: inline-block;
      }
.canvas-container {
        position: absolute;
        top:10%;
        left: 30.6%;
        width: 38%;
        height: 50%;
        pointer-events: none;
        z-index: 1;
}
.button-overlay {
        position: absolute;
        top: 10%; /* 20% from the top of the image */
        left: 30.6%; /* 60% from the left of the image */
        z-index: 3;
        width:38%;
        background-color: white;
        border: 1px solid black;
        border-radius: 2% 2% 0 0 / 50% 50% 0 0; 
}

.map-container {
        position: absolute;
        top: 14%;
        left: 30.7%;
        width: 37.9%;
        height: 43%;
        z-index: 3;
        border-radius: 0 0 5% 5%;
        overflow: scroll;
        scrollbar-gutter: stable;
        scrollbar-color: #da1e11 #aaaaaa ;
}

.mobile-canvas{
        position: absolute;
        left:0%;
        width: 100%;
        height: 99%;
        pointer-events: none;
        z-index: 1;
}

.mobile-map{
  position: absolute;
   top: 15%;
        left: 0%;
        width: 99%;
        height: 99%;
        z-index: 3;
        border-radius: 0 0 5% 5%;
        overflow: scroll;
        scrollbar-gutter: stable;
        scrollbar-color: #da1e11 #aaaaaa ;
}


.mobile-buttons{
  position: fixed;
   top: 0%;
        left: 0%;
        z-index: 5;
        width:100%;
        background-color: white;
        border: 1px solid black;
        border-radius: 2% 2% 0 0 / 50% 50% 0 0; 
}

#storelocatorwidget {
width: 95% !important;
margin-left: 12px;
}


.mapboxgl-canvas {
width: 100% !important;
}

input[type="file"] {
    display: none;
}

.dropdown {
  font-family: Chicago Plain, sans-serif;
  position: relative;
  display: inline-block;
}

.dropdown:hover .dropdown-content {display: block;}


.button{
      font-family: Chicago Plain, sans-serif;
    font-size: 100%;
    display: inline-block;
    background-color: white;
    color:black;
    padding: 6px 12px;
    cursor: pointer;
    border: 0px;
}

#logo, #logo-mobile {
  height:3vh;
  width: 3vh;             /* set the height */
  background-image: url('images/logo.png');
  background-size: contain;    /* scale image to fill button */
  background-position: center;
  background-repeat: no-repeat;
  border: none;              /* remove default border */
  cursor: pointer;           /* show pointer on hover */
  outline: none;             /* remove focus outline */
 display: inline-block;
 background-color: white;
 margin-left:2%;
}

 #logo-mobile{
  height:6vh;
  width: 6vh;             /* set the height */
  margin-left:3%
 }

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 6;
}

.dropdown-content > * {
  color: black;
  font-size: 100%;
  text-decoration: none;
  display: block;
  width: 100%;
  border: 1px solid black;
  background-color: white;
  text-align: left;
}

#instructions-mobile{
  font-size: 200%;
}

.dropdown-content button:hover{
  background-color: black;
  color: white;
}

#close.button, #closeApp.button, #close-mobile.button, #closeApp-mobile.button{
  border: solid black;
  color:black;
  border-width: 2px;
  padding: 0.1% 0.5%;
  margin: 0% 2% 0% 1% ;
  float: right;
}
 #close-mobile.button, #closeApp-mobile.button{
  font-size: 500%;
 }

 .mobile-buttons .button{
  font-size: 250%;
 }


html, body, * {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}