html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#map-container {
  height: 40%;
  padding: 0;
  position: relative;
}

#map {
  height: 100%;
}

#table-container {
  height: 60%;
  width: 100%;
  /* padding: 5px; */
  position: relative;
  /* box-shadow: inset 0 8px 8px -8px #696868; */
}

a[ref="fileLink"] {
  word-break: break-word;
}

li.list-group-item div.col-md-9 {
  flex: 0 0 auto !important;
  width: 75% !important;
}

li.list-group-item div.col-md-2 {
  flex: 0 0 auto !important;
  width: 16.66666667% !important;
}

li.list-group-item div.col-md-1 {
  flex: 0 0 auto !important;
  width: 8.33333333% !important;
}

img[ref="fileImage"] {
  width: 90% !important;
  margin-right: 10px !important;
  margin-bottom: 10px !important;
}

i[ref="removeLink"] {
  font-size: 20px !important;
  color: #dc3545 !important;
  cursor: pointer !important;
}

.col-form-label {
  font-weight: 600;
}

[class^="col-"] {
  align-self: center!important;
}
[class^="col-xs-"] {
  flex: 0 0 auto;
  width: 50%;
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback):not(.input-group-text) {
  border-top-left-radius: var(--bs-border-radius);
  border-bottom-left-radius: var(--bs-border-radius);
}

.control-icon {
  font-size: 18px;
}

.icon-spin {
  animation: spin 2s linear infinite; 
}

.leaflet-control-locate, .active > a > div {
  color: black!important;
}

.leaflet-control-locate, .following > a > div {
  color: #0d6efd!important;
}

@keyframes spin {
  from {
    transform:rotate(0deg);
  }
  to {
    transform:rotate(360deg);
  }
}

/* Progress Bar https://codepen.io/holdencreative/pen/vEVbwv */
.progress {
  position: absolute;
  top: 0px;
  height: 3px;
  display: none;
  width: 100%;
  background-color: darkgray;
  background-clip: padding-box;
  overflow: hidden;
  z-index: 9999;
}

.progress .indeterminate {
  background-color: white;
}

.progress .indeterminate:before {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.progress .indeterminate:after {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: 100%;
    right: -90%;
  }
}

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }

  60% {
    left: 100%;
    right: -90%;
  }

  100% {
    left: 100%;
    right: -90%;
  }
}

@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: 107%;
    right: -8%;
  }
}

@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }

  60% {
    left: 107%;
    right: -8%;
  }

  100% {
    left: 107%;
    right: -8%;
  }
}