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(rgb(31, 44, 85), rgba(232, 231, 213, 0.1)), 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: #11A0DC !important;
    border: none;
    color: white !important;
    text-decoration: none;
}

.sidebar {
    width: 40vw;
    /* height: 100%; */
    height: calc(100% - 4rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    position: absolute;
    /* top: env(safe-area-inset-top); */
    bottom: calc(4rem + env(safe-area-inset-bottom));;
    overflow: hidden;
}

.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: #001F60 !important;
    font-weight: 500;
    border: none;
}

.btn-primary:hover{
    background-color: #001F60 !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;
  }

  .hideSilo {
    user-select: none;
  }

  #tut-config-step-buttons {
    bottom: env(safe-area-inset-bottom) !important;
    z-index: 1;
  }

  .background-image-holder {
    display: flex;
    background-color: #f1f1f1;
    background-image: url(../images/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(rgb(31, 44, 85), rgba(232, 231, 213, 0.1)), url(../images/background.jpg);
    overflow: hidden;
    width: 100vw;
    height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
