body {
    display: flex;
    background-color: #f1f1f1;
    background-image: url("../images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    /* make an dark gradient flowing down, transparent */
    background-image: linear-gradient(#00000023, #00000028), url("../images/background.jpg");
    overflow: hidden;
}

.input {
    border: none;
    background-color: #E8E8E8;
}

.input-middle {
    border: none;
    background-color: #E8E8E8;
    width: 11rem;
}

.input-short {
    border: none;
    background-color: #E8E8E8;
    width: 5rem;
}

.input-shorter {
    border: none;
    background-color: #E8E8E8;
    width: 3.5rem;
}

.start-button {
    background-color: #F8981D;
    border: none;
    color: white !important;
    text-decoration: none;
}

.sidebar {
    width: 20rem;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    position: absolute;
}

.content {
  flex: 1;
  padding: 20px;
}

.hero-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 60rem;
    /* filter background shadow */
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.50));
}

/* no scroll */
html, body {
    max-width: 100%;
    overflow-y: hidden;
    margin: 0;
}

.canvas {
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* mobile webkit */
    width: 100%;
    height: 100%;
    transform-origin: 0 0;
}

#canvas-container {
    position: relative;
  }
  

  #loading-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: white;
  }

.map {
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0); /* mobile webkit */
    width: 100%;
    height: 100%;
    transform-origin: 0 0;
}

.btn-primary {
    background-color: #FFFFFF !important;
    color: #1F2C55 !important;
    font-weight: 500;
    border: none;
}

.btn-primary:hover{
    background-color: #1F2C55 !important;
    color: #FFFFFF !important;
}

.la-angle-down:hover {
    cursor: pointer;
}

.la-angle-up:hover {
    cursor: pointer;
}

img, svg {
    pointer-events: none;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
