@keyframes showHide {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes horizontal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(0);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@-moz-keyframes horizontal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(0);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@-o-keyframes horizontal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(0);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@keyframes horizontal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(0);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
.c-vehicle-status-label {
  /*   position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
    background-color: red; */
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 30px;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 5px 0 0 0;
  text-transform: uppercase;
  display: none;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.61);
}
@media (max-width: 1199.98px) {
  .c-vehicle-status-label {
    font-size: 1.125em;
    padding: 5px 15px;
  }
}
@media (max-width: 991.98px) {
  .c-vehicle-status-label {
    font-size: 1.375em;
    padding: 8px 20px;
  }
}
@media (max-width: 767.98px) {
  .c-vehicle-status-label {
    font-size: 1.125em;
    padding: 5px 15px;
  }
}
@media (max-width: 575.98px) {
  .c-vehicle-status-label {
    font-size: 0.875em;
    padding: 5px 15px;
  }
}
.c-vehicle-status-label.status-2 {
  display: flex;
  background-color: #3fb2d2;
  color: #002858;
}
.c-vehicle-status-label.status-3 {
  display: flex;
  background-color: #002858;
  color: #ffffff;
}