#loading-svg-container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
#loading-svg-container > #loading {
  display: none;
}
#upload-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10vh;
}
#upload-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.upload-form-children {
  margin-top: 20px;
  margin-bottom: 20px;
}
#upload-form-title {
  font-weight: 700;
  font-size: 1.75em;
  text-align: center;
}
#server-response {
  text-align: center;
  margin-top: 50px;
}
.custom-select-options::-webkit-scrollbar {
  display: none;
}
.custom-select-value {
  width: 300px;
}
/* Success page styles */
#success-page-container {
  display: flex;
  flex-direction: row;
  height: 100%;
}
#filter-container {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-content: flex-start;
  padding-top: 2vh;
  padding-left: 10px;
  padding-right: 10px;
  flex: 0 0 300px;
  height: 100%;
  box-shadow: 0px 0.5px 2px rgba(0, 0, 0, 0.3);
  transition: flex-basis 150ms ease-in-out;
}
#filter-container.filter-contract {
  flex-shrink: 1;
  flex-basis: 30px;
  padding-left: 5px;
  padding-right: 5px;
}
.filter-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  transition: transform 150ms ease-in-out;
  box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.2);
}
.filter-item.filter-contract {
  position: fixed;
  opacity: 0;
  transform: translate(-200px);
}
.filter-item-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  height: 40px;
  margin-bottom: 15px;
  padding-left: 10px;
  font-weight: 600;
  background-color: #eeeeee;
  box-shadow: 0px 0.5px 1px rgba(0, 0, 0, 0.1);
  user-select: none;
  cursor: pointer;
}
.filter-item-label::after {
  content: "";
  display: inline-block;
  border: 4px solid transparent;
  border-top-color: black;
  margin-top: 4px;
  margin-right: 15px;
}
#filter-by-container {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  margin-right: 10px;
}
.filter-by-item {
  margin-top: 10px;
  margin-bottom: 10px;
}
#map {
  flex: 0 1 100%;
  height: 100%;
}
#map.filter-contract {
  flex-grow: 1;
}
