body {
  height: 100%;
  margin: 0;
  background-color: #FFFFFF;
}

section {
  width: 100%;
}

#map {
  height: 100%;
  width: 100%;
  float: left;
}

.input-clearable {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-clearable input {
  padding-right: 2.5rem;
}

.input-clearable .input-clear-btn {
  position: absolute;
  right: .5rem;
  cursor: pointer;
  color: black;
  border-radius: 0.25rem;
  transition: all 0.15s ease;
  line-height: 1;
  font-size: 1rem;
  user-select: none;
}

.input-clear-btn:disabled {
  border: none;
}

.input-clearable .input-clear-btn:hover {
  color: #000;
  transform: scale(1.25);
}

.input-clear-btn:focus {
  outline: solid;
}

#loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

#map-spinner {
  z-index: 1000;
  pointer-events: none;
}

.spinner-border {
  width: 3rem;
  height: 3rem;
}

.tie-document {
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

#map-alert {
  text-align: center;
}

#map {
    display: flex;
    flex-direction: row;
    height: 600px;
}

#map-view {
  flex-grow: 1;
  height: 100%;
  position: relative;
  transition: width 0.3s ease;
}

.header-strip a {
  color: #212529;
}

.header-strip img {
  height: 50px;
}

.form-end-elements {
  display: flex;
  align-items: flex-end;
}

.form-end-elements * {
  margin: 10px;
}

#form-error-message {
  color: #B30000;
  font-size: 1rem;
}

.pagination-container ul {
  list-style: none;
}

#limit-select {
  width: 100%;
  display: flex;
}

#info-container {
  display: none;
  position: absolute;
  z-index: 100;
  top: 6rem;
}

#info-btn {
  margin-top: -1rem;
}

li:focus {
  z-index: 2;
}

li a {
  z-index: 1;
  cursor: pointer;
}

a, .page-link, .download-link {
  color: #024CBB;
}

a:hover, .download-link:hover {
  color: black;
}