html, body
{
  padding: 0px;
  margin: 0px;
}

.route-info-box
{
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  margin-bottom: 10px;
}
.spacer
{
  flex: auto;
  height: 30px;
  min-height: 30px;
  z-index: 0;
}
.route-info-control
{
  background-color: rgba(255,255,255,1);
  border-radius: 2px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  overflow-y: scroll;
  flex: initial;
  flex-shrink: 1;
}
.route-info-control h3
{
  font-size: 18px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

.route-info-control table
{
  font-size: 12px;
}

.route-info-control thead tr th
{
  text-align: center;
}

.route-info-control tr th
{
  text-align: left;
  padding-left: 5px;
  padding-right: 5px;
}

.config-info-control
{
  background-color: rgba(255,255,255,1);
  border-radius: 2px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.config-info-control h3
{
  font-size: 12px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}
.config-info-control tr
{
  text-align: left;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 12px;
}

.day-control
{
  background-color: rgba(255,255,255,1);
  border-radius: 2px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.day-control h3
{
  font-size: 12px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}



.route:hover
{
  font-weight: bold;
}

.leaflet-control-container
{
  height: 100%;
}

div.leaflet-top.leaflet-right
{
  height: 100%;
}

.successful-visit
{
  animation-duration: 6s;
  animation-name: success;
  animation-iteration-count: 1;
  animation-direction: normal;
  weight: 50;
  color: green;
}

@keyframes success {
  0% {
    stroke-width: 2;
  }

  80% {
    stroke-width: 50;
  }

  100% {
    stroke-opacity: 0;
    fill-opacity: 0;
    stroke-width: 50;
  }
}

.failed-visit
{
  animation-duration: 6s;
  animation-name: failed;
  animation-iteration-count: 1;
  animation-direction: normal;
  weight: 50;
  color: green;
}

@keyframes failed {
  0% {
    stroke-width: 2;
  }

  80% {
    stroke-width: 25;
  }

  100% {
    stroke: red;
    fill: red;
    stroke-width: 25;
  }
}

.self-complete
{
  animation-duration: 6s;
  animation-name: self;
  animation-iteration-count: 1;
  animation-direction: normal;
  weight: 50;
  color: green;
}

@keyframes self {
  0% {
    stroke-width: 2;
  }

  80% {
    stroke-width: 50;
  }

  100% {
    stroke: green;
    fill: green;
    stroke-width: 50;
    stroke-opacity: 0;
    fill-opacity: 0;
  }
}

.dc-control
{
  background-color: rgba(255,255,255,1);
  border-radius: 2px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
