.car-marker {
    min-width: 30px;
    padding: 5px;
    border: 2px solid #000000;
    border-top-width: 3px;
    border-bottom-width: 3px;
}

.driver-state-1 {
    border-color: #000000;
}

.driver-state-2 {
    border-color: #fff000;
}

.driver-state-3 {
    border-color: #09ff00;
}

.driver-state-4 {
    border-color: #ff0001;
}

.driver-state-5 {
    border-color: #0018ff;
}

.driver-offline {
    opacity: 0.5;
}

.drivers-summary {
    position: absolute;
    bottom: 60px;
    right: 30px;
    background-color: white;
    list-style: none;
    margin: 0;
    padding: 10px;
    z-index: 1000;
}

.drivers-summary strong {
    float: right;
    margin-left: 10px;
}

.widgets {
    width: 100%;
    padding-right: 10px;
    overflow-y: scroll;
    height: calc(100vh - 210px);
    background-color: transparent;
    margin: 0;
    z-index: 1000;
}

.company-stat strong {
    float: right;
    margin-left: 10px;
}

.orders-box-company{
    margin: 5px;
}

#driver-search {
    position: absolute;
    top: 30px;
    left: 60px;
    padding: 3px;
}

#map {
    height: calc(100vh - 250px);
    margin-bottom: 0;
}

.company-stat h5 {
    color: #555;
    float: left;
    font-size: 11px;
    font-weight: 400;
    margin: 3px 0 0 0;
    padding: 0;
    border: none;
    text-transform: uppercase;
}

.company-stat {
    padding: 10px;
}

.loader{
  width: 100px;
  height: 100px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
}

#loader-2 span{
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: rgba(27, 27, 32, 0.6);
  margin: 35px 5px;
}

#loader-2 span:nth-child(1){
  animation: bounce 1s ease-in-out infinite;
}

#loader-2 span:nth-child(2){
  animation: bounce 1s ease-in-out 0.33s infinite;
}

#loader-2 span:nth-child(3){
  animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce{
  0%, 75%, 100%{
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  25%{
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}